:root {
    --accent: #ff5b7f;
    --accent-dark: #232827;
    --soft: #fff3f6;
    --ink: #1d2321;
    --muted: #6c6766;
    --border: #f2d7de;
    --announcement-bg: #fff7fa;
    --announcement-text: #4f4a48;
    --nav-bg: #1a1a1f;
    --nav-hover-bg: #ec2f78;
    --nav-font-size: 13px;
    --shell-width: min(1240px, calc(100% - 32px));
    --shadow-soft: 0 22px 60px rgba(74, 39, 54, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    background: linear-gradient(180deg, #fffaf7 0%, #ffffff 10%, #ffffff 100%);
    font-family: "Manrope", Arial, Helvetica, sans-serif;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
main { display: block; min-height: 45vh; }

.container,
.header-shell,
.mega-nav-list,
.footer-grid,
.footer-bottom,
.section-shell {
    width: var(--shell-width);
    margin: 0 auto;
}

.container,
.section-shell {
    padding-top: 32px;
}

.utility-strip {
    background: var(--announcement-bg);
    color: var(--announcement-text);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 0.72rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.utility-shell {
    width: 100%;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 8px 10px;
}

.utility-links {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.utility-links-left {
    flex: 1 1 0;
    justify-content: flex-start;
}

.utility-links-right {
    flex: 1 1 0;
    justify-content: flex-end;
}

.utility-link { white-space: nowrap; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
    transition: transform 0.26s ease, box-shadow 0.26s ease;
    will-change: transform;
}

.site-header.is-headroom-hidden {
    transform: translateY(calc(-100% - 4px));
    box-shadow: none;
}

.header-shell {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 18px;
    padding: 18px 0 12px;
}

.header-side {
    display: flex;
    align-items: center;
}

.header-side-left { justify-content: flex-start; }

.header-side-right {
    justify-content: flex-end;
    gap: 12px;
}

.header-mini-copy {
    color: var(--muted);
    font-size: 0.82rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.header-branding {
    display: flex;
    justify-content: center;
}

.logo-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.site-logo {
    max-height: 52px;
    width: auto;
}

.site-wordmark {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.header-search {
    display: flex;
    align-items: center;
    min-width: 320px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: #ffffff;
    overflow: hidden;
}

.header-search input {
    flex: 1;
    min-width: 0;
    border: 0;
    outline: none;
    background: transparent;
    padding: 12px 16px;
    font-size: 0.92rem;
}

.header-search button {
    width: 46px;
    height: 46px;
    border: 0;
    background: transparent;
    color: #8f8a89;
    cursor: pointer;
    font-size: 1rem;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-icon-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: #ffffff;
    color: var(--ink);
    font-size: 1.05rem;
}

.header-account-menu {
    position: relative;
    display: inline-flex;
}

.header-account-menu::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    width: 300px;
    height: 14px;
    transform: translateX(-50%);
}

.header-account-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    z-index: 90;
    width: min(300px, calc(100vw - 32px));
    padding: 22px 20px 20px;
    border: 1px solid rgba(255, 91, 127, 0.2);
    background: #ffffff;
    box-shadow: 0 18px 42px rgba(29, 35, 33, 0.16);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 8px);
    transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
    visibility: hidden;
}

.header-account-dropdown::before {
    content: "";
    position: absolute;
    top: -9px;
    left: 50%;
    width: 18px;
    height: 18px;
    background: #ffffff;
    border-left: 1px solid rgba(255, 91, 127, 0.2);
    border-top: 1px solid rgba(255, 91, 127, 0.2);
    transform: translateX(-50%) rotate(45deg);
}

.header-account-menu:hover .header-account-dropdown,
.header-account-menu:focus-within .header-account-dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
    visibility: visible;
}

.header-account-title {
    position: relative;
    margin: 0 0 4px;
    color: #343443;
    font-size: 0.96rem;
    font-weight: 800;
}

.header-account-text {
    position: relative;
    margin: 0 0 14px;
    color: #4f5061;
    font-size: 0.92rem;
    line-height: 1.45;
}

.header-account-actions {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.header-account-actions form {
    margin: 0;
}

.header-account-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 42px;
    border: 1px solid var(--accent);
    border-radius: 3px;
    background: #ffffff;
    color: var(--accent);
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
}

.header-account-button:hover,
.header-account-button:focus {
    background: var(--accent);
    color: #ffffff;
}

.cart-link { overflow: visible; }

.cart-pill {
    position: absolute;
    top: -4px;
    right: -4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    border-radius: 999px;
    background: var(--accent);
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 800;
}

.mega-nav {
    background: var(--nav-bg);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(0, 0, 0, 0.45);
}

.mega-nav-list {
    list-style: none;
    width: 100%;
    margin: 0;
    padding: 0 18px;
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    overflow: visible;
    scrollbar-width: none;
    min-height: 42px;
}

.mega-nav-list::-webkit-scrollbar { display: none; }

.mega-nav-item {
    position: relative;
    flex: 0 0 auto;
    display: flex;
    align-items: stretch;
}

.mega-nav-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 42px;
    padding: 0 14px;
    color: #ffffff;
    font-size: var(--nav-font-size);
    font-weight: 700;
    letter-spacing: 0.01em;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
    transition: background 0.18s ease, color 0.18s ease;
}

.mega-nav-link:hover,
.mega-nav-link:focus-visible {
    background: var(--nav-hover-bg);
    color: #ffffff;
}

.mega-nav-link-label {
    display: inline-block;
}

.mega-nav-item-highlight {
    align-items: center;
}

.mega-nav-link-highlight {
    min-height: 30px;
    margin: 6px 4px;
    padding: 0 14px;
    background: var(--nav-hover-bg);
    font-weight: 800;
}

.mega-nav-link-highlight:hover,
.mega-nav-link-highlight:focus-visible {
    background: var(--nav-hover-bg);
    box-shadow: inset 0 0 0 999px rgba(255, 255, 255, 0.08);
}

.menu-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    height: 18px;
    padding: 0 6px;
    border-radius: 2px;
    background: var(--accent);
    color: #ffffff;
    font-size: 0.58rem;
    font-weight: 800;
    line-height: 1;
}

.mega-dropdown {
    position: absolute;
    left: 0;
    top: 100%;
    width: min(960px, 94vw);
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 30;
}

.mega-nav-item:hover .mega-dropdown,
.mega-nav-item:focus-within .mega-dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.mega-dropdown-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 22px;
    padding: 24px 26px;
    border: 1px solid #e9e5e7;
    border-radius: 0;
    background: #ffffff;
    box-shadow: 0 18px 32px rgba(14, 17, 19, 0.12);
}

.mega-title {
    margin: 0 0 10px;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 1.7rem;
    font-weight: 700;
}

.mega-copy {
    margin: 0 0 16px;
    color: var(--muted);
    line-height: 1.7;
}

.mega-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.mega-links li a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.86rem;
    font-weight: 800;
}

.mega-links li small {
    display: block;
    margin-top: 4px;
    color: var(--muted);
}

.mega-promo-card {
    padding: 16px;
    border-radius: 22px;
    background: linear-gradient(180deg, #fff6f8 0%, #ffffff 100%);
}

.mega-promo-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 14px;
}

.mega-cta {
    color: var(--accent);
    font-weight: 800;
}

.mobile-header-shell,
.mobile-menu-overlay,
.mobile-menu-drawer {
    display: none;
}

.mobile-header-shell {
    padding: 12px 16px;
}

.mobile-header-bar {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 12px;
}

.mobile-header-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 50%;
    background: #ffffff;
    color: var(--ink);
    cursor: pointer;
    font-size: 1.1rem;
}

.mobile-header-burger {
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-header-burger span {
    display: block;
    width: 17px;
    height: 2px;
    border-radius: 999px;
    background: var(--ink);
}

.mobile-logo-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
}

.mobile-site-logo {
    max-height: 34px;
    width: auto;
}

.mobile-site-wordmark {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 1.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.mobile-header-actions {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}

.mobile-cart-link {
    text-decoration: none;
}

.mobile-search-panel {
    padding-top: 12px;
}

.mobile-search-form {
    display: flex;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: #ffffff;
    overflow: hidden;
}

.mobile-search-form input {
    flex: 1;
    min-width: 0;
    padding: 12px 16px;
    border: 0;
    outline: none;
    background: transparent;
}

.mobile-search-form button {
    width: 46px;
    height: 46px;
    border: 0;
    background: transparent;
    color: #8f8a89;
    cursor: pointer;
    font-size: 1rem;
}

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 59;
    background: rgba(17, 12, 16, 0.54);
}

.mobile-menu-drawer {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 60;
    width: min(88vw, 380px);
    height: 100vh;
    background: #ffffff;
    box-shadow: 24px 0 50px rgba(22, 17, 20, 0.18);
    transform: translateX(-100%);
    transition: transform 0.24s ease;
    overflow-y: auto;
}

.mobile-menu-drawer.is-open {
    transform: translateX(0);
}

.mobile-menu-top {
    padding: 18px 18px 12px;
    background: linear-gradient(180deg, #fff8fb 0%, #ffffff 100%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.mobile-account-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    align-items: start;
}

.mobile-account-avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--soft);
    color: var(--accent-dark);
    font-weight: 800;
}

.mobile-account-copy {
    min-width: 0;
}

.mobile-account-greeting {
    margin: 0;
    font-size: 1rem;
    font-weight: 800;
}

.mobile-account-meta {
    margin: 4px 0 10px;
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.5;
}

.mobile-account-link {
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--accent);
    font-weight: 800;
    cursor: pointer;
}

.mobile-menu-close {
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: var(--ink);
    cursor: pointer;
    font-size: 1.8rem;
    line-height: 1;
}

.mobile-menu-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 12px 16px 0;
    gap: 10px;
}

.mobile-menu-tab {
    height: 42px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: #ffffff;
    color: var(--ink);
    font-weight: 800;
    cursor: pointer;
}

.mobile-menu-tab.is-active {
    background: var(--accent);
    border-color: var(--accent);
    color: #ffffff;
}

.mobile-menu-panels {
    padding: 14px 16px 20px;
}

.mobile-nav-list,
.mobile-quick-links {
    display: grid;
    gap: 10px;
}

.mobile-nav-group,
.mobile-quick-link,
.mobile-nav-link-standalone {
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 18px;
    background: #ffffff;
}

.mobile-nav-toggle,
.mobile-nav-link,
.mobile-nav-link-standalone,
.mobile-quick-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
    min-width: 0;
    padding: 14px 16px;
    color: var(--ink);
    font-size: 0.95rem;
    text-align: left;
}

.mobile-nav-toggle {
    border: 0;
    background: transparent;
    font-weight: 800;
    cursor: pointer;
}

.mobile-nav-panel {
    display: grid;
    gap: 0;
    padding: 0 10px 12px;
}

.mobile-nav-link {
    padding: 12px 10px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    text-decoration: none;
}

.mobile-nav-link:first-child {
    border-top: 0;
}

.mobile-nav-link-all {
    font-weight: 800;
    color: var(--accent);
}

.mobile-nav-link-standalone,
.mobile-quick-link {
    text-decoration: none;
    font-weight: 700;
}

.mobile-nav-chevron {
    font-size: 1.2rem;
    transition: transform 0.18s ease;
}

.mobile-nav-toggle.is-open .mobile-nav-chevron {
    transform: rotate(90deg);
}

body.mobile-menu-open {
    overflow: hidden;
}

.mobile-search-panel[hidden],
.mobile-menu-overlay[hidden],
.mobile-menu-panel[hidden],
.mobile-nav-panel[hidden] {
    display: none !important;
}

.desktop-homepage-sections {
    display: block;
}

.mobile-homepage-sections,
.mobile-home-grid-section,
.mobile-home-followup-section {
    display: none;
}

.mobile-home-first-section {
    padding: 14px 12px 22px;
    background: #ffffff;
}

.mobile-home-grid-section,
.mobile-home-followup-section {
    padding: 0 12px 16px;
}

.mobile-home-tabs {
    display: flex;
    align-items: center;
    gap: 22px;
    overflow-x: auto;
    border-bottom: 1px solid #eadfe5;
    scrollbar-width: none;
}

.mobile-home-tabs::-webkit-scrollbar,
.mobile-home-tile-track::-webkit-scrollbar {
    display: none;
}

.mobile-home-tab {
    position: relative;
    padding: 0 0 12px;
    border: 0;
    background: transparent;
    color: #7f6975;
    font-size: 0.94rem;
    font-weight: 800;
    white-space: nowrap;
    cursor: pointer;
}

.mobile-home-tab::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 3px;
    border-radius: 999px;
    background: transparent;
    transition: background 0.18s ease;
}

.mobile-home-tab.is-active {
    color: var(--accent-dark);
}

.mobile-home-tab.is-active::after {
    background: var(--accent);
}

.mobile-home-tab-panels {
    padding-top: 14px;
}

.mobile-home-tab-panel[hidden] {
    display: none !important;
}

.mobile-home-tile-strip {
    margin: 0 0 16px;
}

.mobile-home-tile-track {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
}

.mobile-home-tile-card {
    flex: 0 0 84px;
    width: 84px;
    text-align: center;
}

.mobile-home-tile-image-wrap {
    display: block;
    width: 84px;
    height: 84px;
    border-radius: 22px;
    overflow: hidden;
    background: #f8edf3;
    box-shadow: 0 10px 24px rgba(73, 34, 49, 0.08);
}

.mobile-home-tile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mobile-home-tile-label {
    display: block;
    margin-top: 8px;
    color: var(--ink);
    font-size: 0.76rem;
    font-weight: 700;
    line-height: 1.35;
}

.mobile-home-carousel {
    position: relative;
    margin: 0 0 14px;
    overflow: hidden;
    border-radius: 22px;
    background: #fbf2f6;
    box-shadow: 0 14px 30px rgba(74, 39, 54, 0.08);
}

.mobile-home-carousel-track {
    display: flex;
    width: 100%;
    transition: transform 0.45s ease;
    will-change: transform;
}

.mobile-home-carousel-slide {
    min-width: 100%;
}

.mobile-home-banner-image {
    width: 100%;
    height: auto;
    display: block;
}

.mobile-home-single-banner {
    margin: 0 0 14px;
}

.mobile-home-single-banner-link {
    display: block;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 10px 24px rgba(74, 39, 54, 0.08);
}

.mobile-home-single-banner-link + .mobile-home-single-banner-link {
    margin-top: 12px;
}

.mobile-home-single-banner-image {
    width: 100%;
    height: auto;
    display: block;
}

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

.mobile-home-feature-card {
    display: block;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 24px rgba(74, 39, 54, 0.08);
    background: #fbf2f6;
}

.mobile-home-feature-image {
    width: 100%;
    height: auto;
    display: block;
}

.home-slider {
    position: relative;
    margin: 0 0 20px;
    overflow: hidden;
    background: #f8f0f2;
}

.desktop-homepage-sections #group1-slider-container10.home-slider {
    width: 100%;
    max-width: none;
    aspect-ratio: 16 / 9;
    height: auto;
}

.desktop-homepage-sections #group1-slider-container10 .home-slider-track,
.desktop-homepage-sections #group1-slider-container10 .home-slider-slide,
.desktop-homepage-sections #group1-slider-container10 .home-slider-slide a,
.desktop-homepage-sections #group1-slider-container10 .home-slider-image {
    height: 100%;
}

.home-slider-track {
    display: flex;
    width: 100%;
    transition: transform 0.45s ease;
    will-change: transform;
}

.home-slider-slide {
    flex: 0 0 100%;
    min-width: 100%;
}

.home-slider-slide a,
.home-slider-image {
    display: block;
    width: 100%;
}

.home-slider-image {
    height: auto;
    object-fit: cover;
}

.home-slider-arrow {
    position: absolute;
    top: 50%;
    z-index: 2;
    transform: translateY(-50%);
    width: 44px;
    height: 64px;
    border: 0;
    background: rgba(255, 255, 255, 0.72);
    color: #252525;
    cursor: pointer;
    font-size: 2.4rem;
    line-height: 1;
    transition: background 0.2s ease, opacity 0.2s ease;
}

.home-slider-arrow:hover {
    background: rgba(255, 255, 255, 0.94);
}

.home-slider-prev {
    left: 16px;
}

.home-slider-next {
    right: 16px;
}

.home-ticker-slider {
    margin: 0 0 20px;
    overflow: hidden;
}

.home-ticker-slider .owl-theme,
.home-ticker-slider .slides {
    width: 100%;
}

.home-ticker-slide a,
.home-ticker-image {
    display: block;
    width: 100%;
}

.home-ticker-image {
    height: auto;
    object-fit: cover;
}

.home-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin: 0 0 24px;
}

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

.home-feature-tile {
    display: block;
    overflow: hidden;
    background: #f8f0f2;
}

.home-feature-image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.28s ease;
}

.home-feature-tile:hover .home-feature-image {
    transform: scale(1.02);
}

.shop-collection {
    width: min(100% - 32px, 1680px);
    padding-top: 42px;
}

.shop-intro {
    text-align: center;
    margin-bottom: 28px;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.shop-intro h1,
.page-hero h1 {
    margin: 0;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(2.6rem, 5vw, 4.4rem);
    line-height: 0.96;
}

.shop-intro p,
.page-hero p {
    margin: 10px auto 0;
    max-width: 58ch;
    color: var(--muted);
    line-height: 1.7;
}

.product-sort-bar {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 22px;
    margin: 0;
    padding: 0 0 16px;
    border-bottom: 1px solid #e7e1e4;
    color: #1d1620;
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    scrollbar-width: none;
}

.product-sort-bar::-webkit-scrollbar { display: none; }

.product-sort-bar span {
    color: #ec2f78;
}

.product-sort-bar a {
    color: #1d1620;
}

.product-sort-bar a.is-active,
.product-sort-bar a:hover {
    color: #ec2f78;
}

.product-quick-filter {
    margin: 10px 0 18px;
}

.offerPannel {
    display: flex;
    flex-wrap: nowrap;
    gap: 12px;
    overflow-x: auto;
    padding: 0 0 4px;
    scrollbar-width: none;
}

.offerPannel::-webkit-scrollbar { display: none; }

.quick-filter-capsule {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 16px;
    border: 1px solid #ec2f78;
    border-radius: 999px;
    background: #ffffff;
    color: #1d1620;
    font-size: 0.94rem;
    font-weight: 600;
    white-space: nowrap;
}

.quick-filter-capsule.is-active,
.quick-filter-capsule:hover {
    background: #ec2f78;
    color: #ffffff;
}

.collection-with-filters {
    display: grid;
    gap: 20px;
    margin-top: 18px;
}

.collection-with-filters.uses-fixed-filter {
    grid-template-columns: 260px minmax(0, 1fr);
    align-items: start;
}

.collection-product-results {
    min-width: 0;
}

.bra-filter-panel {
    border: 1px solid #e8e3e5;
    background: #ffffff;
}

.bra-filter-panel.is-fixed {
    position: sticky;
    top: 16px;
    max-height: calc(100vh - 32px);
    overflow-y: auto;
}

.bra-filter-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 14px 14px 12px;
    border-bottom: 1px solid #eee6ea;
}

.bra-filter-head span {
    display: block;
    color: #1d1620;
    font-weight: 900;
    text-transform: uppercase;
}

.bra-filter-head strong,
.bra-filter-head a {
    color: #ec2f78;
    font-size: 0.76rem;
    font-weight: 800;
}

.filter-close-button {
    width: 32px;
    height: 32px;
    border: 0;
    border-radius: 50%;
    background: #f7edf1;
    color: #1d1620;
    font-size: 1.2rem;
    cursor: pointer;
}

.bra-filter-group {
    padding: 14px;
    border-bottom: 1px solid #f0ecee;
}

.bra-filter-group h3 {
    margin: 0 0 10px;
    color: #22131a;
    font-size: 0.86rem;
    font-weight: 900;
}

.bra-filter-options {
    display: grid;
    gap: 8px;
}

.bra-filter-options a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #41373c;
    font-size: 0.86rem;
    line-height: 1.3;
}

.bra-filter-options a::before {
    content: "";
    width: 15px;
    height: 15px;
    border: 1px solid #cfc7cb;
    background: #ffffff;
}

.bra-filter-options a.is-active {
    color: #ec2f78;
    font-weight: 800;
}

.bra-filter-options a.is-active::before {
    border-color: #ec2f78;
    background: #ec2f78;
    box-shadow: inset 0 0 0 3px #ffffff;
}

.filter-empty-option {
    color: #9b9095;
    font-size: 0.82rem;
}

.show-filter-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    min-height: 38px;
    padding: 0 16px;
    border: 1px solid #ec2f78;
    border-radius: 3px;
    background: #ffffff;
    color: #ec2f78;
    font-weight: 900;
    cursor: pointer;
    text-transform: uppercase;
}

.show-filter-button:hover {
    background: #fff3f8;
}

.filter-drawer-backdrop {
    position: fixed;
    inset: 0;
    z-index: 80;
    background: rgba(16, 12, 14, 0.45);
}

.bra-filter-panel.is-drawer {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 90;
    width: min(340px, 90vw);
    height: 100vh;
    overflow-y: auto;
    transform: translateX(-105%);
    transition: transform 180ms ease;
}

.bra-filter-panel.is-drawer.is-open {
    transform: translateX(0);
}

body.filter-drawer-open {
    overflow: hidden;
}

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

.product-card {
    position: relative;
    border: 1px solid #e8e3e5;
    border-radius: 6px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: none;
}

.product-image-frame {
    position: relative;
    overflow: hidden;
    background: #f7f3f3;
    aspect-ratio: 2 / 3;
}

.product-image-link,
.product-image {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
}

.product-image {
    object-fit: cover;
    transition: opacity 180ms ease, transform 220ms ease;
}

.product-image-secondary {
    opacity: 0;
}

.product-card:hover .product-image-primary {
    opacity: 0;
}

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

.product-badge-stack {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    display: grid;
    justify-items: end;
    gap: 4px;
}

.product-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 22px;
    padding: 0 7px;
    border-radius: 0;
    background: #ff7a1a;
    color: #ffffff;
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0;
}

.product-hover-layer {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    padding: 16px;
    background: linear-gradient(180deg, rgba(29, 22, 32, 0) 35%, rgba(29, 22, 32, 0.46) 100%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 160ms ease;
}

.product-card:hover .product-hover-layer {
    opacity: 1;
    pointer-events: none;
}

.product-card:hover .quick-view-button {
    pointer-events: auto;
}

.quick-view-button {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 36px;
    padding: 0 14px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    color: #22131a;
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
}

.hover-size-list {
    width: 100%;
    padding: 10px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.92);
    text-align: center;
}

.hover-size-list span {
    display: block;
    color: #756b70;
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
}

.hover-size-list strong {
    display: block;
    margin-top: 3px;
    color: #22131a;
    font-size: 0.78rem;
    line-height: 1.35;
}

.product-copy {
    position: relative;
    padding: 10px 10px 12px;
}

.product-title-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 32px;
    gap: 8px;
    align-items: start;
}

.product-meta {
    display: inline-block;
    margin-bottom: 3px;
    color: #777174;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: none;
}

.product-copy h3 {
    display: -webkit-box;
    min-height: 34px;
    margin: 0 0 5px;
    overflow: hidden;
    color: #352a30;
    font-size: 0.78rem;
    font-weight: 500;
    line-height: 1.35;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.wishlist-button {
    width: 30px;
    height: 30px;
    border: 1px solid #eee3e8;
    border-radius: 50%;
    background: #ffffff;
    color: #ec2f78;
    font-size: 1.05rem;
    cursor: pointer;
}

.price-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    color: #22131a;
    font-size: 0.82rem;
    font-weight: 800;
}

.old-price {
    color: #8d8687;
    text-decoration: line-through;
    font-weight: 600;
}

.tax-note {
    display: block;
    margin-top: 2px;
    color: #9c9296;
    font-size: 0.66rem;
}

.listing-cart-form {
    margin: 0;
}

.product-card-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-top: 9px;
}

.rating-dot {
    color: #f5a400;
    font-size: 0.72rem;
    font-weight: 800;
}

.rating-dot small {
    color: #81777c;
    font-weight: 700;
}

.add-to-cart-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 24px;
    min-width: 92px;
    padding: 0 9px;
    border: 0;
    border-radius: 2px;
    background: #ec2f78;
    color: #ffffff;
    font-size: 0.64rem;
    font-weight: 800;
    cursor: pointer;
    text-transform: uppercase;
}

.size-select-drawer {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 5;
    padding: 14px 12px 12px;
    border-top: 1px solid #eee3e8;
    background: #ffffff;
    box-shadow: 0 -10px 24px rgba(29, 22, 32, 0.12);
    transform: translateY(105%);
    transition: transform 180ms ease;
}

.product-card.is-selecting-size .size-select-drawer {
    transform: translateY(0);
}

.size-select-drawer > strong {
    display: block;
    margin-bottom: 10px;
    color: #22131a;
    font-size: 0.82rem;
}

.size-drawer-close {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 28px;
    height: 28px;
    border: 0;
    border-radius: 50%;
    background: #f7edf1;
    color: #22131a;
    cursor: pointer;
}

.size-option-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(48px, 1fr));
    gap: 8px;
}

.size-option-grid button {
    min-height: 34px;
    border: 1px solid #ded4d9;
    border-radius: 4px;
    background: #ffffff;
    color: #22131a;
    cursor: pointer;
    font-size: 0.78rem;
    font-weight: 800;
}

.size-option-grid button.is-selected {
    border-color: #ec2f78;
    background: #fff3f8;
    color: #ec2f78;
}

body.quick-view-open {
    overflow: hidden;
}

.quick-view-modal[hidden] {
    display: none !important;
}

.quick-view-modal {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: grid;
    place-items: center;
    padding: 28px;
}

.quick-view-backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(18, 16, 18, 0.62);
    cursor: pointer;
}

.quick-view-dialog {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(320px, 0.92fr) minmax(360px, 1fr);
    gap: 26px;
    width: min(960px, 100%);
    max-height: min(720px, calc(100vh - 44px));
    overflow: auto;
    padding: 28px 28px 16px;
    border-radius: 6px;
    background: #ffffff;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

.quick-view-close {
    position: absolute;
    top: 12px;
    right: 14px;
    z-index: 3;
    width: 32px;
    height: 32px;
    border: 0;
    background: transparent;
    color: #b6afb2;
    cursor: pointer;
    font-size: 1.7rem;
    line-height: 1;
}

.quick-view-gallery {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 12px;
    min-width: 0;
}

.quick-view-thumbs {
    display: grid;
    align-content: start;
    gap: 9px;
    max-height: 460px;
    overflow: auto;
}

.quick-view-thumbs button {
    width: 54px;
    height: 66px;
    padding: 0;
    border: 2px solid transparent;
    border-radius: 2px;
    background: #f4eeee;
    cursor: pointer;
    overflow: hidden;
}

.quick-view-thumbs button.is-active {
    border-color: #ec2f78;
}

.quick-view-thumbs img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.quick-view-main {
    position: relative;
    min-height: 460px;
    background: #f6f1f2;
    overflow: hidden;
}

.quick-view-main img {
    width: 100%;
    height: 100%;
    min-height: 460px;
    object-fit: cover;
    display: block;
}

.quick-view-nav {
    position: absolute;
    top: 50%;
    width: 46px;
    height: 58px;
    border: 1px solid rgba(255, 255, 255, 0.55);
    background: rgba(255, 255, 255, 0.24);
    color: #ffffff;
    cursor: pointer;
    font-size: 2.3rem;
    line-height: 1;
    transform: translateY(-50%);
}

.quick-view-nav.is-prev {
    left: 10px;
}

.quick-view-nav.is-next {
    right: 10px;
}

.quick-view-discount {
    position: absolute;
    top: 18px;
    right: 10px;
    min-height: 30px;
    padding: 5px 10px;
    border-radius: 4px;
    background: #ec2f78;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 900;
}

.quick-view-info {
    min-width: 0;
    padding: 16px 8px 0 0;
}

.quick-view-info h2 {
    margin: 0 34px 4px 0;
    color: #22131a;
    font-size: 1.18rem;
    line-height: 1.2;
    font-weight: 800;
}

.quick-view-code {
    margin: 0 0 12px;
    color: #483a40;
    font-size: 0.9rem;
}

.quick-view-price-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    padding: 12px 10px;
    border: 1px solid #f1e6ea;
    background: #fffdfd;
}

.quick-view-price-row strong {
    color: #ec2f78;
    font-size: 1.2rem;
}

.quick-view-price-row span {
    color: #8d8687;
    text-decoration: line-through;
    font-weight: 700;
}

.quick-view-description {
    margin: 0 0 12px;
    color: #6a6065;
    font-size: 0.9rem;
    line-height: 1.55;
}

.quick-view-cart-form {
    display: grid;
    gap: 12px;
}

.quick-view-field > span {
    display: block;
    margin-bottom: 6px;
    color: #2f262b;
    font-size: 0.86rem;
    font-weight: 700;
}

.quick-view-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.quick-view-pills button,
.quick-view-pills span {
    min-height: 26px;
    padding: 4px 8px;
    border: 1px solid #ff5b8f;
    border-radius: 3px;
    background: #ffffff;
    color: #ec2f78;
    cursor: pointer;
    font-size: 0.76rem;
    font-weight: 700;
}

.quick-view-pills button.is-selected {
    background: #fff0f6;
    border-color: #c2185b;
    color: #8a0d42;
}

.quick-view-actions {
    display: grid;
    grid-template-columns: auto minmax(170px, 1fr) 44px;
    gap: 14px;
    align-items: end;
    margin-top: 8px;
}

.quick-view-actions label {
    display: grid;
    gap: 5px;
    color: #2f262b;
    font-size: 0.82rem;
    font-weight: 700;
}

.quick-view-actions select {
    width: 54px;
    height: 36px;
    border: 1px solid #d9d1d5;
    border-radius: 3px;
    background: #ffffff;
}

.quick-view-actions button[type="submit"] {
    height: 46px;
    border: 0;
    border-radius: 3px;
    background: #e81563;
    color: #ffffff;
    cursor: pointer;
    font-weight: 900;
    text-transform: uppercase;
}

.quick-view-heart {
    width: 44px;
    height: 46px;
    border: 0;
    background: #ffffff;
    color: #e81563;
    cursor: pointer;
    font-size: 1.85rem;
    line-height: 1;
}

.quick-view-detail-link {
    display: inline-flex;
    justify-self: end;
    margin-top: 14px;
    color: #34282e;
    font-size: 0.92rem;
    font-weight: 700;
}

.quick-view-detail-link::before {
    content: "\1F50D";
    margin-right: 6px;
}

.quick-view-service-strip {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-top: 28px;
    padding: 14px;
    background: #eeeeee;
    color: #42383d;
    font-size: 0.74rem;
    font-weight: 700;
    text-transform: uppercase;
}

.discount-pill {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 0 10px;
    border-radius: 4px;
    background: #ffe8ef;
    color: var(--accent-dark);
    font-size: 0.78rem;
    font-weight: 800;
    vertical-align: middle;
}

.product-detail-price {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.page-hero { text-align: center; }

.page-content {
    max-width: 860px;
    line-height: 1.8;
    color: #2e3432;
}

.page-content img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
}

.page-content h2,
.page-content h3 {
    font-family: "Cormorant Garamond", Georgia, serif;
    margin-top: 28px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(180deg, #ff6f7d 0%, #ff5c72 100%);
    color: #ffffff;
    font-weight: 800;
    cursor: pointer;
}

.auth-page {
    display: flex;
    justify-content: center;
    padding-top: 48px;
}

.auth-panel,
.account-panel,
.account-hero {
    border: 1px solid var(--border);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 18px 44px rgba(38, 30, 34, 0.08);
}

.auth-panel {
    width: min(100%, 520px);
    padding: 30px;
}

.auth-panel-wide {
    width: min(100%, 780px);
}

.auth-copy h1,
.account-hero h1,
.account-panel h2 {
    margin: 0;
    font-family: "Cormorant Garamond", Georgia, serif;
}

.auth-copy h1,
.account-hero h1 {
    font-size: clamp(2.1rem, 5vw, 3.4rem);
}

.auth-copy p,
.account-hero p,
.account-muted,
.checkout-account-note {
    color: var(--muted);
}

.auth-eyebrow {
    margin: 0 0 6px;
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.auth-alert {
    margin: 18px 0;
    padding: 12px 14px;
    border-radius: 8px;
    font-size: 0.92rem;
    line-height: 1.5;
}

.auth-alert-error {
    border: 1px solid #f1b8c4;
    background: #fff1f4;
    color: #9c1d37;
}

.auth-alert-note {
    border: 1px solid #d8e4ef;
    background: #f6fbff;
    color: #304b61;
}

.google-auth-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    margin-top: 20px;
    border: 1px solid #d9dde3;
    border-radius: 8px;
    background: #ffffff;
    font-weight: 800;
}

.google-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #ffffff;
    color: #4285f4;
    font-weight: 900;
}

.auth-divider {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 20px 0;
    color: var(--muted);
    font-size: 0.84rem;
}

.auth-divider::before,
.auth-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--border);
}

.auth-form {
    display: grid;
    gap: 16px;
}

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

.auth-form label {
    display: grid;
    gap: 7px;
    color: var(--ink);
    font-size: 0.9rem;
    font-weight: 800;
}

.auth-form input {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 12px 13px;
    outline: none;
}

.auth-form input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(255, 91, 127, 0.15);
}

.auth-submit,
.auth-grid-full {
    width: 100%;
}

.auth-grid-full {
    grid-column: 1 / -1;
}

.auth-switch {
    margin: 20px 0 0;
    color: var(--muted);
    text-align: center;
}

.auth-switch a,
.checkout-account-note a {
    color: var(--accent);
    font-weight: 800;
}

.account-page {
    padding-top: 42px;
}

.account-hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    padding: 28px;
}

.account-grid {
    display: grid;
    grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.4fr);
    gap: 22px;
    margin-top: 22px;
}

.account-panel {
    padding: 24px;
}

.account-details {
    display: grid;
    gap: 16px;
    margin: 18px 0 0;
}

.account-details div {
    display: grid;
    gap: 4px;
}

.account-details dt,
.account-order span {
    color: var(--muted);
    font-size: 0.85rem;
}

.account-details dd {
    margin: 0;
    font-weight: 800;
}

.account-logout {
    min-height: 42px;
    padding: 0 18px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: #ffffff;
    color: var(--ink);
    cursor: pointer;
    font-weight: 800;
}

.account-order-list {
    display: grid;
    gap: 10px;
    margin-top: 18px;
}

.account-order {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}

.account-order div {
    display: grid;
    gap: 4px;
}

.account-order div:last-child {
    text-align: right;
}

.checkout-account-note {
    margin: 0 0 18px;
}

.empty-state {
    padding: 56px 28px;
    border: 1px solid var(--border);
    border-radius: 28px;
    background: linear-gradient(180deg, #fff7fa 0%, #ffffff 100%);
    text-align: center;
}

.empty-state h2 {
    margin: 0 0 8px;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 2rem;
}

.empty-state p {
    margin: 0;
    color: var(--muted);
}

.site-footer {
    margin-top: 80px;
    padding: 42px 0 24px;
    border-top: 1px solid var(--border);
    background: linear-gradient(180deg, #fff9fb 0%, #fff4f7 100%);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
}

.footer-grid h4 {
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.footer-grid p,
.footer-grid li {
    color: var(--muted);
    line-height: 1.75;
}

.footer-grid ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-bottom {
    margin-top: 26px;
    padding-top: 18px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    color: var(--muted);
    font-size: 0.9rem;
}

@media (max-width: 1180px) {
    .header-shell {
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .header-side-left,
    .header-side-right {
        justify-content: center;
    }

}

@media (max-width: 960px) {
    .utility-shell,
    .utility-links {
        justify-content: center;
    }

    .header-search { min-width: min(100%, 460px); }
    .mega-dropdown { width: min(720px, 94vw); }
    .mega-dropdown-grid { grid-template-columns: 1fr; }

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

    .quick-view-modal {
        padding: 12px;
        align-items: end;
    }

    .quick-view-dialog {
        grid-template-columns: 1fr;
        gap: 18px;
        max-height: calc(100vh - 24px);
        padding: 18px 14px 14px;
    }

    .quick-view-gallery {
        grid-template-columns: 1fr;
    }

    .quick-view-thumbs {
        order: 2;
        display: flex;
        max-height: none;
        overflow-x: auto;
        padding-bottom: 2px;
    }

    .quick-view-thumbs button {
        flex: 0 0 52px;
    }

    .quick-view-main,
    .quick-view-main img {
        min-height: 320px;
    }

    .quick-view-info {
        padding: 0;
    }

    .quick-view-info h2 {
        margin-right: 36px;
        font-size: 1rem;
    }

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

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

@media (max-width: 720px) {
    .utility-strip { display: none; }

    .site-header {
        background: rgba(255, 255, 255, 0.98);
    }

    .mobile-header-shell,
    .mobile-menu-overlay,
    .mobile-menu-drawer {
        display: block;
    }

    .header-shell,
    .mega-nav {
        display: none;
    }

    .container,
    .section-shell,
    .footer-grid,
    .footer-bottom {
        width: min(100% - 24px, 1240px);
    }

    .desktop-homepage-sections {
        display: none;
    }

    .mobile-homepage-sections,
    .mobile-home-grid-section,
    .mobile-home-followup-section {
        display: block;
    }

    .collection-with-filters.uses-fixed-filter {
        grid-template-columns: 1fr;
    }

    .bra-filter-panel.is-fixed {
        position: static;
        max-height: none;
    }

    .product-sort-bar {
        flex-wrap: nowrap;
        gap: 16px;
        overflow-x: auto;
        white-space: nowrap;
    }

    .product-sort-bar span {
        flex: 0 0 auto;
    }

    .home-slider-arrow {
        width: 34px;
        height: 48px;
        font-size: 1.8rem;
    }

    .home-slider-prev {
        left: 8px;
    }

    .home-slider-next {
        right: 8px;
    }

    .home-feature-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .auth-page,
    .account-page {
        padding-top: 28px;
    }

    .auth-panel {
        padding: 22px;
    }

    .auth-form-grid,
    .account-grid {
        grid-template-columns: 1fr;
    }

    .account-hero,
    .account-order {
        align-items: flex-start;
        flex-direction: column;
    }

    .account-order div:last-child {
        text-align: left;
    }

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

    .quick-view-actions {
        grid-template-columns: auto minmax(0, 1fr) 42px;
        gap: 10px;
    }

    .quick-view-service-strip {
        flex-wrap: wrap;
        gap: 8px 14px;
        margin-top: 18px;
    }

    .add-to-cart-chip {
        min-width: 76px;
    }
}
