/* ============================================================
   MRS. G'S CLOSET
   PROFESSIONAL CUSTOMER WEBSITE
============================================================ */


/* ============================================================
   RESET
============================================================ */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Montserrat", sans-serif;
    background: #0b0b0b;
    color: #f5f1e8;
    line-height: 1.6;
    overflow-x: hidden;
}

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

button,
input {
    font-family: inherit;
}

button {
    border: none;
}

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


/* ============================================================
   VARIABLES
============================================================ */

:root {

    --black: #080808;
    --black-soft: #111111;
    --black-card: #161616;

    --gold: #d4af37;
    --gold-light: #f1d477;
    --gold-dark: #9d7c17;

    --cream: #f5f1e8;
    --white: #ffffff;

    --gray: #aaa59b;
    --gray-dark: #68645d;

    --border-dark: rgba(212, 175, 55, 0.22);
    --border-light: rgba(0, 0, 0, 0.12);

    --serif: "Cormorant Garamond", Georgia, serif;
    --sans: "Montserrat", sans-serif;

    --container: 1240px;

}


/* ============================================================
   GENERAL
============================================================ */

.section-container {
    width: min(
        calc(100% - 80px),
        var(--container)
    );

    margin: 0 auto;
}

.section-kicker {
    display: block;

    color: var(--gold);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 4px;

    margin-bottom: 14px;
}

.gold-divider {
    width: 60px;
    height: 2px;

    background: var(--gold);

    margin: 24px 0;
}


/* ============================================================
   ANNOUNCEMENT
============================================================ */

.announcement-bar {
    background: var(--gold);
    color: var(--black);

    min-height: 36px;

    display: flex;
    align-items: center;
}

.announcement-inner {
    width: 100%;

    display: flex;
    justify-content: center;
    align-items: center;

    gap: 18px;

    padding: 7px 20px;
}

.announcement-inner p {
    font-size: 10px;
    font-weight: 700;

    letter-spacing: 2px;
    text-transform: uppercase;

    text-align: center;
}

.announcement-icon {
    font-size: 11px;
}


/* ============================================================
   HEADER
============================================================ */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: rgba(8, 8, 8, 0.96);

    border-bottom: 1px solid var(--border-dark);

    backdrop-filter: blur(15px);
}

.nav-container {
    width: min(
        calc(100% - 60px),
        1380px
    );

    min-height: 86px;

    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}


/* ============================================================
   BRAND
============================================================ */

.brand {
    display: flex;
    align-items: center;

    gap: 10px;

    flex-shrink: 0;
}

.brand-mark {
    position: relative;

    width: 42px;
    height: 42px;

    display: flex;
    justify-content: center;
    align-items: center;
}

.brand-crown {
    position: absolute;

    top: 0;
    left: 50%;

    transform: translateX(-50%);

    color: var(--gold);

    font-size: 23px;

    line-height: 1;
}

.brand-hanger {
    position: absolute;

    bottom: 1px;
    left: 50%;

    transform: translateX(-50%);

    color: rgba(212, 175, 55, 0.7);

    font-size: 28px;

    line-height: 1;
}

.brand-text {
    display: flex;
    flex-direction: column;

    line-height: 1;
}

.brand-main {
    font-family: var(--serif);

    color: var(--cream);

    font-size: 22px;
    font-weight: 700;

    letter-spacing: 2px;
}

.brand-sub {
    color: var(--gold);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 6px;

    margin-top: 5px;
}


/* ============================================================
   DESKTOP NAVIGATION
============================================================ */

.desktop-nav {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 24px;

    flex: 1;
}

.nav-link {
    position: relative;

    color: #d4d0c8;

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 1.5px;

    text-transform: uppercase;

    padding: 34px 0;

    transition:
        color 0.25s ease;
}

.nav-link::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 25px;

    height: 1px;

    background: var(--gold);

    transform: scaleX(0);

    transition:
        transform 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}


/* ============================================================
   NAV ACTIONS
============================================================ */

.nav-actions {
    display: flex;
    align-items: center;

    gap: 14px;
}

.search-button {
    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: transparent;

    color: var(--cream);

    cursor: pointer;

    font-size: 25px;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.search-button:hover {
    color: var(--gold);
    transform: scale(1.1);
}

.nav-shop-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 40px;

    padding: 0 18px;

    background: var(--gold);

    color: var(--black);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1.5px;

    transition:
        background 0.25s ease,
        transform 0.25s ease;
}

.nav-shop-button:hover {
    background: var(--gold-light);

    transform: translateY(-2px);
}


/* ============================================================
   MOBILE MENU BUTTON
============================================================ */

.menu-button {
    display: none;

    width: 42px;
    height: 42px;

    background: transparent;

    cursor: pointer;

    flex-direction: column;
    justify-content: center;
    align-items: center;

    gap: 5px;
}

.menu-button span {
    width: 23px;
    height: 2px;

    background: var(--cream);

    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
}

.menu-button.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

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

.menu-button.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


/* ============================================================
   MOBILE NAV
============================================================ */

.mobile-nav {
    display: none;

    background: #0d0d0d;

    border-top: 1px solid var(--border-dark);

    padding: 15px 25px 25px;
}

.mobile-nav a {
    display: block;

    padding: 15px 5px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.06);

    color: var(--cream);

    font-size: 11px;
    font-weight: 600;

    letter-spacing: 2px;

    text-transform: uppercase;
}

.mobile-nav a:hover {
    color: var(--gold);
}

.mobile-nav.open {
    display: block;
}


/* ============================================================
   SEARCH OVERLAY
============================================================ */

.search-overlay {
    position: fixed;

    inset: 0;

    z-index: 2000;

    background: rgba(0, 0, 0, 0.94);

    display: none;

    align-items: center;
    justify-content: center;

    padding: 30px;
}

.search-overlay.open {
    display: flex;
}

.search-box {
    position: relative;

    width: min(700px, 100%);

    text-align: center;

    padding: 50px 30px;
}

.close-search {
    position: absolute;

    top: 0;
    right: 0;

    width: 45px;
    height: 45px;

    background: transparent;

    color: var(--cream);

    font-size: 35px;

    cursor: pointer;
}

.close-search:hover {
    color: var(--gold);
}

.search-label {
    color: var(--gold);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 4px;
}

.search-box h2 {
    font-family: var(--serif);

    font-size: clamp(40px, 6vw, 70px);

    font-weight: 600;

    margin: 10px 0 30px;
}

.search-input-wrapper {
    position: relative;
}

.search-input-icon {
    position: absolute;

    left: 20px;
    top: 50%;

    transform: translateY(-50%);

    color: var(--gold);

    font-size: 25px;
}

.search-input-wrapper input {
    width: 100%;

    height: 62px;

    padding: 0 25px 0 60px;

    background: #171717;

    border: 1px solid var(--border-dark);

    outline: none;

    color: var(--cream);

    font-size: 14px;
}

.search-input-wrapper input:focus {
    border-color: var(--gold);
}

.search-message {
    color: var(--gray);

    font-size: 11px;

    margin-top: 16px;
}


/* ============================================================
   HERO
============================================================ */

.hero {
    position: relative;

    min-height: 760px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 75% 40%,
            rgba(212, 175, 55, 0.14),
            transparent 32%
        ),
        linear-gradient(
            120deg,
            #050505 0%,
            #111111 55%,
            #070707 100%
        );
}

.hero-background {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(5, 5, 5, 0.98) 0%,
            rgba(5, 5, 5, 0.84) 42%,
            rgba(5, 5, 5, 0.25) 100%
        );

    pointer-events: none;
}

.hero::before {
    content: "";

    position: absolute;

    width: 600px;
    height: 600px;

    right: -150px;
    top: 50%;

    transform: translateY(-50%);

    border: 1px solid rgba(212, 175, 55, 0.15);

    border-radius: 50%;
}

.hero::after {
    content: "STYLE";

    position: absolute;

    right: -20px;
    bottom: 40px;

    font-family: var(--serif);

    font-size: clamp(120px, 18vw, 260px);

    font-weight: 700;

    color: rgba(255, 255, 255, 0.025);

    pointer-events: none;
}

.hero-content {
    position: relative;

    z-index: 2;

    width: min(
        calc(100% - 80px),
        var(--container)
    );

    margin: 0 auto;

    padding: 100px 0;
}

.hero-eyebrow {
    color: var(--gold);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 6px;
}

.hero h1 {
    margin: 18px 0;

    font-family: var(--serif);

    font-size: clamp(70px, 10vw, 145px);

    line-height: 0.78;

    font-weight: 600;

    letter-spacing: -3px;
}

.hero h1 span {
    display: block;

    color: var(--gold);

    margin-left: 70px;
}

.hero-description {
    color: #c2beb5;

    font-size: 15px;

    line-height: 1.9;

    margin: 35px 0;
}

.hero-buttons {
    display: flex;
    align-items: center;

    gap: 14px;

    flex-wrap: wrap;
}

.gold-button,
.outline-button,
.dark-button {
    min-height: 50px;

    padding: 0 25px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 2px;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        color 0.25s ease;
}

.gold-button {
    background: var(--gold);

    color: var(--black);
}

.gold-button:hover {
    background: var(--gold-light);

    transform: translateY(-3px);
}

.outline-button {
    border: 1px solid rgba(212, 175, 55, 0.5);

    color: var(--cream);

    background: transparent;
}

.outline-button:hover {
    border-color: var(--gold);

    color: var(--gold);

    transform: translateY(-3px);
}

.hero-scroll {
    position: absolute;

    bottom: 35px;
    left: 50%;

    transform: translateX(-50%);

    display: flex;
    align-items: center;

    gap: 14px;

    color: var(--gray);

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 3px;

    z-index: 2;
}

.scroll-line {
    width: 50px;
    height: 1px;

    background: var(--gold);
}


/* ============================================================
   STATUS
============================================================ */

.status-section {
    background: var(--gold);

    color: var(--black);
}

.status-container {
    width: min(
        calc(100% - 80px),
        var(--container)
    );

    min-height: 80px;

    margin: 0 auto;

    display: flex;
    align-items: center;

    justify-content: space-between;

    gap: 25px;
}

.status-label {
    font-size: 9px;
    font-weight: 800;

    letter-spacing: 3px;
}

.status-value {
    display: flex;
    align-items: center;

    gap: 9px;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 2px;
}

.status-value small {
    font-size: 9px;

    font-weight: 500;

    letter-spacing: 0;

    margin-left: 5px;
}

.status-dot {
    width: 9px;
    height: 9px;

    border-radius: 50%;

    background: #168c3d;

    box-shadow:
        0 0 0 4px rgba(22, 140, 61, 0.13);
}

.status-dot.closed {
    background: #8b2020;

    box-shadow:
        0 0 0 4px rgba(139, 32, 32, 0.12);
}

.status-location {
    display: flex;
    align-items: center;

    gap: 8px;

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 1px;
}


/* ============================================================
   INTRO
============================================================ */

.intro-section {
    background: var(--black);

    padding: 125px 0;
}

.section-heading.centered {
    text-align: center;

    max-width: 750px;

    margin: 0 auto;
}

.section-heading.centered .gold-divider {
    margin-left: auto;
    margin-right: auto;
}

.section-heading h2,
.intro-section h2 {
    font-family: var(--serif);

    font-size: clamp(50px, 6vw, 82px);

    line-height: 0.95;

    font-weight: 600;
}

.section-heading h2 span,
.intro-section h2 span {
    color: var(--gold);
}

.section-heading p {
    color: var(--gray);

    font-size: 13px;
}

.intro-section .section-heading p {
    max-width: 650px;

    margin: 0 auto;

    font-size: 14px;

    line-height: 2;
}


/* ============================================================
   COLLECTION SECTIONS
============================================================ */

.collection-section {
    padding: 110px 0;
}

.dark-section {
    background: #0c0c0c;
}

.light-section {
    background: #efebe2;

    color: #111;
}

.section-heading:not(.centered) {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 40px;

    margin-bottom: 55px;
}

.section-heading:not(.centered) h2 {
    font-family: var(--serif);

    font-size: clamp(55px, 7vw, 90px);

    line-height: 0.8;
}

.section-heading:not(.centered) > p {
    max-width: 280px;

    color: var(--gray);

    font-size: 12px;

    margin-bottom: 5px;
}


/* ============================================================
   BRAND GRID
============================================================ */

.brand-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 2px;
}

.brand-card {
    position: relative;

    min-height: 320px;

    overflow: hidden;

    display: flex;
    align-items: flex-end;

    background-color: #151515;

    background-size: cover;
    background-position: center;

    isolation: isolate;
}

.brand-card::before {
    content: "";

    position: absolute;

    inset: 0;

    z-index: -2;

    background:
        radial-gradient(
            circle at 50% 30%,
            rgba(212, 175, 55, 0.18),
            transparent 50%
        );
}

.brand-card::after {
    content: "";

    position: absolute;

    inset: 0;

    z-index: -1;

    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.95),
            rgba(0, 0, 0, 0.2)
        );
}

.brand-card-overlay {
    position: absolute;

    inset: 15px;

    border: 1px solid rgba(212, 175, 55, 0.2);

    transition:
        border-color 0.3s ease,
        inset 0.3s ease;
}

.brand-card-content {
    position: relative;

    z-index: 2;

    padding: 30px;

    width: 100%;
}

.brand-number {
    color: var(--gold);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 2px;
}

.brand-card h3 {
    font-family: var(--serif);

    font-size: 42px;

    line-height: 1;

    margin: 10px 0 4px;
}

.brand-card p {
    color: #aaa;

    font-size: 10px;

    margin-bottom: 15px;
}

.collection-link {
    color: var(--gold);

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 2px;
}

.brand-card:hover .brand-card-overlay {
    inset: 10px;

    border-color: rgba(212, 175, 55, 0.7);
}


/* Different visual identities */

.nike-card {
    background:
        linear-gradient(
            135deg,
            #1c1c1c,
            #070707
        );
}

.adidas-card {
    background:
        linear-gradient(
            135deg,
            #292929,
            #0a0a0a
        );
}

.puma-card {
    background:
        linear-gradient(
            135deg,
            #211d15,
            #090909
        );
}

.converse-card {
    background:
        linear-gradient(
            135deg,
            #242424,
            #080808
        );
}

.newbalance-card {
    background:
        linear-gradient(
            135deg,
            #191d21,
            #070707
        );
}

.other-shoes-card {
    background:
        linear-gradient(
            135deg,
            #302717,
            #090909
        );
}


/* ============================================================
   KIDS SECTION
============================================================ */

.kids-section {
    position: relative;

    overflow: hidden;

    padding: 120px 0;

    background:
        radial-gradient(
            circle at 80% 30%,
            rgba(212, 175, 55, 0.13),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #17120b,
            #080808 65%
        );
}

.kids-content {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 100px;

    align-items: center;

    margin-bottom: 70px;
}

.kids-heading h2 {
    font-family: var(--serif);

    font-size: clamp(65px, 8vw, 110px);

    line-height: 0.75;

    font-weight: 600;
}

.kids-heading h2 span {
    display: block;

    color: var(--gold);

    margin-left: 65px;
}

.kids-heading p {
    max-width: 470px;

    color: #b8b2a8;

    font-size: 13px;

    line-height: 2;
}

.kids-message {
    padding: 45px;

    border: 1px solid rgba(212, 175, 55, 0.25);

    background:
        linear-gradient(
            145deg,
            rgba(212, 175, 55, 0.08),
            rgba(255, 255, 255, 0.015)
        );
}

.kids-icon {
    color: var(--gold);

    font-size: 35px;

    margin-bottom: 15px;
}

.kids-message h3 {
    font-family: var(--serif);

    font-size: 38px;

    line-height: 1;
}

.kids-message h3 span {
    color: var(--gold);
}

.kids-message p {
    color: var(--gray);

    font-size: 12px;

    line-height: 1.9;

    margin-top: 20px;
}

.kids-brand-grid {
    display: grid;

    grid-template-columns:
        repeat(6, 1fr);

    border-top: 1px solid rgba(212, 175, 55, 0.18);
    border-bottom: 1px solid rgba(212, 175, 55, 0.18);
}

.kids-brand {
    min-height: 95px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-right: 1px solid rgba(212, 175, 55, 0.18);

    color: #c6c0b7;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 2px;

    transition:
        color 0.25s ease,
        background 0.25s ease;
}

.kids-brand:last-child {
    border-right: none;
}

.kids-brand:hover {
    color: var(--gold);

    background: rgba(212, 175, 55, 0.04);
}

.kids-decoration {
    position: absolute;

    color: rgba(212, 175, 55, 0.25);

    font-size: 45px;
}

.kids-star-one {
    top: 80px;
    right: 9%;
}

.kids-star-two {
    bottom: 80px;
    left: 6%;
}


/* ============================================================
   CLOTHING CATEGORIES
============================================================ */

.category-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 3px;
}

.category-card {
    position: relative;

    min-height: 420px;

    display: flex;
    align-items: flex-end;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #d7d0c4,
            #91897d
        );
}

.category-card::before {
    content: "";

    position: absolute;

    inset: 0;

    background:
        radial-gradient(
            circle at 50% 30%,
            rgba(255, 255, 255, 0.35),
            transparent 35%
        );
}

.category-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.85),
            rgba(0, 0, 0, 0.05)
        );
}

.category-content {
    position: relative;

    z-index: 2;

    padding: 30px;

    color: white;
}

.category-content span {
    font-size: 8px;
    font-weight: 700;

    letter-spacing: 2px;

    color: var(--gold-light);
}

.category-content h3 {
    font-family: var(--serif);

    font-size: 37px;

    margin-top: 8px;
}

.clothing-two {
    background:
        linear-gradient(
            145deg,
            #9b8f80,
            #514b44
        );
}

.clothing-three {
    background:
        linear-gradient(
            145deg,
            #55514d,
            #242321
        );
}

.clothing-four {
    background:
        linear-gradient(
            145deg,
            #b1a28f,
            #60584d
        );
}


/* ============================================================
   BEAUTY
============================================================ */

.beauty-section {
    padding: 125px 0;

    background:
        radial-gradient(
            circle at 80% 50%,
            rgba(212, 175, 55, 0.1),
            transparent 35%
        ),
        #0b0b0b;
}

.beauty-container {
    width: min(
        calc(100% - 80px),
        var(--container)
    );

    margin: 0 auto;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 100px;

    align-items: center;
}

.beauty-content h2 {
    font-family: var(--serif);

    font-size: clamp(60px, 7vw, 100px);

    line-height: 0.8;
}

.beauty-content h2 span {
    display: block;

    color: var(--gold);

    margin-left: 60px;
}

.beauty-content p {
    max-width: 500px;

    color: var(--gray);

    font-size: 13px;

    line-height: 2;

    margin-bottom: 30px;
}

.beauty-categories {
    border-top: 1px solid var(--border-dark);
}

.beauty-category {
    min-height: 90px;

    display: flex;
    align-items: center;

    gap: 30px;

    border-bottom: 1px solid var(--border-dark);

    transition:
        padding-left 0.25s ease,
        background 0.25s ease;
}

.beauty-category:hover {
    padding-left: 12px;

    background: rgba(212, 175, 55, 0.03);
}

.beauty-category-number {
    color: var(--gold);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 2px;
}

.beauty-category strong {
    font-size: 11px;

    letter-spacing: 2px;
}


/* ============================================================
   ACCESSORIES
============================================================ */

.accessories-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 2px;
}

.accessory-card {
    min-height: 230px;

    padding: 35px;

    display: flex;
    flex-direction: column;

    justify-content: flex-end;

    background:
        linear-gradient(
            145deg,
            #171717,
            #0c0c0c
        );

    border: 1px solid rgba(212, 175, 55, 0.09);

    transition:
        transform 0.3s ease,
        border-color 0.3s ease;
}

.accessory-card:hover {
    transform: translateY(-5px);

    border-color: var(--border-dark);
}

.accessory-card > span {
    color: var(--gold);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 15px;
}

.accessory-card h3 {
    font-family: var(--serif);

    font-size: 38px;

    line-height: 1;
}

.accessory-card p {
    color: var(--gray);

    font-size: 10px;

    margin-top: 8px;
}


/* ============================================================
   PROMOTION
============================================================ */

.promotion-section {
    position: relative;

    overflow: hidden;

    padding: 140px 30px;

    background:
        linear-gradient(
            135deg,
            var(--gold),
            #a77e18
        );

    color: var(--black);

    text-align: center;
}

.promotion-section::before {
    content: "SALE";

    position: absolute;

    left: -30px;
    bottom: -70px;

    font-family: var(--serif);

    font-size: 280px;

    font-weight: 700;

    color: rgba(0, 0, 0, 0.05);

    pointer-events: none;
}

.promotion-inner {
    position: relative;

    z-index: 2;

    max-width: 800px;

    margin: 0 auto;
}

.promotion-label {
    font-size: 10px;
    font-weight: 800;

    letter-spacing: 4px;
}

.promotion-section h2 {
    font-family: var(--serif);

    font-size: clamp(55px, 7vw, 100px);

    line-height: 0.85;

    margin: 20px 0;
}

.promotion-section h2 span {
    display: block;
}

.promotion-section p {
    max-width: 520px;

    margin: 25px auto 30px;

    font-size: 13px;
}

.dark-button {
    background: var(--black);

    color: var(--cream);
}

.dark-button:hover {
    background: #222;

    transform: translateY(-3px);
}


/* ============================================================
   OPENING HOURS
============================================================ */

.hours-section {
    padding: 120px 0;

    background: #eeeae2;

    color: #111;
}

.hours-wrapper {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 100px;

    align-items: center;
}

.hours-intro h2 {
    font-family: var(--serif);

    font-size: clamp(60px, 7vw, 100px);

    line-height: 0.8;
}

.hours-intro h2 span {
    display: block;

    color: var(--gold-dark);

    margin-left: 60px;
}

.hours-intro p {
    max-width: 400px;

    color: #666;

    font-size: 13px;

    line-height: 2;
}

.hours-list {
    border-top: 1px solid var(--border-light);
}

.hour-row {
    min-height: 75px;

    display: flex;

    justify-content: space-between;
    align-items: center;

    gap: 20px;

    border-bottom: 1px solid var(--border-light);
}

.hour-row span {
    font-size: 11px;

    font-weight: 600;

    letter-spacing: 1px;
}

.hour-row strong {
    color: var(--gold-dark);

    font-size: 11px;
}


/* ============================================================
   CONTACT
============================================================ */

.contact-section {
    padding: 120px 0;

    background: var(--black);
}

.contact-grid {
    display: grid;

    grid-template-columns:
        1.2fr 1fr 0.8fr;

    gap: 60px;

    align-items: center;
}

.contact-intro h2 {
    font-family: var(--serif);

    font-size: clamp(60px, 7vw, 100px);

    line-height: 0.78;
}

.contact-intro h2 span {
    color: var(--gold);
}

.contact-intro p {
    max-width: 420px;

    color: var(--gray);

    font-size: 13px;

    line-height: 2;
}

.contact-details {
    border-top: 1px solid var(--border-dark);
}

.contact-item {
    min-height: 85px;

    display: flex;

    align-items: center;

    gap: 18px;

    border-bottom: 1px solid var(--border-dark);
}

.contact-icon {
    color: var(--gold);

    font-size: 20px;
}

.contact-item div {
    display: flex;

    flex-direction: column;

    gap: 3px;
}

.contact-item small {
    color: var(--gold);

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 2px;
}

.contact-item strong {
    color: var(--cream);

    font-size: 11px;

    font-weight: 500;
}

.contact-action {
    display: flex;

    justify-content: center;
}

.whatsapp-button {
    min-height: 58px;

    padding: 0 28px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    background: #168c3d;

    color: white;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1.5px;

    transition:
        transform 0.25s ease,
        background 0.25s ease;
}

.whatsapp-button:hover {
    background: #1aa84a;

    transform: translateY(-3px);
}

.whatsapp-button.disabled {
    opacity: 0.55;

    cursor: not-allowed;
}


/* ============================================================
   FOOTER
============================================================ */

.site-footer {
    background: #050505;

    border-top: 1px solid var(--border-dark);
}

.footer-main {
    width: min(
        calc(100% - 80px),
        var(--container)
    );

    margin: 0 auto;

    padding: 75px 0;

    display: grid;

    grid-template-columns:
        2fr 1fr 1fr 1fr;

    gap: 60px;
}

.footer-brand p {
    max-width: 300px;

    color: var(--gray);

    font-size: 11px;

    line-height: 1.9;

    margin-top: 20px;
}

.footer-column {
    display: flex;

    flex-direction: column;

    gap: 12px;
}

.footer-column h4 {
    color: var(--gold);

    font-size: 9px;

    letter-spacing: 3px;

    margin-bottom: 8px;
}

.footer-column a,
.footer-column span {
    color: #8d8981;

    font-size: 10px;

    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: var(--gold);
}

.footer-column span {
    opacity: 0.65;
}

.footer-bottom {
    width: min(
        calc(100% - 80px),
        var(--container)
    );

    margin: 0 auto;

    min-height: 65px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    border-top: 1px solid rgba(255, 255, 255, 0.07);

    color: #666;

    font-size: 8px;

    letter-spacing: 1px;
}


/* ============================================================
   BACK TO TOP
============================================================ */

.back-to-top {
    position: fixed;

    right: 25px;
    bottom: 25px;

    z-index: 900;

    width: 45px;
    height: 45px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: var(--gold);

    color: var(--black);

    font-size: 20px;

    cursor: pointer;

    opacity: 0;

    visibility: hidden;

    transform: translateY(15px);

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease,
        transform 0.25s ease;
}

.back-to-top.visible {
    opacity: 1;

    visibility: visible;

    transform: translateY(0);
}


/* ============================================================
   TABLET
============================================================ */

@media (max-width: 1100px) {

    .desktop-nav {
        gap: 14px;
    }

    .nav-link {
        font-size: 9px;
    }

    .nav-shop-button {
        display: none;
    }

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

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

    .kids-content,
    .beauty-container,
    .hours-wrapper {
        grid-template-columns: 1fr;

        gap: 55px;
    }

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

    .kids-brand:nth-child(3) {
        border-right: none;
    }

    .kids-brand:nth-child(-n+3) {
        border-bottom: 1px solid rgba(212, 175, 55, 0.18);
    }

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

    .contact-action {
        justify-content: flex-start;
    }

    .footer-main {
        grid-template-columns:
            1.5fr 1fr 1fr;
    }

}


/* ============================================================
   MOBILE
============================================================ */

@media (max-width: 760px) {

    .section-container,
    .status-container,
    .footer-main,
    .footer-bottom,
    .beauty-container {
        width: min(
            calc(100% - 40px),
            var(--container)
        );
    }


    /* Header */

    .nav-container {
        width: calc(100% - 30px);

        min-height: 72px;
    }

    .desktop-nav {
        display: none;
    }

    .menu-button {
        display: flex;
    }

    .brand-main {
        font-size: 19px;
    }

    .brand-sub {
        font-size: 7px;
        letter-spacing: 4px;
    }


    /* Hero */

    .hero {
        min-height: 680px;
    }

    .hero-content {
        width: calc(100% - 40px);

        padding: 80px 0;
    }

    .hero h1 {
        font-size: clamp(64px, 18vw, 105px);

        letter-spacing: -2px;
    }

    .hero h1 span {
        margin-left: 25px;
    }

    .hero-description {
        font-size: 13px;
    }

    .hero-buttons {
        flex-direction: column;

        align-items: stretch;

        width: 100%;
        max-width: 300px;
    }

    .gold-button,
    .outline-button {
        width: 100%;
    }

    .hero-scroll {
        display: none;
    }


    /* Status */

    .status-container {
        padding: 18px 0;

        flex-wrap: wrap;

        justify-content: center;

        text-align: center;
    }

    .status-value {
        flex-wrap: wrap;

        justify-content: center;
    }

    .status-value small {
        width: 100%;

        margin-left: 0;
    }


    /* Sections */

    .intro-section,
    .collection-section,
    .kids-section,
    .beauty-section,
    .hours-section,
    .contact-section {
        padding: 80px 0;
    }


    .section-heading:not(.centered) {
        flex-direction: column;

        align-items: flex-start;

        gap: 15px;
    }

    .section-heading:not(.centered) > p {
        margin: 0;
    }


    /* Brand cards */

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

    .brand-card {
        min-height: 290px;
    }


    /* Kids */

    .kids-content {
        gap: 40px;
    }

    .kids-message {
        padding: 30px;
    }

    .kids-brand-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .kids-brand {
        min-height: 75px;
    }

    .kids-brand:nth-child(2n) {
        border-right: none;
    }

    .kids-brand:nth-child(3) {
        border-right: 1px solid rgba(212, 175, 55, 0.18);
    }

    .kids-brand:nth-child(4) {
        border-right: none;
    }

    .kids-brand:nth-child(3),
    .kids-brand:nth-child(4) {
        border-bottom: 1px solid rgba(212, 175, 55, 0.18);
    }


    /* Clothes */

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

    .category-card {
        min-height: 300px;
    }


    /* Beauty */

    .beauty-content h2 span {
        margin-left: 25px;
    }


    /* Accessories */

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

    .accessory-card {
        min-height: 190px;

        padding: 25px;
    }

    .accessory-card h3 {
        font-size: 30px;
    }


    /* Contact */

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

    .contact-action {
        justify-content: flex-start;
    }


    /* Footer */

    .footer-main {
        grid-template-columns: 1fr 1fr;

        gap: 45px 30px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        min-height: auto;

        padding: 20px 0;

        flex-direction: column;

        align-items: flex-start;
    }

}


/* ============================================================
   SMALL MOBILE
============================================================ */

@media (max-width: 430px) {

    .announcement-inner {
        gap: 8px;
    }

    .announcement-inner p {
        font-size: 8px;

        letter-spacing: 1px;
    }

    .brand-mark {
        width: 35px;
    }

    .brand-main {
        font-size: 17px;
    }

    .brand-sub {
        font-size: 6px;
    }

    .search-button {
        display: none;
    }

    .hero h1 {
        font-size: 65px;
    }

    .hero h1 span {
        margin-left: 10px;
    }

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

    .kids-brand,
    .kids-brand:nth-child(3) {
        border-right: none;

        border-bottom: 1px solid rgba(212, 175, 55, 0.18);
    }

    .kids-brand:last-child {
        border-bottom: none;
    }

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

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

    .footer-brand {
        grid-column: auto;
    }

}

/* =========================================================
   STAGE 4A
   DATABASE PRODUCT CARDS
========================================================= */

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    margin-top: 45px;
}

.product-card {
    position: relative;
    overflow: hidden;
    background: #111111;
    border: 1px solid rgba(212, 175, 55, 0.22);
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-6px);
    border-color: rgba(212, 175, 55, 0.65);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.light-section .product-card {
    background: #ffffff;
    border-color: rgba(20, 20, 20, 0.12);
}

.product-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #181818;
}

.light-section .product-image-wrapper {
    background: #f1f1f1;
}

.product-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.45s ease;
}

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

.product-no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(
            135deg,
            #111111,
            #222222
        );
}

.product-no-image span {
    font-size: 11px;
    letter-spacing: 2px;
    color: #c9c9c9;
}

.product-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    padding: 7px 10px;
    background: #d4af37;
    color: #080808;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.product-info {
    padding: 22px 20px 24px;
}

.product-brand {
    display: block;
    margin-bottom: 7px;
    color: #d4af37;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.product-info h3 {
    margin: 0;
    color: #ffffff;
    font-family: "Cormorant Garamond", serif;
    font-size: 25px;
    font-weight: 600;
    line-height: 1.15;
}

.light-section .product-info h3 {
    color: #111111;
}

.product-description {
    margin: 10px 0 0;
    color: #aaaaaa;
    font-size: 12px;
    line-height: 1.6;
}

.light-section .product-description {
    color: #666666;
}

.product-price {
    display: block;
    margin-top: 15px;
    color: #d4af37;
    font-size: 16px;
    font-weight: 700;
}

.product-stock {
    display: block;
    margin-top: 8px;
    color: #8fd18f;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.product-stock.out {
    color: #d88b8b;
}

.product-order-button {
    display: block;
    width: 100%;
    margin-top: 17px;
    padding: 12px 10px;
    border: 1px solid #d4af37;
    background: transparent;
    color: #d4af37;
    text-align: center;
    text-decoration: none;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.2px;
    transition:
        background 0.25s ease,
        color 0.25s ease;
}

.product-order-button:hover {
    background: #d4af37;
    color: #080808;
}


/* =========================================================
   EMPTY PRODUCT COLLECTION
========================================================= */

.product-empty-state {
    margin-top: 40px;
    padding: 55px 30px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.22);
    background: rgba(255, 255, 255, 0.025);
}

.product-empty-icon {
    display: block;
    margin-bottom: 15px;
    color: #d4af37;
    font-size: 28px;
}

.product-empty-state h3 {
    margin: 0;
    color: #ffffff;
    font-family: "Cormorant Garamond", serif;
    font-size: 30px;
    font-weight: 600;
}

.product-empty-state p {
    max-width: 550px;
    margin: 12px auto 0;
    color: #aaaaaa;
    font-size: 13px;
    line-height: 1.7;
}

.light-empty {
    background: rgba(0, 0, 0, 0.025);
    border-color: rgba(0, 0, 0, 0.1);
}

.light-empty h3 {
    color: #111111;
}

.light-empty p {
    color: #666666;
}


/* =========================================================
   PROMOTION PRODUCTS
========================================================= */

.promotion-products {
    width: 100%;
    max-width: 1000px;
    margin: 35px auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.promotion-product-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.15);
    text-align: left;
}

.promotion-product-card img {
    width: 85px;
    height: 85px;
    flex-shrink: 0;
    object-fit: cover;
}

.promotion-product-card span {
    display: block;
    margin-bottom: 5px;
    color: #111111;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.promotion-product-card h3 {
    margin: 0 0 7px;
    color: #111111;
    font-family: "Cormorant Garamond", serif;
    font-size: 21px;
}

.promotion-product-card strong {
    color: #111111;
    font-size: 13px;
}

.promotion-empty {
    margin: 30px auto;
    color: #333333;
    font-size: 13px;
}


/* =========================================================
   RESPONSIVE PRODUCT GRID
========================================================= */

@media (max-width: 1100px) {

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

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

}


@media (max-width: 760px) {

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

    .product-info {
        padding: 17px 15px 19px;
    }

    .product-info h3 {
        font-size: 21px;
    }

    .product-price {
        font-size: 14px;
    }

    .product-order-button {
        font-size: 9px;
        padding: 11px 7px;
    }

    .product-empty-state {
        padding: 40px 20px;
    }

    .promotion-products {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 480px) {

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

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

    .product-info h3 {
        font-size: 24px;
    }

}

/* ============================================================
   STAGE 4E — CUSTOMER STOCK STATUS
============================================================ */

.product-stock.in {
    color: #32cd32;
    font-weight: 700;
}

.product-stock.low {
    color: #ffa500;
    font-weight: 700;
}

.product-stock.out {
    color: #ff5555;
    font-weight: 700;
}

.product-order-disabled {
    opacity: 0.55;
    cursor: not-allowed !important;
}

/* ============================================================
   PROFESSIONAL CONTACT SECTION
============================================================ */

.contact-section {
    position: relative;
    width: 100%;
    padding: 90px 20px;
    box-sizing: border-box;
    overflow: hidden;
}


/* ------------------------------------------------------------
   SECTION HEADING
------------------------------------------------------------ */

.contact-section .section-heading {
    max-width: 850px;
    margin: 0 auto 50px;
    text-align: center;
}

.contact-section .section-kicker {
    display: inline-block;
    margin-bottom: 12px;
    color: #d4af37;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.contact-section .section-heading h2 {
    margin: 0 0 15px;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.1;
    font-weight: 800;
}

.contact-section .section-heading p {
    max-width: 650px;
    margin: 0 auto;
    font-size: 14px;
    line-height: 1.8;
    opacity: 0.65;
}


/* ------------------------------------------------------------
   CONTACT GRID
------------------------------------------------------------ */

.contact-grid {
    width: min(1200px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}


/* ------------------------------------------------------------
   CONTACT CARD
------------------------------------------------------------ */

.contact-card {
    min-height: 190px;
    padding: 30px 22px;
    box-sizing: border-box;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;

    text-align: center;

    border: 1px solid rgba(212, 175, 55, 0.20);
    border-radius: 14px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.035),
            rgba(255, 255, 255, 0.012)
        );

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.contact-card:hover {
    transform: translateY(-5px);

    border-color:
        rgba(212, 175, 55, 0.55);

    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.25);
}


/* ------------------------------------------------------------
   CONTACT ICON
------------------------------------------------------------ */

.contact-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 50%;

    color: #d4af37;

    font-size: 22px;

    background:
        rgba(212, 175, 55, 0.06);
}


/* ------------------------------------------------------------
   CONTACT TITLE
------------------------------------------------------------ */

.contact-card h3 {
    margin: 0 0 10px;

    font-size: 15px;
    font-weight: 800;

    letter-spacing: 0.5px;
}


/* ------------------------------------------------------------
   CONTACT TEXT
------------------------------------------------------------ */

.contact-card p {
    margin: 0;

    font-size: 13px;
    line-height: 1.7;

    opacity: 0.65;
}


/* ------------------------------------------------------------
   CONTACT LINKS
------------------------------------------------------------ */

.contact-card a {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    max-width: 100%;

    color: #d4af37;

    font-size: 13px;
    font-weight: 700;

    text-decoration: none;

    word-break: break-word;

    transition:
        opacity 0.2s ease,
        color 0.2s ease;
}

.contact-card a:hover {
    color: #ffffff;
}


/* ------------------------------------------------------------
   OPENING HOURS
------------------------------------------------------------ */

.contact-card:nth-child(4) {
    align-items: flex-start;
    text-align: left;
}

.contact-card:nth-child(4) .contact-icon {
    align-self: center;
}

.contact-card:nth-child(4) h3 {
    align-self: center;
}

.contact-card:nth-child(4) p {
    width: 100%;
    margin-bottom: 5px;
}


/* ------------------------------------------------------------
   SOCIAL MEDIA
------------------------------------------------------------ */

.social-section {
    width: min(900px, 100%);
    margin: 60px auto 0;

    padding-top: 40px;

    border-top:
        1px solid rgba(212, 175, 55, 0.15);

    text-align: center;
}

.social-section h3 {
    margin: 0 0 22px;

    font-size: 16px;
    font-weight: 800;

    letter-spacing: 0.5px;
}

.social-links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;

    gap: 12px;
}

.social-links a,
.social-links span {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 125px;
    min-height: 44px;

    padding: 0 18px;

    box-sizing: border-box;

    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 8px;

    background:
        rgba(255, 255, 255, 0.025);

    color: inherit;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 0.4px;

    text-decoration: none;

    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease,
        color 0.2s ease;
}

.social-links a:hover {
    transform: translateY(-2px);

    border-color:
        rgba(212, 175, 55, 0.75);

    background:
        rgba(212, 175, 55, 0.08);

    color: #d4af37;
}

.social-links span {
    opacity: 0.40;
}


/* ============================================================
   CONTACT RESPONSIVE
============================================================ */

@media (max-width: 1000px) {

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

}


@media (max-width: 650px) {

    .contact-section {
        padding: 65px 16px;
    }

    .contact-section .section-heading {
        margin-bottom: 35px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .contact-card {
        min-height: 165px;
        padding: 25px 20px;
    }

    .contact-card:nth-child(4) {
        align-items: center;
        text-align: center;
    }

    .contact-card:nth-child(4) .contact-icon,
    .contact-card:nth-child(4) h3 {
        align-self: center;
    }

    .social-section {
        margin-top: 45px;
        padding-top: 30px;
    }

    .social-links {
        flex-direction: column;
        width: 100%;
    }

    .social-links a,
    .social-links span {
        width: 100%;
        max-width: 320px;
    }

}

/* =========================================================
   ADD TO CART BUTTON
   ========================================================= */

.add-to-cart-form {
    width: 100%;
    margin: 12px 0 8px;
}

.add-to-cart-btn {
    width: 100%;
    border: 1px solid #d4af37;
    background: linear-gradient(
        135deg,
        #d4af37,
        #f5d76e,
        #b8860b
    );
    color: #000;
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
    cursor: pointer;
    transition: 0.25s ease;
}

.add-to-cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.35);
}

.add-to-cart-btn:active {
    transform: translateY(0);
}

.add-to-cart-btn.product-order-disabled {
    background: #333;
    border-color: #555;
    color: #999;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}


/* =========================================================
   MRS. G'S CLOSET
   CART PAGE — COMPLETE STYLING
   ========================================================= */

/* ---------- CART PAGE BASE ---------- */

.cart-page {
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;
    padding: 50px 25px 80px;
    box-sizing: border-box;
}

.cart-page *,
.cart-page *::before,
.cart-page *::after {
    box-sizing: border-box;
}


/* ---------- CART HEADER ---------- */

.cart-header {
    text-align: center;
    margin-bottom: 40px;
}

.cart-header .section-eyebrow {
    display: inline-block;
    margin-bottom: 10px;
    color: #d4af37;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.cart-header h1 {
    margin: 0 0 12px;
    color: #ffffff;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
}

.cart-header p {
    max-width: 650px;
    margin: 0 auto;
    color: #bdbdbd;
    font-size: 1rem;
    line-height: 1.7;
}


/* =========================================================
   EMPTY CART
   ========================================================= */

.cart-empty {
    max-width: 650px;
    margin: 30px auto 0;
    padding: 60px 30px;
    text-align: center;
    background: linear-gradient(
        145deg,
        #151515,
        #0b0b0b
    );
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 18px;
    box-shadow:
        0 15px 45px rgba(0, 0, 0, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.cart-empty-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(212, 175, 55, 0.5);
    border-radius: 50%;
    color: #d4af37;
    font-size: 2rem;
    background: rgba(212, 175, 55, 0.05);
}

.cart-empty h2 {
    margin: 0 0 12px;
    color: #ffffff;
    font-size: 1.7rem;
}

.cart-empty p {
    margin: 0 auto 25px;
    max-width: 480px;
    color: #aaaaaa;
    line-height: 1.7;
}

.cart-empty a,
.cart-empty-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 25px;
    color: #111111;
    background: linear-gradient(
        135deg,
        #f3d36a,
        #d4af37
    );
    border: 1px solid #d4af37;
    border-radius: 9px;
    font-weight: 800;
    text-decoration: none;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

.cart-empty a:hover,
.cart-empty-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.25);
    background: linear-gradient(
        135deg,
        #ffe48a,
        #e0bc45
    );
}


/* =========================================================
   CART LAYOUT
   ========================================================= */

.cart-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 30px;
    align-items: start;
}


/* ---------- CART ITEMS AREA ---------- */

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}


/* ---------- INDIVIDUAL CART ITEM ---------- */

.cart-item {
    display: grid;
    grid-template-columns: 115px minmax(0, 1fr) auto;
    gap: 20px;
    align-items: center;
    padding: 18px;
    background: linear-gradient(
        145deg,
        #171717,
        #0d0d0d
    );
    border: 1px solid rgba(212, 175, 55, 0.22);
    border-radius: 15px;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.02);
    transition:
        border-color 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.cart-item:hover {
    border-color: rgba(212, 175, 55, 0.5);
    transform: translateY(-2px);
    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(212, 175, 55, 0.05);
}


/* ---------- PRODUCT IMAGE ---------- */

.cart-item-image {
    width: 115px;
    height: 115px;
    overflow: hidden;
    border-radius: 11px;
    border: 1px solid rgba(212, 175, 55, 0.22);
    background: #101010;
}

.cart-item-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.cart-item:hover .cart-item-image img {
    transform: scale(1.04);
}

.cart-no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    text-align: center;
    color: #777777;
    font-size: 0.78rem;
    line-height: 1.4;
    background: #111111;
}


/* ---------- PRODUCT DETAILS ---------- */

.cart-item-details {
    min-width: 0;
}

.cart-item-details h3 {
    margin: 0 0 8px;
    color: #ffffff;
    font-size: 1.08rem;
    font-weight: 800;
    line-height: 1.35;
}

.cart-item-category {
    margin-bottom: 4px;
    color: #d4af37;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.cart-item-brand {
    margin-bottom: 10px;
    color: #999999;
    font-size: 0.85rem;
}

.cart-item-price {
    color: #f0f0f0;
    font-size: 0.98rem;
    font-weight: 700;
}

.cart-item-price strong {
    color: #d4af37;
}


/* =========================================================
   QUANTITY CONTROLS
   ========================================================= */

.cart-quantity {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
}

.cart-quantity form {
    margin: 0;
}

.quantity-button {
    width: 34px;
    height: 34px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #d4af37;
    background: #111111;
    border: 1px solid rgba(212, 175, 55, 0.45);
    border-radius: 7px;
    font-size: 1rem;
    font-weight: 800;
    cursor: pointer;
    transition:
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.quantity-button:hover {
    color: #111111;
    background: #d4af37;
    border-color: #d4af37;
    transform: translateY(-1px);
}

.quantity-number {
    min-width: 35px;
    padding: 5px 7px;
    color: #ffffff;
    text-align: center;
    font-weight: 800;
}


/* =========================================================
   RIGHT SIDE OF CART ITEM
   ========================================================= */

.cart-item-right {
    min-width: 115px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 12px;
}

.cart-item-subtotal {
    color: #d4af37;
    font-size: 1.08rem;
    font-weight: 900;
    white-space: nowrap;
}

.cart-remove {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 7px 12px;
    color: #e57373;
    background: rgba(229, 115, 115, 0.06);
    border: 1px solid rgba(229, 115, 115, 0.25);
    border-radius: 7px;
    font-size: 0.78rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition:
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease;
}

.cart-remove:hover {
    color: #ffffff;
    background: #b83232;
    border-color: #b83232;
}


/* =========================================================
   CLEAR CART
   ========================================================= */

.clear-cart-form {
    margin-top: 4px;
    display: flex;
    justify-content: flex-end;
}

.clear-cart-button {
    min-height: 38px;
    padding: 8px 15px;
    color: #999999;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 7px;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    transition:
        color 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease;
}

.clear-cart-button:hover {
    color: #ffffff;
    border-color: rgba(212, 175, 55, 0.4);
    background: rgba(212, 175, 55, 0.05);
}


/* =========================================================
   CART SUMMARY
   ========================================================= */

.cart-summary {
    position: sticky;
    top: 25px;
    padding: 25px;
    background: linear-gradient(
        145deg,
        #181818,
        #0c0c0c
    );
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 16px;
    box-shadow:
        0 15px 45px rgba(0, 0, 0, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.cart-summary-header {
    margin-bottom: 22px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.18);
}

.cart-summary-header h2 {
    margin: 0;
    color: #ffffff;
    font-size: 1.35rem;
    font-weight: 800;
}

.cart-summary-header p {
    margin: 7px 0 0;
    color: #8e8e8e;
    font-size: 0.82rem;
}


/* ---------- SUMMARY ROWS ---------- */

.cart-summary-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 9px 0;
    color: #aaaaaa;
    font-size: 0.92rem;
}

.cart-summary-row span:last-child {
    color: #ffffff;
    font-weight: 700;
    text-align: right;
}

.cart-summary-divider {
    height: 1px;
    margin: 12px 0;
    background: rgba(255, 255, 255, 0.1);
}

.cart-summary-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-top: 8px;
    padding-top: 15px;
    color: #ffffff;
    font-size: 1.15rem;
    font-weight: 800;
}

.cart-summary-total span:last-child {
    color: #d4af37;
    font-size: 1.35rem;
    font-weight: 900;
}


/* =========================================================
   CHECKOUT BUTTON
   ========================================================= */

.cart-checkout-button {
    width: 100%;
    min-height: 52px;
    margin-top: 22px;
    padding: 13px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111111;
    background: linear-gradient(
        135deg,
        #f3d36a 0%,
        #d4af37 50%,
        #b89020 100%
    );
    border: 1px solid #d4af37;
    border-radius: 9px;
    font-size: 0.95rem;
    font-weight: 900;
    letter-spacing: 0.3px;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.12);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        filter 0.2s ease;
}

.cart-checkout-button:hover {
    color: #111111;
    transform: translateY(-2px);
    filter: brightness(1.08);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.25);
}


/* =========================================================
   CONTINUE SHOPPING BUTTON
   ========================================================= */

.cart-continue-button {
    width: 100%;
    min-height: 48px;
    margin-top: 10px;
    padding: 11px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4af37;
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 9px;
    font-size: 0.9rem;
    font-weight: 800;
    text-decoration: none;
    transition:
        color 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.cart-continue-button:hover {
    color: #111111;
    background: #d4af37;
    border-color: #d4af37;
    transform: translateY(-1px);
}


/* =========================================================
   WHATSAPP NOTE
   ========================================================= */

.cart-whatsapp-note {
    margin-top: 18px;
    padding: 13px 14px;
    color: #a9a9a9;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 9px;
    font-size: 0.78rem;
    line-height: 1.55;
    text-align: center;
}

.cart-whatsapp-note strong {
    color: #d4af37;
}


/* =========================================================
   CART MESSAGE / FLASH SUPPORT
   ========================================================= */

.cart-page .alert,
.cart-page .flash-message {
    margin-bottom: 20px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1000px) {

    .cart-page {
        padding: 40px 20px 65px;
    }

    .cart-layout {
        grid-template-columns: minmax(0, 1fr) 330px;
        gap: 20px;
    }

    .cart-item {
        grid-template-columns: 95px minmax(0, 1fr) auto;
        gap: 15px;
        padding: 15px;
    }

    .cart-item-image {
        width: 95px;
        height: 95px;
    }

    .cart-summary {
        padding: 21px;
    }
}


/* =========================================================
   MOBILE / SMALL TABLET
   ========================================================= */

@media (max-width: 800px) {

    .cart-page {
        padding: 35px 15px 55px;
    }

    .cart-header {
        margin-bottom: 28px;
    }

    .cart-layout {
        grid-template-columns: 1fr;
    }

    .cart-summary {
        position: static;
        width: 100%;
    }

    .cart-item {
        grid-template-columns: 90px minmax(0, 1fr);
        align-items: start;
    }

    .cart-item-image {
        width: 90px;
        height: 90px;
    }

    .cart-item-right {
        grid-column: 1 / -1;
        width: 100%;
        min-width: 0;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding-top: 12px;
        border-top: 1px solid rgba(255, 255, 255, 0.07);
    }

    .cart-item-subtotal {
        font-size: 1rem;
    }

    .cart-quantity {
        margin-top: 10px;
    }

    .clear-cart-form {
        justify-content: center;
    }
}


/* =========================================================
   PHONE
   ========================================================= */

@media (max-width: 600px) {

    .cart-page {
        padding: 28px 12px 45px;
    }

    .cart-header h1 {
        font-size: 2rem;
    }

    .cart-header p {
        font-size: 0.9rem;
    }

    .cart-item {
        grid-template-columns: 75px minmax(0, 1fr);
        gap: 12px;
        padding: 13px;
        border-radius: 12px;
    }

    .cart-item-image {
        width: 75px;
        height: 75px;
        border-radius: 8px;
    }

    .cart-item-details h3 {
        margin-bottom: 5px;
        font-size: 0.95rem;
    }

    .cart-item-category {
        font-size: 0.65rem;
        letter-spacing: 0.8px;
    }

    .cart-item-brand {
        margin-bottom: 6px;
        font-size: 0.76rem;
    }

    .cart-item-price {
        font-size: 0.85rem;
    }

    .cart-quantity {
        gap: 5px;
        margin-top: 8px;
    }

    .quantity-button {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }

    .quantity-number {
        min-width: 28px;
        font-size: 0.85rem;
    }

    .cart-item-right {
        padding-top: 10px;
    }

    .cart-item-subtotal {
        font-size: 0.95rem;
    }

    .cart-remove {
        min-height: 31px;
        padding: 6px 9px;
        font-size: 0.72rem;
    }

    .clear-cart-button {
        width: 100%;
    }

    .cart-summary {
        padding: 19px 16px;
        border-radius: 13px;
    }

    .cart-summary-header {
        margin-bottom: 16px;
        padding-bottom: 14px;
    }

    .cart-summary-header h2 {
        font-size: 1.15rem;
    }

    .cart-summary-row {
        font-size: 0.85rem;
    }

    .cart-summary-total {
        font-size: 1rem;
    }

    .cart-summary-total span:last-child {
        font-size: 1.2rem;
    }

    .cart-checkout-button {
        min-height: 50px;
        font-size: 0.9rem;
    }

    .cart-continue-button {
        min-height: 45px;
        font-size: 0.85rem;
    }

    .cart-whatsapp-note {
        font-size: 0.73rem;
    }

    .cart-empty {
        padding: 45px 20px;
    }

    .cart-empty-icon {
        width: 65px;
        height: 65px;
        font-size: 1.6rem;
    }

    .cart-empty h2 {
        font-size: 1.35rem;
    }
}


/* =========================================================
   VERY SMALL PHONES
   ========================================================= */

@media (max-width: 380px) {

    .cart-page {
        padding-left: 9px;
        padding-right: 9px;
    }

    .cart-item {
        grid-template-columns: 65px minmax(0, 1fr);
        padding: 11px;
    }

    .cart-item-image {
        width: 65px;
        height: 65px;
    }

    .cart-item-details h3 {
        font-size: 0.88rem;
    }

    .cart-item-price {
        font-size: 0.78rem;
    }

    .cart-item-right {
        flex-wrap: wrap;
        gap: 8px;
    }
}


/* =========================================================
   ACCESSIBILITY / TOUCH
   ========================================================= */

.cart-page button,
.cart-page a {
    -webkit-tap-highlight-color: transparent;
}

.cart-page button:focus-visible,
.cart-page a:focus-visible {
    outline: 2px solid #d4af37;
    outline-offset: 3px;
}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .cart-page *,
    .cart-page *::before,
    .cart-page *::after {
        scroll-behavior: auto !important;
        transition: none !important;
        animation: none !important;
    }
}


/* =========================================================
   FINAL CART POLISH
   MRS. G'S CLOSET
   ========================================================= */

/* ---------- CART LINKS: REMOVE DEFAULT BROWSER LOOK ---------- */

.cart-page a {
    color: inherit;
    text-decoration: none;
}

.cart-page a:hover {
    text-decoration: none;
}


/* ---------- CART MAIN AREA ---------- */

.cart-page {
    position: relative;
    color: #f5f1e8;
}

.cart-page::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 900px;
    height: 500px;
    transform: translateX(-50%);
    background: radial-gradient(
        circle,
        rgba(212, 175, 55, 0.055),
        transparent 70%
    );
    pointer-events: none;
    z-index: 0;
}

.cart-header,
.cart-layout {
    position: relative;
    z-index: 1;
}


/* ---------- CART HEADER ---------- */

.cart-header .section-eyebrow {
    color: #d4af37;
    font-weight: 800;
    letter-spacing: 4px;
}

.cart-header h1 {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-weight: 600;
    letter-spacing: 1px;
}

.cart-header h1::after {
    content: "";
    display: block;
    width: 55px;
    height: 2px;
    margin: 18px auto 0;
    background: #d4af37;
}

.cart-header p {
    color: #aaa59b;
}


/* ---------- CART ITEM ---------- */

.cart-item {
    position: relative;
}

.cart-item-details h3 {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 1.35rem;
    letter-spacing: 0.3px;
}

.cart-item-category {
    color: #d4af37;
}

.cart-item-brand {
    color: #88837b;
}

.cart-item-price {
    color: #d0ccc4;
}

.cart-item-price strong {
    color: #d4af37;
}


/* ---------- QUANTITY AREA ---------- */

.cart-quantity {
    display: flex;
    align-items: center;
    gap: 6px;
}

.cart-quantity form {
    display: inline-flex;
    margin: 0;
}

.quantity-button {
    appearance: none;
    -webkit-appearance: none;

    width: 36px;
    height: 36px;

    padding: 0;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    background: #0b0b0b;
    color: #d4af37;

    border: 1px solid rgba(212, 175, 55, 0.45);
    border-radius: 6px;

    font-size: 16px;
    font-weight: 800;

    line-height: 1;

    cursor: pointer;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.quantity-button:hover {
    background: #d4af37;
    color: #080808;
    border-color: #d4af37;
    transform: translateY(-1px);
}

.quantity-button:active {
    transform: translateY(0);
}

.quantity-number {
    min-width: 38px;
    height: 36px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: #ffffff;
    background: #141414;

    border-top: 1px solid rgba(212, 175, 55, 0.18);
    border-bottom: 1px solid rgba(212, 175, 55, 0.18);

    font-size: 14px;
    font-weight: 800;
}


/* ---------- SUBTOTAL ---------- */

.cart-item-subtotal {
    color: #d4af37;
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
}


/* ---------- REMOVE BUTTON ---------- */

.cart-remove {
    appearance: none;
    -webkit-appearance: none;

    color: #d98989;

    background: rgba(180, 50, 50, 0.07);

    border: 1px solid rgba(220, 100, 100, 0.25);
    border-radius: 6px;

    font-family: "Montserrat", sans-serif;
    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1px;
    text-transform: uppercase;

    cursor: pointer;
}

.cart-remove:hover {
    color: #ffffff;
    background: #9d2929;
    border-color: #9d2929;
}


/* ---------- CLEAR CART ---------- */

.clear-cart-form {
    margin-top: 12px;
}

.clear-cart-button {
    appearance: none;
    -webkit-appearance: none;

    color: #999;

    background: transparent;

    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 6px;

    font-family: "Montserrat", sans-serif;
    font-size: 10px;
    font-weight: 700;

    letter-spacing: 1px;
    text-transform: uppercase;

    cursor: pointer;
}

.clear-cart-button:hover {
    color: #d4af37;
    border-color: rgba(212, 175, 55, 0.5);
    background: rgba(212, 175, 55, 0.05);
}


/* =========================================================
   CART SUMMARY
   ========================================================= */

.cart-summary {
    background:
        radial-gradient(
            circle at top right,
            rgba(212, 175, 55, 0.08),
            transparent 45%
        ),
        linear-gradient(
            145deg,
            #181818,
            #0a0a0a
        );

    border: 1px solid rgba(212, 175, 55, 0.38);
}

.cart-summary-header h2 {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 1.7rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.cart-summary-header p {
    color: #88837b;
}

.cart-summary-row {
    color: #aaa59b;
}

.cart-summary-row span:last-child {
    color: #eeeeee;
}

.cart-summary-total {
    font-family: "Montserrat", sans-serif;
}

.cart-summary-total span:last-child {
    color: #d4af37;
}


/* =========================================================
   CHECKOUT BUTTON
   ========================================================= */

.cart-checkout-button {
    position: relative;
    overflow: hidden;

    min-height: 55px;

    background:
        linear-gradient(
            135deg,
            #f4d878 0%,
            #d4af37 45%,
            #a67c18 100%
        );

    color: #080808;

    border: 1px solid #e1c24f;

    border-radius: 7px;

    font-family: "Montserrat", sans-serif;
    font-size: 10px;
    font-weight: 900;

    letter-spacing: 2px;
    text-transform: uppercase;

    box-shadow:
        0 8px 25px rgba(212, 175, 55, 0.15);
}

.cart-checkout-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 70%;
    height: 100%;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.35),
        transparent
    );

    transform: skewX(-20deg);
    transition: left 0.5s ease;
}

.cart-checkout-button:hover::before {
    left: 140%;
}

.cart-checkout-button:hover {
    color: #080808;
    transform: translateY(-2px);
    filter: brightness(1.08);
}


/* =========================================================
   CONTINUE SHOPPING
   ========================================================= */

.cart-continue-button {
    min-height: 50px;

    color: #d4af37;

    background: transparent;

    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 7px;

    font-family: "Montserrat", sans-serif;
    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.cart-continue-button:hover {
    color: #080808;
    background: #d4af37;
    border-color: #d4af37;
}


/* =========================================================
   WHATSAPP NOTE
   ========================================================= */

.cart-whatsapp-note {
    color: #8f8a82;

    background:
        linear-gradient(
            145deg,
            rgba(22, 140, 61, 0.06),
            rgba(255, 255, 255, 0.015)
        );

    border-color: rgba(22, 140, 61, 0.18);
}

.cart-whatsapp-note strong {
    color: #d4af37;
}


/* =========================================================
   EMPTY CART
   ========================================================= */

.cart-empty {
    position: relative;
    overflow: hidden;
}

.cart-empty::before {
    content: "CART";

    position: absolute;

    right: -20px;
    bottom: -45px;

    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 150px;
    font-weight: 700;

    color: rgba(212, 175, 55, 0.035);

    pointer-events: none;
}

.cart-empty h2 {
    position: relative;
    z-index: 1;

    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 2.1rem;
    font-weight: 600;
}

.cart-empty p {
    position: relative;
    z-index: 1;
}


/* =========================================================
   MOBILE CART POLISH
   ========================================================= */

@media (max-width: 800px) {

    .cart-item {
        transform: none;
    }

    .cart-item:hover {
        transform: none;
    }

    .cart-item-right {
        align-items: center;
    }

    .cart-summary {
        top: auto;
    }
}


@media (max-width: 600px) {

    .cart-header h1 {
        font-size: 2.35rem;
    }

    .cart-header .section-eyebrow {
        font-size: 9px;
        letter-spacing: 3px;
    }

    .cart-item-details h3 {
        font-size: 1.15rem;
    }

    .cart-checkout-button {
        min-height: 53px;
    }
}

/* =========================================================
   MRS. G'S CLOSET
   PREMIUM HOME PAGE POLISH
   ========================================================= */


/* =========================================================
   1. GLOBAL HOME PAGE REFINEMENT
   ========================================================= */

html {
    scroll-behavior: smooth;
}

body {
    background: #080808;
}

main {
    overflow: hidden;
}

.section-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}


/* =========================================================
   2. ANNOUNCEMENT BAR
   ========================================================= */

.announcement-bar {
    background:
        linear-gradient(
            90deg,
            #080808,
            #17130a,
            #080808
        );

    border-bottom: 1px solid rgba(212, 175, 55, 0.22);
}

.announcement-inner {
    min-height: 38px;
}

.announcement-icon {
    color: #d4af37;
    text-shadow:
        0 0 10px rgba(212, 175, 55, 0.35);
}

.announcement-inner p {
    color: #d7d1c5;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.8px;
}


/* =========================================================
   3. HEADER / NAVIGATION
   ========================================================= */

.site-header {
    background:
        linear-gradient(
            180deg,
            rgba(8, 8, 8, 0.98),
            rgba(8, 8, 8, 0.94)
        );

    border-bottom: 1px solid rgba(212, 175, 55, 0.16);

    box-shadow:
        0 8px 30px rgba(0, 0, 0, 0.28);
}

.nav-container {
    min-height: 82px;
}


/* Brand */

.brand {
    text-decoration: none;
}

.brand-mark {
    position: relative;
}

.brand-crown {
    color: #d4af37;

    text-shadow:
        0 0 12px rgba(212, 175, 55, 0.28);
}

.brand-hanger {
    color: #9c7a24;
}

.brand-main {
    color: #f5f1e8;
    letter-spacing: 2px;
}

.brand-sub {
    color: #d4af37;
    letter-spacing: 4px;
}


/* Navigation links */

.desktop-nav {
    gap: 24px;
}

.desktop-nav .nav-link {
    position: relative;

    color: #aaa59b;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 1.2px;
    text-transform: uppercase;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.desktop-nav .nav-link::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: -9px;

    width: 0;
    height: 1px;

    background: #d4af37;

    transform: translateX(-50%);

    transition: width 0.25s ease;
}

.desktop-nav .nav-link:hover,
.desktop-nav .nav-link.active {
    color: #d4af37;
}

.desktop-nav .nav-link:hover::after,
.desktop-nav .nav-link.active::after {
    width: 18px;
}


/* Search */

.search-button {
    color: #d4af37;

    border-color: rgba(212, 175, 55, 0.28);

    background: rgba(212, 175, 55, 0.04);
}

.search-button:hover {
    color: #080808;
    background: #d4af37;
    border-color: #d4af37;
}


/* Cart */

.nav-shop-button {
    min-height: 38px;

    color: #080808;

    background:
        linear-gradient(
            135deg,
            #f0d36a,
            #d4af37,
            #a77d19
        );

    border: 1px solid #d4af37;

    border-radius: 5px;

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 1.2px;

    box-shadow:
        0 5px 18px rgba(212, 175, 55, 0.12);

    transition:
        transform 0.2s ease,
        filter 0.2s ease;
}

.nav-shop-button:hover {
    color: #080808;
    transform: translateY(-2px);
    filter: brightness(1.08);
}


/* =========================================================
   4. HERO
   ========================================================= */

.hero {
    min-height: 700px;

    background:
        radial-gradient(
            circle at 50% 45%,
            rgba(212, 175, 55, 0.12),
            transparent 30%
        ),
        radial-gradient(
            circle at 15% 70%,
            rgba(212, 175, 55, 0.055),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #050505,
            #111111 55%,
            #070707
        );
}

.hero-background {
    opacity: 0.25;
}

.hero-content {
    max-width: 800px;
}

.hero-eyebrow {
    color: #d4af37;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 5px;
}

.hero h1 {
    font-family: "Cormorant Garamond", Georgia, serif;

    color: #f7f2e7;

    font-size: clamp(4rem, 9vw, 8rem);

    font-weight: 600;

    line-height: 0.82;

    letter-spacing: 2px;

    text-shadow:
        0 10px 35px rgba(0, 0, 0, 0.6);
}

.hero h1 span {
    color: #d4af37;

    text-shadow:
        0 0 30px rgba(212, 175, 55, 0.15);
}

.hero-description {
    color: #aaa59b;

    font-size: 13px;
    line-height: 1.9;

    letter-spacing: 0.5px;
}

.hero-buttons {
    margin-top: 35px;
}

.gold-button {
    background:
        linear-gradient(
            135deg,
            #f1d36d,
            #d4af37,
            #a77d19
        );

    color: #080808;

    border: 1px solid #e4c54d;

    box-shadow:
        0 12px 30px rgba(212, 175, 55, 0.14);
}

.gold-button:hover {
    color: #080808;
    filter: brightness(1.08);
    transform: translateY(-2px);
}

.outline-button {
    color: #d4af37;

    border: 1px solid rgba(212, 175, 55, 0.42);

    background: rgba(212, 175, 55, 0.025);
}

.outline-button:hover {
    color: #080808;
    background: #d4af37;
    border-color: #d4af37;
}

.hero-scroll {
    color: #77736c;
}

.scroll-line {
    background:
        linear-gradient(
            180deg,
            #d4af37,
            transparent
        );
}


/* =========================================================
   5. STORE STATUS
   ========================================================= */

.status-section {
    background:
        linear-gradient(
            90deg,
            #0b0b0b,
            #12100b,
            #0b0b0b
        );

    border-top: 1px solid rgba(212, 175, 55, 0.10);
    border-bottom: 1px solid rgba(212, 175, 55, 0.18);
}

.status-container {
    min-height: 100px;
}

.status-label {
    color: #77736c;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 2.5px;
}

.status-value > span:not(.status-dot) {
    color: #eee9dd;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 2px;
}

.status-value small {
    color: #77736c;
}

.status-dot.open {
    box-shadow:
        0 0 0 4px rgba(53, 185, 91, 0.08),
        0 0 14px rgba(53, 185, 91, 0.45);
}

.status-dot.closed {
    box-shadow:
        0 0 0 4px rgba(180, 60, 60, 0.08),
        0 0 14px rgba(180, 60, 60, 0.35);
}

.status-location {
    color: #aaa59b;
}

.status-location span:first-child {
    color: #d4af37;
}


/* =========================================================
   6. SECTION HEADINGS
   ========================================================= */

.section-kicker {
    color: #d4af37;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 3px;
}

.section-heading h2,
.kids-heading h2,
.beauty-content h2,
.hours-intro h2,
.contact-section h2 {
    font-family: "Cormorant Garamond", Georgia, serif;

    font-weight: 600;

    letter-spacing: 0.5px;
}

.section-heading h2 span,
.kids-heading h2 span,
.beauty-content h2 span,
.hours-intro h2 span {
    color: #d4af37;
}

.section-heading > p {
    color: #8f8a82;

    line-height: 1.8;
}

.gold-divider {
    background:
        linear-gradient(
            90deg,
            transparent,
            #d4af37,
            transparent
        );

    box-shadow:
        0 0 10px rgba(212, 175, 55, 0.12);
}


/* =========================================================
   7. INTRODUCTION
   ========================================================= */

.intro-section {
    background:
        radial-gradient(
            circle at center,
            rgba(212, 175, 55, 0.035),
            transparent 50%
        ),
        #0b0b0b;
}

.intro-section .section-heading p {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;

    color: #969188;

    line-height: 2;
}


/* =========================================================
   8. PRODUCT SECTIONS
   ========================================================= */

.dark-section {
    background:
        linear-gradient(
            180deg,
            #080808,
            #0d0d0d
        );
}

.light-section {
    background:
        linear-gradient(
            180deg,
            #111111,
            #0d0d0d
        );
}


/* Product grid */

.product-grid {
    gap: 22px;
}


/* Product card */

.product-card {
    position: relative;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            #191919,
            #0c0c0c
        );

    border: 1px solid rgba(212, 175, 55, 0.16);
    border-radius: 10px;

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.30);

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.product-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;
    right: 0;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(212, 175, 55, 0.65),
            transparent
        );

    opacity: 0;

    transition: opacity 0.3s ease;
}

.product-card:hover {
    transform: translateY(-7px);

    border-color: rgba(212, 175, 55, 0.42);

    box-shadow:
        0 22px 45px rgba(0, 0, 0, 0.42),
        0 0 25px rgba(212, 175, 55, 0.055);
}

.product-card:hover::before {
    opacity: 1;
}


/* Product image */

.product-image-wrapper {
    background:
        radial-gradient(
            circle,
            #242424,
            #101010 70%
        );

    border-bottom: 1px solid rgba(212, 175, 55, 0.12);
}

.product-image {
    transition:
        transform 0.5s ease,
        filter 0.5s ease;
}

.product-card:hover .product-image {
    transform: scale(1.045);
    filter: brightness(1.05);
}

.product-no-image {
    color: #6f6b65;

    background:
        radial-gradient(
            circle,
            #1c1c1c,
            #0c0c0c
        );
}

.product-no-image span {
    color: #77736c;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 2px;
}


/* Promotion badge */

.product-badge {
    background:
        linear-gradient(
            135deg,
            #f0d36a,
            #d4af37,
            #a77d19
        );

    color: #080808;

    border: 1px solid #f1d56b;

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 1px;

    box-shadow:
        0 5px 15px rgba(0, 0, 0, 0.25);
}


/* Product information */

.product-info {
    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.012),
            transparent
        );
}

.product-brand {
    color: #d4af37;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 2px;
    text-transform: uppercase;
}

.product-info h3 {
    color: #eee9df;

    font-family: "Cormorant Garamond", Georgia, serif;

    font-size: 1.45rem;
    font-weight: 600;

    letter-spacing: 0.3px;
}

.product-description {
    color: #88837b;

    line-height: 1.6;
}

.product-price {
    display: block;

    color: #f0d36a;

    font-family: "Montserrat", sans-serif;

    font-size: 1.05rem;
    font-weight: 800;

    letter-spacing: 0.4px;
}


/* Stock */

.product-stock {
    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1px;
}

.product-stock.in {
    color: #67c982;
}

.product-stock.low {
    color: #e1ad45;
}

.product-stock.out {
    color: #d46f6f;
}


/* Customer stock system */

.customer-stock-status {
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
}

.customer-in-stock {
    color: #67c982;
}

.customer-low-stock {
    color: #e1ad45;
}

.customer-out-of-stock {
    color: #d46f6f;
}


/* =========================================================
   9. PRODUCT BUTTONS
   ========================================================= */

.product-order-button {
    width: 100%;

    min-height: 43px;

    margin-top: 9px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #080808;

    background:
        linear-gradient(
            135deg,
            #efd16a,
            #d4af37,
            #a77d19
        );

    border: 1px solid #dfc04b;
    border-radius: 5px;

    font-family: "Montserrat", sans-serif;

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 1.2px;

    text-decoration: none;

    cursor: pointer;

    box-shadow:
        0 6px 18px rgba(212, 175, 55, 0.10);

    transition:
        transform 0.2s ease,
        filter 0.2s ease,
        box-shadow 0.2s ease;
}

.product-order-button:hover {
    color: #080808;

    transform: translateY(-2px);

    filter: brightness(1.08);

    box-shadow:
        0 9px 24px rgba(212, 175, 55, 0.17);
}

.product-order-disabled {
    color: #77736c;

    background: #171717;

    border-color: rgba(255, 255, 255, 0.08);

    box-shadow: none;

    cursor: not-allowed;
}

.product-order-disabled:hover {
    color: #77736c;
    background: #171717;
    transform: none;
    filter: none;
}


/* =========================================================
   10. KIDS SECTION
   ========================================================= */

.kids-section {
    background:
        radial-gradient(
            circle at 75% 30%,
            rgba(212, 175, 55, 0.055),
            transparent 30%
        ),
        #0a0a0a;
}

.kids-heading p,
.kids-message p {
    color: #918c84;

    line-height: 1.8;
}

.kids-message {
    background:
        linear-gradient(
            145deg,
            rgba(212, 175, 55, 0.055),
            rgba(255, 255, 255, 0.012)
        );

    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 10px;
}

.kids-message h3 {
    font-family: "Cormorant Garamond", Georgia, serif;
    color: #eee9df;
}

.kids-message h3 span {
    color: #d4af37;
}

.kids-icon {
    color: #d4af37;
}


/* =========================================================
   11. BEAUTY / HAIR SECTION
   ========================================================= */

.beauty-section {
    background:
        radial-gradient(
            circle at 20% 40%,
            rgba(212, 175, 55, 0.065),
            transparent 35%
        ),
        linear-gradient(
            145deg,
            #111111,
            #080808
        );
}

.beauty-content p {
    color: #918c84;

    line-height: 1.9;
}


/* =========================================================
   12. PROMOTIONS
   ========================================================= */

.promotion-section {
    position: relative;

    background:
        radial-gradient(
            circle at center,
            rgba(212, 175, 55, 0.10),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #151108,
            #080808 60%,
            #111111
        );

    border-top: 1px solid rgba(212, 175, 55, 0.20);
    border-bottom: 1px solid rgba(212, 175, 55, 0.20);
}

.promotion-label {
    color: #d4af37;

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 3px;
}

.promotion-inner > h2 {
    font-family: "Cormorant Garamond", Georgia, serif;

    color: #eee9df;

    font-weight: 600;
}

.promotion-inner > h2 span {
    color: #d4af37;
}

.promotion-inner > p {
    color: #969188;
}


/* Promotion product cards */

.promotion-product-card {
    background:
        linear-gradient(
            145deg,
            #1a1a1a,
            #0c0c0c
        );

    border: 1px solid rgba(212, 175, 55, 0.22);
    border-radius: 10px;

    overflow: hidden;

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.30);

    transition:
        transform 0.3s ease,
        border-color 0.3s ease;
}

.promotion-product-card:hover {
    transform: translateY(-6px);

    border-color: rgba(212, 175, 55, 0.50);
}

.promotion-product-image {
    background: #101010;
}

.promotion-product-image img {
    transition: transform 0.5s ease;
}

.promotion-product-card:hover
.promotion-product-image img {
    transform: scale(1.045);
}

.promotion-product-offer {
    color: #080808;

    background:
        linear-gradient(
            135deg,
            #f0d36a,
            #d4af37
        );

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 1px;
}

.promotion-product-brand {
    color: #d4af37;

    font-weight: 800;
    letter-spacing: 1.5px;
}

.promotion-product-info h3 {
    color: #eee9df;

    font-family: "Cormorant Garamond", Georgia, serif;

    font-size: 1.4rem;
}

.promotion-product-description {
    color: #88837b;
}

.promotion-product-price {
    color: #f0d36a;

    font-weight: 800;
}

.dark-button {
    border-color: rgba(212, 175, 55, 0.45);
    color: #d4af37;
}

.dark-button:hover {
    color: #080808;
    background: #d4af37;
    border-color: #d4af37;
}


/* =========================================================
   13. OPENING HOURS
   ========================================================= */

.hours-section {
    position: relative;

    background:
        radial-gradient(
            circle at 80% 50%,
            rgba(212, 175, 55, 0.05),
            transparent 35%
        ),
        #0b0b0b;
}

.hours-list {
    background:
        linear-gradient(
            145deg,
            #171717,
            #0d0d0d
        );

    border: 1px solid rgba(212, 175, 55, 0.18);
    border-radius: 10px;

    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.25);
}

.hour-row {
    border-bottom-color: rgba(255, 255, 255, 0.07);
}

.hour-row:last-child {
    border-bottom: none;
}

.hour-row span {
    color: #969188;
}

.hour-row strong {
    color: #d4af37;
}


/* =========================================================
   14. CONTACT SECTION
   ========================================================= */

.contact-section {
    background:
        linear-gradient(
            180deg,
            #101010,
            #080808
        );
}

.contact-section .section-heading p {
    color: #8f8a82;
}

.contact-card {
    background:
        linear-gradient(
            145deg,
            #181818,
            #0c0c0c
        );

    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 9px;

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.25);

    transition:
        transform 0.25s ease,
        border-color 0.25s ease;
}

.contact-card:hover {
    transform: translateY(-5px);

    border-color: rgba(212, 175, 55, 0.40);
}

.contact-icon {
    color: #d4af37;

    filter:
        drop-shadow(
            0 0 8px rgba(212, 175, 55, 0.16)
        );
}

.contact-card h3 {
    font-family: "Cormorant Garamond", Georgia, serif;

    color: #eee9df;

    font-size: 1.35rem;
}

.contact-card p,
.contact-card a {
    color: #918c84;
}

.contact-card a:hover {
    color: #d4af37;
}


/* Social */

.social-section {
    border-top-color: rgba(212, 175, 55, 0.12);
}

.social-section h3 {
    color: #eee9df;

    font-family: "Cormorant Garamond", Georgia, serif;
}

.social-links a {
    color: #d4af37;

    border-color: rgba(212, 175, 55, 0.25);

    background: rgba(212, 175, 55, 0.025);

    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.social-links a:hover {
    color: #080808;

    background: #d4af37;

    border-color: #d4af37;

    transform: translateY(-2px);
}


/* =========================================================
   15. FOOTER
   ========================================================= */

.site-footer {
    background:
        linear-gradient(
            180deg,
            #080808,
            #040404
        );

    border-top: 1px solid rgba(212, 175, 55, 0.18);
}

.footer-brand p {
    color: #77736c;

    line-height: 1.7;
}

.footer-column h4 {
    color: #d4af37;

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 2px;
}

.footer-column a,
.footer-column span {
    color: #817c74;

    transition:
        color 0.2s ease,
        padding-left 0.2s ease;
}

.footer-column a:hover {
    color: #d4af37;
    padding-left: 3px;
}

.footer-bottom {
    border-top-color: rgba(255, 255, 255, 0.07);
}

.footer-bottom p {
    color: #66615b;
}


/* =========================================================
   16. SEARCH OVERLAY
   ========================================================= */

.search-overlay {
    background:
        rgba(0, 0, 0, 0.90);

    backdrop-filter: blur(10px);
}

.search-box {
    background:
        linear-gradient(
            145deg,
            #191919,
            #0a0a0a
        );

    border: 1px solid rgba(212, 175, 55, 0.25);

    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.60);
}

.search-label {
    color: #d4af37;

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 3px;
}

.search-box h2 {
    font-family: "Cormorant Garamond", Georgia, serif;
    color: #eee9df;
}

.search-input-wrapper {
    border-color: rgba(212, 175, 55, 0.25);

    background: #0b0b0b;
}

.search-input-wrapper:focus-within {
    border-color: #d4af37;

    box-shadow:
        0 0 20px rgba(212, 175, 55, 0.08);
}

.search-input-wrapper input {
    color: #eee9df;
}

.search-input-wrapper input::placeholder {
    color: #66615b;
}

.search-input-icon {
    color: #d4af37;
}


/* =========================================================
   17. EMPTY PRODUCT STATES
   ========================================================= */

.product-empty-state {
    background:
        linear-gradient(
            145deg,
            #151515,
            #0b0b0b
        );

    border: 1px dashed rgba(212, 175, 55, 0.22);
    border-radius: 10px;
}

.product-empty-icon {
    color: #d4af37;

    text-shadow:
        0 0 15px rgba(212, 175, 55, 0.25);
}

.product-empty-state h3 {
    color: #eee9df;

    font-family: "Cormorant Garamond", Georgia, serif;
}

.product-empty-state p {
    color: #817c74;
}


/* =========================================================
   18. BACK TO TOP
   ========================================================= */

.back-to-top {
    color: #080808;

    background:
        linear-gradient(
            135deg,
            #f0d36a,
            #d4af37,
            #a77d19
        );

    border: 1px solid #e0c04c;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.35);

    transition:
        transform 0.2s ease,
        filter 0.2s ease;
}

.back-to-top:hover {
    color: #080808;

    transform: translateY(-3px);

    filter: brightness(1.08);
}


/* =========================================================
   19. MOBILE HOME PAGE
   ========================================================= */

@media (max-width: 900px) {

    .desktop-nav {
        display: none;
    }

    .nav-container {
        min-height: 72px;
    }

    .hero {
        min-height: 620px;
    }

    .hero h1 {
        font-size: clamp(3.5rem, 16vw, 6rem);
    }

    .section-container {
        width: min(100% - 28px, 700px);
    }

    .product-grid {
        gap: 16px;
    }
}


@media (max-width: 600px) {

    .announcement-inner {
        padding-left: 12px;
        padding-right: 12px;
    }

    .announcement-inner p {
        font-size: 8px;
        letter-spacing: 1px;
        text-align: center;
    }

    .announcement-icon {
        font-size: 10px;
    }

    .brand-main {
        font-size: 14px;
    }

    .brand-sub {
        font-size: 8px;
        letter-spacing: 3px;
    }

    .nav-shop-button {
        min-height: 34px;
        padding: 0 9px;
        font-size: 8px;
    }

    .hero {
        min-height: 590px;
    }

    .hero-eyebrow {
        font-size: 8px;
        letter-spacing: 3px;
    }

    .hero-description {
        font-size: 11px;
    }

    .hero-buttons {
        flex-direction: column;
        width: min(280px, 100%);
    }

    .gold-button,
    .outline-button {
        width: 100%;
        text-align: center;
    }

    .status-container {
        padding: 18px 14px;
    }

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

    .product-info {
        padding: 13px;
    }

    .product-info h3 {
        font-size: 1.15rem;
    }

    .product-description {
        font-size: 10px;
    }

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

    .product-order-button {
        min-height: 39px;
        font-size: 7.5px;
        letter-spacing: 0.8px;
    }

    .product-stock,
    .customer-stock-status {
        font-size: 7.5px;
    }

    .promotion-products {
        grid-template-columns: 1fr;
    }

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

    .hours-wrapper {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 390px) {

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

    .product-info h3 {
        font-size: 1.3rem;
    }

    .hero h1 {
        font-size: 3.3rem;
    }
}