/* ============================================================
   AKELIXA — LUXURY BLUEPRINT STYLES
   Loaded after main.css. Overrides the theme for the new
   black + champagne-gold luxury design.
   ============================================================ */

:root {
    --lx-bg: #080808;
    --lx-bg2: #111111;
    --lx-ivory: #F8F6F0;
    --lx-white: #FFFFFF;
    --lx-gold: #C9A45C;
    --lx-gold-bright: #E0BC68;
    --lx-gold-dim: rgba(201, 164, 92, 0.45);
    --lx-dark: #151515;
    --lx-thin-border: 1px solid rgba(201, 164, 92, 0.45);
    --lx-serif: 'Cormorant Garamond', Georgia, serif;
    --lx-sans: 'Montserrat', Arial, sans-serif;
    --lx-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

body { color: var(--lx-dark); background: var(--lx-ivory); }

.lx-container {
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================================
   SECTION 1 — TOP ANNOUNCEMENT BAR
   ============================================================ */
.lx-announce {
    background: var(--lx-bg);
    border-bottom: 1px solid var(--lx-gold-dim);
    height: 30px;
}
.lx-announce-inner {
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.lx-announce span { color: var(--lx-white); font-size: 10.5px; letter-spacing: 0.5px; font-family: var(--lx-sans); }
.lx-announce-left, .lx-announce-right { display: flex; align-items: center; gap: 8px; }
.lx-announce-left .lx-icon { flex-shrink: 0; }
.lx-announce-right a { display: inline-flex; align-items: center; justify-content: center; }
.lx-announce-right a:hover { opacity: 0.8; }
.lx-announce-center { text-align: center; letter-spacing: 1px; }

/* ============================================================
   SECTION 2 — MAIN HEADER
   ============================================================ */
.lx-header {
    background: var(--lx-bg);
    height: 92px;
    display: flex;
    align-items: center;
}
.lx-header-inner {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
}
.lx-header-left { display: flex; justify-content: flex-start; }
.lx-search {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 280px;
    height: 34px;
    padding: 0 12px;
    border: 1px solid #5B4A2B;
    border-radius: 999px;
    background: transparent;
}
.lx-search input {
    flex: 1;
    min-width: 0;
    background: transparent;
    border: none;
    outline: none;
    color: var(--lx-white);
    font-family: var(--lx-sans);
    font-size: 11px;
    letter-spacing: 0.5px;
}
.lx-search input::placeholder { color: #8a8378; }
.lx-search button { background: none; border: none; cursor: pointer; display: inline-flex; padding: 0; }

.lx-logo { text-align: center; line-height: 1; }
.lx-logo-link { display: inline-block; }
.lx-logo-crown { display: block; margin-bottom: 2px; }
.lx-logo-name {
    display: block;
    font-family: var(--lx-serif);
    font-weight: 600;
    font-size: 30px;
    letter-spacing: 10px;
    color: var(--lx-gold-bright);
    line-height: 1.05;
}
.lx-logo-tag {
    display: block;
    font-family: var(--lx-sans);
    font-size: 8px;
    letter-spacing: 4.5px;
    text-transform: uppercase;
    color: #8a8378;
    margin-top: 4px;
}
.lx-logo-name, .lx-logo-tag, .lx-flogo-name, .lx-flogo-tag { text-shadow: 0 0 18px rgba(201, 164, 92, 0.25); }

.lx-header-right { display: flex; justify-content: flex-end; align-items: center; gap: 26px; }
.lx-hicon {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    color: var(--lx-white);
    font-family: var(--lx-sans);
    font-size: 10.5px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    line-height: 1.2;
}
.lx-hicon:hover { color: var(--lx-gold-bright); }
.lx-hicon:hover svg { stroke: var(--lx-gold-bright); }

/* ============================================================
   SECTION 3 — MAIN NAVIGATION
   ============================================================ */
.lx-nav {
    background: var(--lx-bg);
    border-top: 1px solid var(--lx-gold-dim);
}
.lx-nav-inner { position: relative; }
.main-navigation .primary-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 52px;
    height: 48px;
}
.main-navigation .primary-menu > li { position: relative; }
.main-navigation .primary-menu > li > a {
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: var(--lx-sans);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--lx-white);
    padding: 0 2px;
    position: relative;
}
.main-navigation .primary-menu > li > a:hover,
.main-navigation .primary-menu > li.current-menu-item > a,
.main-navigation .primary-menu > li.current-menu-ancestor > a {
    color: var(--lx-gold-bright);
}
.main-navigation .primary-menu > li.current-menu-item > a::after,
.main-navigation .primary-menu > li.current-menu-ancestor > a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--lx-gold);
}
.main-navigation .primary-menu > li > a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--lx-gold);
    transition: width 0.25s ease;
}
.main-navigation .primary-menu > li:hover > a::after { width: 100%; }

.main-navigation .primary-menu > li.menu-item-has-children > a::before {
    content: '\25BE';
    font-size: 8px;
    color: var(--lx-gold);
    margin-left: 2px;
}

/* dropdown */
.main-navigation .sub-menu {
    display: block;
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 100%;
    left: -20px;
    background: var(--lx-white);
    min-width: 230px;
    padding: 12px 0;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--lx-gold-dim);
    list-style: none;
    margin: 0;
    z-index: 1000;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}
.main-navigation .primary-menu > li:hover > .sub-menu,
.main-navigation .primary-menu > li:focus-within > .sub-menu {
    visibility: visible;
    opacity: 1;
}
.main-navigation .sub-menu li { margin: 0; }
.main-navigation .sub-menu a {
    display: block;
    padding: 8px 22px;
    font-family: var(--lx-sans);
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--lx-dark);
    white-space: nowrap;
    border-left: 2px solid transparent;
    transition: all 0.2s ease;
}
.main-navigation .sub-menu a:hover { color: var(--lx-gold); border-left-color: var(--lx-gold); background: #F8F6F0; }

/* ============================================================
   SECTION 4 — HERO
   ============================================================ */
.lx-hero {
    position: relative;
    background: #050505;
    min-height: 400px;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.lx-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 80% 50%, rgba(201, 164, 92, 0.10) 0%, transparent 55%),
        radial-gradient(ellipse at 15% 100%, rgba(201, 164, 92, 0.06) 0%, transparent 50%),
        linear-gradient(90deg, #050505 0%, #080808 45%, #0a0a0a 100%);
    pointer-events: none;
}
.lx-hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    display: grid;
    grid-template-columns: 45fr 55fr;
    align-items: center;
    min-height: 400px;
}

.lx-hero-text {
    padding-left: 30px;
    padding-right: 30px;
    max-width: 560px;
}
.lx-hero-welcome {
    display: block;
    font-family: var(--lx-sans);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #D8BC7E;
    margin-bottom: 14px;
}
.lx-hero-title { margin: 0 0 14px; }
.lx-hero-gold, .lx-hero-white {
    display: block;
    font-family: var(--lx-serif);
    font-weight: 600;
    line-height: 1.02;
}
.lx-hero-gold {
    font-size: clamp(44px, 4.6vw, 66px);
    color: var(--lx-gold-bright);
    font-style: italic;
}
.lx-hero-white {
    font-size: clamp(40px, 4.2vw, 62px);
    color: var(--lx-white);
    margin-left: 8px;
}
.lx-hero-desc {
    font-family: var(--lx-sans);
    font-size: 12.5px;
    line-height: 1.8;
    color: #c9c4b8;
    max-width: 430px;
    margin: 0 0 22px;
}
.lx-hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 42px;
    background: var(--lx-gold-bright);
    color: var(--lx-dark);
    font-family: var(--lx-sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid var(--lx-gold-bright);
    transition: all 0.25s ease;
}
.lx-hero-cta:hover { background: var(--lx-gold); color: #000; box-shadow: 0 0 24px rgba(201, 164, 92, 0.35); }

.lx-hero-trust {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-top: 24px;
}
.lx-hero-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--lx-sans);
    font-size: 10.5px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #a49c8c;
}

.lx-hero-visual { position: relative; height: 400px; }
.lx-hero-img-wrap { position: absolute; inset: 0; }
.lx-hero-img { width: 100%; height: 100%; object-fit: cover; object-position: right center; display: block; }
.lx-hero-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #050505 0%, rgba(5, 5, 5, 0.55) 28%, rgba(5, 5, 5, 0.08) 52%, rgba(5, 5, 5, 0) 70%),
                linear-gradient(0deg, rgba(5, 5, 5, 0.5) 0%, rgba(5, 5, 5, 0) 45%);
}
.lx-hero-script {
    position: absolute;
    top: 34px;
    right: 42px;
    font-family: var(--lx-serif);
    font-style: italic;
    font-weight: 500;
    font-size: 26px;
    line-height: 1.15;
    text-align: right;
    color: #E8CF96;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.85), 0 0 30px rgba(201, 164, 92, 0.35);
    z-index: 3;
}
.lx-hero-goods { position: absolute; bottom: 26px; right: 34px; display: flex; gap: 10px; z-index: 3; }
.lx-goods {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(224, 188, 104, 0.7);
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.45);
    background: #111;
}
.lx-hero-dots {
    position: absolute;
    bottom: 22px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 3;
}
.lx-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    border: 1px solid var(--lx-gold-dim);
}
.lx-dot.active { background: var(--lx-gold-bright); border-color: var(--lx-gold-bright); }

.lx-hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--lx-gold-dim);
    background: rgba(8, 8, 8, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    transition: all 0.25s ease;
    backdrop-filter: blur(4px);
}
.lx-hero-arrow:hover { border-color: var(--lx-gold); background: rgba(201, 164, 92, 0.15); }
.lx-hero-prev { left: 22px; }
.lx-hero-next { right: 22px; }

/* ============================================================
   SECTION 5 — SHOP BY CATEGORY
   ============================================================ */
.lx-cat-section {
    background: var(--lx-ivory);
    padding: 34px 0 38px;
}
.lx-cat-head { text-align: center; margin-bottom: 24px; }
.lx-cat-eyebrow {
    display: block;
    font-family: var(--lx-sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--lx-gold);
    margin-bottom: 6px;
}
.lx-cat-title {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 28px;
    font-family: var(--lx-serif);
    font-weight: 600;
    font-size: clamp(26px, 2.6vw, 34px);
    color: var(--lx-dark);
    margin: 0;
    line-height: 1.2;
}
.lx-cat-title::before, .lx-cat-title::after {
    content: '';
    width: 90px;
    height: 1px;
    background: var(--lx-gold);
}
.lx-cat-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    align-items: stretch;
}
.lx-cat-card {
    position: relative;
    background: var(--lx-white);
    border: 1px solid rgba(201, 164, 92, 0.45);
    border-radius: 7px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    overflow: hidden;
}
.lx-cat-card:hover { transform: translateY(-4px); border-color: var(--lx-gold); box-shadow: var(--lx-shadow); }
.lx-cat-img {
    width: 100%;
    height: 105px;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 12px;
}
.lx-cat-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.lx-cat-card:hover .lx-cat-img img { transform: scale(1.03); }
.lx-cat-name {
    font-family: var(--lx-serif);
    font-weight: 600;
    font-size: 18px;
    color: var(--lx-dark);
    margin: 0 0 4px;
    line-height: 1.2;
}
.lx-cat-desc {
    font-family: var(--lx-sans);
    font-size: 10px;
    letter-spacing: 0.5px;
    color: #857e6d;
    line-height: 1.5;
    display: block;
}
.lx-cat-arrow {
    display: inline-flex;
    margin-top: 10px;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border: 1px solid rgba(201, 164, 92, 0.45);
    border-radius: 50%;
    transition: all 0.25s ease;
}
.lx-cat-card:hover .lx-cat-arrow { background: var(--lx-gold); border-color: var(--lx-gold); transform: translateX(2px); }
.lx-cat-card:hover .lx-cat-arrow svg { stroke: #0A0A0A; }

/* ============================================================
   SECTION 6 — PROMOTIONAL + TRUST AREA
   ============================================================ */
.lx-promo {
    display: grid;
    grid-template-columns: 52fr 48fr;
    min-height: 150px;
}
.lx-promo-left {
    position: relative;
    background: #070707;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lx-promo-left::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 40%, rgba(201, 164, 92, 0.18) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(201, 164, 92, 0.12) 0%, transparent 45%);
}
.lx-promo-deco {
    position: absolute;
    width: 220px;
    height: 220px;
    border: 1px solid rgba(224, 188, 104, 0.35);
    border-radius: 50%;
    top: -60px;
    right: -50px;
}
.lx-promo-img { position: absolute; border-radius: 6px; overflow: hidden; box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4); }
.lx-promo-img img { width: 100%; height: 100%; object-fit: cover; }
.lx-promo-img-1 { width: 84px; height: 84px; left: 6%; top: 20%; border: 1px solid rgba(224, 188, 104, 0.55); }
.lx-promo-img-2 { width: 68px; height: 68px; left: 16%; bottom: 14%; border: 1px solid rgba(224, 188, 104, 0.45); }
.lx-promo-img-3 { width: 64px; height: 64px; right: 5%; top: 26%; border: 1px solid rgba(224, 188, 104, 0.45); }
.lx-promo-content { position: relative; z-index: 2; text-align: center; }
.lx-promo-title {
    display: block;
    font-family: var(--lx-serif);
    font-style: italic;
    font-weight: 500;
    font-size: clamp(24px, 2.4vw, 34px);
    color: #E8CF96;
    margin-bottom: 8px;
}
.lx-promo-logo {
    display: inline-block;
    font-family: var(--lx-serif);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 10px;
    color: var(--lx-gold-bright);
    border-top: 1px solid var(--lx-gold-dim);
    border-bottom: 1px solid var(--lx-gold-dim);
    padding: 8px 4px;
    opacity: 0.95;
}
.lx-promo-logo:hover { opacity: 1; }

.lx-promo-right {
    background: var(--lx-ivory);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: stretch;
}
.lx-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 10px;
    gap: 6px;
    border-right: 1px solid rgba(201, 164, 92, 0.5);
}
.lx-feature:last-child { border-right: none; }
.lx-feature strong {
    font-family: var(--lx-sans);
    font-size: 11.5px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--lx-dark);
}
.lx-feature span {
    font-family: var(--lx-sans);
    font-size: 10px;
    color: #857e6d;
}

/* ============================================================
   SECTION 7 — BEST SELLERS
   ============================================================ */
.lx-best {
    background: var(--lx-ivory);
    border-top: 1px solid rgba(201, 164, 92, 0.25);
    padding: 36px 0 42px;
}
.lx-best-inner {
    display: grid;
    grid-template-columns: 25fr 75fr;
    align-items: center;
    gap: 30px;
}
.lx-best-left { position: relative; }
.lx-best-eyebrow {
    display: block;
    font-family: var(--lx-sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--lx-gold);
    margin-bottom: 8px;
}
.lx-best-title {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 18px;
    font-family: var(--lx-serif);
    font-weight: 600;
    font-size: 38px;
    color: var(--lx-dark);
    margin: 0 0 10px;
    line-height: 1.1;
}
.lx-best-title::before, .lx-best-title::after {
    content: '';
    width: 44px;
    height: 1px;
    background: var(--lx-gold);
}
.lx-best-desc {
    font-family: var(--lx-sans);
    font-size: 11.5px;
    line-height: 1.7;
    color: #857e6d;
    margin: 0 0 18px;
    max-width: 260px;
}
.lx-best-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 26px;
    height: 40px;
    background: var(--lx-gold-bright);
    color: var(--lx-dark);
    font-family: var(--lx-sans);
    font-size: 10.5px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid var(--lx-gold-bright);
    transition: all 0.25s ease;
}
.lx-best-cta:hover { background: var(--lx-gold); color: #000; }

.lx-best-right { position: relative; min-width: 0; }
.products-carousel { position: relative; }
.lx-products-track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 4px;
}
.lx-products-track::-webkit-scrollbar { display: none; }

.lx-product {
    flex: 0 0 158px;
    background: var(--lx-white);
    border: 1px solid rgba(201, 164, 92, 0.45);
    border-radius: 7px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.lx-product:hover { transform: translateY(-4px); box-shadow: var(--lx-shadow); border-color: var(--lx-gold); }
.lx-product-img {
    width: 100%;
    height: 118px;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 10px;
}
.lx-product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.lx-product:hover .lx-product-img img { transform: scale(1.03); }
.lx-product-name {
    font-family: var(--lx-serif);
    font-weight: 600;
    font-size: 15px;
    line-height: 1.15;
    color: var(--lx-dark);
    margin: 0 0 3px;
}
.lx-product-sub {
    display: block;
    font-family: var(--lx-sans);
    font-size: 9px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #9a927f;
    margin-bottom: 4px;
    line-height: 1.4;
}
.lx-product-stars { display: inline-flex; gap: 1px; margin-bottom: 4px; }
.lx-product-price {
    font-family: var(--lx-sans);
    font-size: 13px;
    font-weight: 600;
    color: var(--lx-gold);
    margin-bottom: 8px;
}
.lx-product-price .woocommerce-Price-amount { color: var(--lx-gold); }
.lx-add-cart {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 30px;
    background: var(--lx-gold-bright);
    color: var(--lx-dark);
    font-family: var(--lx-sans);
    font-size: 9.5px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: 1px solid var(--lx-gold-bright);
    border-radius: 3px;
    padding: 0 8px;
    transition: all 0.25s ease;
    text-decoration: none;
}
.lx-add-cart:hover { background: var(--lx-gold); color: #000; }

.lx-carousel-arrow {
    position: absolute;
    top: 42%;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--lx-gold);
    background: var(--lx-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 4;
    box-shadow: var(--lx-shadow);
    transition: all 0.25s ease;
}
.lx-carousel-arrow:hover { background: var(--lx-gold-bright); }
.lx-carousel-arrow:hover svg { stroke: #000; }
.lx-ca-prev { left: -12px; }
.lx-ca-next { right: -12px; }

/* ============================================================
   SECTIONS 8-9 — FOOTER + COPYRIGHT
   ============================================================ */
.lx-footer {
    background: var(--lx-bg);
    border-top: 1px solid var(--lx-gold-dim);
    padding: 34px 0 30px;
}
.lx-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.1fr 1.2fr 1.4fr;
    gap: 36px;
    align-items: start;
}
.lx-fcol-title {
    font-family: var(--lx-sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--lx-gold-bright);
    margin: 0 0 16px;
}
.lx-flinks { list-style: none; margin: 0; padding: 0; }
.lx-flinks li { margin-bottom: 9px; }
.lx-flinks a, .lx-flinks li {
    font-family: var(--lx-sans);
    font-size: 11.5px;
    color: #b9b2a4;
    line-height: 1.6;
    transition: color 0.2s ease;
}
.lx-flinks a:hover { color: var(--lx-gold-bright); }

.lx-flogo { display: inline-block; text-align: left; line-height: 1; margin-bottom: 14px; }
.lx-flogo-crown { display: block; margin-bottom: 3px; }
.lx-flogo-name {
    display: block;
    font-family: var(--lx-serif);
    font-weight: 600;
    font-size: 26px;
    letter-spacing: 8px;
    color: var(--lx-gold-bright);
    line-height: 1.05;
}
.lx-flogo-tag {
    display: block;
    font-family: var(--lx-sans);
    font-size: 7.5px;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: #8a8378;
    margin-top: 4px;
}
.lx-fbrand-tag {
    font-family: var(--lx-serif);
    font-style: italic;
    font-size: 14px;
    color: #a49c8c;
    margin: 0;
    max-width: 220px;
}
.lx-fcontact { display: flex; flex-direction: column; gap: 7px; margin-top: 14px; }
.lx-fcontact-item { display: inline-flex; align-items: center; gap: 9px; font-size: 12.5px; color: rgba(255, 255, 255, 0.72); transition: color 0.2s ease; }
.lx-fcontact-item svg { flex: none; }
.lx-fcontact-item:hover { color: #C9A45C; }
.lx-fnews-desc {
    font-family: var(--lx-sans);
    font-size: 11px;
    line-height: 1.7;
    color: #b9b2a4;
    margin: 0 0 14px;
}
.lx-fnews-form {
    display: flex;
    align-items: center;
    gap: 0;
    max-width: 260px;
    margin-bottom: 18px;
}
.lx-fnews-form input {
    flex: 1;
    min-width: 0;
    height: 36px;
    padding: 0 12px;
    background: transparent;
    border: 1px solid #5B4A2B;
    border-right: none;
    color: var(--lx-white);
    font-family: var(--lx-sans);
    font-size: 10.5px;
    outline: none;
}
.lx-fnews-form input::placeholder { color: #8a8378; }
.lx-fnews-form button {
    width: 36px;
    height: 36px;
    background: var(--lx-gold-bright);
    border: 1px solid var(--lx-gold-bright);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
}
.lx-fnews-form button:hover { background: var(--lx-gold); }
.lx-fsocial { display: flex; gap: 12px; }
.lx-fsocial a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border: 1px solid rgba(201, 164, 92, 0.45);
    border-radius: 50%;
    transition: all 0.25s ease;
}
.lx-fsocial a:hover { border-color: var(--lx-gold-bright); background: rgba(201, 164, 92, 0.12); }

.lx-copyright {
    background: var(--lx-bg);
    border-top: 1px solid var(--lx-gold-dim);
    height: 38px;
    display: flex;
    align-items: center;
}
.lx-copyright-inner {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.lx-copyright-inner span {
    font-family: var(--lx-sans);
    font-size: 10.5px;
    letter-spacing: 0.5px;
    color: #a49c8c;
}

/* ============================================================
   MOBILE MENU TOGGLE
   ============================================================ */
.lx-nav .menu-toggle { display: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1199px) {
    .lx-cat-grid { grid-template-columns: repeat(3, 1fr); }
    .lx-products-track { overflow-x: auto; }
    .lx-ca-prev { left: 4px; }
    .lx-ca-next { right: 4px; }
}

@media (max-width: 900px) {
    .lx-search { width: 220px; }
    .main-navigation .primary-menu { gap: 30px; }
    .lx-footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}

@media (max-width: 768px) {
    /* header */
    .lx-announce-center { display: none; }
    .lx-header { height: auto; padding: 14px 0; }
    .lx-header-inner { grid-template-columns: auto 1fr auto; }
    .lx-header-left { order: 1; }
    .lx-search { width: 34px; padding: 0; justify-content: center; border: none; }
    .lx-search input { display: none; }
    .lx-logo { order: 2; }
    .lx-logo-name { font-size: 24px; letter-spacing: 8px; }
    .lx-header-right { order: 3; gap: 14px; }
    .lx-hicon span { display: none; }
    .lx-hicon { gap: 0; }

    /* nav */
    .lx-nav { border-top: 1px solid var(--lx-gold-dim); }
    .lx-nav .menu-toggle { display: flex; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 14px 0; }
    .lx-nav .menu-toggle span { width: 22px; height: 1px; background: var(--lx-gold-bright); display: block; }
    .lx-nav-inner { display: flex; align-items: center; }
    .main-navigation {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #0d0d0d;
        border-top: 1px solid var(--lx-gold-dim);
        border-bottom: 1px solid var(--lx-gold-dim);
        z-index: 999;
    }
    .main-navigation.active { display: block; }
    .main-navigation .primary-menu {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        height: auto;
        padding: 10px 0;
    }
    .main-navigation .primary-menu > li { width: 100%; border-bottom: 1px solid rgba(201,164,92,0.15); }
    .main-navigation .primary-menu > li:last-child { border-bottom: none; }
    .main-navigation .primary-menu > li > a {
        padding: 12px 4px;
        justify-content: space-between;
        width: 100%;
        font-size: 12px;
    }
    .main-navigation .sub-menu {
        display: none;
        position: static;
        visibility: visible;
        opacity: 1;
        background: #161616;
        border: none;
        box-shadow: none;
        padding: 4px 0 8px 14px;
        min-width: 0;
    }
    .main-navigation .primary-menu > li.active-sub > .sub-menu { display: block; }
    .main-navigation .sub-menu a { color: #c9c4b8; }
    .main-navigation .sub-menu a:hover { background: none; color: var(--lx-gold-bright); border-left-color: transparent; }
    .main-navigation .primary-menu > li.active-sub > a::before { transform: rotate(90deg); }

    /* hero */
    .lx-hero { min-height: auto; }
    .lx-hero-inner { grid-template-columns: 1fr; min-height: 0; }
    .lx-hero-text { padding: 30px 0 18px; }
    .lx-hero-gold { font-size: 44px; }
    .lx-hero-white { font-size: 40px; }
    .lx-hero-visual { height: 320px; }
    .lx-hero-prev { left: 8px; }
    .lx-hero-next { right: 8px; }

    /* promo */
    .lx-promo { grid-template-columns: 1fr; }
    .lx-promo-left { min-height: 160px; }
    .lx-promo-right { grid-template-columns: 1fr 1fr; }
    .lx-feature { border-right: none; border-bottom: 1px solid rgba(201,164,92,0.5); padding: 18px 10px; }
    .lx-feature:nth-child(n+3) { border-bottom: none; }

    /* best sellers */
    .lx-best-inner { grid-template-columns: 1fr; }
    .lx-best-left { text-align: center; }
    .lx-best-desc { margin-left: auto; margin-right: auto; }
    .lx-best-title { display: inline-flex; }
    .lx-products-track { overflow-x: auto; }
    .lx-product { flex: 0 0 140px; }

    /* footer */
    .lx-footer-grid { grid-template-columns: 1fr 1fr; }
    .lx-copyright-inner { flex-direction: column; gap: 4px; }
    .lx-copyright { height: auto; padding: 10px 0; }
}

@media (max-width: 480px) {
    .lx-cat-grid { grid-template-columns: repeat(2, 1fr); }
    .lx-footer-grid { grid-template-columns: 1fr; }
    .lx-promo-right { grid-template-columns: 1fr; }
    .lx-feature { border-bottom: 1px solid rgba(201,164,92,0.5) !important; }
}