/* ========================================
   ZI PERFORMANCE — GLOBAL DESIGN SYSTEM
   ======================================== */

/* Bolt Font — Local */
@font-face {
    font-family: 'Bolt';
    src: url('assets/fonts/Bolt.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

:root {
    /* Primary */
    --black: #16140F;
    --white: #FFFFFF;

    /* Secondary */
    --warm-white: #F5F2EE;
    --sand: #D8C3A5;
    --stone-gray: #5C5347;
    --dust-blue: #8A98BD;
    --burgundy: #4B0F18;
        --warm-brown: #8B5E3C;
    --clay: #B85C38;
    --sage: #8B9A7E;
    
    /* Curves */
    --r-card: 16px;
    --r-image: 14px;
    --r-button: 999px;
    --r-chip: 999px;

    /* Functional */
    --text-primary: #16140F;
    --text-muted: #5C5347;
    --border-light: rgba(0, 0, 0, 0.08);
    --border-dark: rgba(255, 255, 255, 0.1);

    /* Typography */
    --font: 'Hanken Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Bolt', 'Hanken Grotesk', sans-serif;

    /* Modular Type Scale (~1.25 Ratio) */
    --text-display: clamp(2.5rem, 5vw, 2.875rem); /* 46px */
    --text-h1: clamp(1.8rem, 4vw, 2rem);          /* 32px */
    --text-h2: clamp(1.35rem, 3vw, 1.5rem);       /* 24px */
    --text-lead: clamp(1.05rem, 2vw, 1.125rem);   /* 18px */
    --text-body: 1rem;                            /* 16px */
    --text-label: 0.75rem;                        /* 12px */

    /* Spacing */
    --section-padding: clamp(4rem, 10vw, 10rem);
    --container-padding: clamp(1.5rem, 4vw, 4rem);

    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: 0.8s var(--ease-out);
    --transition-medium: 0.5s var(--ease-out);
    --transition-fast: 0.3s ease;
}

/* ========== RESET ========== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html.lenis, html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    background: var(--white);
    color: var(--text-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    line-height: 1.5;
}

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

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

button {
    font-family: var(--font);
    cursor: pointer;
    border: none;
    background: none;
}

ul {
    list-style: none;
}

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4, h5 {
    /* text-transform removed */
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.05;
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: var(--text-label);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all var(--transition-fast);
    cursor: pointer;
    text-align: center;
    border-radius: var(--r-button);
}

.btn-primary {
    background: var(--black);
    color: var(--white);
}@media (hover: hover) {
.btn-primary:hover {

    background: #222;
    transform: translateY(-1px);

}
}

.btn-outline-dark {
    background: transparent;
    color: var(--black);
    border: 1px solid var(--black);
}@media (hover: hover) {
.btn-outline-dark:hover {

    background: var(--black);
    color: var(--white);

}
}

.btn-light {
    background: var(--white);
    color: var(--black);
}@media (hover: hover) {
.btn-light:hover {

    background: var(--warm-white);
    transform: translateY(-1px);

}
}

/* ========== NAVBAR ========== */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s ease;
}

#navbar.scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem var(--container-padding);
    max-width: 1600px;
    margin: 0 auto;
    width: 100%;
}

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

.logo-img {
    height: 30px;
    width: auto;
}

.nav-center {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    font-size: var(--text-label);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-primary);
    position: relative;
    transition: opacity var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--black);
    transition: width var(--transition-medium);
}@media (hover: hover) {
.nav-link:hover::after,
.nav-link.active::after {

    width: 100%;

}
}@media (hover: hover) {
.nav-link:hover {

    opacity: 0.6;

}
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.25rem;
    transition: opacity var(--transition-fast);
}@media (hover: hover) {
.nav-icon-btn:hover {

    opacity: 0.5;

}
}

.cart-link {
    font-size: var(--text-label);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.25rem;
    width: 28px;
}

.mobile-menu-btn span {
    display: block;
    height: 1.5px;
    background: var(--black);
    transition: all 0.3s ease;
    width: 100%;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 5px);
}

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

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -5px);
}

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--white);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.mobile-menu.open {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.mobile-menu-content a {
    font-size: var(--text-h1);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    color: var(--black);
    transition: opacity var(--transition-fast);
}@media (hover: hover) {
.mobile-menu-content a:hover {

    opacity: 0.5;

}
}

/* ========== HERO ========== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: var(--warm-white);
    padding-top: 80px; /* Safe space for navbar on short screens */
    padding-bottom: 60px; /* Safe space for marquee */
}

.hero-bg-texture {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 30%, rgba(216, 195, 165, 0.2), transparent 70%);
    pointer-events: none;
}

.hero-floating-sneaker {
    position: absolute;
    width: clamp(300px, 50vw, 700px);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.12;
    z-index: 1;
    pointer-events: none;
    filter: drop-shadow(0 30px 60px rgba(0,0,0,0.15));
}

.floating-shoe {
    width: 100%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-20px) rotate(0deg); }
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 0 var(--container-padding);
}

.hero-icon {
    margin: 0 auto 2rem auto;
    width: clamp(100px, 18vw, 250px);
    height: clamp(100px, 18vw, 250px);
    perspective: 1000px;
}

.hero-icon-img {
    width: 100%;
    height: 100%;
    display: block;
    opacity: 0.8;
    transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1), filter 1.2s ease;
    transform-style: preserve-3d;
}@media (hover: hover) {
.hero-icon:hover .hero-icon-img {

    transform: rotateY(180deg);
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 1)) drop-shadow(0 0 25px rgba(255, 255, 255, 1)) drop-shadow(0 0 10px rgba(0, 0, 0, 0.15));

}
}

.hero-title {
    font-family: var(--font-display);
    font-size: var(--text-h1);
    font-weight: 400;
    letter-spacing: 0.02em;
    margin-bottom: 1.5rem;
    line-height: 1;
    text-transform: uppercase;
    text-align: center;
}

.hero-subtitle {
    font-size: var(--text-lead);
    font-weight: 300;
    letter-spacing: 0.15em;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.hero-desc {
    font-size: var(--text-lead);
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========== MARQUEE ========== */
.marquee-section {
    background: var(--black);
    color: var(--white);
    padding: 1.2rem 0;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 30s linear infinite;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    white-space: nowrap;
    font-size: var(--text-label);
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.marquee-dot {
    font-size: var(--text-label);
    opacity: 0.4;
}

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

/* ========== FEATURED MODELS ========== */
.featured-section {
    padding: var(--section-padding) 0;
}

.featured-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1600px;
    margin: 0 auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
    width: 100%;
}

.featured-card {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 3/4;
    background: var(--warm-white);
    border-radius: var(--r-card);
}

.featured-img-wrap {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.featured-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--ease-out);
}@media (hover: hover) {
.featured-card:hover .featured-img-wrap img {

    transform: scale(1.06);

}
}

.featured-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: clamp(2rem, 4vw, 4rem);
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.1) 60%, transparent 100%);
    color: var(--white);
    z-index: 2;
}

.featured-label {
    display: block;
    font-size: var(--text-label);
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    opacity: 0.7;
}

.featured-name {
    font-family: var(--font-display);
    font-size: var(--text-h1);
    font-weight: 400;
    letter-spacing: 0.02em;
    margin-bottom: 0.5rem;
}

.featured-desc {
    font-size: var(--text-body);
    font-weight: 300;
    opacity: 0.8;
    color: var(--white);
    margin-bottom: 1rem;
}

.featured-cta {
    font-size: var(--text-label);
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(10px);
    transition: all var(--transition-medium);
}@media (hover: hover) {
.featured-card:hover .featured-cta {

    opacity: 1;
    transform: translateY(0);

}
}

/* ========== 3D SHOWCASE ========== */
.model-showcase {
    padding: var(--section-padding) var(--container-padding);
    background: var(--warm-white);
    text-align: center;
    overflow: hidden;
}

.model-header {
    margin-bottom: 3rem;
}

.model-header h2 {
    font-size: var(--text-h1);
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.model-header p {
    font-size: var(--text-body);
    color: var(--stone-gray);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.model-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    height: 65vh;
    min-height: 400px;
    position: relative;
    border-radius: 20px;
    background: #EFECE8; /* slightly darker warm-white for contrast */
    box-shadow: 0 30px 60px rgba(0,0,0,0.06);
    overflow: hidden;
    border-radius: var(--r-image);
}

model-viewer {
    width: 100%;
    height: 100%;
    --poster-color: transparent;
}

model-viewer:focus-visible {
    outline: none;
}

/* Progress Bar */
.progress-bar {
    display: block;
    width: 33%;
    height: 10%;
    max-height: 2px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate3d(-50%, -50%, 0);
    border-radius: 25px;
    box-shadow: 0px 3px 10px 3px rgba(0, 0, 0, 0.5), 0px 0px 5px 1px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.9);
    background-color: rgba(0, 0, 0, 0.5);
}

.progress-bar.hide {
    visibility: hidden;
    transition: visibility 0.3s;
}

.update-bar {
    background-color: rgba(255, 255, 255, 0.9);
    width: 0%;
    height: 100%;
    border-radius: 25px;
    float: left;
    transition: width 0.3s;
}

/* ========== STORY SECTIONS ========== */
.story-section {
    padding: var(--section-padding) 0;
}

.faris-story {
    background: var(--white);
}

.dastan-story {
    background: var(--warm-white);
}

.story-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 6vw, 8rem);
    align-items: center;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.story-container.reverse {
    direction: ltr;
}

.story-label {
    display: block;
    font-size: var(--text-label);
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.story-title {
    font-family: var(--font-display);
    font-size: var(--text-display);
    font-weight: 400;
    letter-spacing: 0.02em;
    margin-bottom: 1rem;
}

.story-tagline {
    font-size: var(--text-h2);
    font-weight: 300;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.story-desc {
    font-size: var(--text-body);
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 450px;
}

.story-features {
    margin-bottom: 2.5rem;
}

.story-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    font-size: var(--text-body);
    font-weight: 400;
    border-bottom: 1px solid var(--border-light);
}

.feature-line {
    display: block;
    width: 20px;
    height: 1px;
    background: var(--sand);
}

.story-price {
    font-size: var(--text-h2);
    font-weight: 600;
    margin-bottom: 2rem;
    letter-spacing: -0.01em;
}

/* Story Visuals */
.story-visual {
    display: grid;
    grid-template-columns: 1.4fr 0.6fr;
    gap: 1rem;
}

.story-visual > *:first-child {
    justify-self: end;
}

.story-visual > *:last-child {
    justify-self: start;
}

.dastan-story .story-visual {
    grid-template-columns: 0.6fr 1.4fr;
}

.story-img-main {
    aspect-ratio: 3/4;
    overflow: hidden;
    background: var(--warm-white);
    border-radius: var(--r-image);
}

.story-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s var(--ease-out);
}@media (hover: hover) {
.story-img-main:hover img {

    transform: scale(1.04);

}
}

.story-img-secondary {
    aspect-ratio: 3/4;
    overflow: hidden;
    background: var(--warm-white);
    align-self: end;
    border-radius: var(--r-image);
}

.story-img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s var(--ease-out);
}@media (hover: hover) {
.story-img-secondary:hover img {

    transform: scale(1.04);

}
}

/* Colorway Bar */
.colorway-bar {
    margin-top: 3rem;
    padding: 1.5rem var(--container-padding);
    display: flex;
    justify-content: center;
}

.colorway-bar.dark .colorway-label {
    color: var(--text-muted);
}

.colorway-bar-inner {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.colorway-label {
    font-size: var(--text-label);
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.colorway-swatches {
    display: flex;
    gap: 0.75rem;
}

.swatch {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-fast);
    position: relative;
}

.swatch.active {
    border-color: var(--black);
}@media (hover: hover) {
.swatch:hover {

    transform: scale(1.15);

}
}

/* ========== PRODUCT GRID ========== */
.grid-section {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.grid-header {
    text-align: center;
    margin-bottom: clamp(3rem, 6vw, 5rem);
}

.grid-title {
    font-size: var(--text-h2);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.grid-subtitle {
    font-size: var(--text-body);
    color: var(--text-muted);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1600px;
    margin: 0 auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
    width: 100%;
}

.product-card {
    display: block;
    cursor: pointer;
    border-radius: var(--r-card);
}

.product-img-wrap {
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
    background: var(--warm-white);
    margin-bottom: 1rem;
    border-radius: var(--r-image);
}

.product-img-main,
.product-img-hover {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.6s ease, transform 1s var(--ease-out);
}

.product-img-hover {
    opacity: 0;
}@media (hover: hover) {
.product-card:hover .product-img-main {

    opacity: 0;

}
}@media (hover: hover) {
.product-card:hover .product-img-hover {

    opacity: 1;

}
}@media (hover: hover) {
.product-card:hover .product-img-main,
.product-card:hover .product-img-hover {

    transform: scale(1.04);

}
}

.quick-view-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 0.8rem;
    background: rgba(255,255,255,0.95);
    text-align: center;
    transform: translateY(100%);
    transition: transform var(--transition-medium);
}

.quick-view-overlay span {
    font-size: var(--text-label);
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}@media (hover: hover) {
.product-card:hover .quick-view-overlay {

    transform: translateY(0);

}
}

.product-info {
    padding: 0 0.25rem;
}

.product-info-top {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.3rem;
}

.product-info-top h4 {
    font-size: var(--text-body);
    font-weight: 600;
    letter-spacing: 0.05em;
}

.product-price {
    font-size: var(--text-body);
    font-weight: 500;
}

.product-colorway {
    font-size: var(--text-label);
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.product-color-dots {
    display: flex;
    gap: 0.4rem;
}

.color-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    cursor: pointer;
    transition: transform var(--transition-fast);
}

.color-dot.active {
    box-shadow: 0 0 0 1.5px var(--white), 0 0 0 2.5px var(--black);
}@media (hover: hover) {
.color-dot:hover {

    transform: scale(1.2);

}
}

/* ========== NEWSLETTER ========== */
.newsletter-section {
    background: var(--warm-white);
    padding: var(--section-padding) var(--container-padding);
    text-align: center;
}

.newsletter-inner {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-inner h2 {
    font-size: var(--text-h2);
    margin-bottom: 1rem;
}

.newsletter-inner p {
    font-size: var(--text-body);
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    max-width: 480px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 1px solid var(--border-light);
    border-right: 1px solid var(--border-light);
    border-radius: var(--r-button);
    background: var(--white);
    font-family: var(--font);
    font-size: var(--text-body);
    outline: none;
    transition: border-color var(--transition-fast);
}

.newsletter-form input:focus {
    border-color: var(--black);
}

.newsletter-form .btn {
    border: 1px solid var(--black);
    white-space: nowrap;
    border-radius: var(--r-button);
}

/* ========== FOOTER ========== */
.footer {
    background: var(--black);
    color: var(--white);
    padding: clamp(4rem, 8vw, 6rem) 0 2rem;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid var(--border-dark);
    margin-bottom: 2rem;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
    width: 100%;
}

.footer-logo {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 1.5rem;
}

.footer-brand p {
    font-size: var(--text-body);
    color: rgba(255,255,255,0.5);
    max-width: 300px;
    line-height: 1.6;
}

.footer-links-grid {
    display: flex;
    gap: clamp(2rem, 4vw, 5rem);
}

.footer-col h4 {
    font-size: var(--text-label);
    font-weight: 600;
    letter-spacing: 0.15em;
    color: rgba(255,255,255,0.4);
    margin-bottom: 1.5rem;
}

.footer-col a {
    display: block;
    font-size: var(--text-body);
    color: rgba(255,255,255,0.7);
    margin-bottom: 0.8rem;
    transition: color var(--transition-fast);
}@media (hover: hover) {
.footer-col a:hover {

    color: var(--white);

}
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 2rem;
    max-width: 1600px;
    margin: 0 auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
    width: 100%;
}

.footer-bottom p {
    font-size: var(--text-label);
    color: rgba(255,255,255,0.3);
}

/* ========== ANIMATION INITIAL STATES ========== */
.reveal-hero,
.reveal-up,
.reveal-scale {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
    will-change: transform, opacity;
}

.reveal-scale {
    transform: translateY(40px) scale(0.95);
    transition: opacity 1.2s var(--ease-out), transform 1.2s var(--ease-out);
}

/* Active states for reveal animations */
.reveal-hero.active,
.reveal-up.active,
.reveal-scale.active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Delay classes for staggered animations */
.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }


/* ========== HERO CONTENT ALIGNMENT & WIDTH ========== */
.hero-content {
    max-width: 1600px;
    margin: 0 auto;
}

/* ========== DESKTOP SCROLL SNAPPING & SCALING ========== */
@media (min-width: 1025px) {
    /* Enable Scroll Snapping globally on desktop */
    html {
        scroll-snap-type: y mandatory;
        scroll-behavior: smooth;
        overflow-y: scroll;
    }

    /* Assign Snap Points */
    .hero-marquee-wrap,
    .featured-section,
    .story-section,
    .grid-section,
    .footer-wrap {
        scroll-snap-align: start;
        scroll-snap-stop: always;
        height: 100vh;
        min-height: 100vh;
        box-sizing: border-box;
        overflow: hidden;
        position: relative;
    }

    /* Slide 1: Hero & Marquee Wrap */
    .hero-marquee-wrap {
        display: flex;
        flex-direction: column;
    }
    .hero-marquee-wrap .hero {
        flex: 1;
        height: calc(100vh - 60px);
        min-height: calc(100vh - 60px);
    }
    .hero-marquee-wrap .marquee-section {
        height: 60px;
        padding: 0;
        display: flex;
        align-items: center;
    }

    /* Slide 2: Featured Models Section */
    .featured-section {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 6vh 0 !important;
    }
    .featured-grid {
        max-height: none;
        align-items: center;
    }
    .featured-card {
        width: 100%;
        height: auto;
        aspect-ratio: 4/5;
        max-width: none;
        margin: 0;
        border-radius: var(--r-card);
}

    /* Slide 3 & 4: Storytelling Sections (Faris & Dastan) */
    .story-section {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: 8vh 0 3vh 0 !important; /* Safe space for navbar */
    }
    .story-container {
        flex: 1;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: clamp(2rem, 5vw, 6rem);
        align-items: center;
        max-height: 74vh;
        width: 100%;
    }
    .story-text {
        max-height: 72vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .story-title {
        font-size: var(--text-display);
        margin-bottom: 0.8vh;
        line-height: 1.05;
    }
    .story-tagline {
        font-size: var(--text-lead);
        margin-bottom: 1.5vh;
        line-height: 1.3;
    }
    .story-desc {
        font-size: var(--text-body);
        margin-bottom: 1.5vh;
        max-width: 440px;
        line-height: 1.6;
    }
    .story-features {
        margin-bottom: 1.5vh;
    }
    .story-features li {
        padding: 0.6vh 0;
        font-size: var(--text-body);
    }
    .story-price {
        font-size: var(--text-h2);
        margin-bottom: 1.5vh;
    }
    .story-section .btn {
        padding: 0.8rem 2.2rem;
        font-size: var(--text-label);
        align-self: flex-start;
        border-radius: var(--r-button);
}
    .story-visual {
        max-height: 68vh;
        align-items: end;
    }
    .story-img-main, .story-img-secondary {
        max-height: 58vh;
        aspect-ratio: 3/4;
        width: auto;
        overflow: hidden;
        border-radius: var(--r-image);
}
    .colorway-bar {
        margin-top: 0;
        padding: 1.5vh var(--container-padding);
    }

    /* Slide 5: Latest Releases Shop Grid */
    .grid-section {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 8vh 0 4vh 0 !important;
    }
    .grid-header {
        margin-bottom: 3vh;
    }
    .grid-title {
        font-size: var(--text-h2);
        margin-bottom: 0.5vh;
    }
    .product-grid {
        max-height: 68vh;
        align-items: start;
        gap: 1.5rem;
    }
    .product-img-wrap {
        max-height: 38vh;
        aspect-ratio: 1/1;
        width: auto;
        margin: 0 auto 0.8rem;
        border-radius: var(--r-image);
}

    /* Slide 6: Unified Footer & Newsletter Wrap */
    .footer-wrap {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        background: var(--black);
        border-top: 1px solid var(--border-dark);
    }
    .footer-wrap .newsletter-section {
        background: transparent;
        color: var(--white);
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0 var(--container-padding) !important;
    }
    .footer-wrap .newsletter-inner h2 {
        color: var(--white);
        font-size: var(--text-h2);
        margin-bottom: 1vh;
    }
    .footer-wrap .newsletter-inner p {
        color: rgba(255, 255, 255, 0.6);
        margin-bottom: 2.5vh;
        font-size: var(--text-body);
    }
    .footer-wrap .newsletter-form input {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.15);
        color: var(--white);
    }
    .footer-wrap .newsletter-form input:focus {
        border-color: var(--white);
    }
    .footer-wrap .newsletter-form .btn {
        border-color: var(--white);
        background: var(--white);
        color: var(--black);
        border-radius: var(--r-button);
}@media (hover: hover) {
.footer-wrap .newsletter-form .btn:hover {

        background: var(--warm-white);
        color: var(--black);
    
}
}
    .footer-wrap .footer {
        background: transparent;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        padding: 4vh 0 2vh 0 !important;
    }
    .footer-wrap .footer-top {
        padding-bottom: 3vh;
        margin-bottom: 1.5vh;
    }
    .footer-wrap .footer-logo {
        height: 32px;
        margin-bottom: 1vh;
    }
    .footer-wrap .footer-brand p {
        font-size: var(--text-body);
    }
    .footer-wrap .footer-col h4 {
        margin-bottom: 1vh;
    }
    .footer-wrap .footer-col a {
        margin-bottom: 0.6vh;
        font-size: var(--text-label);
    }
    .footer-wrap .footer-bottom {
        padding-top: 1.5vh;
    }
}

/* ========== RESPONSIVE HEIGHT FOR SMALL MONITORS ========== */
@media (max-height: 800px) and (min-width: 1025px) {
    .hero-title {
        font-size: var(--text-h1);
        margin-bottom: 1rem;
    }
    .hero-icon {
        width: clamp(100px, 12vw, 150px);
        height: clamp(100px, 12vw, 150px);
        margin-bottom: 0.5rem;
    }
    .hero-subtitle {
        margin-bottom: 1rem;
    }
}

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

@media (max-width: 1024px) {
    .featured-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .featured-card {
        aspect-ratio: 16/10;
        border-radius: var(--r-card);
}

    .story-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .story-container.reverse .story-visual {
        order: -1;
    }

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

    .footer-top {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav-inner {
        padding: 1.25rem var(--container-padding);
    }

    .nav-center {
        display: none;
    }

    .cart-link {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero-icon {
        margin-bottom: 1rem;
    }

    .hero-title {
        font-size: var(--text-display);
    }

    .hero-subtitle {
        font-size: var(--text-body);
    }

    .story-visual,
    .dastan-story .story-visual {
        grid-template-columns: 1fr 1fr;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input {
        border-right: 1px solid var(--border-light);
        border-bottom: 1px solid var(--border-light);
    }

    .footer-links-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: var(--text-h1);
        line-height: 1.1;
    }

    .hero-subtitle {
        font-size: var(--text-body);
        padding: 0 1rem;
    }

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

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        max-width: 280px;
        margin: 0 auto;
    }

    .featured-card {
        aspect-ratio: 4/5;
        border-radius: var(--r-card);
}

    .story-visual,
    .dastan-story .story-visual {
        grid-template-columns: 1fr;
    }

    .story-img-secondary {
        display: none;
        border-radius: var(--r-image);
}
}

/* ========== CART NOTIFICATION ========== */
.cart-notification {
    position: fixed;
    top: -100px;
    right: 2rem;
    z-index: 2000;
    background: var(--white);
    border: 1px solid var(--border-light);
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    padding: 1.25rem 1.5rem;
    transition: top 0.5s var(--ease-out);
    max-width: 400px;
}

.cart-notification.show {
    top: 5rem;
}

.cart-notif-inner {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cart-notif-check {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--black);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-label);
    flex-shrink: 0;
}

.cart-notif-inner strong {
    font-size: var(--text-body);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.cart-notif-inner p {
    font-size: var(--text-label);
    color: var(--text-muted);
    margin-top: 0.15rem;
}

.cart-notif-btn {
    font-size: var(--text-label);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.5rem 1rem;
    border: 1px solid var(--black);
    white-space: nowrap;
    transition: all 0.3s;
    margin-left: auto;
}@media (hover: hover) {
.cart-notif-btn:hover {

    background: var(--black);
    color: var(--white);

}
}

/* ==========================================================================
   ZI JOURNEY PAGE
   ========================================================================== */
.journey-page {
    background-color: var(--warm-white);
}

/* Journey Hero */
.journey-hero {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    padding: var(--container-padding);
}
.journey-hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: -1;
}
.journey-hero-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.journey-hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
}
.journey-hero-content {
    max-width: 800px;
    margin-top: 10vh;
}
.journey-hero-content h1 {
    font-size: var(--text-display);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 2rem;
    line-height: 1;
}
.journey-hero-content p {
    font-size: var(--text-h2);
    font-weight: 300;
    margin-bottom: 2rem;
    line-height: 1.3;
}
.journey-hero-subtext {
    font-size: var(--text-body);
    opacity: 0.8;
    max-width: 500px;
    margin: 0 auto;
}

/* The Beginning */
.journey-beginning {
    padding: 150px var(--container-padding);
}
.beginning-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
.beginning-text h2 {
    font-size: var(--text-display);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 3rem;
    letter-spacing: -0.02em;
}
.beginning-text p {
    font-size: var(--text-lead);
    line-height: 1.6;
    margin-bottom: 2rem;
    color: var(--black);
}
.beginning-text .highlight {
    font-size: var(--text-h2);
    font-weight: 600;
}
.beginning-visual {
    position: relative;
    width: 100%;
    padding-bottom: 120%;
}
.beginning-visual img {
    position: absolute;
    width: 70%;
    height: 70%;
    object-fit: cover;
    top: 0; right: 0;
}
.beginning-visual img.visual-overlap {
    top: 30%; left: 0; right: auto;
    z-index: 2;
}

/* Philosophy */
.journey-philosophy {
    padding: 150px var(--container-padding);
    background: var(--white);
    text-align: center;
}
.philosophy-content h2 {
    font-size: var(--text-display);
    font-weight: 700;
    margin-bottom: 4rem;
}
.philosophy-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 4rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}
.philosophy-list span {
    font-size: var(--text-h2);
    padding: 1rem 2rem;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 50px;
}
.philosophy-content p {
    font-size: var(--text-h2);
    font-weight: 500;
    line-height: 1.4;
}

/* Design Language */
.journey-design {
    padding: 150px var(--container-padding);
}
.design-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}
.design-card {
    padding: 3rem 2rem;
    background: var(--white);
    border-top: 2px solid var(--black);
    transition: transform 0.4s ease;
}@media (hover: hover) {
.design-card:hover {

    transform: translateY(-10px);

}
}
.design-icon {
    font-size: var(--text-body);
    font-weight: 700;
    margin-bottom: 3rem;
}
.design-card h3 {
    font-size: var(--text-h2);
    margin-bottom: 1rem;
}
.design-card p {
    color: var(--stone-gray);
    line-height: 1.5;
}

/* Showcase */
.journey-showcase {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    padding: 150px var(--container-padding);
    align-items: center;
}
.dastan-showcase {
    grid-template-columns: 1.5fr 1fr;
    background: var(--black);
    color: var(--white);
}
.showcase-content h2 {
    font-size: var(--text-body);
    letter-spacing: 0.2em;
    margin-bottom: 2rem;
}
.showcase-content h3 {
    font-size: var(--text-h1);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2rem;
}
.showcase-content p {
    font-size: var(--text-lead);
    line-height: 1.6;
    opacity: 0.8;
}
.showcase-visual img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
}

/* Global */
.journey-global {
    position: relative;
    padding: 200px var(--container-padding);
    color: var(--white);
    text-align: center;
}
.global-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: -1;
}
.global-bg img {
    width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%);
}
.global-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
}
.global-content {
    max-width: 800px;
    margin: 0 auto;
}
.global-content h2 {
    font-size: var(--text-display);
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.1;
}
.global-content p {
    font-size: var(--text-lead);
    margin-bottom: 2rem;
    line-height: 1.6;
}
.global-content .highlight {
    font-size: var(--text-h2);
    font-weight: 600;
}

/* Material & Process */
.journey-process {
    padding: 150px var(--container-padding);
}
.process-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}
.process-card {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}
.process-card img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.8s ease;
}@media (hover: hover) {
.process-card:hover img {

    transform: scale(1.05);

}
}
.process-text {
    position: absolute;
    bottom: 2rem; left: 2rem;
    background: var(--white);
    padding: 1rem 2rem;
}
.process-text h3 {
    font-size: var(--text-body);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Video Section */
.journey-video {
    height: 100vh;
    position: relative;
}
.video-container {
    width: 100%; height: 100%;
    position: relative;
}
.video-container img {
    width: 100%; height: 100%; object-fit: cover; filter: brightness(0.7);
}
.video-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.3);
}
.video-container h2 {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
    font-size: var(--text-display);
    font-weight: 800;
    white-space: nowrap;
    letter-spacing: -0.02em;
}

/* Future Vision */
.journey-vision {
    padding: 150px var(--container-padding);
    text-align: center;
    background: var(--white);
}
.vision-content {
    max-width: 800px;
    margin: 0 auto;
}
.vision-content h2 {
    font-size: var(--text-display);
    margin-bottom: 2rem;
}
.vision-content p {
    font-size: var(--text-lead);
    margin-bottom: 4rem;
}
.vision-list {
    list-style: none;
    font-size: var(--text-h1);
    font-weight: 600;
    line-height: 2;
    color: var(--stone-gray);
}

/* Community */
.journey-community {
    padding: 150px var(--container-padding);
    text-align: center;
}
.community-content h2 {
    font-size: var(--text-h1);
    margin-bottom: 3rem;
}
.community-content p {
    font-size: var(--text-h2);
    line-height: 1.8;
}

@media (max-width: 768px) {
    .beginning-container, .journey-showcase {
        grid-template-columns: 1fr;
    }
    .dastan-showcase .showcase-visual {
        order: -1;
    }
    .process-grid {
        grid-template-columns: 1fr;
    }
    .philosophy-list span {
        font-size: var(--text-body);
    }
}

/* ==========================================================================
   VERIFICATION PAGE
   ========================================================================== */
/* Dark Navbar Theme for Verify Page (when not scrolled) */
.verify-page #navbar:not(.scrolled) .nav-link,
.verify-page #navbar:not(.scrolled) .cart-link {
    color: var(--white);
}
.verify-page #navbar:not(.scrolled) .nav-link::after {
    background: var(--white);
}
.verify-page #navbar:not(.scrolled) .nav-icon-btn {
    color: var(--white);
}
.verify-page #navbar:not(.scrolled) .logo-img {
    filter: brightness(0) invert(1);
}
.verify-page #navbar:not(.scrolled) .mobile-menu-btn span {
    background: var(--white);
}

.verify-page {
    background-color: var(--black);
    color: var(--white);
}

.verify-hero {
    min-height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px var(--container-padding) 60px;
    overflow: hidden;
}

.verify-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: -1;
}

.verify-bg-img {
    width: 100%; height: 100%; object-fit: cover;
    filter: blur(8px) brightness(0.4) saturate(0.5);
    transform: scale(1.05); /* hide blurred edges */
}

.verify-gradient {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.8) 100%);
}

.verify-particles {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: radial-gradient(var(--white) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.05;
    animation: floatingParticles 20s linear infinite;
}

@keyframes floatingParticles {
    0% { background-position: 0px 0px; }
    100% { background-position: 50px 50px; }
}

.verify-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.verify-header {
    text-align: center;
    margin-bottom: 4rem;
}

.verify-header h1 {
    font-size: var(--text-h1);
    font-weight: 800;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.verify-header p {
    font-size: var(--text-lead);
    color: var(--stone-gray);
    max-width: 600px;
    margin: 0 auto;
}

.verify-content-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: start;
}

/* Glass Card */
.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Form Styles */
.input-group {
    margin-bottom: 2rem;
}

.input-group label {
    display: block;
    font-size: var(--text-body);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.8rem;
    color: rgba(255,255,255,0.8);
}

.input-group label .optional {
    text-transform: none;
    font-weight: 400;
    color: var(--stone-gray);
    font-size: var(--text-label);
}

.input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.glass-card input {
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--white);
    padding: 1rem 1.2rem;
    border-radius: 8px;
    font-size: var(--text-body);
    font-family: var(--font-primary);
    transition: all 0.3s ease;
}

.glass-card input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.6);
}

.glass-card input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.qr-btn {
    position: absolute;
    right: 12px;
    background: none;
    border: none;
    color: var(--stone-gray);
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}@media (hover: hover) {
.qr-btn:hover {

    color: var(--white);

}
}

.verify-submit-btn {
    width: 100%;
    background: var(--white);
    color: var(--black);
    border: none;
    padding: 1.2rem;
    font-size: var(--text-body);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
}@media (hover: hover) {
.verify-submit-btn:hover {

    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);

}
}

.verify-submit-btn.loading {
    background: rgba(255, 255, 255, 0.8);
    pointer-events: none;
}

.spinner {
    animation: rotate 2s linear infinite;
    width: 24px;
    height: 24px;
}
.spinner .path {
    stroke: var(--black);
    stroke-linecap: round;
    animation: dash 1.5s ease-in-out infinite;
}

@keyframes rotate { 100% { transform: rotate(360deg); } }
@keyframes dash {
  0% { stroke-dasharray: 1, 150; stroke-dashoffset: 0; }
  50% { stroke-dasharray: 90, 150; stroke-dashoffset: -35; }
  100% { stroke-dasharray: 90, 150; stroke-dashoffset: -124; }
}

.form-hint {
    margin-top: 1.5rem;
    font-size: var(--text-body);
    color: var(--stone-gray);
    text-align: center;
}

/* Result Cards */
.result-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.result-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.result-icon-wrapper.success {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
}

.result-icon-wrapper.error {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.result-header h3 {
    font-size: var(--text-h2);
    font-weight: 600;
}

.result-msg {
    font-size: var(--text-body);
    line-height: 1.6;
    color: rgba(255,255,255,0.8);
    margin-bottom: 2rem;
}

/* Verified Product Info */
.verified-product-details {
    display: flex;
    gap: 1.5rem;
    background: rgba(0,0,0,0.3);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    border: 1px solid rgba(255,255,255,0.05);
}

.vp-image {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

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

.vp-info h4 {
    font-size: var(--text-lead);
    font-weight: 700;
    margin-bottom: 0.8rem;
    letter-spacing: 0.05em;
}

.vp-info ul {
    list-style: none;
    padding: 0; margin: 0;
}

.vp-info li {
    font-size: var(--text-body);
    color: var(--stone-gray);
    margin-bottom: 0.4rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.vp-info li span:first-child {
    color: rgba(255,255,255,0.5);
    width: 110px;
}

.vp-info .mono {
    font-family: monospace;
    letter-spacing: 0.1em;
    color: var(--white);
}

.status-badge.success {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    font-size: var(--text-label);
    font-weight: 600;
}

.verify-reset-btn {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-size: var(--text-body);
    cursor: pointer;
    transition: all 0.3s;
}@media (hover: hover) {
.verify-reset-btn:hover {

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

}
}

.error-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.contact-support-link {
    color: var(--stone-gray);
    font-size: var(--text-body);
    text-decoration: underline;
}@media (hover: hover) {
.contact-support-link:hover {

    color: var(--white);

}
}

/* Side Info */
.verify-side-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    padding: 2rem;
}

.info-card h3 {
    font-size: var(--text-lead);
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--white);
}

.info-card p {
    font-size: var(--text-body);
    line-height: 1.6;
    color: var(--stone-gray);
}

@media (max-width: 900px) {
    .verify-content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .verify-header h1 {
        font-size: var(--text-h1);
    }
}




/* ============================================
   BRAND COLOR ACCENTS (UI/UX AUDIT)
============================================ */
:root {
    --clay: #B85C38;
    --sage: #8B9A7E;
    --burgundy: #4B0F18;
}

/* Faris Signature Color */
a.btn[href*="faris"], a.story-cta[href*="faris"] {
    background-color: var(--sage) !important;
    border-color: var(--sage) !important;
    color: #fff !important;
}@media (hover: hover) {
a.btn[href*="faris"]:hover, a.story-cta[href*="faris"]:hover {

    background-color: #758369 !important;

}
}

/* Dastan Signature Color */
a.btn[href*="dastan"], a.story-cta[href*="dastan"] {
    background-color: var(--burgundy) !important;
    border-color: var(--burgundy) !important;
    color: #fff !important;
}@media (hover: hover) {
a.btn[href*="dastan"]:hover, a.story-cta[href*="dastan"]:hover {

    background-color: #360a11 !important;

}
}

/* Dhaka Clay (Global Accent) */
.checkout-btn, .place-order-btn, .submit-btn, .verify-submit-btn, .continue-shopping-btn {
    background-color: var(--clay) !important;
    border-color: var(--clay) !important;
    color: #fff !important;
}@media (hover: hover) {
.checkout-btn:hover, .place-order-btn:hover, .submit-btn:hover, .verify-submit-btn:hover, .continue-shopping-btn:hover {

    background-color: #9c4c2d !important;

}
}
.story-features li::before, .page-hero-line {
    background-color: var(--clay) !important;
}






/* ============================================
   UX MICRO-INTERACTIONS
============================================ */

/* Form Error States */
.field-error {
    border-color: #E74C3C !important;
    animation: shake 0.4s cubic-bezier(.36,.07,.19,.97) both;
}
.error-msg {
    color: #E74C3C;
    font-size: 0.75rem;
    margin-top: 0.25rem;
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes shake {
    10%, 90% { transform: translate3d(-1px, 0, 0); }
    20%, 80% { transform: translate3d(2px, 0, 0); }
    30%, 50%, 70% { transform: translate3d(-4px, 0, 0); }
    40%, 60% { transform: translate3d(4px, 0, 0); }
}

/* Skeleton Loading */
.skeleton {
    background: linear-gradient(90deg, var(--warm-white) 25%, #E5E2DD 50%, var(--warm-white) 75%);
    background-size: 200% 100%;
    animation: loadingPulse 1.5s infinite;
    opacity: 1;
    transition: opacity 0.5s ease;
}
@keyframes loadingPulse {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}
.skeleton img {
    opacity: 0;
    transition: opacity 0.5s ease;
}
.skeleton.loaded {
    animation: none;
    background: transparent;
}
.skeleton.loaded img {
    opacity: 1;
}


/* ============================================
   MOBILE UX IMPROVEMENTS
============================================ */

@media (max-width: 768px) {
    /* Horizontal Slider for Recommendations */
    .also-like-grid {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 1rem;
        padding-bottom: 1rem;
        -webkit-overflow-scrolling: touch;
        /* Hide scrollbar */
        scrollbar-width: none;
    }
    .also-like-grid::-webkit-scrollbar {
        display: none;
    }
    .also-like-grid .rec-card {
        flex: 0 0 80%;
        scroll-snap-align: center;
    }

    /* Prevent Sticky Cart from Overlapping Footer */
    body {
        padding-bottom: 90px;
    }
}
