:root {
    --crimson-dark: #3e1b2f;
    --bg-main: #fbf7f9;
    /* Soft plum-white */
    --bg-cream: #f5ebf0;
    /* Plum-sand */
    --bg-gold: #b88a44;
    /* Darker Gold to match logo */
    --bg-card: rgba(255, 255, 255, 0.95);
    --bg-deep: #3e1b2f;
    /* Deep burgundy */
    --text-primary: #3e1b2f;
    /* Deep burgundy for elegant theme matching */
    --text-secondary: #5e2b48;
    /* Muted burgundy accent */
    --text-soft: #8e7a84;
    /* Muted Rose-Grey */
    --gold-primary: #b88a44;
    /* Darker Gold as primary */
    --gold-accent: #d4af37;
    /* Original gold as accent */
    --gold-soft: #5e2b48;
    /* Burgundy Soft */
    --border-light: rgba(94, 43, 72, 0.15);
    --shadow-soft: 0 16px 34px rgba(65, 44, 30, 0.08);
    --shadow-medium: 0 24px 60px rgba(55, 38, 26, 0.14);
    --radius-sm: 12px;
    --radius-md: 22px;
    --radius-lg: 34px;
    --transition: 0.35s ease;
    --section-space: clamp(1.5rem, 3vw, 2.5rem);
    --content-max: 1440px;
    --content-gutter: clamp(12px, 2.5vw, 28px);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-primary);
    background:
        radial-gradient(circle at top, rgba(255, 255, 255, 0.75), transparent 38%),
        linear-gradient(180deg, #fbf7f9 0%, #f5ebf0 45%, #fbf7f9 100%);
    line-height: 1.6;
    max-width: 100vw;
    overflow-x: hidden;
    padding-top: 95px;
}

body.menu-open {
    overflow: hidden;
}

img {
    max-width: 100%;
    height: 340px;
    display: block;
}

button,
input {
    font: inherit;
}

a {
    text-decoration: none;
    color: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.15;
}

section {
    padding: var(--section-space) 0;
    position: relative;
}

section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

section:nth-of-type(odd) {
    background: var(--bg-main);
}

section:nth-of-type(even) {
    background: linear-gradient(180deg, rgba(245, 235, 240, 0.92), rgba(251, 247, 249, 0.96));
}

.container {
    width: min(100%, var(--content-max));
    margin: 0 auto;
    padding-left: var(--content-gutter);
    padding-right: var(--content-gutter);
}

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-title::after {
    content: "";
    display: block;
    width: 92px;
    height: 2px;
    margin: 1rem auto 0;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}

.section-title-left {
    text-align: left;
}

.section-title-left::after {
    margin-left: 0;
    margin-right: auto;
}

.section-intro {
    max-width: 700px;
    margin: 0 auto 2.5rem;
    text-align: center;
    color: var(--text-secondary);
}

.eyebrow {
    display: block;
    text-align: center;
    margin-bottom: 1.2rem;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--crimson-dark);
}

.centered-eyebrow,
.light-eyebrow {
    display: block;
    text-align: center;
}

.light-eyebrow {
    color: rgba(255, 244, 229, 0.9);
}

.section-heading-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.section-heading-row>div {
    text-align: center;
    width: 100%;
}

.centered-heading {
    justify-content: center;
    text-align: center;
}

.section-link {
    font-weight: 600;
    color: var(--gold-primary);
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: var(--crimson-dark);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.25);
    padding: 0;
    height: 95px;
    display: flex;
    align-items: center;
    transition: all var(--transition);
}

.navbar-container {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 2rem;
    width: min(100%, var(--content-max));
    margin: 0 auto;
    padding-left: var(--content-gutter);
    padding-right: var(--content-gutter);
    height: 100%;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    color: var(--text-primary);
    cursor: pointer;
    transition: transform var(--transition), opacity var(--transition);
    min-width: 0;
    padding: 0;
    margin: 0;
    border-radius: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    height: 100%;
}

.logo:hover {
    transform: translateY(-1px);
}

.logo:focus,
.logo:focus-visible,
.logo:active,
.navbar a,
.navbar a:focus,
.navbar a:active,
.nav-item a,
.nav-item a:focus {
    outline: none !important;
    box-shadow: none !important;
}

.logo-image {
    height: 72px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
    background: transparent;
    box-shadow: none;
    margin: 0;
}

.navbar .logo-image {
    height: 70px;
    margin-top: 6px;
}

.logo-text-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
    margin-top: -8px;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: var(--bg-gold);
    /* Keep logo Gold */
}

.logo-tagline {
    margin-top: 2px;
    margin-bottom: 8px;
    font-size: 0.52rem;
    font-weight: 700;
    letter-spacing: 0.103rem;
    text-transform: uppercase;
    color: var(--gold-accent);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
    white-space: nowrap;
}

.footer .logo-image {
    height: 95px;
}

.footer .logo-tagline {
    font-size: 0.58rem;
    letter-spacing: 0.115rem;
}

.nav-links {
    display: flex;
    justify-content: center;
    gap: clamp(1rem, 2vw, 2rem);
    list-style: none;
}

.nav-item {
    position: relative;
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.nav-item>a,
.dropdown-trigger {
    transition: color var(--transition);
}

.nav-item>a:hover,
.dropdown-trigger:hover {
    color: var(--gold-accent);
}

.dropdown-trigger {
    cursor: pointer;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 1rem);
    left: -20px;
    background: #4a2138;
    /* Slightly lighter plum for dropdown depth */
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 22px;
    min-width: 210px;
    padding: 0.75rem 0;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition);
}

.dropdown-trigger:hover .dropdown-menu,
.dropdown-trigger:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 0.8rem 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    transition: all var(--transition);
}

.dropdown-item:hover {
    background: rgba(212, 175, 55, 0.15);
    color: var(--gold-accent);
    padding-left: 1.8rem;
}

/* Submenu Styles */
.dropdown-item-with-submenu {
    position: relative;
}

.dropdown-item-with-submenu .submenu {
    position: absolute;
    top: 0;
    left: 100%;
    background: #4a2138;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 22px;
    min-width: 220px;
    padding: 0.75rem 0;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}

.dropdown-item-with-submenu:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.submenu-item {
    display: block;
    padding: 0.6rem 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    transition: all var(--transition);
    font-size: 0.88rem;
}

.submenu-item:hover {
    background: rgba(212, 175, 55, 0.15);
    color: var(--gold-accent);
    padding-left: 1.8rem;
}

.submenu-section {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.submenu-section:last-child {
    border-bottom: none;
}

.submenu-header {
    display: block;
    padding: 0.4rem 1.5rem 0.2rem;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--gold-accent);
    letter-spacing: 0.05em;
    opacity: 0.9;
}

.navbar-right {
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
    align-items: center;
    flex-wrap: nowrap;
}

.icon-btn {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    cursor: pointer;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all var(--transition);
    color: #fff;
    position: relative;
}

.icon-btn:hover {
    background: var(--gold-primary);
    color: var(--crimson-dark);
    transform: translateY(-2px);
}

.cart-count,
.wishlist-count {
    position: absolute;
    top: -6px;
    right: -4px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-accent));
    color: #fff;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    gap: 5px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: #fff;
    transition: all var(--transition);
}

.hero {
    width: 100%;
    margin: 0;
    margin-top: -95px;
    min-height: 100vh;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: center;
    justify-items: center;
    gap: 0;
    padding: calc(95px + clamp(2rem, 5vw, 4rem)) var(--content-gutter) clamp(2rem, 5vw, 4rem);
    border-radius: 0;
    overflow: hidden;
    position: relative;
    background: #1a0a13;
    /* Fallback dark */
    box-shadow: inset 0 -20px 40px rgba(0, 0, 0, 0.2);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.55), transparent 24%),
        radial-gradient(circle at 85% 80%, rgba(94, 43, 72, 0.08), transparent 24%);
}

.hero-background-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(62, 27, 47, 0.5) 0%, transparent 40%, rgba(62, 27, 47, 0.8) 100%),
        radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    align-self: center;
    justify-self: center;
    width: min(100%, var(--content-max));
    margin: 0 auto;
    max-width: 860px;
    padding: 0;
    text-align: center;
    animation: fadeInUp 0.8s ease;
}

.hero-content .btn {
    width: auto;
}

.hero-title {
    font-size: clamp(3rem, 7vw, 5.2rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #fff;
    letter-spacing: -0.02em;
    line-height: 1.05;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out;
}

.hero .eyebrow {
    color: var(--gold-accent);
    letter-spacing: 0.4em;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 1.8vw, 1.35rem);
    color: rgba(255, 255, 255, 0.9);
    max-width: 720px;
    margin-bottom: 2.5rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    font-weight: 300;
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.95rem 2rem;
    font-size: 0.95rem;
    font-weight: 600;
    border: 1px solid transparent;
    border-radius: 999px;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
    text-align: center;
}

.btn-primary,
.btn-outline,
.btn-light,
.hero .btn-primary {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-accent)) !important;
    color: #fff !important;
    border: 1px solid transparent !important;
    box-shadow: 0 16px 28px rgba(184, 138, 68, 0.24) !important;
    backdrop-filter: none !important;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition) !important;
}

.btn-primary:hover,
.btn-outline:hover,
.btn-light:hover,
.hero .btn-primary:hover {
    background: linear-gradient(135deg, var(--gold-accent), var(--gold-primary)) !important;
    color: #fff !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 22px 34px rgba(184, 138, 68, 0.28) !important;
}

.hero .btn-primary {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

.btn-small {
    padding: 0.78rem 1.4rem;
    font-size: 0.88rem;
}


.features {
    background:
        linear-gradient(180deg, rgba(251, 247, 249, 0.98), rgba(245, 235, 240, 0.94));
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.feature-card {
    padding: 0.9rem 0.75rem;
    background: rgba(255, 251, 247, 0.75);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    text-align: center;
    backdrop-filter: blur(8px);
    box-shadow: var(--shadow-soft);
    transition: all var(--transition);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.feature-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 0.75rem;
    background: linear-gradient(135deg, rgba(94, 43, 72, 0.14), rgba(142, 74, 117, 0.22));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
}

.feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: var(--text-soft);
    font-size: 0.95rem;
}

.categories {
    background:
        radial-gradient(circle at center top, rgba(255, 255, 255, 0.7), transparent 24%),
        var(--bg-gold);
    padding-bottom: clamp(1rem, 2vw, 1.5rem) !important;
}

#new-arrivals {
    padding-top: clamp(1.5rem, 3vw, 2.5rem) !important;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: clamp(1rem, 2vw, 1.5rem);
    align-items: stretch;
}

.category-card {
    position: relative;
    padding: 1.5rem 1rem 1.5rem;
    display: flex;
    flex-direction: column;
    min-height: 280px;
    height: 100%;
    border-radius: 30px;
    overflow: hidden;
    cursor: pointer;
    text-align: center;
    background: linear-gradient(135deg, #fff9fb 0%, #fce7f3 100%);
    border: 1px solid rgba(62, 27, 47, 0.1);
    box-shadow: 0 15px 35px rgba(62, 27, 47, 0.08);
    transition: transform var(--transition), box-shadow var(--transition);
}

.category-card img {
    width: 100%;
    height: 150px;
    margin: 0 auto;
    object-fit: cover;
    border-radius: 24px;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    transition: transform 0.45s ease;
}

.category-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 50px rgba(62, 27, 47, 0.15);
    background: #ffffff;
    border-color: var(--crimson-dark);
}

.category-card:hover img {
    transform: scale(1.04);
    box-shadow: 0 22px 38px rgba(78, 57, 41, 0.22);
}

.category-overlay {
    position: static;
    background: none;
    color: var(--text-primary);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0.8rem 0 0;
    opacity: 1;
}

.category-overlay h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.category-overlay .btn {
    min-width: 126px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-accent));
    color: #fff;
    box-shadow: 0 10px 20px rgba(184, 138, 68, 0.15);
    border: 1px solid transparent;
}

.category-overlay .btn:hover {
    background: linear-gradient(135deg, var(--gold-accent), var(--gold-primary));
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(184, 138, 68, 0.22);
}

.products {
    background: linear-gradient(180deg, rgba(251, 247, 249, 0.96), rgba(245, 235, 240, 0.9));
}

.category-products:nth-of-type(odd) {
    background: linear-gradient(180deg, rgba(251, 247, 249, 0.96), rgba(245, 235, 240, 0.9));
}

.best-sellers {
    background: linear-gradient(180deg, rgba(240, 230, 235, 0.96), rgba(251, 247, 249, 0.94));
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1.5rem;
}

.product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #ffffff;
    border-radius: 26px;
    overflow: hidden;
    border: 1px solid rgba(94, 43, 72, 0.12);
    box-shadow: var(--shadow-soft);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
    border-color: rgba(94, 43, 72, 0.3);
}

.product-image {
    width: 100%;
    aspect-ratio: 1.3 / 1;
    height: auto;
    object-fit: cover;
    transition: transform 0.55s ease;
}

.product-card:hover .product-image {
    transform: scale(1.02);
}

.product-info {
    padding: 0.9rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
}

.product-info h3 {
    font-size: 1.08rem;
    margin-bottom: 0.4rem;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

.product-material {
    font-size: 0.86rem;
    color: var(--gold-primary);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.product-price {
    display: flex;
    gap: 0.55rem;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 0.6rem;
}

.product-card .btn {
    margin-top: auto;
}

.price {
    font-size: 1.3rem;
    font-weight: 700;
}

.original-price {
    font-size: 0.9rem;
    color: var(--text-soft);
    text-decoration: line-through;
}

.brand-story {
    background: var(--bg-cream);
}

.brand-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(2rem, 4vw, 4rem);
    align-items: center;
}

.brand-image {
    width: 100%;
    height: 480px;
    object-fit: cover;
    object-position: center;
    border-radius: 30px;
    box-shadow: var(--shadow-medium);
}

.brand-content {
    padding: 0.5rem 0;
}

.brand-content .section-title {
    margin-bottom: 1.5rem;
}

.brand-content p {
    color: var(--text-secondary);
    margin-bottom: 1.3rem;
    line-height: 1.85;
}

.promo-banner {
    padding: clamp(3rem, 5vw, 4.2rem) 0;
    text-align: center;
    border-radius: 0;
    color: #fff;
    margin: 0;
    width: 100%;
    box-shadow: var(--shadow-medium);
}

.promo-content {
    width: min(100%, var(--content-max));
    margin: 0 auto;
    padding-left: var(--content-gutter);
    padding-right: var(--content-gutter);
}

.spotlight-banner {
    width: 100%;
    max-width: 1200px;
    margin: 4rem auto;
    padding: 4rem 2rem 2rem;
    background: linear-gradient(135deg, #3e1b2f 0%, #5e2b48 100%);
    border-radius: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(62, 27, 47, 0.25);
}

.spotlight-header {
    margin-bottom: 4rem;
}

.spotlight-header .eyebrow {
    color: var(--gold-accent);
    letter-spacing: 0.3em;
}

.spotlight-header h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: #fff;
    font-family: 'Playfair Display', serif;
    margin-bottom: 0.5rem;
}

.spotlight-header .subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    font-style: italic;
}

.features-grid-row {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.spotlight-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
}

.spotlight-feature-icon {
    width: 70px;
    height: 70px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-accent);
    background: rgba(255, 255, 255, 0.03);
    transition: all 0.3s ease;
}

.spotlight-feature-item:hover .spotlight-feature-icon {
    background: var(--gold-accent);
    color: var(--crimson-dark);
    transform: translateY(-5px);
}

.spotlight-feature-item h3 {
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    line-height: 1.3;
}

.spotlight-feature-item p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

.spotlight-trust-footer {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-align: center;
}

.trust-item i {
    color: var(--gold-accent);
    font-size: 1.2rem;
}

.trust-text h4 {
    font-size: 0.85rem;
    color: #fff;
    text-transform: uppercase;
    margin: 0;
}

.trust-text p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

@media (max-width: 1024px) {
    .features-grid-row {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .features-grid-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .spotlight-trust-footer {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .features-grid-row {
        grid-template-columns: 1fr;
    }

    .spotlight-trust-footer {
        grid-template-columns: 1fr;
    }
}

.spotlight-copy p {
    color: rgba(255, 244, 229, 0.84);
    margin-bottom: 1.8rem;
}

.spotlight-copy .section-title {
    color: #fff7ef;
    margin-bottom: 1rem;
}

.promo-content h2 {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    margin-bottom: 0.9rem;
}

.promo-content p {
    font-size: 1.08rem;
    margin-bottom: 1.8rem;
}

.blog {
    background: var(--bg-main);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.7rem;
}

.blog-card {
    background: rgba(255, 251, 247, 0.82);
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-soft);
    transition: all var(--transition);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.blog-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image {
    transform: scale(1.05);
}

.blog-content {
    padding: 1rem 1.2rem;
}

.blog-date {
    font-size: 0.8rem;
    color: var(--gold-primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.blog-content h3 {
    font-size: 1.15rem;
    margin: 0.75rem 0 0.9rem;
    line-height: 1.35;
}

.blog-content p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.read-more {
    color: var(--gold-primary);
    font-weight: 700;
}

.newsletter {
    width: 100%;
    margin: 0;
    padding: clamp(2.5rem, 5vw, 4.2rem) var(--content-gutter);
    background:
        linear-gradient(135deg, rgba(243, 232, 220, 0.98), rgba(239, 227, 211, 0.94)),
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.75), transparent 34%);
    border-radius: 0;
    text-align: center;
    box-shadow: var(--shadow-soft);
}

.newsletter-content {
    width: min(100%, var(--content-max));
    margin: 0 auto;
}

.newsletter-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.newsletter-content p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.newsletter-form input {
    min-width: min(100%, 380px);
    padding: 1rem 1.35rem;
    border: 1px solid rgba(184, 138, 68, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.74);
    font-size: 0.95rem;
    transition: all var(--transition);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 4px rgba(184, 138, 68, 0.12);
}

.footer {
    background: var(--crimson-dark);
    padding: 4rem 2rem 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.25);
    color: rgba(255, 255, 255, 0.74);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2.5rem;
    max-width: var(--content-max);
    margin: 0 auto;
    padding-left: var(--content-gutter);
    padding-right: var(--content-gutter);
}

@media (max-width: 1024px) {
    .navbar-container {
        grid-template-columns: auto 1fr auto;
    }

    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.footer-section h4 {
    font-size: 1.08rem;
    margin-bottom: 1.2rem;
    color: var(--gold-primary);
    font-family: 'Playfair Display', serif;
    letter-spacing: 0.5px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li a {
    display: inline-block;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.75rem;
    transition: all var(--transition);
    text-decoration: none;
}

.footer-section ul li a:hover {
    color: var(--gold-primary);
    transform: translateX(4px);
}

.social-links {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.social-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--gold-primary);
    border: 1px solid var(--gold-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: none;
    color: var(--crimson-dark);
    font-size: 1.1rem;
    line-height: 1;
    text-decoration: none !important;
}

.social-icon i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.social-icon:hover {
    background: var(--gold-primary);
    color: var(--crimson-dark);
    border-color: var(--gold-primary);
    transform: none;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.92rem;
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
    will-change: transform, opacity;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1180px) {
    .features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .products-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1rem;
    }

    .category-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .blog-grid,
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 1024px) {
    .navbar-container {
        grid-template-columns: 1fr auto;
    }

    .navbar-center {
        display: flex !important;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .nav-links {
        position: fixed !important;
        top: 0 !important;
        right: -100% !important;
        bottom: 0 !important;
        width: 75% !important;
        max-width: 320px !important;
        height: 100vh !important;
        background: var(--crimson-dark) !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: flex-start !important;
        overflow-y: auto !important;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
        transform: none !important;
        z-index: 3000 !important;
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15) !important;
        padding: 4rem 1.5rem !important;
        margin: 0 !important;
        border-radius: 0 !important;
        left: auto !important;
    }

    .nav-links.show {
        right: 0 !important;
    }

    .nav-item {
        margin: 0.7rem 0 !important;
        width: 100%;
        text-align: center;
    }

    .nav-item a {
        display: block;
        width: 100%;
    }

    /* Mobile categories dropdown expansion styling */
    .dropdown-trigger {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        cursor: pointer;
    }

    .dropdown-trigger span {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    .dropdown-menu {
        position: static !important;
        opacity: 0 !important;
        visibility: hidden !important;
        max-height: 0;
        overflow: hidden;
        width: 100% !important;
        min-width: 0 !important;
        border: none !important;
        background: rgba(0, 0, 0, 0.2) !important;
        box-shadow: none !important;
        transform: none !important;
        padding: 0 !important;
        margin-top: 0.5rem;
        border-radius: 12px !important;
        transition: max-height 0.35s ease, opacity 0.35s ease !important;
        display: flex;
        flex-direction: column;
    }

    .dropdown-trigger.active .dropdown-menu {
        opacity: 1 !important;
        visibility: visible !important;
        max-height: 400px;
        padding: 0.5rem 0 !important;
    }

    .dropdown-item {
        text-align: center;
        padding: 0.6rem 1rem !important;
        font-size: 0.95rem;
        background: transparent !important;
        color: rgba(255, 255, 255, 0.8) !important;
    }

    .dropdown-item:hover {
        color: var(--gold-accent) !important;
        background: rgba(212, 175, 55, 0.1) !important;
        padding-left: 1rem !important;
    }

    .hero {
        min-height: 620px;
        padding-top: 5rem;
        padding-bottom: 5rem;
    }

    .hero-content {
        max-width: 100%;
    }

    .brand-grid {
        grid-template-columns: 1fr;
    }

    .section-heading-row {
        align-items: center;
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    :root {
        --content-gutter: 30px;
    }

    section {
        padding: 3.5rem 0;
    }

    .container,
    .hero,
    .newsletter,
    .promo-banner {
        width: 100%;
    }

    body {
        padding-top: 75px !important;
    }

    .navbar {
        position: fixed !important;
        height: auto !important;
        margin-top: 0 !important;
        padding: 0.15rem 0 !important;
    }

    .navbar-container {
        gap: 0.75rem;
    }

    .logo-image {
        width: auto;
        height: 60px;
    }

    .logo-text-wrap {
        margin-top: -8px;
    }

    .logo-tagline {
        font-size: 0.46rem;
        margin-top: 2px;
        margin-bottom: 4px;
    }

    .navbar-right {
        gap: 0.45rem;
    }

    .icon-btn {
        width: 38px;
        height: 38px;
    }

    .hero {
        margin-top: -75px !important;
        min-height: 540px !important;
        padding-top: calc(75px + 4rem) !important;
        padding-bottom: 4rem;
    }

    .hero-title {
        font-size: 2.35rem;
    }

    .hero-subtitle {
        margin-bottom: 1.5rem;
        max-width: 100%;
    }

    .hero-background-img {
        min-height: 360px;
    }

    .features-grid,
    .blog-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem;
    }

    .category-card {
        min-height: 300px;
        padding: 1rem 0.75rem 1.2rem;
    }

    .category-card img {
        height: 190px;
    }

    .product-info,
    .blog-content {
        padding: 1.2rem;
    }

    .brand-image {
        height: 400px;
        object-position: center;
    }

    .brand-content .section-title {
        text-align: center;
    }

    .brand-content .section-title::after {
        margin-left: auto;
    }

    .brand-content {
        text-align: center;
    }

    .section-title-left,
    .section-title-left::after {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .spotlight-panel {
        min-height: 300px;
        border-radius: 28px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input,
    .newsletter-form .btn {
        width: 100%;
    }

    .footer {
        padding: 3rem 1rem 2rem;
    }
}

@media (max-width: 640px) {
    :root {
        --section-space: clamp(1.5rem, 3vw, 2rem);
    }

    .section-title {
        font-size: 1.8rem;
    }

    .navbar {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        margin-top: 0 !important;
        padding: 0.15rem 0 !important;
    }

    .navbar-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.5rem 1.25rem;
        gap: 1rem;
    }

    .logo-text {
        font-size: 1.15rem;
        letter-spacing: 0.05em;
    }

    .navbar-right {
        gap: 0.6rem;
        display: flex;
        align-items: center;
    }

    .navbar-right .icon-btn {
        width: 32px;
        height: 32px;
    }

    .mobile-menu-btn {
        margin-left: 0.3rem;
    }



    .nav-item {
        margin: 0.7rem 0 !important;
        font-size: 1.15rem;
        color: #fff !important;
    }

    .logo-image {
        width: auto;
        height: 55px;
    }

    .logo-text-wrap {
        margin-top: -6px;
    }

    .logo-tagline {
        font-size: 0.42rem;
        margin-top: 2px;
        margin-bottom: 4px;
    }

    .navbar-right .icon-btn:not(.cart-btn):not([aria-label="Wishlist"]):not(.search-btn):not(.account-btn) {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        z-index: 2100;
        width: 32px;
        height: 32px;
        background: transparent !important;
        border: none !important;
        outline: none !important;
        box-shadow: none !important;
        padding: 0;
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
        transition: all 0.3s ease;
    }

    .mobile-menu-btn.active {
        
        z-index: 4000;
    }

    .mobile-menu-btn span {
        display: block;
        height: 2px;
        width: 20px;
        background: #fff;
        transition: 0.35s ease;
    }

    /* Animation for hamburger to X */
    .mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 5px);
}

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .product-info {
        padding: 0.8rem;
        gap: 0.2rem;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .product-card {
        margin-bottom: 0;
        display: flex;
        flex-direction: column;
        height: 100%;
        background: #fff;
    }

    .product-card {
        display: flex !important;
        flex-direction: column !important;
        height: 100% !important;
    }

    .product-info {
        flex-grow: 1 !important;
        display: flex !important;
        flex-direction: column !important;
    }

    .product-card .btn {
        margin-top: auto !important;
        width: 100% !important;
        padding: 0.7rem !important;
        font-size: 0.82rem !important;
        align-self: stretch !important;
        display: block !important;
        text-align: center !important;
    }

    body {
        padding-top: 63px !important;
    }

    .hero {
        margin-top: -70px !important;
        min-height: 320px !important;
        padding-top: calc(70px + 2.5rem) !important;
        padding-bottom: 2.5rem;
    }

    .hero-content {
        padding: 0.25rem 0;
    }

    .hero-title {
        font-size: 1.9rem;
        margin-bottom: 0.9rem;
    }

    .hero-subtitle {
        font-size: 0.98rem;
        margin-bottom: 1.2rem;
    }

    .hero-background-img {
        min-height: 300px;
        object-position: center top;
    }

    .features-grid,
    .blog-grid,
    .footer-grid {
        gap: 1rem;
    }

    .products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 15px;
        align-items: stretch;
    }

    .feature-card,
    .product-card,
    .blog-card {
        border-radius: 22px;
    }

    .category-grid {
        gap: 0.85rem;
    }

    .category-card {
        min-height: 250px;
        padding: 0.9rem 0.65rem 1rem;
    }

    .category-card img {
        height: 150px;
    }

    .category-overlay {
        padding-top: 1rem;
    }

    .category-overlay h3 {
        margin-bottom: 0.65rem;
    }

    .category-overlay .btn {
        min-width: 108px;
        padding: 0.72rem 1rem;
        font-size: 0.82rem;
    }

    .product-image {
        aspect-ratio: 1 / 1;
    }

    .blog-image {
        height: 260px;
        min-height: 260px;
    }

    .brand-image {
        height: 340px;
        object-position: center;
    }

    .product-info h3,
    .blog-content h3 {
        font-size: 1.02rem;
    }

    /* Consolidated product-info handled above */

    .product-material {
        font-size: 0.8rem;
        margin-bottom: 0.55rem;
    }

    .product-price {
        gap: 0.35rem;
        margin-bottom: 0.75rem;
    }

    .product-card .btn {
        width: 100%;
        min-height: 42px;
        padding: 0.75rem 0.8rem;
        font-size: 0.8rem;
    }

    .price {
        font-size: 1.18rem;
    }

    .promo-content h2,
    .newsletter-content h2,
    .spotlight-copy .section-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    :root {
        --content-gutter: 18px;
    }

    section {
        padding: 3rem 0;
    }

    .navbar-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 0 var(--content-gutter);
    }

    .navbar {
        margin-top: 0 !important;
        padding: 0.15rem 0 !important;
    }

    .logo-image {
        height: 48px !important;
    }

    .navbar-right {
        gap: 0.4rem !important;
    }

    .navbar-right .icon-btn {
        width: 30px !important;
        height: 30px !important;
    }

    .navbar-right .icon-btn svg {
        width: 17px !important;
        height: 17px !important;
    }

    .mobile-menu-btn {
        width: 30px !important;
        height: 30px !important;
        margin-left: 0.15rem !important;
        gap: 4px !important;
    }

    .mobile-menu-btn span {
        width: 18px !important;
    }

    .cart-count,
    .wishlist-count {
        width: 15px !important;
        height: 15px !important;
        font-size: 0.6rem !important;
        top: -4px !important;
        right: -3px !important;
    }

    .hero {
        padding: 4.5rem var(--content-gutter) 3.5rem;
    }

    .hero-title {
        font-size: 1.85rem;
        margin-top: 1rem;
    }

    .hero-overlay {
        background: linear-gradient(180deg, rgba(36, 17, 28, 0.9) 0%, rgba(36, 17, 28, 0.45) 50%, rgba(36, 17, 28, 0.9) 100%);
        display: block !important;
        position: absolute;
        inset: 0;
        z-index: 1;
    }

    .logo-text-wrap {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        margin-top: -6px !important;
    }

    .logo-tagline {
        display: block !important;
        color: var(--bg-gold) !important;
        font-size: 0.40rem;
        margin-top: 2px !important;
        margin-bottom: 2px !important;
        white-space: nowrap;
        text-align: center;
    }

    .btn {
        padding: 0.85rem 1.25rem;
    }

    .category-card {
        border-radius: 24px;
        min-height: 248px;
    }

    .category-card img {
        height: 156px;
    }

    .category-overlay h3 {
        font-size: 1rem;
    }

    .products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .product-image {
        aspect-ratio: 1 / 1;
    }

    .blog-image {
        height: 230px;
        min-height: 230px;
    }

    .brand-image {
        height: 300px;
        object-position: center;
    }

    .feature-card {
        padding: 1.4rem 1rem;
    }

    .feature-icon {
        width: 58px;
        height: 58px;
        margin-bottom: 1rem;
    }

    .product-info,
    .blog-content {
        padding: 1rem;
    }

    .section-intro {
        margin-bottom: 2rem;
    }

    .product-info h3 {
        font-size: 0.96rem;
        margin-bottom: 0.25rem;
    }

    .price {
        font-size: 1.02rem;
    }

    .original-price {
        font-size: 0.78rem;
    }

    .newsletter {
        padding: 2rem 1rem;
    }

    .newsletter-content p,
    .promo-content p,
    .brand-content p {
        font-size: 0.96rem;
    }

    .promo-banner {
        padding: 2rem 1rem;
    }
}

@media (max-width: 380px) {
    .logo-text {
        font-size: 0.98rem;
        letter-spacing: 0.06em;
    }

    .logo-image {
        height: 42px !important;
    }

    .navbar-right {
        gap: 0.3rem !important;
    }

    .icon-btn,
    .mobile-menu-btn {
        width: 28px !important;
        height: 28px !important;
    }

    .navbar-right .icon-btn svg {
        width: 15px !important;
        height: 15px !important;
    }

    .mobile-menu-btn {
        gap: 3px !important;
        margin-left: 0.1rem !important;
    }

    .mobile-menu-btn span {
        width: 15px !important;
    }

    .cart-count,
    .wishlist-count {
        width: 13px !important;
        height: 13px !important;
        font-size: 0.55rem !important;
        top: -4px !important;
        right: -3px !important;
    }

    .hero-title {
        font-size: 1.55rem;
    }

    .category-grid {
        grid-template-columns: 1fr 1fr;
    }

    .category-card {
        min-height: 196px;
        padding: 0.8rem 0.55rem 0.95rem;
    }

    .category-card img {
        width: min(34vw, 118px);
        height: min(34vw, 118px);
    }

    .category-overlay .btn {
        min-width: 96px;
        font-size: 0.78rem;
    }
}

/* --- PREMIUM PRODUCT CARD STYLES (NAYE LEITHE STYLE) --- */
.product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    height: auto;
}

.product-card:hover {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.product-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 4/5;
    overflow: hidden;
    background: var(--bg-main, #f8f5f1);
}

.product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.product-card:hover .product-img-wrap img {
    transform: scale(1.08);
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--gold-primary, #b88a44);
    color: #fff;
    padding: 4px 10px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    letter-spacing: 0.05em;
    z-index: 2;
}

.product-wishlist {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: transform 0.2s ease;
}

.product-wishlist:hover {
    transform: scale(1.15);
}

.product-wishlist.active {
    background: none;
    box-shadow: none;
}

.product-wishlist .filled-heart {
    display: none;
}

.product-wishlist .outline-heart {
    display: block;
}

.product-wishlist.active .filled-heart {
    display: block !important;
}

.product-wishlist.active .outline-heart {
    display: none !important;
}

.icon-wishlist {
    width: 24px;
    height: 24px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* Hide the mobile overlay text by default to fix the text flow issue */
.na-mobile-overlay {
    display: none;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: #fff;
    z-index: 2;
}

.na-mobile-name {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.na-mobile-price {
    font-size: 0.85rem;
}

.product-info {
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-category {
    font-size: 0.75rem;
    color: var(--text-soft, #7d6b61);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.5rem;
}

.product-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary, #241914);
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.product-prices {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 1.2rem;
    margin-top: auto;
}

.product-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary, #241914);
}

.product-price-original {
    font-size: 0.9rem;
    color: var(--text-soft, #7d6b61);
    text-decoration: line-through;
}

.product-add-btn {
    width: 100%;
    padding: 0.85rem;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-accent)) !important;
    color: #fff !important;
    border: 1px solid transparent !important;
    box-shadow: 0 8px 16px rgba(184, 138, 68, 0.2) !important;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 999px;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition) !important;
}

.product-add-btn:hover {
    background: linear-gradient(135deg, var(--gold-accent), var(--gold-primary)) !important;
    color: #fff !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 12px 20px rgba(184, 138, 68, 0.25) !important;
}

.product-buy-now-btn {
    width: 100%;
    padding: 0.85rem;
    background: var(--crimson-dark);
    color: #fff;
    border: none;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 999px;
    cursor: pointer;
    margin-top: 0.5rem;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-buy-now-btn:hover {
    background: #5a2745;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(62, 27, 47, 0.3);
}

.product-buy-now-btn:disabled {
    opacity: 0.65;
    cursor: not-allowed;
    transform: none;
}

/* Card Mobile styling */
@media (max-width: 768px) {
    .product-info {
        padding: 0.6rem;
        gap: 0.15rem;
    }

    .product-category {
        font-size: 0.65rem;
        margin-bottom: 0.2rem;
    }

    .product-name {
        font-size: 0.85rem;
        margin-bottom: 0.4rem;
        line-height: 1.2;
    }

    .product-prices {
        margin-bottom: 0.6rem;
        gap: 5px;
    }

    .product-price {
        font-size: 0.95rem;
    }

    .product-price-original {
        font-size: 0.75rem;
    }

    .product-add-btn {
        padding: 0.7rem;
        font-size: 0.82rem;
        background: linear-gradient(135deg, var(--gold-primary), var(--gold-accent)) !important;
        color: #fff !important;
        border-radius: 999px;
        margin-top: auto !important;
        width: 100% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        border: 1px solid transparent !important;
    }

    .product-buy-now-btn {
        padding: 0.7rem;
        font-size: 0.82rem;
        width: 100%;
        margin-top: 0.4rem;
    }
}

/* Uncomment if you want overlay active on mobile */
@media (max-width: 768px) {
    body.menu-open::after {
        content: "";
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(4px);
        z-index: 1500;
        animation: fadeIn 0.3s ease;
        pointer-events: none;
    }

    body.menu-open .navbar {
        z-index: 2500;
    }

    body > .nav-links.show {
        z-index: 9999 !important;
        position: fixed !important;
        top: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 75% !important;
        max-width: 320px !important;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* ==================== FAQ SECTION ==================== */
.faq-section {
    padding: var(--section-space) 0;
    background: var(--bg-main);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition);
}

.faq-item:hover {
    border-color: var(--gold-soft);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
}

.faq-icon {
    font-size: 1.4rem;
    color: var(--gold-primary);
    transition: transform var(--transition);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 2rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 1.5rem;
}

/* ==================== TESTIMONIALS SECTION ==================== */
.testimonials-section {
    padding: var(--section-space) 0;
    background: linear-gradient(180deg, var(--bg-gold), var(--bg-cream));
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    position: relative;
    transition: transform var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-10px);
}

.quote-icon {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2.5rem;
    color: var(--gold-soft);
    opacity: 0.4;
}

.testimonial-rating {
    margin-bottom: 1rem;
    color: var(--gold-primary);
    font-size: 0.9rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-info h4 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.author-info p {
    font-size: 0.8rem;
    color: var(--text-soft);
}

/* ==================== RESPONSIVE MAGNIFICATION ==================== */
@media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .testimonials-grid {
        display: flex !important;
        flex-direction: row !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        scroll-behavior: smooth !important;
        gap: 1.5rem !important;
        padding: 1.5rem 1.5rem !important;
        margin: 0 -1.5rem !important;
        scrollbar-width: none !important;
    }

    .testimonials-grid::-webkit-scrollbar {
        display: none !important;
    }

    .testimonial-card {
        flex: 0 0 82% !important;
        scroll-snap-align: center !important;
        margin-bottom: 0.5rem !important;
        box-shadow: 0 8px 24px rgba(62, 27, 47, 0.08) !important;
    }

    .faq-question {
        padding: 1.25rem 1.5rem;
        font-size: 1.1rem;
    }

    .faq-answer {
        padding: 0 1.5rem;
    }
}

/* --- PRODUCT DETAIL PAGE REDESIGN (Luvtale Style) --- */
.product-detail-page {
    padding-top: 2rem;
    background: #fff;
    margin-bottom: 4rem;
}

.detail-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    grid-template-rows: auto 1fr;
    gap: 0.75rem 4rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
}

/* Desktop explicit placement — breadcrumb above gallery (left), info spans full right */
.product-meta-top {
    grid-column: 1;
    grid-row: 1;
}

.product-gallery {
    grid-column: 1;
    grid-row: 2;
}

.product-info-sect {
    grid-column: 2;
    grid-row: 1 / 3;
}

/* Gallery Styles */
.product-gallery {
    display: flex;
    flex-direction: row-reverse;
    gap: 1.5rem;
    position: sticky;
    top: 90px;
    align-self: start;
    align-items: flex-start;
    margin-top: -3.2rem;
}

.main-img {
    flex-grow: 1;
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    position: relative;
    max-height: 480px;
    border: 1px solid rgba(94, 43, 72, 0.1);
    box-shadow: var(--shadow-soft);
}

.main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.main-img:hover img {
    transform: scale(1.05);
}

.gallery-thumbnails {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    overflow-y: auto;
    max-height: 480px;
    scrollbar-width: thin;
    flex-shrink: 0;
}

.thumb {
    width: 75px;
    height: 75px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s;
    flex-shrink: 0;
    opacity: 0.7;
}

.thumb.active {
    border-color: var(--gold-primary, #b88a44);
    opacity: 1;
}

.thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Info Styles */
.product-info-sect {
    padding-top: 1rem;
    position: sticky;
    top: 100px;
    height: fit-content;
}

.detail-cat {
    font-size: 0.85rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
    font-weight: 500;
}

.product-info-sect h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 500;
    margin-bottom: 1.2rem;
    color: #241914;
    line-height: 1.2;
}

.detail-price-row {
    display: flex;
    align-items: baseline;
    gap: 1.2rem;
    margin-bottom: 2.5rem;
}

.current-price {
    font-size: 1.75rem;
    font-weight: 600;
    color: #241914;
}

.orig-price {
    text-decoration: line-through;
    color: #b0b0b0;
    font-size: 1.2rem;
}

.discount-tag {
    background: #f9f1e7;
    color: #b88a44;
    padding: 3px 10px;
    font-size: 0.8rem;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
}

.stock-status-detail {
    margin-bottom: 2rem;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.stock-status-detail.instock {
    color: #2e7d32;
}

.stock-status-detail.outofstock {
    color: #d32f2f;
}

.description {
    line-height: 1.8;
    color: #555;
    margin-bottom: 3rem;
    font-size: 1.05rem;
}

.variant-sect {
    margin-bottom: 2.5rem;
}

.variant-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.variant-header h4 {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #241914;
    font-weight: 600;
}

.selector-group {
    display: flex;
    gap: 0.85rem;
    flex-wrap: wrap;
}

.attr-btn {
    border: 1px solid #e0e0e0;
    background: #fff;
    padding: 0.85rem 1.8rem;
    border-radius: 0;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s;
    min-width: 80px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: inherit;
}

.attr-btn:hover {
    border-color: #241914;
}

.attr-btn.active {
    border-color: #241914;
    background: #241914;
    color: #fff;
}

.color-options .attr-btn {
    padding: 6px 12px;
    border-radius: 30px;
}

.action-btns {
    display: flex;
    gap: 1rem;
    margin-top: 4rem;
}

.add-to-cart {
    flex: 1;
    background: #241914;
    color: #fff;
    border: none;
    padding: 1.4rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1rem;
}

.add-to-cart:hover {
    background: #402d24;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(36, 25, 20, 0.2);
}

.wishlist-btn-large {
    width: 65px;
    background: #fff;
    border: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.wishlist-btn-large:hover {
    border-color: #241914;
    background: #f9f9f9;
}

.wishlist-btn-large.active img {
    filter: none;
}

/* Accordion for Details */
.product-details-accordion {
    margin-top: 4rem;
    border-top: 1px solid #eee;
}

.accordion-item {
    border-bottom: 1px solid #eee;
}

.accordion-header {
    width: 100%;
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    text-align: left;
    color: #241914;
    font-family: inherit;
}

.accordion-icon {
    font-size: 0.8rem;
    transition: transform 0.3s;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

.accordion-item.active .accordion-content {
    max-height: 800px;
    padding-bottom: 2rem;
}

.detail-list {
    list-style: none;
    padding: 0;
}

.detail-list li {
    margin-bottom: 0.5rem;
    display: flex;
    gap: 10px;
}

.detail-list li strong {
    min-width: 120px;
    color: #241914;
}

/* Trust Points */
.trust-points-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    padding: 3rem 0;
    border-top: 1px solid #eee;
    text-align: center;
}

.trust-point-item i {
    font-size: 1.5rem;
    color: #b88a44;
    margin-bottom: 1rem;
    display: block;
}

.trust-point-item span {
    font-size: 0.9rem;
    font-weight: 500;
    color: #241914;
}

/* Related Products */
.related-products {
    padding: 6rem 4rem;
    background: #fdfaf7;
}

.related-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 3.5rem;
    color: #241914;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Mobile Adjustments */
@media (max-width: 1200px) {
    .detail-container {
        gap: 3rem;
        padding: 0 2rem;
    }

    .related-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1024px) {
    .detail-container {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 1.5rem;
    }

    /* Mobile order: breadcrumb/stock → gallery → info */
    .product-meta-top { grid-column: 1; grid-row: 1; }
    .product-gallery  { grid-column: 1; grid-row: 2; }
    .product-info-sect { grid-column: 1; grid-row: 3; }

    .related-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .product-gallery {
        max-width: 700px;
        margin: 0 auto;
        width: 100%;
        flex-direction: column !important;
        position: static !important;
    }

    .gallery-thumbnails {
        flex-direction: row !important;
        max-height: none !important;
        overflow-x: auto !important;
        overflow-y: visible !important;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 0.6rem !important;
    }

    .gallery-thumbnails::-webkit-scrollbar {
        display: none;
    }

    .gallery-thumbnails .thumb {
        scroll-snap-align: start;
        flex: 0 0 64px;
        width: 64px;
        height: 64px;
    }

    .product-info-sect {
        position: static;
        padding-top: 0;
    }

    .product-info-sect h1 {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    .product-detail-page {
        padding-top: 1rem;
        padding-bottom: 120px;
    }

    .detail-container {
        padding: 1rem 1.5rem;
        gap: 0;
    }

    .main-img {
        border-radius: 0;
    }

    .product-gallery {
        gap: 0;
        margin-bottom: 0;
    }

    .gallery-thumbnails {
        padding: 0.5rem 0;
        background: transparent;
        margin-bottom: 0;
    }

    .product-info-sect {
        padding: 0 1.5rem 2rem 1.5rem;
        margin-top: 0;
    }

    .product-info-sect h1 {
        font-size: 2rem;
    }

    .action-btns {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: #fff;
        padding: 1rem 1.25rem;
        box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.08);
        z-index: 1000;
        margin-top: 0;
        gap: 0.75rem;
    }

    .add-to-cart {
        padding: 1.1rem;
    }

    .wishlist-btn-large {
        width: 55px;
    }

    .related-products {
        padding: 4rem 1.5rem;
    }

    .related-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .trust-points-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 2rem 1.5rem;
    }
}

/* ALTERNATING HOME PAGE SHADES & FULL-WIDTH SPOTLIGHT */
.purple-section {
    background: #3e1b2f !important;
    color: #ffffff !important;
    padding: clamp(2.5rem, 5vw, 4rem) 0 !important;
}

.purple-section .section-title {
    color: #ffffff !important;
}

.purple-section .eyebrow {
    color: var(--gold-accent) !important;
}

.purple-section .section-intro,
.purple-section .testimonial-text,
.purple-section p {
    color: rgba(255, 255, 255, 0.7) !important;
}

.purple-section .btn-primary {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-accent)) !important;
    color: #ffffff !important;
    border-color: transparent !important;
}

.purple-section .btn-primary:hover {
    background: linear-gradient(135deg, var(--gold-accent), var(--gold-primary)) !important;
    box-shadow: 0 10px 20px rgba(184, 138, 68, 0.22) !important;
}

.purple-section .product-card {
    background: #ffffff !important;
    color: var(--text-primary) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.purple-section .product-card .product-title {
    color: var(--text-primary) !important;
}

.purple-section .product-card .price {
    color: var(--text-primary) !important;
}

.purple-section .product-card p {
    color: var(--text-secondary) !important;
}

.light-section {
    background: #fdfaf7 !important;
    color: var(--text-primary) !important;
    padding: clamp(2.5rem, 5vw, 4rem) 0 !important;
}

.light-section .section-title {
    color: var(--text-primary) !important;
}

.light-section .eyebrow {
    color: var(--gold-primary) !important;
}

.light-section p {
    color: var(--text-secondary) !important;
}

.spotlight-banner {
    width: 100% !important;
    max-width: none !important;
    margin: 0 auto !important;
    padding: 6rem 4rem !important;
    background: linear-gradient(135deg, #3e1b2f 0%, #5e2b48 100%) !important;
    border-radius: 0 !important;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: none !important;
}

.spotlight-content-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    width: 100%;
}

@media (max-width: 768px) {
    .spotlight-banner {
        padding: 4rem 1.5rem !important;
    }
}

/* REUSABLE PAGE HERO BANNER */
.page-hero {
    position: relative;
    min-height: 48vh;
    background-image: url('../images/hero_premium.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem var(--content-gutter);
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(180deg, rgba(62, 27, 47, 0.5) 0%, transparent 40%, rgba(62, 27, 47, 0.8) 100%),
        radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 860px;
    color: #fffaf4;
}

.page-hero .header-tag {
    color: var(--gold-accent);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: block;
    font-size: 0.9rem;
}

.page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 4.2rem) !important;
    margin-bottom: 1.5rem;
    color: inherit !important;
    line-height: 1.2;
}

.page-hero p {
    font-size: clamp(1.1rem, 1.8vw, 1.25rem);
    opacity: 0.95;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
    color: inherit !important;
}

@media (max-width: 480px) {
    .page-hero {
        min-height: 32vh;
        padding: 2.5rem 1rem;
    }
}

/* ==================== NAVBAR SEARCH INLINE ==================== */
.navbar-center {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.navbar-search-inline {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 48px;
    background: var(--crimson-dark);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    opacity: 0;
    pointer-events: none;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
    z-index: 100;
    overflow: hidden;
}

.navbar-search-inline.active {
    width: 100%;
    opacity: 1;
    pointer-events: auto;
}

.search-inline-form {
    width: 100%;
    display: flex;
    align-items: center;
    position: relative;
    border-bottom: 2px solid var(--gold-primary);
    padding: 0.3rem 0.5rem;
}

.search-inline-icon {
    color: var(--gold-primary);
    font-size: 1.2rem;
    margin-right: 0.8rem;
    flex-shrink: 0;
}

.search-inline-input {
    flex: 1;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: transparent !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    color: #ffffff !important;
    font-family: var(--font-primary);
    font-size: 1.1rem;
    padding: 0.25rem 0;
    min-width: 0;
}

.search-inline-input::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.search-inline-input::-webkit-search-cancel-button {
    display: none;
}

.search-inline-close {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: transparent !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    color: rgba(255, 255, 255, 0.75) !important;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.5rem;
    margin-left: 0.5rem;
    transition: color 0.2s ease, transform 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.search-inline-close:hover {
    color: var(--gold-primary) !important;
    transform: rotate(90deg);
}

@media (max-width: 1024px) {
    .navbar-center {
        display: flex !important;
        position: absolute !important;
        left: 200px !important;
        right: 15px !important;
        top: 0;
        bottom: 0;
        align-items: center;
        justify-content: flex-end;
        pointer-events: none;
        z-index: 2200;
    }

    .navbar-search-inline {
        height: 40px;
        pointer-events: auto;
    }

    .search-inline-input {
        font-size: 1rem;
    }
}

@media (max-width: 640px) {
    .navbar-center {
        left: 180px !important;
        right: 15px !important;
    }
}

/* Responsive Submenu for mobile/tablet */
@media (max-width: 1024px) {
    .dropdown-menu {
        position: static !important;
        opacity: 0 !important;
        visibility: hidden !important;
        max-height: 0;
        overflow: hidden;
        width: 100% !important;
        min-width: 0 !important;
        border: none !important;
        background: rgba(0, 0, 0, 0.2) !important;
        box-shadow: none !important;
        transform: none !important;
        padding: 0 !important;
        margin-top: 0.5rem;
        border-radius: 12px !important;
        transition: max-height 0.35s ease, opacity 0.35s ease !important;
        display: flex !important;
        flex-direction: column !important;
    }

    .dropdown-trigger.active .dropdown-menu {
        opacity: 1 !important;
        visibility: visible !important;
        max-height: 500px !important;
        padding: 0.5rem 0 !important;
    }

    .dropdown-item-with-submenu {
        position: relative !important;
    }

    .dropdown-item {
        width: 100% !important;
        text-align: center !important;
        padding: 0.8rem 1.5rem !important;
    }

    .dropdown-item-with-submenu .submenu,
    .dropdown-item-with-submenu.active .submenu {
        display: none !important;
    }

    .dropdown-item-with-submenu > a i {
        display: none !important;
    }
}