/*=============================================
  GLOBAL & RESET
=============================================*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #1a1a1c;
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/*=============================================
  MAIN HERO WRAPPER
=============================================*/
.hero-wrapper {
    background-color: #1a1a1c;
    padding: 24px; 
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.hero-inner {
    background-color: #ffffff;
    border-radius: 0 0 0 32px;
    width: 100%;
    flex-grow: 1;
    position: relative;
    overflow: visible;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/*=============================================
  CUTOUT CONTAINERS
=============================================*/
.cutout-tl {
    position: absolute;
    top: -1px;
    left: -1px;
    width: 330px;
    height: 86px;
    background-color: #1a1a1c;
    border-bottom-right-radius: 28px;
    display: flex;
    align-items: center;
    padding-left: 24px;
    color: white;
    z-index: 10;
    border: none;
    outline: none;
}
.cutout-tl::after, .cutout-tl::before {
    content: ""; position: absolute; width: 28px; height: 28px;
}
.cutout-tl::after { 
    bottom: -28px; left: 0; 
    background-image: radial-gradient(circle at bottom right, transparent 27.5px, #1a1a1c 28px); 
}
.cutout-tl::before { 
    top: 0; right: -28px; 
    background-image: radial-gradient(circle at bottom right, transparent 27.5px, #1a1a1c 28px); 
}

.cutout-tr {
    position: absolute;
    top: -1px;
    right: -1px;
    width: 322px;
    height: 86px;
    background-color: #1a1a1c;
    border-bottom-left-radius: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-right: 24px;
    z-index: 10;
    border: none;
    outline: none;
}
.cutout-tr::after, .cutout-tr::before {
    content: ""; position: absolute; width: 28px; height: 28px;
}
.cutout-tr::after { 
    bottom: -28px; right: 0; 
    background-image: radial-gradient(circle at bottom left, transparent 27.5px, #1a1a1c 28px); 
}
.cutout-tr::before { 
    top: 0; left: -28px; 
    background-image: radial-gradient(circle at bottom left, transparent 27.5px, #1a1a1c 28px); 
}

.cutout-br {
    position: absolute;
    bottom: -1px;
    right: -1px;
    width: 262px;
    height: 81px;
    background-color: #1a1a1c;
    border-top-left-radius: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-right: 24px;
    z-index: 10;
    border: none;
    outline: none;
}
.cutout-br::after, .cutout-br::before {
    content: ""; position: absolute; width: 28px; height: 28px;
}
.cutout-br::after { 
    top: -28px; right: 0; 
    background-image: radial-gradient(circle at top left, transparent 27.5px, #1a1a1c 28px); 
}
.cutout-br::before { 
    bottom: 0; left: -28px; 
    background-image: radial-gradient(circle at top left, transparent 27.5px, #1a1a1c 28px); 
}

/*=============================================
  CUTOUT COMPONENTS
=============================================*/
.brand-logo {
    height: 120px;
    width: auto;
    object-fit: contain;
}

.tr-actions {
    display: flex;
    gap: 15px;
}
.lang-btn, .connect-btn {
    background: transparent;
    border-radius: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    font-family: inherit;
    font-size: 14px;
    transition: background 0.3s;
}
.lang-btn {
    color: #ccc;
    border: 1px solid #444;
    padding: 10px 20px;
}
.lang-btn:hover { background: #333; }

.connect-btn {
    color: white;
    border: 1px solid #777;
    padding: 6px 16px 6px 16px;
    gap: 12px;
}
.connect-btn:hover { background: #333; }

.circle-arrow {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 26px;
    height: 26px;
    background: #fff;
    color: #1a1a1c;
    border-radius: 50%;
    font-weight: 600;
    font-size: 16px;
    /* Adjust margin so it looks like the icon is naturally leading the button */
    margin-left: -10px;
}

.br-content {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #bbb;
    font-size: 14px;
}
.toggle {
    display: flex;
    background: transparent;
    border: 1px solid #555;
    border-radius: 24px;
    padding: 3px;
}
.toggle button {
    background: transparent;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 13px;
    font-family: inherit;
    font-weight: 500;
    padding: 6px 12px;
    transition: 0.2s;
}
.toggle .off {
    background: #fff;
    color: #000;
    border-radius: 24px;
}

/*=============================================
  TOP NAVIGATION
=============================================*/
.top-nav {
    position: fixed;
    top: 32px;
    left: 50%; 
    transform: translateX(-50%);
    display: flex;
    gap: 35px;
    padding: 12px 40px;
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 40px;
    background: rgba(255,255,255,0.55);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 200;
    transition: background 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    white-space: nowrap;
}
.top-nav.scrolled {
    background: rgba(255,255,255,0.85);
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}
.top-nav a {
    text-decoration: none;
    color: #222;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}
.top-nav a:hover {
    color: #1a1a1c;
    opacity: 0.6;
}

/*=============================================
  INTERNAL PAGE HEADER & GLOBAL CLASSES
=============================================*/
.page-header {
    background: rgba(14,14,16,0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.07);
    height: 125px;
    position: relative;
    width: 100%;
    z-index: 200;
    transition: background 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.page-header.scrolled {
    background: rgba(14,14,16,1);
    box-shadow: 0 4px 32px rgba(0,0,0,0.5);
}
.catalog-logo-wrap {
    position: absolute;
    left: 48px;
    top: 50%;
    transform: translateY(-50%);
}
.page-header .brand-logo {
    height: 120px;
    width: auto;
    object-fit: contain;
}
.page-header .internal-nav {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 35px;
    padding: 10px 36px;
    border: none;
    border-radius: 40px;
    background: transparent;
    z-index: 10;
}
.page-header .internal-nav a {
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}
.page-header .internal-nav a:hover {
    color: #999;
}
.page-header .internal-nav a.active {
    color: #fff;
    border-bottom: 2px solid #fff;
    padding-bottom: 5px;
}

.catalog-title-section {
    background-color: #ffffff;
    padding: 80px 40px 60px;
    text-align: center;
}
.catalog-title-section h1 {
    font-size: 52px;
    font-weight: 500;
    color: #1a1a1c;
    margin-bottom: 15px;
}
.catalog-title-section p {
    color: #777;
    font-size: 16px;
}

/* CATEGORY TABS */
.category-tabs {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 35px;
    flex-wrap: wrap;
}
.cat-tab {
    background: transparent;
    border: 1px solid #d0d0d0;
    color: #888;
    padding: 10px 28px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.25s ease;
}
.cat-tab:hover {
    border-color: #1a1a1c;
    color: #1a1a1c;
}
.cat-tab.active {
    background-color: #1a1a1c;
    border-color: #1a1a1c;
    color: #fff;
}

/*=============================================
  CATALOG TOOLBAR
=============================================*/
.catalog-toolbar-wrapper {
    width: 100%;
    border-top: 1px solid #eaeaea;
    border-bottom: 1px solid #eaeaea;
    background-color: #ffffff;
}
.catalog-toolbar {
    max-width: 1300px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #333;
}
.toolbar-left, .toolbar-right {
    display: flex;
    align-items: center;
    gap: 30px;
}
.toolbar-label {
    color: #888;
}
.filter-dropdown {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: color 0.2s;
}
.filter-dropdown:hover {
    color: #000;
}
.product-count {
    color: #888;
}

/* INTERACTIVE DROPDOWN MENUS */
.filter-container {
    position: relative;
    display: inline-block;
}
.sort-dropdown-btn {
    border: 1px solid transparent; 
    padding: 8px 12px;
    border-radius: 4px;
}
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 12px;
    background-color: #f7f8fa;
    border: 1px solid #dee2e6;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    width: 340px;
    z-index: 100;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: all 0.2s ease;
}
.dropdown-menu.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}
.dropdown-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid #e5e7eb;
    font-size: 14px;
    color: #555;
}
#price-menu .dropdown-header.price-menu-header {
    justify-content: flex-end;
}
.reset-link {
    color: #1a1a1c;
    text-decoration: underline;
    font-weight: 500;
}
.dropdown-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* CHECKBOXES */
.custom-checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 15px;
    color: #444;
}
.custom-checkbox input {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #1a1a1c; /* Black minimalist checkboxes */
}

/* PRICE INPUTS */
.price-body {
    flex-direction: row;
    gap: 15px;
    align-items: center;
}
.price-body.price-body-with-apply {
    flex-wrap: wrap;
    align-items: stretch;
}
.price-filter-apply {
    width: 100%;
    margin-top: 4px;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid #1a1a1c;
    background: #1a1a1c;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: opacity 0.2s;
}
.price-filter-apply:hover {
    opacity: 0.92;
}
.price-input-group {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: #444;
}
.price-input-group input {
    width: 100%;
    border: 1px solid #bbb;
    border-radius: 20px; /* Pill shape */
    padding: 10px 16px;
    font-size: 14px;
    background: transparent;
    font-family: inherit;
    outline: none;
    transition: 0.2s;
}
.price-input-group input:focus {
    border-color: #1a1a1c;
}

/* SORT MENU overrides */
.dropdown-menu.sort-menu {
    width: 220px;
    right: 0;
    left: auto;
    background-color: #ffffff;
    border: 2px solid #6c707d; /* Matches dark rigid border in screenshot 3 */
    border-radius: 2px;
    padding: 0;
    overflow: hidden;
}
.sort-option {
    padding: 12px 16px;
    cursor: pointer;
    font-size: 15px;
    color: #333;
    transition: 0.2s;
}
.sort-option:hover {
    background-color: #f1f1f1;
}
.sort-option.active {
    background-color: #1a1a1c; /* Monochromatic Limixx style, replaces blue */
    color: #fff;
}

/*=============================================
  MAIN HERO CONTENT
=============================================*/
.hero-content {
    position: relative;
    z-index: 5;
    /* Explicit padding top guarantees it falls safely below the cutouts */
    padding-top: 180px; 
    padding-left: 100px;
    padding-bottom: 50px;
    max-width: 700px;
}
.hero-content h1 {
    font-size: 78px;
    font-weight: 400;
    line-height: 1.05;
    color: #1a1a1c;
    margin-bottom: 40px;
    letter-spacing: -2px;
}
.stack-icon {
    width: auto;
    height: 64px;
}
.contact-link {
    display: inline-flex;
    align-items: center;
    color: #1a1a1c;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 30px;
    transition: 0.2s;
}
.contact-link:hover { padding-left: 10px; }
.circle-arrow-black {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 26px;
    height: 26px;
    background: #1a1a1c;
    color: #fff;
    border-radius: 50%;
    font-weight: bold;
    font-size: 18px;
    margin-right: 12px;
}
.divider {
    height: 1px;
    background: #e2d7cc;
    border: none;
    margin-bottom: 25px;
    width: 380px;
}
.description {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    letter-spacing: 0.2px;
}

/* WELCOMING HERO STYLE */
.welcoming-style {
    padding-top: 220px;
    padding-left: 80px;
}

.welcome-kicker {
    display: inline-block;
    font-family: 'Outfit', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 5px;
    color: #1a1a1c;
    margin-bottom: 24px;
    opacity: 0.6;
}

.welcoming-style h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 82px;
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -2px;
    color: #1a1a1c;
    margin-bottom: 24px;
}

.brand-serif {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 400;
    font-size: 1.1em;
    color: #1a1a1c;
}

.welcoming-desc {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    line-height: 1.8;
    color: #444;
    max-width: 520px;
    margin-bottom: 40px;
}

.hero-footer-content {
    position: relative;
    z-index: 5;
    padding-left: 80px;
    padding-bottom: 120px;
}

.welcome-cta {
    display: inline-flex;
    align-items: center;
    padding: 18px 48px;
    background: #1a1a1c;
    color: #fff;
    text-decoration: none;
    border-radius: 12px;
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.4s ease;
}

.welcome-cta:hover {
    background: #333;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.nowrap {
    white-space: nowrap;
}

/*=============================================
  HERO CREATIVE VISUALS (RIGHT SIDE)
=============================================*/
.hero-creative-visual {
    position: absolute;
    right: 80px;
    top: 120px;
    bottom: 120px;
    width: 35%;
    max-width: 450px;
    z-index: 5;
    pointer-events: none;
}

/* --- OPTION 1: Floating Lookbook (Default) --- */
.hero-creative-visual.style-floating .hero-img-1 {
    position: absolute;
    top: 0;
    right: 0;
    width: 75%;
    height: 65%;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    animation: floatImg1 6s ease-in-out infinite;
}
.hero-creative-visual.style-floating .hero-img-2 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 65%;
    height: 60%;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
    border: 10px solid #ffffff;
    animation: floatImg2 7s ease-in-out infinite;
}

@keyframes floatImg1 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}
@keyframes floatImg2 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(15px); }
}

/* --- HERO 1 (BACKUP 1): The Editorial Arch --- */
.hero-creative-visual.style-hero-1 .hero-img-1 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 250px 250px 0 0;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    animation: floatSingle 7s ease-in-out infinite;
}

/* --- HERO 2 (BACKUP 2): Vintage Polaroid Drop --- */
.hero-creative-visual.style-hero-2 .hero-img-1 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #ffffff;
    padding: 16px 16px 60px 16px; /* Thick bottom border */
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    transform: rotate(3deg);
    border: 1px solid rgba(0,0,0,0.05);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: auto; /* allow hover */
}
.hero-creative-visual.style-hero-2 .hero-img-1:hover {
    transform: rotate(0deg) scale(1.02);
}

/* --- HERO 3 (BACKUP 3): 3D Perspective Card --- */
.hero-creative-visual.style-hero-3 {
    perspective: 1200px;
    pointer-events: auto;
}
.hero-creative-visual.style-hero-3 .hero-img-1 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    transform: rotateY(-18deg) rotateX(8deg) scale(0.95);
    box-shadow: -25px 25px 50px rgba(0,0,0,0.25);
    transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.7s ease;
}
.hero-creative-visual.style-hero-3:hover .hero-img-1 {
    transform: rotateY(0) rotateX(0) scale(1);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* --- HERO 4 (BACKUP 4): Mosaic Grid --- */
.hero-creative-visual.style-hero-4 .hero-img-1 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    clip-path: url(#mosaic-clip);
    -webkit-clip-path: url(#mosaic-clip);
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    pointer-events: auto; /* allow hover */
}
.hero-creative-visual.style-hero-4 .hero-img-1:hover {
    transform: scale(1.04);
}

/* --- HERO 5: Fluid Blob with Badges --- */
.hero-creative-visual.style-hero-5 {
    pointer-events: auto;
}
.hero-creative-visual.style-hero-5 .blob-image-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation: morphBlob 8s ease-in-out infinite alternate;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    position: relative;
    z-index: 2;
}
.hero-creative-visual.style-hero-5 .hero-img-1 {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes morphBlob {
    0% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
    50% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
    100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
}

.hero-creative-visual.style-hero-5 .dot-grid {
    position: absolute;
    width: 120px;
    height: 120px;
    background-image: radial-gradient(#1a1a1c 2px, transparent 2px);
    background-size: 16px 16px;
    opacity: 0.15;
    z-index: 1;
}
.hero-creative-visual.style-hero-5 .dot-grid-1 {
    top: -20px;
    left: -30px;
}
.hero-creative-visual.style-hero-5 .dot-grid-2 {
    bottom: -20px;
    right: -30px;
}

.hero-creative-visual.style-hero-5 .floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,1);
    z-index: 3;
    animation: floatBadge 6s ease-in-out infinite;
}
.hero-creative-visual.style-hero-5 .card-icon {
    width: 36px;
    height: 36px;
    background: #1a1a1c;
    color: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-creative-visual.style-hero-5 .card-icon svg {
    width: 20px;
    height: 20px;
}
.hero-creative-visual.style-hero-5 .card-text {
    display: flex;
    flex-direction: column;
}
.hero-creative-visual.style-hero-5 .card-text strong {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1c;
    line-height: 1.2;
}
.hero-creative-visual.style-hero-5 .card-text span {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #666;
    margin-top: 2px;
}

.hero-creative-visual.style-hero-5 .card-top-left {
    top: 15%;
    left: -20%;
    animation-delay: 0s;
}
.hero-creative-visual.style-hero-5 .card-right {
    top: 45%;
    right: -25%;
    animation-delay: -2s;
}
.hero-creative-visual.style-hero-5 .card-bottom {
    bottom: 10%;
    left: -5%;
    animation-delay: -4s;
}

@keyframes floatBadge {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
}

/* --- HERO 6: Jagged Streetwear Cutout --- */
.hero-creative-visual.style-hero-6 .hero-img-1 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    /* Creates a cool, sharp, asymmetric tape-cut shape */
    clip-path: polygon(4% 0, 100% 3%, 96% 100%, 0 96%);
    transition: clip-path 0.4s ease, transform 0.4s ease;
    pointer-events: auto; /* allow hover */
}
.hero-creative-visual.style-hero-6 .hero-img-1:hover {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    transform: scale(1.03);
}

/* --- HERO 7: Offset Minimalist Frame --- */
.hero-creative-visual.style-hero-7 {
    pointer-events: auto;
}
.hero-creative-visual.style-hero-7::after {
    content: '';
    position: absolute;
    top: 24px; 
    left: 24px; 
    right: -24px; 
    bottom: -24px;
    border: 2px solid #1a1a1c;
    border-radius: 20px;
    z-index: -1;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.hero-creative-visual.style-hero-7 .hero-img-1 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.hero-creative-visual.style-hero-7:hover::after {
    top: 8px; left: 8px; right: -8px; bottom: -8px;
}
.hero-creative-visual.style-hero-7:hover .hero-img-1 {
    transform: translate(-8px, -8px);
}

/* --- HERO 8: The Dynamic Parallelogram --- */
.hero-creative-visual.style-hero-8 .hero-img-1 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    clip-path: polygon(15% 0, 100% 0, 85% 100%, 0 100%);
    transition: clip-path 0.6s cubic-bezier(0.77, 0, 0.175, 1), transform 0.6s ease;
    pointer-events: auto; /* allow hover */
    filter: contrast(1.05);
}
.hero-creative-visual.style-hero-8 .hero-img-1:hover {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    transform: scale(1.03);
}

@keyframes floatSingle {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/*=============================================
  HERO MEDIA
=============================================*/
.hero-video {
    position: absolute;
    right: 60px;
    top: 55%;
    transform: translateY(-50%);
    width: 540px;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 14px;
    z-index: 5;
    border: none !important;
    outline: none !important;
    clip-path: inset(2px); /* Hides potential video frame edge artifacts */
}

/* Mobile-only video — hidden by default on desktop */
.hero-video-mobile {
    display: none;
}

/*=============================================
  STYLE WITH LIMIXX
=============================================*/
.style-with-limixx {
    background-color: #1a1a1c;
    padding: 0 40px 110px;
}

.style-with-limixx-inner {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(360px, 520px) minmax(0, 1fr);
    gap: 60px;
    align-items: center;
    background: linear-gradient(135deg, #111214 0%, #1a1a1c 55%, #202125 100%);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 32px;
    padding: 56px;
    box-shadow: 0 24px 70px rgba(0,0,0,0.28);
}

.style-with-limixx-copy {
    color: #fff;
    max-width: 560px;
}

.style-kicker {
    display: inline-block;
    margin-bottom: 20px;
    padding: 8px 16px;
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 999px;
    color: rgba(255,255,255,0.72);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.8px;
}

.style-with-limixx-copy h2 {
    font-size: 52px;
    font-weight: 500;
    line-height: 1.04;
    letter-spacing: -1.5px;
    margin-bottom: 22px;
}

.style-with-limixx-copy p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255,255,255,0.72);
    margin-bottom: 30px;
}

.style-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.style-cta .circle-arrow {
    margin-left: 0;
}

.style-with-limixx-media {
    display: flex;
    justify-content: center;
}

.style-video-frame {
    width: 100%;
    position: relative;
    padding: 12px;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.02));
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 180px 40px 180px 40px; /* Creative Asymmetric Shape */
    box-shadow: 
        0 40px 100px rgba(0,0,0,0.5),
        inset 0 0 40px rgba(255,255,255,0.03);
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.style-video-frame:hover {
    transform: scale(1.02) rotate(-1deg);
}

.style-video-frame::before {
    content: "";
    position: absolute;
    inset: -15px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 190px 50px 190px 50px;
    z-index: -1;
    pointer-events: none;
}

.style-video-frame video {
    width: 100%;
    display: block;
    border-radius: 170px 320px 170px 320px; /* Distorted inner shape for more "edge" */
    background-color: #fff;
    object-fit: cover;
    aspect-ratio: 1/1;
}

/*=============================================
  SOCIAL MEDIA
=============================================*/
.social-links {
    display: flex;
    gap: 18px;
    align-items: center;
}
.social-links a {
    color: #fff;
    opacity: 0.5;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;
}
.social-links a:hover {
    opacity: 1;
    transform: translateY(-3px);
}
.social-links a svg {
    width: 100%;
    height: 100%;
}

/* Ensure [hidden] wins over layout utilities (e.g. display:flex on sections). */
[hidden] {
    display: none !important;
}

/*=============================================
  FEATURED COLLECTION (WHITE SECTION)
=============================================*/
.featured-collection {
    background-color: #ffffff;
    padding: 120px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.featured-collection h2 {
    color: #1a1a1c;
    font-size: 42px;
    font-weight: 500;
    margin-bottom: 60px;
    text-align: center;
}
.featured-collection.featured-home {
    padding-top: 72px;
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    width: 100%;
    max-width: 1300px;
}
.product-card {
    background-color: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background-clip: padding-box;
    transition: all 0.3s ease;
    border: 1px solid #eaeaea;
}
.product-card:hover {
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
    transform: translateY(-5px);
}
.product-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 4/5;
    background-color: #f5f5f5;
    overflow: hidden;
    padding: 15px; /* Creates internal framing for the image if it doesn't fill completely */
}
.product-img-wrap a {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
}
.product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px; /* Optional slight rounding internally */
    transition: opacity 0.4s ease;
}
.product-img-wrap .secondary-img {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}
.product-card:hover .product-img-wrap .secondary-img {
    opacity: 1;
}
.product-card:hover .product-img-wrap .primary-img {
    opacity: 0;
}
.product-img-wrap .tag {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}
.tag {
    background-color: #1a1a1c;
    color: #ffffff;
}
.tag.oversize {
    background-color: #ffffff;
    color: #1a1a1c;
    border: 1px solid #1a1a1c;
}

.product-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.product-title-row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    margin-bottom: 12px;
}
.product-title-row h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1c;
    line-height: 1.25;
    width: 100%;
}
.product-title-row .price {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1c;
}
.product-desc {
    font-size: 13px;
    line-height: 1.6;
    color: #777;
    margin-top: 0;
    margin-bottom: 30px;
    flex: 1;
}
.add-to-cart-btn {
    width: 100%;
    padding: 12px 0;
    border: 1px solid #1a1a1c;
    background-color: transparent;
    color: #1a1a1c;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
}
.product-card:hover .add-to-cart-btn {
    background-color: #1a1a1c;
    color: #ffffff;
}

/*=============================================
  DISCOVER SECTION
=============================================*/
.discover-section {
    background-color: #1a1a1c;
    padding: 100px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.section-title {
    color: #fff;
    font-size: 42px;
    font-weight: 500;
    letter-spacing: -0.5px;
    margin-bottom: 50px;
}
.cards-container {
    display: flex;
    gap: 30px;
    justify-content: center;
    max-width: 1100px;
    width: 100%;
}
.category-card {
    flex: 1;
    border-radius: 24px 80px 24px 80px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 3 / 4;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}
.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 35%;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 100%);
    pointer-events: none;
}
.card-btn {
    position: absolute;
    bottom: 45px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ffffff;
    color: #1a1a1c;
    border: none;
    border-radius: 8px;
    width: 65%;
    max-width: 220px;
    padding: 16px 0;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    z-index: 2;
}
.card-btn:hover {
    background-color: #e5e5e5;
    transform: translateX(-50%) translateY(-2px);
}

/*=============================================
  CROSSING TAPES SECTION
=============================================*/
.tapes-section {
    position: relative;
    width: 100%;
    height: 220px;
    margin: 0;
    background-color: #1a1a1c;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}
.tape {
    position: absolute;
    width: 120%;
    left: -10%;
    background-color: #070709;
    padding: 8px 0;
    display: flex;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.9);
    z-index: 10;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.tape-1 {
    transform: rotate(6deg);
}
.tape-2 {
    transform: rotate(-6deg);
}
.marquee {
    display: flex;
    gap: 0px;
    width: max-content;
    animation: scroll_marquee 35s linear infinite;
}
.marquee-reverse {
    animation: scroll_marquee_rev 35s linear infinite;
}
.marquee-content {
    display: flex;
    align-items: center;
    gap: 0px;
    flex-shrink: 0;
}
.tape-word {
    color: #fff;
    font-size: 26px;
    font-weight: 600;
    letter-spacing: 8px;
    text-transform: uppercase;
    white-space: nowrap;
}
.tape-separator {
    color: transparent;
    font-size: 0;
    width: 18px;
    height: 18px;
    display: inline-block;
    position: relative;
    margin: 0 30px;
    z-index: 2;
    opacity: 0.9;
}
.tape-separator::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #fff;
    clip-path: polygon(50% 0, 62% 38%, 100% 50%, 62% 62%, 50% 100%, 38% 62%, 0 50%, 38% 38%);
}

@keyframes scroll_marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } 
}
@keyframes scroll_marquee_rev {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

/*=============================================
  WHO WE ARE / BENTO SECTION
=============================================*/
.bento-section {
    background-color: #1a1a1c;
    padding: 100px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
}
.bento-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 600px;
}
.bento-header .pill {
    display: inline-block;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 20px;
    padding: 6px 16px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}
.bento-header h2 {
    font-size: 42px;
    font-weight: 500;
    margin-bottom: 20px;
}
.bento-header p {
    font-size: 15px;
    color: #999;
    line-height: 1.6;
}

.bento-grid {
    display: flex;
    gap: 20px;
    max-width: 1100px;
    width: 100%;
    height: 550px;
}
.bento-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.bento-card {
    border-radius: 16px;
    overflow: hidden;
    background-color: #262628;
}
.text-card {
    padding: 40px 35px;
    flex: 1.2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.text-card .small-text {
    font-size: 13px;
    color: #bbb;
    line-height: 1.6;
    margin-bottom: 30px;
}
.text-card h3 {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 8px;
}
.text-card .stats p {
    font-size: 15px;
    color: #ccc;
    font-weight: 300;
}
.img-card {
    display: flex;
    flex: 0.8;
}
.tall-col .img-card {
    flex: 1;
    height: 100%;
}
.img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/*=============================================
  ABOUT TEXT SECTION
=============================================*/
.about-text-section {
    background-color: #ffffff;
    padding: 120px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    margin: 0 auto;
}
.about-text-content {
    flex: 1;
    max-width: 500px;
    color: #1a1a1c;
}
.about-text-content h2 {
    font-size: 36px;
    margin-bottom: 30px;
    font-weight: 600;
}
.about-text-content p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
}
.about-text-image {
    flex: 1;
    position: relative;
    max-width: 500px;
    padding: 24px 0 0 24px;
}
.offset-frame {
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% - 24px);
    height: calc(100% - 24px);
    background-color: #1a1a1c;
    border-radius: 20px;
    z-index: 1;
}
.about-text-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    position: relative;
    z-index: 2;
    display: block;
}

/*=============================================
  OUR STORY SECTION
=============================================*/
.our-story-section {
    background-color: #ffffff;
    padding: 20px 40px 120px;
    scroll-margin-top: 88px;
}

.our-story-inner {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(340px, 0.95fr) minmax(0, 1.05fr);
    gap: 80px;
    align-items: center;
    grid-template-areas: "visual textcol";
}

.our-story-visual {
    grid-area: visual;
    position: relative;
    padding: 34px 0 0 34px;
}

.our-story-text-column {
    grid-area: textcol;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 0;
}

.our-story-visual::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% - 34px);
    height: calc(100% - 34px);
    background-color: #1a1a1c;
    border-radius: 24px 90px 24px 90px;
}

.our-story-image-wrap {
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-radius: 24px 90px 24px 90px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}

.our-story-image-wrap img {
    width: 100%;
    height: 620px;
    object-fit: cover;
    display: block;
}

.our-story-content {
    color: #1a1a1c;
    max-width: 620px;
    width: 100%;
}

.our-story-kicker {
    display: inline-block;
    margin-bottom: 22px;
    padding: 14px 34px;
    border: 1px solid #d7d7d7;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2.8px;
    color: #666;
}

.our-story-heading {
    font-size: 52px;
    line-height: 1.04;
    font-weight: 500;
    letter-spacing: -1.6px;
    margin: 0 0 24px;
    color: #1a1a1c;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.our-story-content p {
    font-size: 16px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 18px;
}

.our-story-signature {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid #e4ded7;
    display: flex;
    gap: 12px;
    align-items: baseline;
    flex-wrap: wrap;
}

.our-story-signature span {
    color: #666;
    font-size: 15px;
}

.our-story-signature strong {
    font-size: 28px;
    font-weight: 600;
    color: #1a1a1c;
}

/*=============================================
  HERO VARIANTS REVIEW
=============================================*/
.hero-variants-body {
    background: #111214;
    color: #fff;
}

.hero-variants-shell {
    width: min(1400px, 100%);
    margin: 0 auto;
    padding: 32px;
}

.hero-variants-header {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: flex-start;
    margin-bottom: 24px;
}

.hero-variants-kicker {
    display: inline-block;
    margin-bottom: 14px;
    padding: 7px 14px;
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.8px;
    color: rgba(255,255,255,0.7);
}

.hero-variants-header h1 {
    font-size: 50px;
    line-height: 1;
    margin-bottom: 14px;
}

.hero-variants-header p {
    max-width: 760px;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    font-size: 15px;
}

.hero-variants-back {
    text-decoration: none;
    color: #111214;
    background: #fff;
    padding: 12px 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}

.hero-variants-switcher {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 22px;
}

.hero-variant-tab {
    border: 1px solid rgba(255,255,255,0.14);
    background: transparent;
    color: rgba(255,255,255,0.75);
    border-radius: 999px;
    padding: 12px 18px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s ease;
}

.hero-variant-tab.active {
    background: #fff;
    color: #111214;
    border-color: #fff;
}

.hero-variants-stage {
    position: relative;
}

.hero-variant-panel {
    display: none;
}

.hero-variant-panel.active {
    display: block;
}

.hero-variant-meta {
    display: flex;
    align-items: baseline;
    gap: 14px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.hero-variant-meta span {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.4px;
    color: rgba(255,255,255,0.55);
    text-transform: uppercase;
}

.hero-variant-meta h2 {
    font-size: 28px;
    font-weight: 600;
}

.hero-variant-meta p {
    color: rgba(255,255,255,0.68);
    font-size: 14px;
}

.hero-variant-canvas {
    background: #fff;
    color: #111214;
    min-height: 78vh;
    border-radius: 0 0 0 32px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 18px 60px rgba(0,0,0,0.24);
}

.variant-mini-kicker {
    display: inline-block;
    margin-bottom: 18px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: #666;
}

.variant-actions {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

.variant-primary-link,
.variant-secondary-link {
    text-decoration: none;
    color: #111214;
    font-weight: 600;
}

.variant-solid-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: #111214;
    color: #fff;
    border-radius: 999px;
    padding: 14px 22px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.2px;
}

.variant-note {
    color: #777;
    font-size: 12px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.hero-variant-editorial {
    padding: 88px 72px 72px;
}

.variant-logo-chip {
    position: absolute;
    top: 0;
    left: 0;
    width: 330px;
    height: 86px;
    background: #111214;
    color: #fff;
    border-bottom-right-radius: 28px;
    display: flex;
    align-items: center;
    padding-left: 26px;
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 10px;
}

.variant-logo-chip::before,
.variant-logo-chip::after {
    content: "";
    position: absolute;
    width: 28px;
    height: 28px;
}

.variant-logo-chip::before {
    top: 0;
    right: -28px;
    background-image: radial-gradient(circle at bottom right, transparent 27.5px, #111214 28px);
}

.variant-logo-chip::after {
    bottom: -28px;
    left: 0;
    background-image: radial-gradient(circle at bottom right, transparent 27.5px, #111214 28px);
}

.variant-editorial-copy {
    max-width: 620px;
    padding-top: 40px;
}

.variant-editorial-copy h3 {
    font-size: 96px;
    line-height: 0.93;
    letter-spacing: -4px;
    font-weight: 500;
    margin-bottom: 24px;
}

.variant-editorial-copy p {
    max-width: 470px;
    font-size: 17px;
    line-height: 1.8;
    color: #5c5c61;
    margin-bottom: 28px;
}

.variant-editorial-mark {
    position: absolute;
    right: 9%;
    top: 26%;
}

.variant-star {
    width: 64px;
    height: 64px;
    display: block;
    background: #111214;
    clip-path: polygon(50% 0, 61% 39%, 100% 50%, 61% 61%, 50% 100%, 39% 61%, 0 50%, 39% 39%);
}

.hero-variant-campaign {
    padding: 86px 68px 68px;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.95fr);
    gap: 48px;
    align-items: center;
}

.variant-campaign-copy h3 {
    font-size: 72px;
    line-height: 0.95;
    letter-spacing: -3px;
    font-weight: 500;
    margin-bottom: 22px;
}

.variant-campaign-copy p {
    font-size: 16px;
    line-height: 1.8;
    color: #5c5c61;
    margin-bottom: 28px;
    max-width: 460px;
}

.variant-campaign-visual {
    position: relative;
    padding: 26px 0 0 26px;
}

.variant-campaign-frame {
    position: absolute;
    inset: 0 26px 26px 0;
    background: #111214;
    border-radius: 24px 80px 24px 80px;
}

.variant-campaign-visual img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 620px;
    object-fit: cover;
    border-radius: 24px 80px 24px 80px;
    display: block;
}

.hero-variant-street {
    background:
        linear-gradient(135deg, #ffffff 0 48%, #111214 48% 100%);
    padding: 0;
}

.variant-street-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 34px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.variant-street-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.9fr);
    gap: 0;
    min-height: calc(78vh - 76px);
}

.variant-street-copy {
    padding: 44px 34px 68px;
    align-self: center;
}

.variant-street-copy h3 {
    font-size: 78px;
    line-height: 0.95;
    letter-spacing: -3px;
    font-weight: 600;
    margin-bottom: 20px;
    max-width: 620px;
}

.variant-street-copy p {
    font-size: 16px;
    line-height: 1.8;
    color: #4e4e56;
    margin-bottom: 28px;
    max-width: 470px;
}

.variant-street-card {
    background: #111214;
    padding: 34px;
    display: flex;
    align-items: center;
}

.variant-street-card img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    display: block;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.08);
}

/*=============================================
  FOOTER
=============================================*/
.site-footer {
    background-color: #1a1a1c;
    color: #fff;
    padding: 100px 60px 40px;
    display: flex;
    flex-direction: column;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 80px;
    flex-wrap: wrap;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.brand-col {
    max-width: 340px;
}
.footer-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
    object-position: left;
    margin-bottom: 25px;
    margin-left: -15px; /* Offset to counteract internal image padding */
}
.brand-col p {
    color: #888;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 35px;
}
.newsletter {
    display: flex;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    transition: border-color 0.3s;
}
.newsletter:focus-within {
    border-color: #fff;
}
.newsletter input {
    background: transparent;
    border: none;
    color: #fff;
    padding: 12px 0;
    flex: 1;
    font-family: inherit;
    font-size: 14px;
    outline: none;
}
.newsletter input::placeholder {
    color: #666;
}
.newsletter button {
    background: transparent;
    border: none;
    color: #fff;
    font-family: inherit;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    padding: 12px 10px;
    transition: color 0.3s;
}
.newsletter button:hover {
    color: #aaa;
}

.links-col {
    min-width: 160px;
}
.links-col h4 {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    margin-bottom: 30px;
    text-transform: uppercase;
    color: #fff;
}
.links-col a {
    color: #a8a8a8;
    text-decoration: none;
    font-size: 15px;
    margin-bottom: 18px;
    transition: color 0.3s, padding-left 0.2s;
    display: inline-block;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.links-col a:hover {
    color: #fff;
    padding-left: 3px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 35px;
    border-top: 1px solid rgba(255,255,255,0.1);
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
}
.footer-bottom p {
    color: #666;
    font-size: 13px;
}
.footer-bottom-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.footer-bottom-meta p {
    margin: 0;
}
.footer-credit a {
    color: #888;
    text-decoration: none;
    transition: color 0.3s;
}
.footer-credit a:hover {
    color: #fff;
}
.legal-links {
    display: flex;
    gap: 40px;
}
.legal-links a {
    color: #666;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
}
.legal-links a:hover {
    color: #fff;
}

/*=============================================
  PRODUCT DETAILS PAGE
=============================================*/
.product-not-found {
    max-width: 520px;
    margin: 72px auto 48px;
    padding: 40px 32px;
    text-align: center;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #eaeaea;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}
.product-not-found p {
    font-size: 17px;
    line-height: 1.5;
    color: #1a1a1c;
    margin: 0 0 24px;
}
.product-not-found .welcome-cta {
    display: inline-block;
}

.product-split-layout {
    background-color: transparent; 
    padding: 60px 40px;
    display: flex;
    gap: 80px;
    justify-content: center;
    max-width: 1400px;
    margin: 0 auto;
}
.product-gallery {
    flex: 1;
    max-width: 550px;
}
.main-image {
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 20px;
    background-color: #eaeaea;
}
.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.thumbnail-row {
    display: flex;
    gap: 15px;
}
.thumb {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: 0.3s;
}
.thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.thumb.active {
    border-color: #1a1a1c;
}

.product-details {
    flex: 1;
    max-width: 500px;
    padding-top: 20px;
}
.product-category {
    font-size: 13px;
    color: #666;
    margin-bottom: 10px;
    text-transform: capitalize;
    letter-spacing: 0.5px;
}
.product-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1c;
    margin-bottom: 20px;
}
.price-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}
.product-price {
    font-size: 20px;
    color: #1a1a1c;
    font-weight: 500;
}
.sold-out-pill {
    font-size: 11px;
    font-weight: 600;
    border: 1px solid #ccc;
    color: #555;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
}
.tax-shipping-info {
    font-size: 11px;
    color: #777;
    margin-bottom: 35px;
}
.tax-shipping-info u {
    cursor: pointer;
}

.selector-group {
    margin-bottom: 30px;
}
.selector-group label {
    display: block;
    font-size: 13px;
    color: #444;
    margin-bottom: 15px;
}

.selector-group--sizes .size-selector-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 15px;
}

.selector-group--sizes .size-selector-heading {
    font-size: 13px;
    color: #444;
    margin: 0;
    font-weight: 500;
}

.size-guide-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    padding: 2px 0;
    margin: 0;
    font: inherit;
    font-size: 13px;
    font-weight: 600;
    color: #1a1a1c;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: opacity 0.2s ease;
}

.size-guide-link:hover {
    opacity: 0.65;
}

.size-guide-link:focus-visible {
    outline: 2px solid #1a1a1c;
    outline-offset: 3px;
}

.size-guide-link-icon {
    flex-shrink: 0;
    opacity: 0.6;
}

.size-guide-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: grid;
    place-items: center;
    padding: 24px 16px;
    box-sizing: border-box;
}

.size-guide-modal[hidden] {
    display: none !important;
}

.size-guide-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 15, 18, 0.55);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.size-guide-modal-dialog {
    position: relative;
    z-index: 1;
    width: min(100%, 560px);
    max-height: min(90vh, 820px);
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    animation: size-guide-modal-in 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes size-guide-modal-in {
    from {
        opacity: 0;
        transform: translateY(16px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.size-guide-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px;
    border-bottom: 1px solid #eee;
    flex-shrink: 0;
}

.size-guide-modal-header h2 {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #1a1a1c;
}

.size-guide-modal-close {
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    border-radius: 10px;
    font-size: 24px;
    line-height: 1;
    color: #666;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, color 0.2s ease;
}

.size-guide-modal-close:hover {
    background: #f5f5f5;
    color: #1a1a1c;
}

.size-guide-modal-body {
    padding: 0;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

.size-guide-modal-body img {
    display: block;
    width: 100%;
    height: auto;
    vertical-align: top;
}

.custom-size-guide-content {
    padding: 32px 40px;
    font-family: 'Inter', sans-serif;
    color: #1a1a1c;
    background: #fff;
}

.size-guide-fit {
    margin-bottom: 40px;
}
.size-guide-fit h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}
.size-guide-fit ul {
    list-style: disc;
    padding-left: 20px;
    margin: 0;
}
.size-guide-fit li {
    font-size: 14px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 8px;
}

.size-guide-table-wrap h4 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 24px;
    letter-spacing: 1px;
}
.size-guide-table-wrap table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
    text-align: center;
}
.size-guide-table-wrap th {
    font-weight: 600;
    padding: 12px 8px;
    border-bottom: 2px solid #1a1a1c;
    letter-spacing: 1px;
}
.size-guide-table-wrap td {
    padding: 14px 8px;
    border-bottom: 1px solid #eaeaea;
    color: #444;
}
.size-guide-table-wrap tr:last-child td {
    border-bottom: none;
}

@media (max-width: 768px) {
    .custom-size-guide-content {
        padding: 24px 20px;
    }
    .size-guide-table-wrap table {
        font-size: 12px;
    }
    .size-guide-table-wrap th, 
    .size-guide-table-wrap td {
        padding: 10px 4px;
    }
}

.pill-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.pill-btn {
    background: transparent;
    border: 1px solid #ddd;
    color: #1a1a1c;
    padding: 8px 18px;
    border-radius: 24px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: 0.2s;
    font-family: inherit;
}
.pill-btn:hover:not(.disabled) {
    border-color: #1a1a1c;
}
.pill-btn.selected {
    background-color: #1a1a1c;
    color: #fff;
    border-color: #1a1a1c;
}
.pill-btn.disabled {
    opacity: 0.4;
    text-decoration: line-through;
    cursor: not-allowed;
    background-color: transparent;
    border-color: #e0e0e0;
}

.inventory-empty-note {
    font-size: 13px;
    color: #777;
}

.qty-counter {
    display: inline-flex;
    align-items: center;
    border: 1px solid #c0c0c0;
    border-radius: 24px;
    padding: 4px 6px;
    background-color: #ffffff;
}
.qty-counter button {
    background: transparent;
    border: none;
    width: 32px;
    height: 32px;
    font-size: 18px;
    cursor: pointer;
    color: #555;
}
.qty-val {
    font-size: 14px;
    width: 30px;
    text-align: center;
    font-weight: 500;
}

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 35px;
}
.btn-sold-out, .btn-buy-now {
    width: 100%;
    padding: 16px 0;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.3s ease;
}
.btn-sold-out {
    background-color: #e2e2e2;
    color: #888;
    border: 1px solid #e2e2e2;
    cursor: not-allowed;
}
.btn-buy-now {
    background-color: #1a1a1c; 
    color: #fff;
    border: 1px solid #1a1a1c;
}
.btn-buy-now:hover {
    background-color: #333;
}

.btn-buy-now:disabled {
    background-color: #e2e2e2;
    color: #888;
    border-color: #e2e2e2;
    cursor: not-allowed;
}

.product-description-content {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 30px;
}
.product-description-content ul {
    margin-top: 15px;
    padding-left: 20px;
    color: #777;
}
.product-description-content li {
    margin-bottom: 6px;
}

/*=============================================
  CONTACT PAGE STYLES
=============================================*/
.contact-hero {
    display: flex;
    align-items: center;
    background-color: #f7f7f7;
    min-height: 400px;
    padding: 0;
}

.contact-hero-content {
    flex: 1;
    padding: 80px 80px 80px 10%;
}

.contact-hero-content .pill {
    background: #1a1a1c;
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    display: inline-block;
}

.contact-hero-content h1 {
    font-size: 56px;
    line-height: 1;
    margin-bottom: 25px;
    color: #1a1a1c;
}

.contact-hero-content p {
    font-size: 16px;
    color: #666;
    max-width: 450px;
    line-height: 1.6;
}

.contact-hero-image {
    flex: 1;
    height: 400px;
    overflow: hidden;
}

.contact-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-details-section {
    padding: 48px 24px;
    background-color: #fff;
    display: flex;
    justify-content: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 100%;
    max-width: 820px;
}

.contact-card {
    background: transparent;
    border: 1px solid #1a1a1c;
    padding: 22px 20px;
    border-radius: 18px 52px 18px 52px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.contact-card:hover {
    background-color: #1a1a1c;
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.contact-icon {
    width: 42px;
    height: 42px;
    background: #1a1a1c;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-bottom: 14px;
    transition: all 0.4s ease;
    border: 1px solid transparent;
}

.contact-icon svg {
    width: 20px;
    height: 20px;
}

.contact-card:hover .contact-icon {
    background: #fff;
    color: #1a1a1c;
}

.contact-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1a1a1c;
    transition: color 0.4s ease;
}

.contact-card:hover h3 {
    color: #fff;
}

.contact-item {
    margin-bottom: 12px;
    display: flex;
    flex-direction: column;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item .label {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #777;
    font-weight: 700;
    margin-bottom: 4px;
    transition: color 0.4s ease;
}

.contact-card:hover .contact-item .label {
    color: rgba(255,255,255,0.5);
}

.contact-item .value {
    font-size: 14px;
    line-height: 1.35;
    color: #1a1a1c;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.4s ease;
}

.contact-card:hover .contact-item .value {
    color: #fff;
}

.contact-item .value:hover {
    opacity: 0.7;
}

.contact-footer-info {
    padding: 60px 40px 100px;
    background-color: #fff;
    text-align: center;
}

.info-block h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.info-block p {
    color: #777;
    margin-bottom: 5px;
}

.contact-location-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
}

.contact-location-links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #1a1a1c;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
}

/*=============================================
  FAQ PAGE
=============================================*/
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.faq-hero {
    background: linear-gradient(165deg, #f7f7f7 0%, #ececec 45%, #f7f7f7 100%);
    padding: 72px 24px 56px;
    text-align: center;
}

.faq-hero-inner {
    max-width: 640px;
    margin: 0 auto;
}

.faq-hero .pill {
    background: #1a1a1c;
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 22px;
    display: inline-block;
}

.faq-hero h1 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: #1a1a1c;
    margin: 0 0 16px;
}

.faq-hero p {
    font-size: 17px;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.legal-doc-page {
    padding: 24px 24px 80px;
    background: #fff;
}

.legal-doc-inner {
    max-width: 720px;
    margin: 0 auto;
}

.legal-doc-inner h2 {
    font-size: 17px;
    font-weight: 700;
    color: #1a1a1c;
    margin: 32px 0 12px;
    letter-spacing: 0.02em;
}

.legal-doc-inner p {
    font-size: 15px;
    line-height: 1.65;
    color: #444;
    margin: 0 0 14px;
}

.legal-doc-inner ul {
    margin: 0 0 16px;
    padding-left: 22px;
    color: #444;
    font-size: 15px;
    line-height: 1.65;
}

.legal-doc-inner li {
    margin-bottom: 8px;
}

.legal-doc-inner a {
    color: #1a1a1c;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.legal-doc-meta {
    font-size: 13px;
    color: #777;
    margin-bottom: 8px !important;
}

.legal-doc-note {
    margin-top: 40px !important;
    padding-top: 24px;
    border-top: 1px solid #eaeaea;
    font-size: 13px !important;
    color: #888 !important;
    font-style: italic;
}

.faq-section {
    padding: 24px 24px 72px;
    background: #fff;
}

.faq-wrap {
    max-width: 720px;
    margin: 0 auto;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    border: 1px solid #e6e6e8;
    border-radius: 14px;
    background: #fafafa;
    overflow: hidden;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.faq-item:hover {
    border-color: #d0d0d4;
}

.faq-item[open] {
    background: #fff;
    border-color: #1a1a1c;
    box-shadow: 0 12px 40px rgba(26, 26, 28, 0.08);
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 20px 22px;
    padding-right: 48px;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1c;
    position: relative;
    line-height: 1.4;
    user-select: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "";
    position: absolute;
    right: 22px;
    top: 50%;
    width: 8px;
    height: 8px;
    margin-top: -6px;
    border-right: 2px solid #1a1a1c;
    border-bottom: 2px solid #1a1a1c;
    transform: rotate(45deg);
    transition: transform 0.25s ease;
    opacity: 0.75;
}

.faq-item[open] summary::after {
    transform: rotate(-135deg);
    margin-top: -2px;
}

.faq-answer {
    padding: 0 22px 22px;
    border-top: 1px solid transparent;
}

.faq-item[open] .faq-answer {
    border-top-color: #eee;
    animation: faq-open 0.35s ease;
}

@keyframes faq-open {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-answer p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: #4a4a4e;
}

.faq-answer a {
    color: #1a1a1c;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.faq-answer a:hover {
    opacity: 0.75;
}

.faq-footer-cta .info-block {
    max-width: 480px;
    margin: 0 auto;
}

.faq-contact-link {
    display: inline-flex;
    align-items: center;
    margin-top: 16px;
    padding: 12px 24px;
    background: #1a1a1c;
    color: #fff !important;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 999px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.faq-contact-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(26, 26, 28, 0.2);
    opacity: 1;
}

@media (max-width: 600px) {
    .faq-hero {
        padding: 48px 20px 40px;
    }
    .faq-item summary {
        padding: 18px 18px;
        padding-right: 44px;
        font-size: 15px;
    }
    .faq-item summary::after {
        right: 18px;
    }
    .faq-answer {
        padding: 0 18px 18px;
    }
}

/*=============================================
  MOBILE & TABLET OPTIMIZATION (NON-DESTRUCTIVE)
=============================================*/

/* MOBILE TOGGLE (Hidden on Desktop) */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 46px;
    height: 46px;
    cursor: pointer;
    z-index: 1001;
    position: absolute;
    top: 24px;
    right: 24px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 12px;
    padding: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}
.mobile-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: #1a1a1c;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); background-color: #fff; }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); background-color: #fff; }

/* MOBILE NAV OVERLAY */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #1a1a1c;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}
.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}
.mobile-nav-overlay a {
    color: #fff;
    text-decoration: none;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -1px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(20px);
}
.mobile-nav-overlay.active a {
    opacity: 1;
    transform: translateY(0);
}
.mobile-nav-overlay.active a:nth-child(1) { transition-delay: 0.1s; }
.mobile-nav-overlay.active a:nth-child(2) { transition-delay: 0.2s; }
.mobile-nav-overlay.active a:nth-child(3) { transition-delay: 0.3s; }
.mobile-nav-overlay.active a:nth-child(4) { transition-delay: 0.4s; }

.mobile-nav-overlay a:hover {
    color: rgba(255,255,255,0.6);
}

/* TABLET OPTIMIZATION (< 1024px) */
@media (max-width: 1024px) {
    .cutout-tr { width: 200px; }
    .tr-actions { gap: 8px; }
    .lang-btn { display: none; }
    .product-grid { grid-template-columns: repeat(2, 1fr); }
    .bento-grid { height: auto; flex-direction: column; }
    .bento-col { height: 400px; }
    .about-text-section { flex-direction: column; padding: 80px 40px; }
    .about-text-content, .about-text-image { max-width: 100%; }
    .our-story-inner {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .our-story-content {
        max-width: 100%;
    }

    .style-with-limixx-inner { grid-template-columns: 1fr; }
    .hero-variants-header { flex-direction: column; }
    .hero-variant-campaign { grid-template-columns: 1fr; }
    .variant-street-grid { grid-template-columns: 1fr; }
    .variant-editorial-copy h3 { font-size: 72px; }
    .variant-campaign-copy h3,
    .variant-street-copy h3 { font-size: 58px; }
}

/* MOBILE OPTIMIZATION (< 768px) */
@media (max-width: 768px) {
    .hero-variants-shell {
        padding: 16px;
    }

    .hero-variants-header h1 {
        font-size: 34px;
    }

    .hero-variants-header p {
        font-size: 14px;
    }

    .hero-variant-meta {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .hero-variant-canvas {
        min-height: auto;
        border-radius: 0 0 0 24px;
    }

    .hero-variant-editorial {
        padding: 88px 22px 28px;
    }

    .variant-logo-chip {
        width: 220px;
        height: 62px;
        font-size: 20px;
        letter-spacing: 6px;
        padding-left: 16px;
        border-bottom-right-radius: 22px;
    }

    .variant-logo-chip::before,
    .variant-logo-chip::after {
        width: 22px;
        height: 22px;
    }

    .variant-logo-chip::before {
        right: -22px;
    }

    .variant-logo-chip::after {
        bottom: -22px;
    }

    .variant-editorial-copy {
        padding-top: 12px;
    }

    .variant-editorial-copy h3 {
        font-size: 48px;
        line-height: 0.98;
        letter-spacing: -2px;
    }

    .variant-editorial-copy p,
    .variant-campaign-copy p,
    .variant-street-copy p {
        font-size: 14px;
        line-height: 1.7;
    }

    .variant-editorial-mark {
        right: 24px;
        top: 92px;
    }

    .variant-star {
        width: 42px;
        height: 42px;
    }

    .hero-variant-campaign {
        padding: 24px;
        gap: 28px;
    }

    .variant-campaign-copy h3 {
        font-size: 42px;
        line-height: 1;
        letter-spacing: -1.8px;
    }

    .variant-campaign-visual {
        padding: 16px 0 0 16px;
    }

    .variant-campaign-frame {
        inset: 0 16px 16px 0;
        border-radius: 18px 42px 18px 42px;
    }

    .variant-campaign-visual img {
        height: 360px;
        border-radius: 18px 42px 18px 42px;
    }

    .variant-street-topbar {
        padding: 18px 20px;
        font-size: 10px;
        letter-spacing: 1.4px;
    }

    .variant-street-copy {
        padding: 20px 20px 28px;
    }

    .variant-street-copy h3 {
        font-size: 44px;
        line-height: 1;
        letter-spacing: -1.6px;
    }

    .variant-street-card {
        padding: 20px;
    }

    .variant-street-card img {
        height: 320px;
    }

    .hero-wrapper { padding: 12px; height: auto; }
    .hero-inner { 
        border-radius: 0 0 0 24px; 
        height: auto; 
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        overflow: visible; /* Removed internal vertical scrollbar */
    }
    
    .cutout-tl { 
        width: 180px; 
        height: 72px; 
        padding-left: 18px; 
        top: -1px; 
        left: -1px; 
        border: none !important;
        outline: none !important;
        box-shadow: none !important;
    }
    .cutout-tl::before, .cutout-tl::after,
    .cutout-tr::before, .cutout-tr::after,
    .cutout-br::before, .cutout-br::after { display: none !important; }
    .catalog-logo-wrap { left: 24px; }
    .cutout-tl .brand-logo { height: 58px; }
    .page-header .brand-logo { height: 42px; }
    .cutout-tr, .cutout-br { display: none; } /* Hide actions & socials cutout on mobile for cleaner look */
    /* higher specificity needed to override .page-header .internal-nav rules */
    .top-nav,
    .page-header .internal-nav { display: none !important; } /* Hidden in favor of Hamburger */
    .mobile-toggle { 
        display: flex; 
        top: 20px; 
        right: 20px; 
        position: fixed; 
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
    }
    .page-header { max-width: 100vw; height: 58px; position: sticky; top: 0; }
    /* White lines on dark page headers (catalog, contact, product) */
    .page-header + .mobile-toggle span { background-color: #fff; }
    .page-header + .mobile-toggle.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); background-color: #fff; }
    .page-header + .mobile-toggle.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); background-color: #fff; }
    
    /* Hero Layout Stack */
    .hero-content { 
        padding-top: 100px; 
        padding-left: 20px; 
        padding-right: 20px; 
        max-width: 100%; 
        order: 1;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .hero-video { display: none; } /* Hide original absolute video on mobile */
    .hero-video-mobile {
        display: block;
        width: 100%;
        height: auto;
        border-radius: 12px;
        margin-bottom: 24px;
    }
    .hero-content h1 { font-size: 38px; line-height: 1.1; margin-bottom: 20px; }
    .hero-content .stack-icon { height: 40px !important; }
    .divider { width: 100%; max-width: 280px; margin: 0 auto 25px; }

    /* Mobile Hero Creative Visuals */
    .hero-creative-visual {
        position: relative;
        right: auto;
        top: auto;
        bottom: auto;
        width: 100%;
        height: 350px;
        max-width: 100%;
        margin-top: 5px;
        margin-bottom: 50px;
        padding: 0 20px;
        order: 2;
    }
    .hero-creative-visual.style-floating .hero-img-1 {
        width: 65%;
        right: 20px;
    }
    .hero-creative-visual.style-floating .hero-img-2 {
        width: 60%;
        left: 20px;
    }
    .hero-creative-visual.style-hero-1 .hero-img-1,
    .hero-creative-visual.style-hero-2 .hero-img-1,
    .hero-creative-visual.style-hero-3 .hero-img-1,
    .hero-creative-visual.style-hero-4 .hero-img-1,
    .hero-creative-visual.style-hero-6 .hero-img-1,
    .hero-creative-visual.style-hero-7 .hero-img-1,
    .hero-creative-visual.style-hero-8 .hero-img-1,
    .hero-creative-visual.style-hero-9 .hero-img-1 {
        width: 100%;
        height: 100%;
        position: relative;
    }

    .hero-creative-visual.style-hero-5 .card-top-left {
        left: -10px;
        top: 5%;
        transform: scale(0.85);
    }
    .hero-creative-visual.style-hero-5 .card-right {
        right: -10px;
        top: 40%;
        transform: scale(0.85);
    }
    .hero-creative-visual.style-hero-5 .card-bottom {
        left: 10%;
        bottom: 5%;
        transform: scale(0.85);
    }

    .hero-video { 
        position: relative; 
        top: auto; 
        right: auto; 
        transform: none; 
        width: 100%; 
        height: auto; 
        max-height: none; 
        margin-top: 20px; 
        order: 2;
        padding: 0 10px;
    }

    .section-title, .featured-collection h2, .bento-header h2 { font-size: 32px !important; }

    .style-with-limixx {
        padding: 0 12px 70px;
    }

    .style-with-limixx-inner {
        padding: 28px 22px;
        gap: 28px;
        border-radius: 24px;
    }

    .style-kicker {
        margin-bottom: 16px;
    }

    .style-with-limixx-copy {
        text-align: center;
        max-width: 100%;
    }

    .style-with-limixx-copy h2 {
        font-size: 34px;
        line-height: 1.1;
        margin-bottom: 16px;
    }

    .style-with-limixx-copy p {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .style-cta {
        justify-content: center;
    }

    .style-video-frame {
        padding: 12px;
        border-radius: 20px;
    }
    
    /* Grids */
    .product-grid { grid-template-columns: 1fr; gap: 20px; }
    .cards-container { flex-direction: column; gap: 20px; }
    .contact-grid { grid-template-columns: 1fr; gap: 16px; }
    
    /* Product Page */
    .product-split-layout { flex-direction: column; }
    .product-gallery, .product-details { padding: 20px !important; }
    .product-title { font-size: 32px; }
    .action-buttons { flex-direction: column; }
    .btn-buy-now, .btn-sold-out { width: 100%; }
    
    /* Bento Grid Adjustment */
    .bento-grid { height: auto; }
    .bento-col { height: auto; }
    .bento-card { min-height: 250px; }
    
    /* Contact Page */
    .contact-hero { flex-direction: column; }
    .contact-hero-content { padding: 40px 20px; }
    .contact-hero-image { height: 250px; width: 100%; }
    .contact-details-section { padding: 32px 16px; }

    .our-story-section {
        padding: 10px 20px 80px;
    }

    .our-story-inner {
        grid-template-columns: 1fr;
        grid-template-areas:
            "kicker"
            "title"
            "visual"
            "copy";
        gap: 28px;
    }

    .our-story-text-column {
        display: contents;
    }

    .our-story-kicker {
        grid-area: kicker;
        justify-self: center;
        font-size: 17px;
        padding: 15px 36px;
        letter-spacing: 3px;
        margin-bottom: 0;
    }

    .our-story-heading {
        grid-area: title;
        text-align: center;
        font-size: 34px;
        line-height: 1.1;
        margin-bottom: 18px;
    }

    .our-story-visual {
        grid-area: visual;
        padding: 18px 0 0 18px;
    }

    .our-story-content {
        grid-area: copy;
        max-width: 100%;
        text-align: center;
    }

    .our-story-visual::before {
        width: calc(100% - 18px);
        height: calc(100% - 18px);
        border-radius: 18px 54px 18px 54px;
    }

    .our-story-image-wrap {
        border-radius: 18px 54px 18px 54px;
    }

    .our-story-image-wrap img {
        height: 360px;
    }

    .our-story-content p {
        font-size: 14px;
        line-height: 1.8;
    }

    .our-story-signature {
        justify-content: center;
        margin-top: 22px;
        padding-top: 18px;
    }

    .our-story-signature strong {
        font-size: 24px;
    }

    /* Marquee Adjustment */
    .tapes-section { height: 160px; }
    .tape-word { font-size: 18px; letter-spacing: 5px; }

    /* Catalog Toolbar Mobile Fix */
    .catalog-toolbar {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        padding: 15px 20px;
    }
    .toolbar-left, .toolbar-right {
        width: 100%;
        flex-wrap: wrap;
        gap: 20px;
    }
    .product-count { display: none; } /* Hide count on mobile to save space */
    
    /* Horizontal overflow controlled per-element, not on html/body (which clips dropdowns) */

    /* Dropdown UI: constrain width to screen */
    .dropdown-menu {
        width: 260px;
        max-width: calc(100vw - 40px);
    }
    /* Price dropdown is on the right side - align it inward */
    #price-menu {
        left: auto;
        right: 0;
    }
    .price-body {
        flex-direction: column;
        align-items: stretch;
    }
}

/*=============================================
  ADMIN PANEL
=============================================*/
.admin-body {
    background: #f3f4f6;
    color: #111827;
}

.admin-auth-gate {
    position: fixed;
    inset: 0;
    background: rgba(10, 15, 30, 0.62);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    padding: 16px;
}

.admin-auth-card {
    width: min(460px, 100%);
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 22px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.22);
    text-align: center;
}

.admin-auth-card h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.admin-auth-card p {
    color: #4b5563;
    margin-bottom: 16px;
    line-height: 1.7;
}

.admin-auth-note {
    font-size: 13px;
    margin-bottom: 12px;
}

.admin-auth-note[data-tone="error"] {
    color: #b91c1c;
}

.admin-auth-note[data-tone="success"] {
    color: #047857;
}

.admin-auth-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: left;
}

.admin-auth-card button {
    border: none;
    background: #111827;
    color: #fff;
    border-radius: 10px;
    padding: 11px 14px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
}

.admin-auth-card button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.admin-login-shell {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.admin-login-back {
    display: inline-block;
    margin-top: 12px;
    font-size: 13px;
    color: #4b5563;
    text-decoration: none;
}

.admin-login-back:hover {
    color: #111827;
}

.admin-shell {
    width: min(1200px, 100%);
    margin: 0 auto;
    padding: 24px;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
}

.admin-header h1 {
    font-size: 34px;
    line-height: 1.1;
    margin-bottom: 8px;
}

.admin-header p {
    color: #4b5563;
}

.admin-back-link {
    text-decoration: none;
    background: #111827;
    color: #fff;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
}

.admin-tools {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 20px;
}

.admin-tools input,
.admin-tools button {
    border: 1px solid #d1d5db;
    background: #fff;
    border-radius: 10px;
    padding: 12px 14px;
    font-family: inherit;
    font-size: 14px;
}

.admin-tools input {
    flex: 1;
}

.admin-tools button {
    cursor: pointer;
    font-weight: 600;
}

.admin-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.admin-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.admin-preview-wrap {
    aspect-ratio: 4 / 3;
    border-radius: 10px;
    overflow: hidden;
    background: #f9fafb;
}

.admin-preview {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.admin-meta h3 {
    font-size: 15px;
    margin-bottom: 4px;
}

.admin-path {
    font-size: 12px;
    color: #6b7280;
    word-break: break-word;
}

.admin-inputs {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.admin-inputs input {
    border: 1px solid #d1d5db;
    border-radius: 10px;
    padding: 10px 12px;
    font-size: 13px;
    font-family: inherit;
}

.admin-actions {
    display: flex;
    gap: 8px;
}

.admin-actions button {
    flex: 1;
    border: none;
    background: #111827;
    color: #fff;
    border-radius: 10px;
    padding: 10px;
    font-family: inherit;
    font-weight: 600;
    cursor: pointer;
}

.admin-actions button[data-role="reset"] {
    background: #6b7280;
}

.admin-actions button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.admin-empty {
    color: #6b7280;
    font-size: 15px;
}

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

@media (max-width: 768px) {
    .admin-shell {
        padding: 16px;
    }

    .admin-header {
        flex-direction: column;
    }

    .admin-header h1 {
        font-size: 28px;
    }

    .admin-tools {
        flex-direction: column;
        align-items: stretch;
    }

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

/*=============================================
  ADMIN PANEL V2
=============================================*/
.admin-shell-v2 {
    max-width: 1280px;
    margin: 0 auto;
}

.admin-topbar {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 16px;
}

.admin-topbar h1 {
    font-size: 32px;
    margin-bottom: 6px;
}

.admin-topbar p {
    color: #6b7280;
}

.admin-top-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.admin-top-actions button,
.admin-top-actions .admin-back-link {
    border: none;
    background: #111827;
    color: #fff;
    border-radius: 10px;
    padding: 11px 14px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
}

.admin-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 16px;
}

.admin-stat-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 14px;
}

.admin-stat-card h3 {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 8px;
}

.admin-stat-card p {
    font-size: 28px;
    font-weight: 700;
    color: #111827;
}

.admin-layout {
    display: grid;
    grid-template-columns: 230px 1fr;
    gap: 16px;
}

.admin-sidebar {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    height: fit-content;
}

.admin-sidebar button {
    border: 1px solid #e5e7eb;
    background: #f9fafb;
    color: #111827;
    border-radius: 10px;
    padding: 10px 12px;
    text-align: left;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.admin-sidebar button.active {
    background: #111827;
    color: #fff;
    border-color: #111827;
}

.admin-content {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 16px;
}

.admin-panel-header {
    margin-bottom: 14px;
}

.admin-panel-header h2 {
    font-size: 24px;
    margin-bottom: 6px;
}

.admin-panel-header p {
    color: #6b7280;
}

.admin-featured-status {
    margin-top: 8px;
    font-size: 13px;
    line-height: 1.45;
    color: #4b5563;
}

.admin-dashboard-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.admin-dashboard-actions button {
    border: none;
    background: #111827;
    color: #fff;
    border-radius: 10px;
    padding: 11px 14px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
}

.admin-tools-v2 {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.admin-tools-v2 input,
.admin-tools-v2 select {
    border: 1px solid #d1d5db;
    border-radius: 10px;
    padding: 10px 12px;
    font-size: 14px;
    min-width: 220px;
    font-family: inherit;
}

.admin-chip-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.admin-chip-row button {
    border: 1px solid #d1d5db;
    background: #fff;
    border-radius: 999px;
    padding: 9px 14px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
}

.admin-chip-row button.active {
    background: #111827;
    border-color: #111827;
    color: #fff;
}

.admin-chip-row button.admin-danger-btn {
    background: #fee2e2;
    color: #991b1b;
    border-color: #fecaca;
}

.admin-chip-row button.admin-danger-btn:hover {
    background: #fecaca;
}

.admin-image-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.admin-image-card {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: #fff;
}

.admin-image-preview-wrap {
    aspect-ratio: 4 / 3;
    border-radius: 10px;
    overflow: hidden;
    background: #f3f4f6;
}

.admin-image-preview {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.admin-image-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}

.admin-image-meta h3 {
    font-size: 14px;
}

.admin-pill {
    font-size: 11px;
    font-weight: 700;
    border-radius: 999px;
    padding: 4px 8px;
}

.admin-pill.is-default {
    background: #e5e7eb;
    color: #374151;
}

.admin-pill.is-custom {
    background: #d1fae5;
    color: #065f46;
}

.admin-image-path {
    font-size: 12px;
    color: #6b7280;
    word-break: break-all;
}

.admin-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.admin-field span {
    font-size: 12px;
    color: #6b7280;
    font-weight: 600;
}

.admin-field input,
.admin-field select,
.admin-field textarea {
    border: 1px solid #d1d5db;
    border-radius: 10px;
    padding: 10px 12px;
    font-size: 14px;
    font-family: inherit;
}

.admin-inline-actions {
    display: flex;
    gap: 8px;
}

.admin-inline-actions button {
    border: none;
    background: #111827;
    color: #fff;
    border-radius: 10px;
    padding: 9px 12px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
}

.admin-inline-actions button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.admin-product-layout {
    display: grid;
    grid-template-columns: 290px 1fr;
    gap: 12px;
}

.admin-product-list {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 8px;
    max-height: 750px;
    overflow: auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.admin-product-item {
    border: 1px solid #e5e7eb;
    background: #fff;
    border-radius: 10px;
    padding: 10px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.admin-product-item .title {
    font-size: 14px;
    font-weight: 600;
}

.admin-product-item .meta {
    font-size: 12px;
    color: #6b7280;
}

.admin-product-item.active {
    border-color: #111827;
    box-shadow: inset 0 0 0 1px #111827;
}

.admin-product-editor {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.admin-product-form {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 12px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.admin-field-full {
    grid-column: 1 / -1;
}

.admin-check {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #374151;
    font-weight: 600;
}

.admin-product-images {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 12px;
}

.admin-product-inventory {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 16px;
    background: #fff;
}

.admin-product-section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
}

.admin-product-section-header h4 {
    font-size: 18px;
    margin-bottom: 4px;
}

.admin-product-section-header p {
    color: #6b7280;
    font-size: 13px;
}

.admin-product-section-header button,
.admin-danger-btn {
    border: none;
    border-radius: 10px;
    padding: 10px 12px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
}

.admin-product-section-header button {
    background: #111827;
    color: #fff;
}

.admin-danger-btn {
    background: #fee2e2;
    color: #991b1b;
}

.admin-inventory-summary {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 14px;
}

.admin-inventory-stat {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 12px;
    background: #f9fafb;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.admin-inventory-stat strong {
    font-size: 20px;
    color: #111827;
}

.admin-inventory-stat span {
    font-size: 12px;
    color: #6b7280;
    font-weight: 600;
}

.admin-inventory-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.admin-inventory-row {
    display: grid;
    grid-template-columns: minmax(0, 2fr) 140px 140px auto;
    gap: 10px;
    align-items: end;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 12px;
    background: #fff;
}

.admin-check-inline {
    grid-column: auto;
    margin-bottom: 10px;
}

.admin-product-image-tools {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.admin-product-image-tools h4 {
    font-size: 16px;
}

.admin-product-image-tools button {
    border: none;
    background: #111827;
    color: #fff;
    border-radius: 10px;
    padding: 9px 12px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
}

.admin-product-image-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.admin-product-image-row {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 16px;
    margin-bottom: 12px;
}

.admin-product-image-row .row-top {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.admin-product-image-row img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
    background: #f3f4f6;
    border: 1px solid #eef2f7;
}

.admin-product-image-row .row-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.admin-product-image-slot-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.admin-product-image-slot-title {
    font-size: 14px;
    font-weight: 600;
    color: #111827;
}

.admin-product-image-slot-status {
    font-size: 12px;
    font-weight: 600;
    color: #059669;
    padding: 4px 10px;
    border-radius: 999px;
    background: #ecfdf5;
}

.admin-product-image-slot-status.is-empty {
    color: #6b7280;
    background: #f3f4f6;
}

.admin-product-image-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    background: #f3f4f6;
    border: 1px dashed #d1d5db;
    flex-shrink: 0;
}

.admin-product-image-row input {
    border: 1px solid #d1d5db;
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 13px;
    font-family: inherit;
    width: 100%;
}

.admin-product-image-row .row-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.admin-product-image-row button {
    border: none;
    background: #374151;
    color: #fff;
    border-radius: 8px;
    padding: 8px 14px;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
}

.admin-product-image-row button:hover {
    background: #1f2937;
}

.admin-product-image-row button[data-role="product-image-upload"] {
    background: #4f46e5;
}

.admin-product-image-row button[data-role="product-image-upload"]:hover {
    background: #4338ca;
}

.admin-product-image-row button[data-role="remove-image"] {
    background: #ef4444;
}

.admin-product-image-row button[data-role="remove-image"]:hover {
    background: #dc2626;
}

.admin-product-image-row button:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.admin-size-guide-block {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid #e5e7eb;
}

.admin-size-guide-block h4 {
    font-size: 15px;
    margin: 0 0 6px;
    color: #111827;
}

.admin-size-guide-hint {
    font-size: 12px;
    color: #6b7280;
    margin: 0 0 12px;
    line-height: 1.45;
}

.admin-size-guide-row {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.admin-size-guide-preview {
    width: 120px;
    min-height: 100px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    overflow: hidden;
    background: #f9fafb;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.admin-size-guide-preview img {
    width: 100%;
    height: auto;
    display: block;
    vertical-align: top;
}

.admin-size-guide-preview--empty {
    font-size: 11px;
    font-weight: 600;
    color: #9ca3af;
    padding: 12px;
    text-align: center;
}

.admin-size-guide-fields {
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.admin-size-guide-fields input[data-role="size-guide-url"] {
    border: 1px solid #d1d5db;
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 13px;
    font-family: inherit;
    width: 100%;
    box-sizing: border-box;
}

.admin-size-guide-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.admin-size-guide-actions button {
    border: none;
    border-radius: 8px;
    padding: 8px 14px;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
}

.admin-size-guide-actions button[data-role="size-guide-upload"] {
    background: #4f46e5;
    color: #fff;
}

.admin-size-guide-actions button[data-role="size-guide-upload"]:hover {
    background: #4338ca;
}

.admin-size-guide-actions button[data-role="size-guide-clear"] {
    background: #f3f4f6;
    color: #374151;
}

.admin-size-guide-actions button[data-role="size-guide-clear"]:hover {
    background: #e5e7eb;
}

.admin-size-guide-actions button:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.admin-toast {
    position: fixed;
    right: 16px;
    bottom: 16px;
    background: #111827;
    color: #fff;
    padding: 12px 14px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    opacity: 0;
    transform: translateY(8px);
    transition: 0.2s ease;
    pointer-events: none;
    z-index: 999;
}

.admin-toast[data-tone="error"] {
    background: #991b1b;
}

.admin-toast.show {
    opacity: 1;
    transform: translateY(0);
}

.admin-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 998;
    padding: 16px;
}

.admin-modal.show {
    display: flex;
}

.admin-modal-card {
    width: min(460px, 100%);
    background: #fff;
    border-radius: 12px;
    padding: 16px;
}

.admin-modal-card h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.admin-modal-card p {
    color: #4b5563;
    margin-bottom: 14px;
}

.admin-modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}

.admin-modal-actions button {
    border: none;
    border-radius: 10px;
    padding: 10px 12px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
}

#confirm-cancel {
    background: #e5e7eb;
    color: #111827;
}

#confirm-approve {
    background: #111827;
    color: #fff;
}

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

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

@media (max-width: 768px) {
    .admin-topbar {
        flex-direction: column;
    }

    .admin-stats-grid {
        grid-template-columns: 1fr;
    }

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

    .admin-sidebar {
        flex-direction: row;
        overflow: auto;
    }

    .admin-sidebar button {
        white-space: nowrap;
    }

    .admin-image-grid {
        grid-template-columns: 1fr;
    }

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

    .admin-product-section-header {
        flex-direction: column;
    }

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

    .admin-inventory-row {
        grid-template-columns: 1fr;
    }

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

    .admin-product-image-row img {
        width: 100%;
        height: 170px;
    }

    .admin-product-image-placeholder {
        width: 100%;
        height: 170px;
    }

    .hero-inner {
        background-image: none;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-bottom: 0;
        min-height: 100vh; /* Ensure it spans the full viewport to push content to bottom */
    }

    .hero-content.welcoming-style {
        position: relative;
        padding-top: 140px;
        padding-left: 24px;
        padding-right: 24px;
        width: 100%;
        max-width: 360px;
        text-align: center;
        z-index: 5;
        order: 1; /* Heading First */
    }

    .welcome-kicker {
        display: inline-block;
        background: rgba(255, 255, 255, 0.7);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        padding: 8px 16px;
        border-radius: 999px;
        margin-bottom: 24px;
        border: 1px solid rgba(255, 255, 255, 0.4);
    }

    .welcoming-style h1 {
        display: inline-block;
        font-size: 42px;
        margin-bottom: 24px;
        color: #000;
        background: rgba(255, 255, 255, 0.7);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        padding: 24px 28px;
        border-radius: 28px;
        border: 1px solid rgba(255, 255, 255, 0.4);
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    }

    .brand-serif {
        font-size: 1.1em;
    }

    .hero-footer-content {
        position: relative;
        margin-top: auto; /* Pushes the desc and button to the bottom whitespace */
        padding: 0 24px 60px;
        text-align: center;
        z-index: 5;
        order: 3;
    }

    .welcoming-desc {
        font-size: 15px;
        margin: 0 auto 32px;
        padding: 0;
        opacity: 0.8;
        line-height: 1.7;
        max-width: 320px;
    }

    .hero-actions {
        justify-content: center;
        width: 100%;
    }

    .welcome-cta {
        padding: 18px 40px;
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .divider {
        width: 100%;
        margin-left: 0;
    }
}





/*=============================================
  ACCOUNT PAGE
=============================================*/
.account-shell {
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px 24px 72px;
}

.account-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
    gap: 18px;
}

.account-intro-card,
.account-form-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 22px;
}

.account-intro-card h1 {
    font-size: 34px;
    margin: 14px 0;
    line-height: 1.05;
}

.account-intro-card p {
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 14px;
}

.account-intro-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.account-intro-card ul li {
    font-size: 14px;
    color: #374151;
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    padding: 8px 12px;
    width: fit-content;
}

.account-mode-tabs {
    display: inline-flex;
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    padding: 4px;
    gap: 4px;
    margin-bottom: 14px;
}

.account-mode-tabs button {
    border: none;
    border-radius: 999px;
    background: transparent;
    color: #6b7280;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
}

.account-mode-tabs button.active {
    background: #111827;
    color: #fff;
}

.account-mode-tabs button:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

.account-message {
    margin-bottom: 10px;
    min-height: 20px;
    font-size: 13px;
    color: #6b7280;
    font-weight: 600;
}

.account-message[data-tone="error"] {
    color: #b91c1c;
}

.account-message[data-tone="success"] {
    color: #047857;
}

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

.account-form-grid[hidden] {
    display: none !important;
}

.account-submit-btn {
    border: none;
    border-radius: 10px;
    background: #111827;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 14px;
    cursor: pointer;
}

.account-submit-btn:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

.account-session-card {
    border: 1px solid #d1fae5;
    background: #f0fdf4;
    border-radius: 12px;
    padding: 12px;
    margin-bottom: 12px;
}

.account-session-card h3 {
    font-size: 16px;
    margin-bottom: 6px;
}

.account-session-card p {
    font-size: 13px;
    color: #065f46;
    margin-bottom: 10px;
}

.account-session-card button {
    border: none;
    background: #065f46;
    color: #fff;
    border-radius: 8px;
    padding: 9px 12px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
}

/*=============================================
  ADMIN USERS TABLE
=============================================*/
.admin-users-table-wrap {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: auto;
    background: #fff;
}

.admin-users-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 880px;
}

.admin-users-table th,
.admin-users-table td {
    text-align: left;
    padding: 11px 12px;
    border-bottom: 1px solid #eef2f7;
    font-size: 13px;
    vertical-align: top;
}

.admin-users-table th {
    color: #6b7280;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.4px;
}

.admin-users-table td {
    color: #111827;
}

.admin-user-pill {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 8px;
}

.admin-user-pill.active {
    background: #dcfce7;
    color: #166534;
}

.admin-user-pill.inactive {
    background: #fee2e2;
    color: #991b1b;
}

.admin-user-pill.sample {
    background: #e0e7ff;
    color: #4338ca;
}

.admin-users-empty {
    color: #6b7280;
    font-size: 14px;
    padding: 16px 0;
}

.admin-users-toolbar {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.admin-users-toolbar button {
    border: none;
    background: #111827;
    color: #fff;
    border-radius: 10px;
    padding: 10px 12px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
}

.contact-lead-section {
    padding: 48px 24px 56px;
    background: #f7f7f7;
    border-top: 1px solid #ececec;
}

.contact-lead-inner {
    max-width: 720px;
    margin: 0 auto;
}

.contact-lead-inner > h2 {
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 10px 0 8px;
    color: #111827;
}

.contact-lead-intro {
    color: #4b5563;
    font-size: 15px;
    line-height: 1.55;
    margin-bottom: 18px;
}

@media (max-width: 900px) {
    .account-layout {
        grid-template-columns: 1fr;
    }

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