/* NAV + TOP STRIP */
.upper-menu, .main-menu {
    display: flex;
    justify-content: space-between;
    padding: 2vh 5vw;
    font-size: 2.5vh;
    color: #f7f2ea; /* light cream text on dark bars */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.18);
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.upper-menu {
    background: #2f221e; /* darker cocoa */
}

.main-menu {
    align-items: center;
    font-size: 3vh;
    background: #3b2a26; /* cocoa nav */
}

/* LOGO */
.main-menu .logo-link img {
    height: 10vh;
    vertical-align: middle;
}

/* NAV LINKS */
.main-menu .duo-links {
    display: flex;
    align-items: center;
    gap: 4vw;
    flex-wrap: nowrap;
}

.duo-links a, .main-menu a, .sub-menu a {
    text-decoration: none;
    color: #f7f2ea; /* cream text */
    font-weight: bold;
    transition: color 0.25s ease, opacity .2s ease;
}

.sub-menu a {
    color:#3b2a26;
}

.sub-menu.footer h2 {
    color:#f7f2ea;
}

.sub-menu.footer a {
    color:#c9a15b;
}

.sub-menu.footer a:hover {
    color:#f7f2ea;
}

.duo-links a:hover, .main-menu a:hover {
    color: #c9a15b; /* warm gold accent */
}

/* CART ICON */
.main-menu a.icon svg {
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
}

/* SECTION MENU / FOOTER STRIP */
.sub-menu {
    display: flex;
    padding: 2vh 5vw;
    font-size: 2.5vh;
    background-color: #fff7ec; /* light cream */
    color: #2b211e; /* dark cocoa text */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-top: 1px solid #e8dccb;
    align-items: center;
    justify-content: space-evenly;
}

.sub-menu h3 {
    font-weight: bold;
}

.sub-menu.footer {
    background-color: #2f221e;
}

/* FOOTER LISTS */
.list {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* HAMBURGER */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    outline: none; 
    -webkit-tap-highlight-color: transparent;
}

.hamburger:focus, .hamburger:active {
    outline: none;
    box-shadow: none;
    background: none;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background: #f7f2ea; /* light bars to contrast dark header */
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s, background .2s;
}

.hamburger:hover span {
    background: #c9a15b; /* gold on hover */
}

.hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* BREADCRUMBS */
.breadcrumb-nav{
    background-color:#fff7ec; /* cream to match sub-menu */
    box-shadow:0 4px 8px rgba(0,0,0,.05);
    border-bottom:1px solid #e8dccb;

    padding:1.5vh 5vw;
    font-size:2.25vh;
    font-family:'Atma',sans-serif;
    color:#2b211e;
}

.breadcrumb-list{
    margin:0;
    padding:0;
    list-style:none;
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    gap:1vw;
}

.breadcrumb-item{
    display:flex;
    align-items:center;
    color:#2b211e;
    font-weight:600;
}

/* arrow separator in gold */
.breadcrumb-item + .breadcrumb-item::before{
    content:"›";
    margin:0 .5vw;
    color:#c9a15b;
    font-weight:700;
}

.breadcrumb-item a{
    text-decoration:none;
    color:#2b211e;
    transition:color .2s ease;
}
.breadcrumb-item a:hover{
    color:#8b5e3c; /* caramel hover */
}

.hidden-desktop { display: none; }

@media only screen and (max-width: 768px) {

    html, body {
        margin: 0;
        padding: 0;
        width: 100%;
        overflow-x: hidden;
    }

    .upper-menu {
        display: none;
    }

    .main-menu {
        width: 100%;
        margin: 0;
        padding: 2vh 5vw;
        box-sizing: border-box;
    }

    .hamburger {
        display: flex;
    }

    .hidden-mobile {
        display: none;
    }

    .hidden-desktop {
        display: inline;
    }

    .nav-menu {
        width: 100%;
        margin: 0;
        padding: 0 5vw;
        box-sizing: border-box;
        overflow: hidden;
        max-height: 0;
        opacity: 0;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        transition: max-height 0.35s ease-out, opacity 0.2s ease-out, padding 0.2s ease-out;
    }

    .nav-menu.open {
        max-height: 30rem;
        opacity: 1;
        padding: 2vh 5vw;
    }

    .promo-banner {
        width: 100%;
        margin: 0;
        padding: 1.5vh 2vw;
        box-sizing: border-box;
        border-radius: 0;
    }

    .breadcrumb-nav {
        display: none;
    }

    .sub-menu.footer {
        width: 100%;
        margin: 0;
        padding: 2.5vh 5vw;
        box-sizing: border-box;
        background-color: #2f221e;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1.25rem;
        text-align: center;
        border-top: 1px solid #e8dccb;
        box-shadow: none;
        color: #f7f2ea;
    }

    .sub-menu.footer .logo-link img {
        display: none;
        height: 0;
        max-height: 0;
        margin: 0;
    }

    .sub-menu.footer .list {
        width: 100%;
        max-width: 520px;
        align-items: center;
        gap: 0.25rem;
        display: flex;
        flex-direction: column;
    }

    .sub-menu.footer .list h3 {
        margin-bottom: 0.25rem;
        font-size: 2.4vh;
        font-weight: 800;
        letter-spacing: 0.02em;
        color: #f7f2ea;
    }

    .sub-menu.footer .list a {
        display: block;
        padding: 0.4rem 0;
        font-size: 2.1vh;
        color: #c9a15b;
        text-decoration: none;
        transition: color 0.25s ease, opacity 0.2s ease;
    }

    .sub-menu.footer .list a:hover {
        color: #f7f2ea;
    }

    .sub-menu.footer .footer-links {
        display: flex;
        gap: 1rem;
        justify-content: center;
        margin-top: 0.25rem;
    }

    .sub-menu.footer .footer-links a {
        color: #c9a15b;
    }

    .sub-menu.footer .footer-links a:hover {
        color: #f7f2ea;
    }
}


/* PROMO BANNER */
.promo-banner {
    background-color: #FF66C4;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25' viewBox='0 0 1600 1200'%3E%3Cdefs%3E%3ClinearGradient id='a' x1='0' x2='0' y1='0' y2='100%25' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0' stop-color='%23e571b6'/%3E%3Cstop offset='0.02' stop-color='%23FF66C4'/%3E%3Cstop offset='0.02' stop-color='%23fd69c4'/%3E%3Cstop offset='0.032' stop-color='%23FF66C4'/%3E%3Cstop offset='0.032' stop-color='%23f174bf'/%3E%3Cstop offset='0.056' stop-color='%23FF66C4'/%3E%3Cstop offset='0.056' stop-color='%23f896ce'/%3E%3Cstop offset='0.07' stop-color='%23FF66C4'/%3E%3Cstop offset='0.07' stop-color='%23fa64c0'/%3E%3Cstop offset='0.1' stop-color='%23FF66C4'/%3E%3Cstop offset='0.1' stop-color='%23f98fcc'/%3E%3Cstop offset='0.126' stop-color='%23FF66C4'/%3E%3Cstop offset='0.126' stop-color='%23e87ebc'/%3E%3Cstop offset='0.142' stop-color='%23FF66C4'/%3E%3Cstop offset='0.142' stop-color='%23ec7cbe'/%3E%3Cstop offset='0.159' stop-color='%23FF66C4'/%3E%3Cstop offset='0.159' stop-color='%23e45fb0'/%3E%3Cstop offset='0.17' stop-color='%23FF66C4'/%3E%3Cstop offset='0.17' stop-color='%23fc94d0'/%3E%3Cstop offset='0.197' stop-color='%23FF66C4'/%3E%3Cstop offset='0.197' stop-color='%23fe68c4'/%3E%3Cstop offset='0.218' stop-color='%23FF66C4'/%3E%3Cstop offset='0.218' stop-color='%23e55db0'/%3E%3Cstop offset='0.239' stop-color='%23FF66C4'/%3E%3Cstop offset='0.239' stop-color='%23fc7dc8'/%3E%3Cstop offset='0.254' stop-color='%23FF66C4'/%3E%3Cstop offset='0.254' stop-color='%23ef73bd'/%3E%3Cstop offset='0.283' stop-color='%23FF66C4'/%3E%3Cstop offset='0.283' stop-color='%23fe99d3'/%3E%3Cstop offset='0.294' stop-color='%23FF66C4'/%3E%3Cstop offset='0.294' stop-color='%23fe66c4'/%3E%3Cstop offset='0.305' stop-color='%23FF66C4'/%3E%3Cstop offset='0.305' stop-color='%23e565b3'/%3E%3Cstop offset='0.332' stop-color='%23FF66C4'/%3E%3Cstop offset='0.332' stop-color='%23fb9dd3'/%3E%3Cstop offset='0.346' stop-color='%23FF66C4'/%3E%3Cstop offset='0.346' stop-color='%23e261af'/%3E%3Cstop offset='0.362' stop-color='%23FF66C4'/%3E%3Cstop offset='0.362' stop-color='%23ff6bc5'/%3E%3Cstop offset='0.381' stop-color='%23FF66C4'/%3E%3Cstop offset='0.381' stop-color='%23fb7ac7'/%3E%3Cstop offset='0.415' stop-color='%23FF66C4'/%3E%3Cstop offset='0.415' stop-color='%23fd6ec5'/%3E%3Cstop offset='0.428' stop-color='%23FF66C4'/%3E%3Cstop offset='0.428' stop-color='%23fe6dc5'/%3E%3Cstop offset='0.442' stop-color='%23FF66C4'/%3E%3Cstop offset='0.442' stop-color='%23f873c3'/%3E%3Cstop offset='0.456' stop-color='%23FF66C4'/%3E%3Cstop offset='0.456' stop-color='%23de5aab'/%3E%3Cstop offset='0.498' stop-color='%23FF66C4'/%3E%3Cstop offset='0.498' stop-color='%23ed69b9'/%3E%3Cstop offset='0.511' stop-color='%23FF66C4'/%3E%3Cstop offset='0.511' stop-color='%23f971c3'/%3E%3Cstop offset='0.532' stop-color='%23FF66C4'/%3E%3Cstop offset='0.532' stop-color='%23f27fc2'/%3E%3Cstop offset='0.541' stop-color='%23FF66C4'/%3E%3Cstop offset='0.541' stop-color='%23fc6ec4'/%3E%3Cstop offset='0.56' stop-color='%23FF66C4'/%3E%3Cstop offset='0.56' stop-color='%23f376c1'/%3E%3Cstop offset='0.581' stop-color='%23FF66C4'/%3E%3Cstop offset='0.581' stop-color='%23ff6ec6'/%3E%3Cstop offset='0.6' stop-color='%23FF66C4'/%3E%3Cstop offset='0.6' stop-color='%23e05fae'/%3E%3Cstop offset='0.618' stop-color='%23FF66C4'/%3E%3Cstop offset='0.618' stop-color='%23fd9fd4'/%3E%3Cstop offset='0.656' stop-color='%23FF66C4'/%3E%3Cstop offset='0.656' stop-color='%23fc67c2'/%3E%3Cstop offset='0.679' stop-color='%23FF66C4'/%3E%3Cstop offset='0.679' stop-color='%23dd6aae'/%3E%3Cstop offset='0.689' stop-color='%23FF66C4'/%3E%3Cstop offset='0.689' stop-color='%23ed75bc'/%3E%3Cstop offset='0.720' stop-color='%23FF66C4'/%3E%3Cstop offset='0.720' stop-color='%23ef8ec6'/%3E%3Cstop offset='0.734' stop-color='%23FF66C4'/%3E%3Cstop offset='0.734' stop-color='%23f86dc1'/%3E%3Cstop offset='0.748' stop-color='%23FF66C4'/%3E%3Cstop offset='0.748' stop-color='%23fe6cc5'/%3E%3Cstop offset='0.764' stop-color='%23FF66C4'/%3E%3Cstop offset='0.764' stop-color='%23f066ba'/%3E%3Cstop offset='0.788' stop-color='%23FF66C4'/%3E%3Cstop offset='0.788' stop-color='%23f493cb'/%3E%3Cstop offset='0.808' stop-color='%23FF66C4'/%3E%3Cstop offset='0.808' stop-color='%23fa84ca'/%3E%3Cstop offset='0.831' stop-color='%23FF66C4'/%3E%3Cstop offset='0.831' stop-color='%23f17dc1'/%3E%3Cstop offset='0.856' stop-color='%23FF66C4'/%3E%3Cstop offset='0.856' stop-color='%23eb68b7'/%3E%3Cstop offset='0.872' stop-color='%23FF66C4'/%3E%3Cstop offset='0.872' stop-color='%23f876c4'/%3E%3Cstop offset='0.894' stop-color='%23FF66C4'/%3E%3Cstop offset='0.894' stop-color='%23fe6ac4'/%3E%3Cstop offset='0.914' stop-color='%23FF66C4'/%3E%3Cstop offset='0.914' stop-color='%23fc7bc8'/%3E%3Cstop offset='0.942' stop-color='%23FF66C4'/%3E%3Cstop offset='0.942' stop-color='%23f290c8'/%3E%3Cstop offset='0.957' stop-color='%23FF66C4'/%3E%3Cstop offset='0.957' stop-color='%23f697cd'/%3E%3Cstop offset='0.973' stop-color='%23FF66C4'/%3E%3Cstop offset='0.973' stop-color='%23ec7bbd'/%3E%3Cstop offset='1' stop-color='%23FF66C4'/%3E%3Cstop offset='1' stop-color='%23fa85ca'/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect fill='url(%23a)' x='0' y='0' width='100%25' height='100%25'/%3E%3C/svg%3E");
    background-size: cover;
    color: #fff;
    text-align: center;
    padding: 1.5vh 2vw;
    position: relative;
    overflow: hidden;
}

.promo-banner a {
    color: #fff;
    text-decoration: underline;
    text-shadow: #fff 0 0 5px;
}

.promo-banner a:hover {
    color: #fff !important;
    text-decoration: underline !important;
    text-shadow: #fff 0 0 5px !important;
}