/**
 * Elite Fashion - WooCommerce & Shop Layout Styles
 *
 * Consolidated layout styles for Shop, Cart, Checkout, Product, My Account.
 * No CDN dependency. Enqueued via wp_enqueue_style().
 */

/* ==========================================================================
   Shop Archive (reference layout: LUXE premium grid)
   ========================================================================== */
.ef-shop-archive {
    max-width: 1440px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}
@media (min-width: 1024px) {
    .ef-shop-archive { padding-left: 3rem; padding-right: 3rem; }
}

.ef-shop-archive-inner { width: 100%; }

.ef-shop-archive-header {
    margin-bottom: 3rem;
}

.ef-shop-archive-layout {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}
@media (min-width: 1024px) {
    .ef-shop-archive-layout { flex-direction: row; }
}

.ef-shop-sidebar {
    width: 100%;
    flex-shrink: 0;
}
@media (min-width: 1024px) {
    .ef-shop-sidebar { width: 16rem; }
}

.ef-shop-sidebar-inner {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.ef-shop-sidebar .widget {
    margin-bottom: 0;
}

.ef-shop-sidebar .widget-title,
.ef-shop-sidebar h4 {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    border-bottom: 1px solid rgba(244, 240, 244, 1);
    padding-bottom: 0.75rem;
    margin-bottom: 1rem;
    color: var(--ef-text-main);
}

.ef-shop-sidebar ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ef-shop-sidebar ul li {
    margin-bottom: 0.75rem;
}

.ef-shop-sidebar ul li a {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    color: var(--ef-text-main);
}
.ef-shop-sidebar ul li a:hover { color: var(--ef-primary); }
.ef-shop-sidebar ul li.current-cat a { font-weight: 700; color: var(--ef-primary); }

.ef-shop-clear-filters {
    display: block;
    width: 100%;
    padding: 1rem 0;
    border: 1px solid var(--ef-primary);
    color: var(--ef-primary);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    border-radius: 0.5rem;
    text-align: center;
    transition: background 0.3s ease, color 0.3s ease;
}
.ef-shop-clear-filters:hover {
    background: var(--ef-primary);
    color: #fff;
}

.ef-shop-main {
    flex: 1;
    min-width: 0;
}

.ef-shop-archive .ef-shop-main ul.products {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem 1.5rem;
    list-style: none;
    margin: 0 0 5rem;
    padding: 0;
}
@media (min-width: 640px) {
    .ef-shop-archive .ef-shop-main ul.products { grid-template-columns: repeat(2, 1fr); gap: 3rem 1.5rem; }
}
@media (min-width: 1024px) {
    .ef-shop-archive .ef-shop-main ul.products { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1280px) {
    .ef-shop-archive .ef-shop-main ul.products { grid-template-columns: repeat(4, 1fr); }
}

.ef-shop-pagination-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-top: 3rem;
}

.ef-shop-pagination-wrap .woocommerce-pagination {
    margin: 0;
    padding: 0;
}

.ef-shop-pagination-wrap .page-numbers {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.ef-shop-pagination-wrap .page-numbers li { margin: 0; }

.ef-shop-pagination-wrap a.page-numbers,
.ef-shop-pagination-wrap span.page-numbers {
    display: inline-block;
    padding: 1rem 1.5rem;
    min-width: 3rem;
    text-align: center;
    font-weight: 800;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    border-radius: 0.5rem;
    transition: background 0.3s ease, color 0.3s ease;
}

.ef-shop-pagination-wrap a.page-numbers:hover,
.ef-shop-pagination-wrap span.current {
    background: var(--ef-primary);
    color: #fff;
}

.ef-shop-pagination-wrap span.current {
    background: var(--ef-text-main);
    color: #fff;
}

/* Legacy shop wrappers */
.ef-shop { padding: 3rem 1.5rem; }
.ef-shop-inner { max-width: 1440px; margin: 0 auto; }
.ef-shop-header { margin-bottom: 2rem; }
.ef-shop-layout { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 1024px) {
    .ef-shop-layout { grid-template-columns: 16rem 1fr; }
}
.ef-shop-main .products { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 2rem; }
.ef-cart { max-width: 1280px; margin: 0 auto; padding: 3rem 1.5rem; }
.ef-cart-inner { display: grid; gap: 2rem; }
@media (min-width: 1024px) {
    .ef-cart-inner { grid-template-columns: 2fr 1fr; }
}

/* Product Grid */
.woocommerce ul.products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.woocommerce ul.products li.product {
    margin: 0;
    padding: 0;
}

.woocommerce ul.products li.product .woocommerce-loop-product__link {
    display: block;
}

.woocommerce ul.products li.product .attachment-woocommerce_thumbnail {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.woocommerce ul.products li.product:hover .attachment-woocommerce_thumbnail {
    transform: scale(1.05);
}

.woocommerce ul.products li.product .price {
    color: var(--ef-primary);
    font-weight: 700;
}

.woocommerce ul.products li.product .price del {
    color: var(--ef-text-muted);
}

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
    background: var(--ef-primary);
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    border-radius: 0.5rem;
    transition: opacity 0.3s ease;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
    background: var(--ef-primary);
    opacity: 0.9;
    color: #fff;
}

.woocommerce table.shop_table {
    border: none;
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
    padding: 1rem;
    border-color: rgba(0,0,0,0.1);
}

/* Shop Archive Header */
.ef-shop-breadcrumbs,
.ef-cart-breadcrumbs {
    margin-bottom: 1rem;
}

.ef-shop-breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--ef-text-muted);
}

.ef-shop-breadcrumb-list .ef-breadcrumb-item { margin: 0; }
.ef-shop-breadcrumb-list a:hover { color: var(--ef-primary); }
.ef-breadcrumb-sep { opacity: 0.8; font-size: 10px; pointer-events: none; }

.ef-shop-heading {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
    justify-content: space-between;
}
@media (min-width: 768px) {
    .ef-shop-heading { flex-direction: row; align-items: flex-end; }
}

.ef-shop-title {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.025em;
    margin: 0 0 0.5rem;
    line-height: 1.1;
}

.ef-shop-archive-header .woocommerce-products-header__description,
.ef-shop-heading-left .woocommerce-products-header__description {
    margin: 0;
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--ef-text-muted);
}

.ef-shop-result-count {
    margin: 0;
    font-size: 0.875rem;
    font-style: italic;
    font-weight: 500;
    color: var(--ef-text-muted);
}

.woocommerce-products-header__description {
    margin-top: 0.75rem;
    color: var(--ef-text-muted);
    max-width: 48rem;
}

/* Product Cards */
.ef-archive-product-link,
.product-card a.woocommerce-loop-product__link { display: block; cursor: pointer; }

.ef-archive-product-media {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: 0.75rem;
    background: var(--ef-bg-light);
    margin-bottom: 1rem;
}

.ef-archive-product-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.ef-secondary-image,
.secondary-image { opacity: 0; }

.product-card:hover .secondary-image,
.product-card:hover .ef-secondary-image,
.ef-archive-product:hover .ef-secondary-image { opacity: 1; }
.ef-archive-product:hover .ef-primary-image { opacity: 0; }
.ef-archive-product:hover .ef-archive-product-img { transform: scale(1.03); }

.ef-product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
    background: var(--ef-primary);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    padding: 0.35rem 0.75rem;
    border-radius: 9999px;
}

.ef-badge-sale { background: var(--ef-primary); }
.ef-badge-new { background: var(--ef-primary); }
.ef-badge-soldout { background: rgba(24, 17, 23, 0.6); }

.ef-archive-quickadd,
.quick-add {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1rem;
    opacity: 0;
    transform: translateY(100%);
    transition: transform 0.3s ease, opacity 0.3s ease;
    z-index: 2;
    background: rgba(255, 255, 255, 0.85);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

.product-card:hover .quick-add,
.ef-archive-product:hover .ef-archive-quickadd,
.ef-archive-product:hover .quick-add {
    opacity: 1;
    transform: translateY(0);
}

.ef-quickadd-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin: 0 0 0.75rem;
    text-align: center;
    color: var(--ef-text-main);
}

.ef-archive-quickadd .button,
.quick-add .button {
    width: 100%;
    background: transparent;
    color: var(--ef-text-main);
    border: 1px solid var(--ef-text-main);
    padding: 0.5rem 0.75rem;
    border-radius: 0.25rem;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.ef-archive-quickadd .button:hover,
.quick-add .button:hover {
    background: var(--ef-primary);
    border-color: var(--ef-primary);
    color: #fff;
}

.ef-archive-product-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.ef-archive-product-info .woocommerce-loop-product__title {
    font-size: 0.875rem;
    font-weight: 600;
    margin: 0;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.ef-archive-product-brand {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 700;
    color: var(--ef-text-muted);
}

.ef-archive-product-info .price {
    font-size: 0.875rem;
    font-weight: 700;
    margin: 0;
}

/* Cart */
.ef-cart-title { font-size: 2rem; font-weight: 800; letter-spacing: -0.02em; margin: 0 0 1.25rem; }
.ef-cart-count { color: var(--ef-text-muted); font-weight: 300; margin-left: 0.5rem; }
.ef-cart-items-list { display: grid; gap: 2rem; }
.ef-cart-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0,0,0,0.08);
}
.ef-cart-item:first-child { border-top: 0; padding-top: 0; }
.ef-cart-item-thumb img {
    width: 120px;
    height: 165px;
    object-fit: cover;
    border-radius: 0.75rem;
    background: rgba(0,0,0,0.04);
    transition: transform 0.5s ease;
}
.ef-cart-item:hover .ef-cart-item-thumb img { transform: scale(1.03); }
.ef-cart-item-top { display: flex; justify-content: space-between; gap: 1.5rem; }
.ef-cart-item-brand {
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--ef-primary);
    margin-bottom: 0.25rem;
}
.ef-cart-item-name { margin: 0; font-size: 1.05rem; font-weight: 700; }
.ef-cart-item-meta { margin-top: 0.5rem; color: var(--ef-text-muted); font-size: 0.9rem; }
.ef-cart-item-meta dl { margin: 0; }
.ef-cart-item-meta dt { font-weight: 700; }
.ef-cart-item-meta dd { margin: 0 0 0.25rem; }
.ef-cart-item-price { font-weight: 800; }
.ef-cart-item-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1rem;
}
.ef-cart-remove {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--ef-text-muted);
}
.ef-cart-remove:hover { color: #e74c3c; }
.ef-cart-summary {
    position: sticky;
    top: 2rem;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 1rem;
    padding: 2rem;
    height: fit-content;
}
.ef-cart-summary-title { margin: 0 0 1.5rem; font-size: 1.25rem; font-weight: 800; }
.ef-cart-summary-row { display: flex; justify-content: space-between; color: var(--ef-text-muted); font-size: 0.95rem; }
.ef-cart-summary-amount { color: var(--ef-text-main); font-weight: 700; }
.ef-cart-summary-note { font-weight: 600; color: var(--ef-text-main); opacity: 0.7; text-align: right; }
.ef-cart-summary-rows { display: grid; gap: 0.75rem; }
.ef-cart-summary-total { border-top: 1px solid rgba(0,0,0,0.08); padding-top: 1rem; margin-top: 1rem; }
.ef-cart-summary-total-label { color: var(--ef-text-main); font-weight: 800; font-size: 1.05rem; }
.ef-cart-summary-total-amount { color: var(--ef-text-main); font-weight: 900; font-size: 1.35rem; }
.ef-cart-coupon { margin-top: 1.5rem; }
.ef-cart-coupon label { display: block; font-size: 11px; font-weight: 900; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ef-text-muted); margin-bottom: 0.5rem; }
.ef-cart-coupon-row { display: flex; gap: 0.5rem; }
.ef-cart-coupon-row input {
    flex: 1;
    background: rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 0.75rem;
    padding: 0.75rem 1rem;
}
.ef-cart-coupon-row button {
    background: var(--ef-text-main);
    color: #fff;
    border: none;
    border-radius: 0.75rem;
    padding: 0.75rem 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 12px;
}
.ef-cart-checkout {
    margin-top: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    height: 56px;
    background: var(--ef-primary);
    color: #fff;
    border-radius: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.22em;
}
.ef-cart-update {
    margin-top: 0.75rem;
    width: 100%;
    background: transparent;
    border: 1px solid rgba(0,0,0,0.12);
    color: var(--ef-text-main);
    border-radius: 0.75rem;
    height: 48px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

/* Checkout */
.ef-checkout { background: #fff; }
.ef-checkout-layout { display: flex; flex-direction: column; min-height: 70vh; }
@media (min-width: 1024px) { .ef-checkout-layout { flex-direction: row; } }
.ef-checkout-main { flex: 1; padding: 3rem 1.5rem; background: #fff; }
@media (min-width: 1024px) { .ef-checkout-main { padding: 3rem 4rem; } }
.ef-checkout-summary {
    width: 100%;
    background: rgba(0,0,0,0.03);
    padding: 3rem 1.5rem;
    border-top: 1px solid rgba(0,0,0,0.08);
}
@media (min-width: 1024px) {
    .ef-checkout-summary {
        width: 450px;
        border-left: 1px solid rgba(0,0,0,0.08);
        border-top: 0;
        padding: 3rem 2.5rem;
    }
}
.ef-checkout-brand { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 1.5rem; }
.ef-checkout-logo { font-weight: 900; text-transform: uppercase; letter-spacing: 0.08em; }
.ef-checkout-return { display: inline-flex; align-items: center; gap: 0.4rem; color: var(--ef-text-muted); font-weight: 600; }
.ef-checkout-return:hover { color: var(--ef-primary); }
.ef-checkout-steps { display: flex; gap: 0.75rem; color: var(--ef-text-muted); font-weight: 600; margin-bottom: 2rem; }
.ef-checkout-steps .ef-step-active,
.ef-checkout-steps .is-active { color: var(--ef-primary); border-bottom: 2px solid var(--ef-primary); }
.ef-step-sep { opacity: 0.6; }
.ef-checkout-express { margin-bottom: 3rem; }
.ef-checkout-express-title { font-size: 1.875rem; font-weight: 700; margin: 0 0 1.5rem; }
.ef-checkout-express-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
.ef-checkout-express-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    border: 1px solid rgba(244, 240, 244, 1);
    background: rgba(244, 240, 244, 0.5);
    border-radius: 0.75rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: background 0.3s ease;
}
.ef-checkout-express-btn:hover { background: rgba(244, 240, 244, 0.8); }
.ef-checkout-express-btn .material-symbols-outlined { font-size: 1.5rem; }
.ef-checkout-express-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 2rem 0;
}
.ef-checkout-express-divider::before,
.ef-checkout-express-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(244, 240, 244, 1);
}
.ef-checkout-express-divider-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--ef-text-muted);
}
.ef-checkout-security {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
}
.ef-checkout-security-icons {
    display: flex;
    gap: 1.5rem;
    opacity: 0.6;
}
.ef-checkout-security-icons .material-symbols-outlined { font-size: 1.875rem; }
.ef-checkout-security-text {
    margin: 0;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--ef-text-muted);
    text-align: center;
    max-width: 20rem;
    line-height: 1.5;
}
.woocommerce-checkout .form-row label {
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--ef-text-muted);
}
.woocommerce-checkout .input-text,
.woocommerce-checkout select,
.woocommerce-checkout textarea {
    background: rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 0.75rem;
    padding: 0.9rem 1rem;
}
.woocommerce-checkout .input-text:focus,
.woocommerce-checkout select:focus,
.woocommerce-checkout textarea:focus {
    outline: none;
    border-color: rgba(var(--ef-primary-rgb), 0.7);
    box-shadow: 0 0 0 2px rgba(var(--ef-primary-rgb), 0.15);
    background: #fff;
}
.ef-checkout-summary-title { margin: 0 0 1.5rem; font-size: 1.25rem; font-weight: 900; }
.ef-checkout-review { position: sticky; top: 2rem; }
.ef-checkout-concierge { margin-top: 2rem; border: 1px solid rgba(var(--ef-primary-rgb), 0.2); background: rgba(var(--ef-primary-rgb), 0.05); border-radius: 1rem; padding: 1.25rem; }
.ef-checkout-concierge-title { display: flex; align-items: center; gap: 0.5rem; color: var(--ef-primary); font-weight: 900; text-transform: uppercase; letter-spacing: 0.16em; font-size: 12px; }
.ef-checkout-concierge-quote { margin: 0.75rem 0 0; color: var(--ef-text-muted); font-style: italic; font-size: 0.9rem; }

/* My Account */
.ef-account { display: flex; min-height: 70vh; }
.ef-account-sidebar {
    width: 288px;
    background: #fff;
    border-right: 1px solid rgba(0,0,0,0.08);
    padding: 2rem 1.5rem;
    position: sticky;
    top: 0;
    height: 100vh;
    align-self: flex-start;
}
.ef-account-logo { font-weight: 900; text-transform: uppercase; letter-spacing: 0.12em; color: var(--ef-primary); }
.ef-account-main { flex: 1; padding: 3rem 1.5rem; max-width: 1200px; margin: 0 auto; }
.ef-account-header { display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem; margin-bottom: 2rem; }
.ef-account-title { margin: 0 0 0.25rem; font-size: 2.25rem; font-weight: 500; letter-spacing: -0.02em; }
.ef-account-subtitle { margin: 0; opacity: 0.65; font-style: italic; }
.ef-account-profile { border: 1px solid rgba(var(--ef-primary-rgb), 0.6); color: var(--ef-primary); padding: 0.75rem 1.25rem; border-radius: 0.5rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; font-size: 12px; }
.ef-account-profile:hover { background: var(--ef-primary); color: #fff; }
.ef-account-nav .woocommerce-MyAccount-navigation ul { list-style: none; margin: 1.5rem 0 0; padding: 0; display: grid; gap: 0.25rem; }
.ef-account-nav .woocommerce-MyAccount-navigation-link a { display: flex; padding: 0.85rem 1rem; border-radius: 0.5rem; color: rgba(0,0,0,0.7); font-weight: 600; }
.ef-account-nav .is-active a,
.ef-account-nav .woocommerce-MyAccount-navigation-link a:hover { background: rgba(var(--ef-primary-rgb), 0.06); color: var(--ef-primary); }
.ef-account-logout { margin-top: auto; padding-top: 2rem; }
.ef-account-logout-link { display: inline-flex; align-items: center; gap: 0.4rem; color: #e74c3c; font-weight: 700; }
@media (max-width: 991px) {
    .ef-account { flex-direction: column; }
    .ef-account-sidebar { width: 100%; height: auto; position: relative; border-right: 0; border-bottom: 1px solid rgba(0,0,0,0.08); }
    .ef-account-main { padding-top: 2rem; }
}

/* Single Product */
.ef-single-product-inner { max-width: 1440px; margin: 0 auto; padding: 2.5rem 1.5rem 5rem; }
.ef-breadcrumbs { margin-bottom: 2rem; }
.ef-single-product-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 1024px) { .ef-single-product-grid { grid-template-columns: 7fr 5fr; gap: 4rem; } }
.ef-single-gallery-main,
.ef-single-gallery-bottom { aspect-ratio: 3 / 4; overflow: hidden; border-radius: 0.75rem; background: rgba(0,0,0,0.04); }
.ef-single-gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin: 2rem 0; }
.ef-single-gallery-tile { aspect-ratio: 4 / 5; overflow: hidden; border-radius: 0.75rem; background: rgba(0,0,0,0.04); }
.ef-single-gallery-img { width: 100%; height: 100%; object-fit: cover; }
.ef-single-summary-sticky { position: sticky; top: 8rem; }
.ef-single-title { margin: 0 0 1rem; font-size: 3rem; font-weight: 300; font-style: italic; letter-spacing: -0.02em; }
.ef-single-meta { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid rgba(0,0,0,0.08); margin-bottom: 1.5rem; }
.ef-single-price .price { font-size: 1.5rem; font-weight: 300; }
.ef-single-assurance { list-style: none; padding: 0; margin: 1.5rem 0 0; display: grid; gap: 0.5rem; color: var(--ef-text-muted); }
.ef-single-story { margin-top: 6rem; padding-top: 4rem; border-top: 1px solid rgba(0,0,0,0.08); }
.ef-single-story-inner { max-width: 820px; margin: 0 auto; text-align: center; }
.ef-single-eyebrow { display: inline-block; color: var(--ef-primary); font-weight: 900; text-transform: uppercase; letter-spacing: 0.4em; font-size: 11px; margin-bottom: 1rem; }
.ef-single-story-title { margin: 0 0 2rem; font-size: 3rem; font-weight: 300; font-style: italic; }
.ef-single-story-content { text-align: left; color: var(--ef-text-muted); font-size: 1.1rem; line-height: 1.9; }
.ef-single-related { margin-top: 6rem; }
.ef-single-related-header { display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem; margin-bottom: 2rem; }
.ef-single-related-title { margin: 0; font-size: 2rem; font-weight: 300; font-style: italic; }
.ef-single-related-link { font-weight: 900; text-transform: uppercase; letter-spacing: 0.2em; font-size: 12px; border-bottom: 2px solid var(--ef-primary); padding-bottom: 0.25rem; }
.ef-related-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
@media (min-width: 1024px) { .ef-related-grid { grid-template-columns: repeat(4, 1fr); } }
.ef-related-image { display: block; aspect-ratio: 3 / 4; overflow: hidden; border-radius: 0.75rem; margin-bottom: 0.75rem; background: rgba(0,0,0,0.04); }
.ef-related-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.ef-related-card:hover .ef-related-image img { transform: scale(1.06); }
.ef-related-name { margin: 0 0 0.25rem; font-size: 0.9rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; }
.ef-related-price { color: var(--ef-text-muted); font-style: italic; }
