:root {
    --rose: #c9826d;
    --rose-dark: #9b5949;
    --blush: #fff5f1;
    --ivory: #fffaf7;
    --dark: #251815;
    --muted: #796661;
    --line: #eedbd3;
    --white: #ffffff;
    --shadow: 0 18px 50px rgba(84, 39, 28, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, Arial, sans-serif;
    color: var(--dark);
    background: var(--ivory);
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.top-strip {
    background: var(--dark);
    color: #ffffff;
    text-align: center;
    padding: 8px 12px;
    font-size: 13px;
    font-weight: 600;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 14px 6%;
    background: rgba(255, 250, 247, 0.96);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 170px;
}

.brand-logo-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 170px;
    min-width: 170px;
    height: 74px;
    overflow: hidden;
}

.header-logo {
    width: auto !important;
    height: 64px !important;
    max-width: 160px !important;
    object-fit: contain !important;
    display: block;
}

.brand-mark {
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--rose);
    border-radius: 50%;
    font-family: "Playfair Display", serif;
    color: var(--rose-dark);
    font-size: 20px;
}

.brand-mark.large {
    width: 70px;
    height: 70px;
    font-size: 30px;
    margin: auto;
}

.brand small {
    display: block;
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 0.8px;
}

.search {
    flex: 1;
}

.search input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #ffffff;
    outline: none;
}

.search input:focus {
    border-color: var(--rose);
}

.nav {
    display: flex;
    align-items: center;
    gap: 16px;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
}

.nav a:hover {
    color: var(--rose-dark);
}

main {
    min-height: 70vh;
}

/* Hero */
.hero {
    display: grid;
    grid-template-columns: 1.16fr 0.84fr;
    gap: 40px;
    padding: 62px 6%;
    align-items: center;
    background: radial-gradient(circle at 80% 20%, #f7cfc1 0, #fff5f1 35%, #fffaf7 70%);
}

.eyebrow {
    font-size: 13px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--rose-dark);
    font-weight: 700;
}

.hero h1,
.section-title h2,
.page-head h1 {
    font-family: "Playfair Display", serif;
    line-height: 1.06;
}

.hero h1 {
    font-size: 64px;
    margin: 12px 0 18px;
}

.hero p {
    font-size: 18px;
    color: var(--muted);
    max-width: 620px;
}

.hero-actions,
.cart-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 12px 22px;
    font-weight: 700;
    border: 1px solid transparent;
    cursor: pointer;
}

.btn.primary {
    background: var(--dark);
    color: #ffffff;
}

.btn.secondary {
    background: #ffffff;
    color: var(--dark);
    border-color: var(--rose);
}

.btn.light {
    background: #ffffff;
    color: var(--rose-dark);
}

/* Logo card - works for both old and new class names */
.hero-card,
.logo-card,
.hero-logo-card {
    width: 100%;
    max-width: 420px;
    height: 360px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 34px;
    background: #ffffff;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    overflow: hidden;
    text-align: center;
    position: relative;
}

.hero-card::before,
.logo-card::before,
.hero-logo-card::before {
    display: none !important;
}

.hero-main-logo,
.hero-logo-img {
    width: 100% !important;
    max-width: 380px !important;
    height: auto !important;
    max-height: 320px !important;
    object-fit: contain !important;
    display: block !important;
    margin: 0 auto !important;
    border-radius: 22px;
}

/* Sections */
.section {
    padding: 58px 6%;
}

.section.narrow {
    max-width: 960px;
    margin: auto;
}

.soft-bg {
    background: #ffffff;
}

.section-title {
    text-align: center;
    margin-bottom: 30px;
}

.section-title h2 {
    font-size: 38px;
    margin: 6px 0 0;
}

.row-title {
    display: flex;
    justify-content: space-between;
    align-items: end;
    text-align: left;
    gap: 16px;
}

.category-grid,
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-grid {
    grid-template-columns: repeat(4, 1fr);
}

.category-card,
.feature-grid > div,
.content-card,
.form-card,
.empty-card,
.success-card,
.detail-box {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 26px;
    box-shadow: 0 8px 25px rgba(84, 39, 28, 0.06);
}

.category-card strong,
.feature-grid strong {
    font-size: 20px;
}

.category-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.product-card {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(84, 39, 28, 0.06);
    transition: 0.2s;
}

.product-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background: var(--blush);
}

.product-card a {
    display: block;
}

.product-card span {
    display: block;
    color: var(--rose-dark);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 18px 18px 0;
}

.product-card h3 {
    margin: 6px 18px;
}

.price {
    margin: 8px 18px 22px;
    color: var(--rose-dark);
    font-weight: 800;
}

.price.big {
    font-size: 28px;
    margin: 8px 0;
}

.mrp {
    color: var(--muted);
}

.wholesale-band {
    margin: 30px 6%;
    padding: 42px;
    border-radius: 28px;
    background: linear-gradient(135deg, var(--dark), #6d3d34);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.wholesale-band p {
    color: #f5ddd5;
}

.page-head {
    text-align: center;
    padding: 58px 6% 38px;
    background: var(--blush);
}

.page-head h1 {
    font-size: 44px;
    margin: 0 0 10px;
}

.page-head p {
    color: var(--muted);
    margin: 0;
}

/* Shop */
.shop-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 28px;
    padding: 44px 6%;
}

.filters {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 20px;
    height: max-content;
    position: sticky;
    top: 100px;
}

.filters a {
    display: block;
    padding: 10px 12px;
    border-radius: 12px;
    color: var(--muted);
    font-weight: 600;
}

.filters a.active,
.filters a:hover {
    background: var(--blush);
    color: var(--rose-dark);
}

.result-bar {
    display: flex;
    justify-content: space-between;
    margin-bottom: 18px;
    color: var(--muted);
    gap: 14px;
}

/* Product detail */
.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 42px;
    padding: 58px 6%;
    align-items: start;
}

.product-image {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 28px;
    padding: 18px;
}

.product-image img {
    width: 100%;
    border-radius: 22px;
    max-height: 620px;
    object-fit: cover;
}

.product-info h1 {
    font-family: "Playfair Display", serif;
    font-size: 48px;
    margin: 8px 0;
}

.buy-form {
    display: flex;
    align-items: end;
    gap: 14px;
    margin: 24px 0;
}

.buy-form input {
    width: 110px;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

label {
    display: block;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 14px;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 12px 14px;
    font: inherit;
    margin-top: 7px;
    background: #ffffff;
}

textarea {
    min-height: 110px;
}

.wholesale-page,
.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 28px;
}

.check-list {
    padding-left: 20px;
}

.alert {
    padding: 12px 14px;
    border-radius: 12px;
    margin-bottom: 14px;
    font-weight: 700;
}

.alert.success {
    background: #e9f9ef;
    color: #186b37;
}

.alert.error {
    background: #fff0ef;
    color: #9c2b22;
}

/* Cart */
.cart-list {
    display: grid;
    gap: 14px;
}

.cart-row {
    display: grid;
    grid-template-columns: 80px 1fr 110px 120px 80px;
    align-items: center;
    gap: 16px;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 12px;
}

.cart-row img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 14px;
}

.cart-row span {
    display: block;
    color: var(--muted);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 22px;
    padding: 22px 0;
    border-top: 1px solid var(--line);
    margin-top: 20px;
}

.link-button {
    border: 0;
    background: transparent;
    color: var(--rose-dark);
    cursor: pointer;
    font-weight: 700;
}

/* Footer */
.footer {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 28px;
    background: var(--dark);
    color: #ffffff;
    padding: 44px 6%;
    margin-top: 40px;
}

.footer p,
.footer a {
    display: block;
    color: #e8d4ce;
    margin: 8px 0;
}

.footer h3,
.footer h4 {
    margin-top: 0;
}

/* Admin */
.admin-login-body {
    min-height: 100vh;
    display: grid;
    place-items: center;
    background: var(--blush);
}

.admin-login-card {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 26px;
    padding: 34px;
    width: min(420px, 92vw);
    box-shadow: var(--shadow);
    text-align: center;
}

.admin-body {
    display: grid;
    grid-template-columns: 260px 1fr;
    background: #f8f4f1;
}

.admin-sidebar {
    min-height: 100vh;
    background: var(--dark);
    color: #ffffff;
    padding: 22px;
    position: sticky;
    top: 0;
}

.admin-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
}

.admin-sidebar nav a {
    display: block;
    padding: 12px 14px;
    border-radius: 12px;
    color: #f4dfd7;
    margin-bottom: 6px;
}

.admin-sidebar nav a:hover {
    background: rgba(255, 255, 255, 0.1);
}

.admin-main {
    padding: 24px;
}

.admin-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 22px;
    gap: 16px;
}

.admin-top h1 {
    margin: 0;
}

.admin-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 22px;
}

.admin-cards div,
.admin-panel {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 22px;
    box-shadow: 0 8px 25px rgba(84, 39, 28, 0.06);
}

.admin-cards span {
    display: block;
    color: var(--muted);
}

.admin-cards strong {
    font-size: 28px;
}

.panel-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    gap: 14px;
}

.table-wrap {
    overflow: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
}

th,
td {
    padding: 12px;
    border-bottom: 1px solid var(--line);
    text-align: left;
    vertical-align: top;
}

th {
    font-size: 13px;
    color: var(--muted);
    text-transform: uppercase;
}

.message-row td {
    background: #fff9f6;
    color: var(--muted);
}

.form-card.flat {
    box-shadow: none;
}

.muted {
    color: var(--muted);
    font-size: 13px;
}

/* Tablet */
@media (max-width: 980px) {
    .site-header {
        flex-wrap: wrap;
        gap: 14px;
        padding: 12px 5%;
    }

    .brand,
    .brand-logo-wrap {
        width: auto;
        min-width: 130px;
        max-width: 150px;
        height: 62px;
    }

    .header-logo {
        height: 54px !important;
        max-width: 140px !important;
    }

    .search {
        flex: 1 1 calc(100% - 170px);
    }

    .nav {
        width: 100%;
        overflow-x: auto;
        gap: 18px;
        padding: 4px 0 2px;
        scrollbar-width: none;
    }

    .nav::-webkit-scrollbar {
        display: none;
    }

    .hero,
    .product-detail,
    .wholesale-page,
    .contact-grid,
    .shop-layout {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 48px 5%;
        text-align: center;
        gap: 30px;
    }

    .hero p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero h1 {
        font-size: 48px;
    }

    .hero-card,
    .logo-card,
    .hero-logo-card {
        max-width: 390px;
        height: 330px;
    }

    .hero-main-logo,
    .hero-logo-img {
        max-width: 350px !important;
        max-height: 290px !important;
    }

    .product-grid,
    .category-grid,
    .feature-grid,
    .admin-cards,
    .footer {
        grid-template-columns: repeat(2, 1fr);
    }

    .admin-body {
        grid-template-columns: 1fr;
    }

    .admin-sidebar {
        min-height: auto;
        position: relative;
    }

    .cart-row {
        grid-template-columns: 70px 1fr;
    }

    .cart-row input,
    .cart-row div:last-of-type,
    .cart-row button {
        grid-column: 2;
    }

    .filters {
        position: static;
    }
}

/* Mobile */
@media (max-width: 640px) {
    .top-strip {
        font-size: 12px;
        padding: 7px 10px;
    }

    .site-header {
        display: grid;
        grid-template-columns: 86px 1fr;
        align-items: center;
        gap: 10px;
        padding: 10px 4%;
    }

    .brand,
    .brand-logo-wrap {
        width: 86px;
        min-width: 86px;
        max-width: 86px;
        height: 54px;
    }

    .header-logo {
        height: 50px !important;
        max-width: 82px !important;
    }

    .search {
        width: 100%;
        grid-column: 2;
    }

    .search input {
        padding: 10px 13px;
        font-size: 14px;
    }

    .nav {
        grid-column: 1 / -1;
        width: 100%;
        display: flex;
        gap: 16px;
        overflow-x: auto;
        font-size: 13px;
        padding: 6px 0 0;
    }

    .hero {
        padding: 34px 4%;
        gap: 24px;
    }

    .eyebrow {
        font-size: 11px;
        letter-spacing: 1.4px;
    }

    .hero h1 {
        font-size: 38px;
        margin: 10px 0 14px;
    }

    .hero p {
        font-size: 16px;
    }

    .hero-actions {
        margin-top: 22px;
    }

    .btn {
        width: 100%;
        padding: 12px 18px;
    }

    .hero-card,
    .logo-card,
    .hero-logo-card {
        max-width: 320px;
        height: 280px;
        border-radius: 26px;
        padding: 14px;
    }

    .hero-main-logo,
    .hero-logo-img {
        max-width: 290px !important;
        max-height: 245px !important;
        border-radius: 18px;
    }

    .section {
        padding: 42px 4%;
    }

    .section-title h2 {
        font-size: 30px;
    }

    .row-title {
        display: block;
        text-align: center;
    }

    .product-grid,
    .category-grid,
    .feature-grid,
    .footer,
    .grid-2 {
        grid-template-columns: 1fr;
    }

    .product-card img {
        height: 220px;
    }

    .wholesale-band {
        display: block;
        margin: 24px 4%;
        padding: 28px 22px;
        text-align: center;
    }

    .wholesale-band .btn {
        margin-top: 14px;
    }

    .page-head {
        padding: 42px 4% 30px;
    }

    .page-head h1 {
        font-size: 34px;
    }

    .shop-layout {
        padding: 34px 4%;
    }

    .result-bar {
        display: block;
    }

    .product-detail {
        padding: 40px 4%;
        gap: 24px;
    }

    .product-info h1 {
        font-size: 34px;
    }

    .buy-form {
        display: block;
    }

    .buy-form input {
        width: 100%;
    }

    .cart-row {
        grid-template-columns: 64px 1fr;
        gap: 12px;
    }

    .cart-row img {
        width: 64px;
        height: 64px;
    }

    .cart-total {
        font-size: 18px;
    }

    .footer {
        padding: 34px 4%;
    }

    .admin-main {
        padding: 16px;
    }

    .admin-top,
    .panel-head {
        display: block;
    }

    .admin-cards {
        grid-template-columns: 1fr;
    }

    th,
    td {
        padding: 10px;
        font-size: 13px;
    }
}

/* Very small mobile */
@media (max-width: 380px) {
    .hero h1 {
        font-size: 34px;
    }

    .hero-card,
    .logo-card,
    .hero-logo-card {
        max-width: 292px;
        height: 254px;
    }

    .hero-main-logo,
    .hero-logo-img {
        max-width: 265px !important;
        max-height: 225px !important;
    }

    .nav {
        font-size: 12px;
    }
}

/* FINAL HEADER + HERO LOGO FIX */
.site-header {
    min-height: 86px !important;
    max-height: none !important;
    display: flex !important;
    align-items: center !important;
    gap: 24px !important;
    padding: 12px 6% !important;
}

.brand-logo-wrap {
    width: 160px !important;
    min-width: 160px !important;
    max-width: 160px !important;
    height: 64px !important;
    overflow: hidden !important;
    display: flex !important;
    align-items: center !important;
}

.header-logo {
    height: 58px !important;
    width: auto !important;
    max-width: 150px !important;
    object-fit: contain !important;
    display: block !important;
}

.logo-card {
    width: 100% !important;
    max-width: 420px !important;
    height: 360px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    border-radius: 34px !important;
    background: #ffffff !important;
    box-shadow: var(--shadow) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 18px !important;
    overflow: hidden !important;
}

.logo-card::before {
    display: none !important;
}

.hero-main-logo {
    width: 100% !important;
    max-width: 380px !important;
    height: auto !important;
    max-height: 320px !important;
    object-fit: contain !important;
    display: block !important;
    margin: 0 auto !important;
    border-radius: 22px !important;
}

@media (max-width: 640px) {
    .site-header {
        display: grid !important;
        grid-template-columns: 90px 1fr !important;
        gap: 10px !important;
        padding: 10px 4% !important;
    }

    .brand-logo-wrap {
        width: 90px !important;
        min-width: 90px !important;
        max-width: 90px !important;
        height: 54px !important;
    }

    .brand-logo-wrap img {
        height: 50px !important;
        max-width: 86px !important;
    }

    .search {
        grid-column: 2 !important;
        width: 100% !important;
    }

    .nav {
        grid-column: 1 / -1 !important;
        width: 100% !important;
        overflow-x: auto !important;
        display: flex !important;
        gap: 16px !important;
        font-size: 13px !important;
        white-space: nowrap !important;
    }

    .hero {
        grid-template-columns: 1fr !important;
        padding: 34px 4% !important;
        text-align: center !important;
    }

    .hero-actions {
        justify-content: center !important;
    }

    .logo-card {
        max-width: 320px !important;
        height: 280px !important;
        border-radius: 26px !important;
        padding: 14px !important;
    }

    .hero-main-logo {
        max-width: 290px !important;
        max-height: 245px !important;
    }
}

/* Mobile hamburger menu */
.mobile-menu-btn {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #ffffff;
    color: var(--dark);
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}

@media (max-width: 640px) {
    .site-header {
        display: grid !important;
        grid-template-columns: 86px 1fr 42px !important;
        align-items: center !important;
        gap: 10px !important;
        padding: 10px 4% !important;
    }

    .brand-logo-wrap {
        grid-column: 1;
        width: 86px !important;
        min-width: 86px !important;
        max-width: 86px !important;
        height: 54px !important;
    }

    .brand-logo-wrap img {
        height: 50px !important;
        max-width: 82px !important;
        object-fit: contain !important;
    }

    .search {
        grid-column: 2;
        width: 100%;
    }

    .search input {
        height: 42px;
        padding: 9px 13px;
        font-size: 14px;
    }

    .mobile-menu-btn {
        display: flex;
        grid-column: 3;
        align-items: center;
        justify-content: center;
    }

    .mobile-nav {
        display: none !important;
        grid-column: 1 / -1;
        width: 100%;
        background: #ffffff;
        border: 1px solid var(--line);
        border-radius: 18px;
        padding: 10px;
        box-shadow: 0 12px 30px rgba(84, 39, 28, 0.08);
        overflow: visible !important;
        white-space: normal !important;
    }

    body.menu-open .mobile-nav {
        display: flex !important;
        flex-direction: column !important;
        gap: 0 !important;
    }

    .mobile-nav a {
        display: block;
        padding: 12px 14px;
        border-radius: 12px;
        font-size: 15px;
        font-weight: 700;
        border-bottom: 1px solid var(--line);
    }

    .mobile-nav a:last-child {
        border-bottom: 0;
    }

    .mobile-nav a:hover {
        background: var(--blush);
        color: var(--rose-dark);
    }
}

/* FINAL MOBILE MENU FIX */
.mobile-menu-btn {
    display: none;
}

@media (max-width: 640px) {
    .site-header {
        display: grid !important;
        grid-template-columns: 78px 1fr 42px !important;
        align-items: center !important;
        gap: 10px !important;
        padding: 10px 4% !important;
    }

    .brand-logo-wrap {
        grid-column: 1 !important;
        width: 78px !important;
        min-width: 78px !important;
        max-width: 78px !important;
        height: 54px !important;
        overflow: hidden !important;
    }

    .brand-logo-wrap img,
    .header-logo {
        height: 50px !important;
        width: auto !important;
        max-width: 74px !important;
        object-fit: contain !important;
    }

    .search {
        grid-column: 2 !important;
        width: 100% !important;
    }

    .search input {
        height: 42px !important;
        padding: 9px 12px !important;
        font-size: 14px !important;
    }

    .mobile-menu-btn {
        display: flex !important;
        grid-column: 3 !important;
        align-items: center !important;
        justify-content: center !important;
        width: 42px !important;
        height: 42px !important;
        border: 1px solid var(--line) !important;
        border-radius: 10px !important;
        background: #ffffff !important;
        color: var(--dark) !important;
        font-size: 22px !important;
        cursor: pointer !important;
    }

    .site-header .nav,
    .site-header .mobile-nav {
        display: none !important;
    }

    body.menu-open .site-header .mobile-nav {
        display: flex !important;
        grid-column: 1 / -1 !important;
        flex-direction: column !important;
        width: 100% !important;
        gap: 0 !important;
        margin-top: 8px !important;
        padding: 8px !important;
        background: #ffffff !important;
        border: 1px solid var(--line) !important;
        border-radius: 16px !important;
        box-shadow: 0 12px 30px rgba(84, 39, 28, 0.10) !important;
        overflow: visible !important;
        white-space: normal !important;
    }

    body.menu-open .site-header .mobile-nav a {
        display: block !important;
        width: 100% !important;
        padding: 12px 14px !important;
        border-radius: 10px !important;
        border-bottom: 1px solid var(--line) !important;
        font-size: 15px !important;
        font-weight: 700 !important;
    }

    body.menu-open .site-header .mobile-nav a:last-child {
        border-bottom: 0 !important;
    }

    body.menu-open .site-header .mobile-nav a:hover {
        background: var(--blush) !important;
        color: var(--rose-dark) !important;
    }
    
}


/* FINAL HEADER FIX - DO NOT REMOVE */

.brand-logo-bg {
    display: block !important;
    width: 120px !important;
    min-width: 120px !important;
    max-width: 120px !important;
    height: 66px !important;
    flex: 0 0 120px !important;
    background-repeat: no-repeat !important;
    background-position: left center !important;
    background-size: contain !important;
    overflow: hidden !important;
}

.mobile-menu-btn {
    display: none !important;
}

/* Desktop header */
@media (min-width: 769px) {
    .site-header {
        display: flex !important;
        align-items: center !important;
        gap: 24px !important;
        padding: 12px 6% !important;
        min-height: 88px !important;
        max-height: 88px !important;
        overflow: visible !important;
    }

    .search {
        flex: 1 !important;
        min-width: 220px !important;
    }

    .site-header .mobile-nav {
        display: flex !important;
        align-items: center !important;
        gap: 16px !important;
        width: auto !important;
        overflow: visible !important;
        white-space: nowrap !important;
        background: transparent !important;
        border: 0 !important;
        box-shadow: none !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .mobile-menu-btn {
        display: none !important;
    }
}

/* Mobile header */
@media (max-width: 768px) {
    .site-header {
        display: grid !important;
        grid-template-columns: 74px 1fr 42px !important;
        align-items: center !important;
        gap: 10px !important;
        padding: 10px 4% !important;
        min-height: auto !important;
        max-height: none !important;
        overflow: visible !important;
    }

    .brand-logo-bg {
        grid-column: 1 !important;
        width: 74px !important;
        min-width: 74px !important;
        max-width: 74px !important;
        height: 54px !important;
        flex: none !important;
        background-size: contain !important;
        background-position: left center !important;
    }

    .search {
        grid-column: 2 !important;
        width: 100% !important;
        min-width: 0 !important;
    }

    .search input {
        width: 100% !important;
        height: 42px !important;
        padding: 9px 12px !important;
        font-size: 14px !important;
    }

    .mobile-menu-btn {
        display: flex !important;
        grid-column: 3 !important;
        width: 42px !important;
        height: 42px !important;
        align-items: center !important;
        justify-content: center !important;
        border: 1px solid var(--line) !important;
        border-radius: 10px !important;
        background: #ffffff !important;
        color: var(--dark) !important;
        font-size: 22px !important;
        line-height: 1 !important;
        cursor: pointer !important;
        padding: 0 !important;
    }

    .site-header .nav,
    .site-header .mobile-nav {
        display: none !important;
    }

    body.menu-open .site-header .mobile-nav {
        display: flex !important;
        grid-column: 1 / -1 !important;
        flex-direction: column !important;
        align-items: stretch !important;
        width: 100% !important;
        gap: 0 !important;
        margin-top: 8px !important;
        padding: 8px !important;
        background: #ffffff !important;
        border: 1px solid var(--line) !important;
        border-radius: 16px !important;
        box-shadow: 0 12px 30px rgba(84, 39, 28, 0.10) !important;
        overflow: visible !important;
        white-space: normal !important;
    }

    body.menu-open .site-header .mobile-nav a {
        display: block !important;
        width: 100% !important;
        padding: 12px 14px !important;
        border-bottom: 1px solid var(--line) !important;
        border-radius: 10px !important;
        font-size: 15px !important;
        font-weight: 700 !important;
    }

    body.menu-open .site-header .mobile-nav a:last-child {
        border-bottom: 0 !important;
    }

    body.menu-open .site-header .mobile-nav a:hover {
        background: var(--blush) !important;
        color: var(--rose-dark) !important;
    }
}
