/* ============================================================
   MaggWear Homepage CSS
   Premium Turkish T-Shirt E-Commerce Platform

   Table of Contents:
   1.  Keyframe Animations
   2.  Hero Section
   3.  Marquee Banner
   4.  Trust Bar
   5.  Section Header (Reusable)
   6.  AI / Featured Products Section
   7.  Product Card
   8.  Categories Section
   9.  Promo Banner
   10. New Arrivals Section
   11. Reviews / Testimonials Section
   12. Brand Story Section
   13. Final CTA Section
   14. Live Notification
   15. Scroll Animations
   16. Button System
   17. Reduced Motion
   ============================================================ */


/* ==========================================================
   1. KEYFRAME ANIMATIONS
   ========================================================== */

/* Hero gradient mesh movement */
@keyframes mwGradientMesh {
    0% { background-position: 0% 50%; }
    25% { background-position: 50% 100%; }
    50% { background-position: 100% 50%; }
    75% { background-position: 50% 0%; }
    100% { background-position: 0% 50%; }
}

/* Floating particle drift */
@keyframes mwParticleFloat {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.4;
    }
    25% {
        transform: translate(40px, -60px) rotate(90deg);
        opacity: 0.8;
    }
    50% {
        transform: translate(-30px, -100px) rotate(180deg);
        opacity: 0.5;
    }
    75% {
        transform: translate(50px, -40px) rotate(270deg);
        opacity: 0.9;
    }
}

/* Geometric shape float */
@keyframes heroShapeFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* Mouse scroll wheel animation */
@keyframes scrollWheel {
    0% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateX(-50%) translateY(14px);
        opacity: 0;
    }
}

/* Infinite marquee scroll */
@keyframes marqueeScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* Button shimmer sweep */
@keyframes mwShimmer {
    from { left: -100%; }
    to { left: 100%; }
}

/* Promo button pulse ring */
@keyframes mwPromoPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.4); }
    50% { box-shadow: 0 0 0 16px rgba(249, 115, 22, 0); }
}

/* Notification slide in from left */
@keyframes mwNotifSlideIn {
    from {
        transform: translateX(-120%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Notification slide out to left */
@keyframes mwNotifSlideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(-120%);
        opacity: 0;
    }
}


/* ==========================================================
   2. HERO SECTION
   ========================================================== */

.mw-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(
        135deg,
        #0f172a 0%,
        #1e293b 25%,
        #0f172a 50%,
        #1a1a3e 75%,
        #0f172a 100%
    );
    background-size: 400% 400%;
    animation: mwGradientMesh 15s ease infinite;
}

.home-page .mw-hero {
    min-height: calc(100vh - var(--header-offset));
    padding-top: var(--header-offset);
    margin-top: calc(-1 * var(--header-offset));
}

/* Animated gradient mesh background overlay */
.mw-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 600px 600px at 20% 50%, rgba(249, 115, 22, 0.08) 0%, transparent 70%),
        radial-gradient(ellipse 400px 400px at 80% 30%, rgba(59, 130, 246, 0.06) 0%, transparent 70%),
        radial-gradient(ellipse 500px 500px at 60% 80%, rgba(249, 115, 22, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

/* Floating particles container */
.mw-hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

/* Individual particle base */
.mw-particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(249, 115, 22, 0.15);
    animation: mwParticleFloat 20s ease-in-out infinite;
}

/* Particle 1 - small, top-left */
.mw-particle-1 {
    width: 6px;
    height: 6px;
    top: 15%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 18s;
}

/* Particle 2 - medium, center-left */
.mw-particle-2 {
    width: 10px;
    height: 10px;
    top: 60%;
    left: 25%;
    animation-delay: -3s;
    animation-duration: 22s;
    background: rgba(251, 191, 36, 0.12);
}

/* Particle 3 - tiny, center-right */
.mw-particle-3 {
    width: 4px;
    height: 4px;
    top: 30%;
    left: 70%;
    animation-delay: -6s;
    animation-duration: 16s;
}

/* Particle 4 - medium, bottom-right */
.mw-particle-4 {
    width: 8px;
    height: 8px;
    top: 75%;
    left: 80%;
    animation-delay: -9s;
    animation-duration: 24s;
    background: rgba(59, 130, 246, 0.1);
}

/* Particle 5 - small, center */
.mw-particle-5 {
    width: 5px;
    height: 5px;
    top: 45%;
    left: 50%;
    animation-delay: -12s;
    animation-duration: 20s;
    background: rgba(249, 115, 22, 0.1);
}

/* Particle 6 - large, bottom-center */
.mw-particle-6 {
    width: 12px;
    height: 12px;
    top: 85%;
    left: 40%;
    animation-delay: -15s;
    animation-duration: 26s;
    background: rgba(251, 191, 36, 0.08);
}

/* Particle 7 - small, top-right */
.mw-particle-7 {
    width: 7px;
    height: 7px;
    top: 20%;
    left: 85%;
    animation-delay: -4s;
    animation-duration: 19s;
    background: rgba(249, 115, 22, 0.12);
}

/* Particle 8 - medium, center-far-left */
.mw-particle-8 {
    width: 9px;
    height: 9px;
    top: 55%;
    left: 5%;
    animation-delay: -7s;
    animation-duration: 21s;
    background: rgba(59, 130, 246, 0.08);
}

/* Hero content area */
.mw-hero-content {
    position: relative;
    z-index: 3;
    padding: 40px 0;
}

/* Premium glassmorphism badge */
.mw-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(249, 115, 22, 0.3);
    border-radius: 50px;
    padding: 8px 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 24px;
    font-family: 'Space Grotesk', var(--font-family);
}

.mw-hero-badge i {
    font-size: 14px;
}

/* Hero main title */
.mw-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 20px;
}

/* Accent colored word in title */
.mw-hero-title-accent {
    color: #f97316;
    font-style: italic;
    text-decoration: underline;
    text-decoration-style: wavy;
    text-decoration-color: rgba(249, 115, 22, 0.5);
    text-underline-offset: 6px;
    text-decoration-thickness: 2px;
}

/* Hero description */
.mw-hero-desc {
    color: var(--gray-300);
    font-size: 1.1rem;
    max-width: 500px;
    line-height: 1.8;
    margin-bottom: 32px;
}

/* Hero button group */
.mw-hero-actions {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

/* Trust badges row below buttons */
.mw-hero-trust {
    display: flex;
    gap: 20px;
    margin-top: 0;
    flex-wrap: wrap;
}

/* Individual trust item (glassmorphism pill) */
.mw-hero-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 16px;
    border-radius: 50px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: var(--transition);
}

.mw-hero-trust-item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
}

.mw-hero-trust-item i {
    color: var(--accent);
    font-size: 14px;
}

/* Hero visual (right side, desktop only) */
.mw-hero-visual {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
}

/* Floating geometric shapes base */
.mw-hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.07;
    background: var(--accent);
}

.mw-hero-shape-1 {
    width: 200px;
    height: 200px;
    top: -40px;
    right: 60px;
    animation: heroShapeFloat 8s ease-in-out infinite;
}

.mw-hero-shape-2 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    right: 10%;
    animation: heroShapeFloat 10s ease-in-out infinite 2s;
    border-radius: 30%;
}

.mw-hero-shape-3 {
    width: 100px;
    height: 100px;
    top: 40%;
    left: 20%;
    animation: heroShapeFloat 7s ease-in-out infinite 4s;
}

/* Central t-shirt mockup icon container */
.mw-hero-mockup {
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 5rem;
    color: rgba(249, 115, 22, 0.5);
    transition: var(--transition-slow);
}

.mw-hero-mockup:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(249, 115, 22, 0.25);
}

/* Scroll down indicator at bottom */
.mw-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    z-index: 5;
}

.mw-scroll-indicator span {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Mouse shape */
.mw-scroll-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    position: relative;
}

/* Mouse wheel dot */
.mw-scroll-wheel {
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s ease-in-out infinite;
}


/* ==========================================================
   3. MARQUEE BANNER
   ========================================================== */

.mw-marquee {
    background: var(--primary);
    padding: 14px 0;
    overflow: hidden;
    position: relative;
    border-top: 1px solid rgba(249, 115, 22, 0.15);
    border-bottom: 1px solid rgba(249, 115, 22, 0.15);
}

.mw-marquee:hover .mw-marquee-track {
    animation-play-state: paused;
}

.mw-marquee-track {
    display: flex;
    white-space: nowrap;
    animation: marqueeScroll 25s linear infinite;
}

/* Text content (duplicated for seamless loop) */
.mw-marquee-content {
    display: inline-block;
    white-space: nowrap;
    animation: marqueeScroll 25s linear infinite;
    color: var(--accent);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-family: 'Space Grotesk', var(--font-family);
    padding: 0 20px;
}


/* ==========================================================
   4. TRUST BAR
   ========================================================== */

.mw-trust-bar {
    background: var(--white);
    padding: 28px 0;
    border-top: 1px solid var(--gray-100);
    border-bottom: 1px solid var(--gray-100);
}

.mw-trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 8px;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.mw-trust-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    background: var(--white);
}

.mw-trust-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f97316, #fbbf24);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    transition: var(--transition);
}

.mw-trust-item:hover .mw-trust-icon {
    transform: scale(1.08);
}

.mw-trust-text {
    flex: 1;
}

.mw-trust-text h6 {
    font-weight: 600;
    font-size: 14px;
    color: var(--primary);
    margin-bottom: 2px;
}

.mw-trust-text p {
    font-size: 12px;
    color: var(--gray-500);
    margin: 0;
    line-height: 1.4;
}


/* ==========================================================
   5. SECTION HEADER (Reusable)
   ========================================================== */

.mw-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.mw-section-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent);
    font-family: 'Space Grotesk', var(--font-family);
    margin-bottom: 12px;
}

/* Light tag variant for dark backgrounds */
.mw-section-tag-light {
    color: rgba(255, 255, 255, 0.6);
}

.mw-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
    line-height: 1.2;
}

.mw-section-desc {
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
    font-size: 15px;
    line-height: 1.7;
}


/* ==========================================================
   6. AI / FEATURED PRODUCTS SECTION
   ========================================================== */

.mw-ai-section {
    padding: 80px 0;
    background: var(--white);
}

/* AI recommendation badge */
.mw-ai-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: var(--white);
    border-radius: 50px;
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 16px;
    font-family: 'Space Grotesk', var(--font-family);
    letter-spacing: 0.5px;
}

.mw-ai-badge i {
    font-size: 14px;
}


/* ==========================================================
   7. PRODUCT CARD
   ========================================================== */

.mw-product-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
                box-shadow 0.4s ease;
    position: relative;
}

.mw-product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.mw-product-card:hover .mw-product-overlay {
    opacity: 1;
}

.mw-product-card:hover .mw-quick-add {
    opacity: 1;
}

.mw-product-card:hover .mw-product-image img {
    transform: scale(1.08);
}

/* Product image container */
.mw-product-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    background: var(--gray-100);
}

.mw-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Placeholder when no image */
.mw-product-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--gray-300);
    background: linear-gradient(135deg, var(--gray-50), var(--gray-100));
}

/* Product badges (top of card) */
.mw-product-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 3;
}

.mw-badge-sale {
    background: #ef4444;
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
}

.mw-badge-ai {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
}

.mw-badge-new {
    background: #10b981;
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
}

/* Hover overlay with action buttons */
.mw-product-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

/* Overlay action button */
.mw-overlay-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--white);
    color: var(--primary);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    transform: translateY(10px);
}

.mw-product-card:hover .mw-overlay-btn {
    transform: translateY(0);
}

.mw-overlay-btn:hover {
    background: var(--accent);
    color: var(--white);
    transform: translateY(0) scale(1.1);
}

.mw-overlay-btn:active {
    transform: scale(0.95);
}

/* Product info section */
.mw-product-info {
    padding: 16px 20px 20px;
}

/* Category name */
.mw-product-cat {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gray-400);
    font-weight: 500;
    margin: 0;
    display: block;
}

/* Product name */
.mw-product-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--primary);
    margin: 6px 0 8px;
    line-height: 1.4;
}

.mw-product-name a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.mw-product-name a:hover {
    color: var(--accent);
}

/* Star rating */
.mw-product-rating {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-bottom: 8px;
}

.mw-product-rating i {
    font-size: 12px;
    color: #fbbf24;
}

.mw-product-rating span {
    color: var(--gray-400);
    font-size: 12px;
    margin-left: 4px;
}

/* Price container */
.mw-product-price {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Strikethrough old price */
.mw-price-old {
    text-decoration: line-through;
    color: var(--gray-400);
    font-size: 13px;
}

/* Current price (bold, accent color) */
.mw-price-current {
    color: #ef4444;
    font-size: 18px;
    font-weight: 700;
    font-family: 'Space Grotesk', var(--font-family);
}

/* Quick add to cart button */
.mw-quick-add {
    width: 100%;
    margin-top: 12px;
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 10px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 13px;
    opacity: 0;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: var(--font-family);
    letter-spacing: 0.5px;
}

.mw-quick-add:hover {
    background: var(--accent);
}

.mw-quick-add:active {
    transform: scale(0.98);
}


/* ==========================================================
   8. CATEGORIES SECTION
   ========================================================== */

.mw-categories-section {
    padding: 80px 0;
    background: var(--gray-50);
}

/* Category card link wrapper */
a.mw-cat-card,
.mw-cat-card {
    text-decoration: none;
    color: var(--white);
    display: block;
}

a.mw-cat-card:hover,
.mw-cat-card:hover {
    color: var(--white);
}

/* Inner card with gradient background */
.mw-cat-card-inner {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    min-height: 280px;
    display: flex;
    align-items: flex-end;
    transition: all 0.4s ease;
}

.mw-cat-card-inner:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-xl);
}

/* Category image */
.mw-cat-card-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    transition: transform 0.6s ease;
}

.mw-cat-card-inner:hover .mw-cat-card-img {
    transform: scale(1.08);
}

/* Category icon placeholder (centered, large) */
.mw-cat-card-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.3);
    z-index: 1;
    pointer-events: none;
}

/* Category text content (bottom overlay) */
.mw-cat-card-content {
    position: relative;
    z-index: 2;
    padding: 30px;
    width: 100%;
    color: var(--white);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
}

/* Category name */
.mw-cat-card-name {
    font-size: 1.4rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    margin: 0;
    line-height: 1.3;
}

/* Product count */
.mw-cat-card-count {
    font-size: 13px;
    opacity: 0.7;
    display: block;
    margin-top: 4px;
}

/* "Kesfet" reveal link */
.mw-cat-card-link {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    display: block;
    margin-top: 12px;
    color: #f97316;
    font-weight: 600;
    font-size: 14px;
}

.mw-cat-card-inner:hover .mw-cat-card-link {
    opacity: 1;
    transform: translateY(0);
}

.mw-cat-card-link i {
    transition: transform 0.2s ease;
}

.mw-cat-card-inner:hover .mw-cat-card-link i {
    transform: translateX(4px);
}


/* ==========================================================
   9. PROMO BANNER
   ========================================================== */

.mw-promo-banner {
    background:
        radial-gradient(ellipse 500px 400px at 30% 50%, rgba(249, 115, 22, 0.12) 0%, transparent 70%),
        radial-gradient(ellipse 400px 300px at 70% 60%, rgba(251, 191, 36, 0.08) 0%, transparent 70%),
        linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

/* Decorative shapes container */
.mw-promo-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

/* Floating shape base */
.mw-promo-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(249, 115, 22, 0.08);
}

.mw-promo-shape-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -50px;
    animation: heroShapeFloat 12s ease-in-out infinite;
}

.mw-promo-shape-2 {
    width: 200px;
    height: 200px;
    bottom: -60px;
    left: 10%;
    animation: heroShapeFloat 15s ease-in-out infinite 3s;
}

.mw-promo-shape-3 {
    width: 120px;
    height: 120px;
    top: 30%;
    right: 20%;
    animation: heroShapeFloat 10s ease-in-out infinite 6s;
    border-radius: 30%;
}

/* Limited time badge */
.mw-promo-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(249, 115, 22, 0.15);
    color: var(--accent);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    border: 1px solid rgba(249, 115, 22, 0.3);
    font-family: 'Space Grotesk', var(--font-family);
}

.mw-promo-badge i {
    font-size: 14px;
}

/* Promo title */
.mw-promo-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.2;
}

/* Promo subtitle */
.mw-promo-subtitle {
    font-size: 1.25rem;
    color: var(--gray-300);
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Countdown timer container */
.mw-countdown {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Individual countdown unit */
.mw-countdown-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 20px 24px;
    text-align: center;
    min-width: 80px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s ease;
}

.mw-countdown-item:hover {
    background: rgba(255, 255, 255, 0.14);
    transform: translateY(-2px);
}

/* Number display */
.mw-countdown-num {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    font-family: 'Space Grotesk', var(--font-family);
    line-height: 1;
    display: block;
}

/* Label (Gun, Saat, Dakika, Saniye) */
.mw-countdown-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gray-400);
    margin-top: 4px;
    display: block;
}


/* ==========================================================
   10. NEW ARRIVALS SECTION
   ========================================================== */

.mw-arrivals-section {
    padding: 80px 0;
    background: var(--white);
}

.mw-arrivals-wrapper {
    position: relative;
}

/* Horizontal scrollable container */
.mw-arrivals-scroll {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 16px;
    scrollbar-width: thin;
    scrollbar-color: var(--gray-300) transparent;
}

.mw-arrivals-scroll::-webkit-scrollbar {
    height: 6px;
}

.mw-arrivals-scroll::-webkit-scrollbar-track {
    background: transparent;
}

.mw-arrivals-scroll::-webkit-scrollbar-thumb {
    background: var(--gray-300);
    border-radius: 3px;
}

.mw-arrivals-scroll::-webkit-scrollbar-thumb:hover {
    background: var(--gray-400);
}

/* Individual scroll item */
.mw-arrivals-item {
    flex: 0 0 auto;
    width: 280px;
    scroll-snap-align: start;
}

.mw-arrivals-item .mw-product-card {
    height: 100%;
}

/* Navigation button (prev/next) */
.mw-arrivals-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--white);
    border: none;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--primary);
    transition: all 0.3s ease;
}

.mw-arrivals-nav:hover {
    box-shadow: var(--shadow-lg);
    color: var(--accent);
    transform: translateY(-50%) scale(1.08);
}

.mw-arrivals-nav:active {
    transform: translateY(-50%) scale(0.95);
}

/* Specific nav buttons */
.mw-arrivals-prev {
    left: -22px;
}

.mw-arrivals-next {
    right: -22px;
}


/* ==========================================================
   11. REVIEWS / TESTIMONIALS SECTION
   ========================================================== */

.mw-reviews-section {
    background: #0f172a;
    color: var(--white);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

/* Subtle background glow */
.mw-reviews-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.05) 0%, transparent 70%);
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
}

/* Review card (glass effect on dark bg) */
.mw-review-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
}

.mw-review-card:hover {
    border-color: rgba(249, 115, 22, 0.3);
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.07);
}

/* Quote icon */
.mw-review-quote {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 3rem;
    color: rgba(249, 115, 22, 0.2);
    font-family: Georgia, serif;
    line-height: 1;
    pointer-events: none;
}

/* Avatar + name area */
.mw-review-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

/* Round avatar with initial */
.mw-review-avatar {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
}

/* Author info */
.mw-review-author {
    flex: 1;
}

.mw-review-author h6 {
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    margin: 0 0 2px;
}

/* Location */
.mw-review-author span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}

/* Star rating */
.mw-review-stars {
    color: #fbbf24;
    font-size: 14px;
    margin: 12px 0;
    display: flex;
    gap: 2px;
}

.mw-review-stars i {
    font-size: 14px;
}

/* Review text */
.mw-review-text {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
    margin-bottom: 0;
}

/* Verified badge */
.mw-review-verified {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    color: #10b981;
    font-weight: 600;
    margin-top: 40px;
}

.mw-review-verified i {
    font-size: 12px;
}

/* Overall rating section */
.mw-reviews-overall {
    text-align: center;
    margin-top: 40px;
    font-size: 1.25rem;
    opacity: 0.7;
}

/* Overall stars */
.mw-reviews-overall-stars {
    color: #fbbf24;
    font-size: 24px;
    margin-bottom: 8px;
}

.mw-reviews-overall-stars i {
    margin: 0 2px;
}

/* Rating text */
.mw-reviews-overall-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
}


/* ==========================================================
   12. BRAND STORY SECTION
   ========================================================== */

.mw-brand-section {
    background: var(--gray-50);
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

/* Brand title */
.mw-brand-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary);
    margin: 12px 0 20px;
    line-height: 1.2;
}

/* Brand description */
.mw-brand-desc {
    font-size: 15px;
    line-height: 1.8;
    color: var(--gray-600);
    margin-bottom: 24px;
}

/* Features list */
.mw-brand-features {
    list-style: none;
    padding: 0;
    margin: 24px 0;
}

.mw-brand-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.6;
}

.mw-brand-features li i {
    color: var(--accent);
    font-size: 16px;
    margin-top: 4px;
    min-width: 20px;
}

/* Stats grid container */
.mw-stats-grid {
    display: block;
}
.mw-stats-grid .row {
    margin-left: -10px;
    margin-right: -10px;
}
.mw-stats-grid [class^="col-"],
.mw-stats-grid [class*=" col-"] {
    padding-left: 10px;
    padding-right: 10px;
}

/* Individual stat card */
.mw-stat-card {
    background: var(--white);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.mw-stat-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

/* Stat icon */
.mw-stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--accent-light);
    color: var(--accent);
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    transition: var(--transition);
}

.mw-stat-card:hover .mw-stat-icon {
    background: var(--accent);
    color: var(--white);
}

/* Animated number display */
.mw-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    font-family: 'Space Grotesk', var(--font-family);
    background: linear-gradient(135deg, #f97316, #fbbf24);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
    display: inline;
}

/* Suffix (+, /5) */
.mw-stat-suffix {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f97316;
    display: inline;
}

/* Stat label */
.mw-stat-label {
    font-size: 13px;
    color: var(--gray-500);
    margin-top: 4px;
    display: block;
}


/* ==========================================================
   13. FINAL CTA SECTION
   ========================================================== */

.mw-final-cta {
    background: linear-gradient(135deg, #f97316, #fbbf24);
    padding: 96px 0;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
    margin-top: 30px;
}

/* Decorative elements container */
.mw-cta-decor {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

/* Floating circle base */
.mw-cta-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.mw-cta-circle-1 {
    width: 200px;
    height: 200px;
    top: -60px;
    right: -40px;
    animation: heroShapeFloat 10s ease-in-out infinite;
}

.mw-cta-circle-2 {
    width: 120px;
    height: 120px;
    bottom: -30px;
    left: 10%;
    animation: heroShapeFloat 8s ease-in-out infinite 2s;
}

.mw-cta-circle-3 {
    width: 80px;
    height: 80px;
    top: 40%;
    left: 60%;
    animation: heroShapeFloat 12s ease-in-out infinite 4s;
}

/* CTA title */
.mw-cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
    position: relative;
    z-index: 2;
}

/* CTA subtitle */
.mw-cta-subtitle {
    font-size: 1.15rem;
    opacity: 0.9;
    margin-bottom: 32px;
    color: var(--white);
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}


/* ==========================================================
   14. LIVE NOTIFICATION
   ========================================================== */

.mw-live-notification {
    position: fixed;
    bottom: 100px;
    left: 24px;
    z-index: 1000;
    background: var(--white);
    border-radius: 12px;
    padding: 14px 20px;
    box-shadow: var(--shadow-xl);
    max-width: 340px;
    border-left: 4px solid #10b981;
    transform: translateX(-120%);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

/* Show state (added by JS) */
.mw-live-notification.mw-notification-show {
    animation: mwNotifSlideIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

/* Inner container */
.mw-live-notification-inner {
    display: flex;
    align-items: center;
    gap: 14px;
}

/* Icon */
.mw-live-notification-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    background: #10b981;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

/* Text */
.mw-live-notification-text {
    flex: 1;
    font-size: 13px;
    color: var(--gray-700);
    line-height: 1.5;
    min-width: 0;
}

.mw-live-notification-text strong {
    font-weight: 700;
    color: var(--primary);
}

/* Close button */
.mw-live-notification-close {
    width: 24px;
    height: 24px;
    min-width: 24px;
    border-radius: 50%;
    border: none;
    background: transparent;
    cursor: pointer;
    color: var(--gray-400);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: all 0.2s ease;
    flex-shrink: 0;
    padding: 0;
}

.mw-live-notification-close:hover {
    color: var(--gray-700);
    background: var(--gray-100);
}


/* ==========================================================
   15. SCROLL ANIMATIONS
   ========================================================== */

/* Initial hidden state for scroll animation */
.mw-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Visible state (added by IntersectionObserver) */
.mw-animate.mw-visible {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
}

/* Directional animation variants */
.mw-animate.mw-fade-left {
    transform: translateX(-30px);
}

.mw-animate.mw-fade-left.mw-visible {
    transform: translateX(0);
}

.mw-animate.mw-fade-right {
    transform: translateX(30px);
}

.mw-animate.mw-fade-right.mw-visible {
    transform: translateX(0);
}

.mw-animate.mw-zoom-in {
    transform: scale(0.9);
}

.mw-animate.mw-zoom-in.mw-visible {
    transform: scale(1);
}

html:not(.animations-ready) .mw-animate,
html:not(.animations-ready) .mw-animate.mw-fade-left,
html:not(.animations-ready) .mw-animate.mw-fade-right,
html:not(.animations-ready) .mw-animate.mw-zoom-in {
    opacity: 1;
    transform: none;
}

/* Stagger delay utilities */
.mw-delay-1 { transition-delay: 0.1s; }
.mw-delay-2 { transition-delay: 0.2s; }
.mw-delay-3 { transition-delay: 0.3s; }
.mw-delay-4 { transition-delay: 0.4s; }
.mw-delay-5 { transition-delay: 0.5s; }
.mw-delay-6 { transition-delay: 0.6s; }


/* ==========================================================
   16. BUTTON SYSTEM
   ========================================================== */

/* Base button */
.mw-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    border-radius: 50px;
    font-family: var(--font-family);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

/* Primary orange CTA button with shimmer */
.mw-btn-primary {
    background: var(--accent);
    color: var(--white);
    padding: 15px 40px;
    font-size: 14px;
    letter-spacing: 1px;
}

.mw-btn-primary:hover {
    background: var(--accent-hover);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(249, 115, 22, 0.4);
}

.mw-btn-primary:active {
    transform: translateY(0);
}

/* Shimmer effect on primary button */
.mw-btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    pointer-events: none;
}

.mw-btn-primary:hover::after {
    animation: mwShimmer 0.6s ease forwards;
}

/* Outline white button (for dark backgrounds) */
.mw-btn-outline {
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    padding: 13px 38px;
    font-size: 14px;
    background: transparent;
    letter-spacing: 1px;
}

.mw-btn-outline:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.15);
}

.mw-btn-outline:active {
    transform: translateY(0);
}

/* Dark outline button (for light backgrounds) */
.mw-btn-outline-dark {
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 13px 38px;
    font-size: 14px;
    background: transparent;
    letter-spacing: 1px;
}

.mw-btn-outline-dark:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.2);
}

.mw-btn-outline-dark:active {
    transform: translateY(0);
}

/* Large button variant */
.mw-btn-lg {
    padding: 16px 44px;
    font-size: 15px;
}

/* White button variant (for colored backgrounds) */
.mw-btn-white {
    background: var(--white);
    color: var(--primary);
    padding: 15px 40px;
    font-size: 14px;
    letter-spacing: 1px;
}

.mw-btn-white:hover {
    background: rgba(255, 255, 255, 0.92);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.3);
}

.mw-btn-white:active {
    transform: translateY(0);
}


/* ==========================================================
   17. REDUCED MOTION
   ========================================================== */

@media (prefers-reduced-motion: reduce) {
    .mw-hero {
        animation: none;
    }

    .mw-marquee-track,
    .mw-marquee-content {
        animation: none;
    }

    .mw-particle {
        animation: none;
    }

    .mw-animate {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .mw-hero-shape,
    .mw-hero-shape-1,
    .mw-hero-shape-2,
    .mw-hero-shape-3 {
        animation: none;
    }

    .mw-promo-shape,
    .mw-promo-shape-1,
    .mw-promo-shape-2,
    .mw-promo-shape-3 {
        animation: none;
    }

    .mw-cta-circle-1,
    .mw-cta-circle-2,
    .mw-cta-circle-3 {
        animation: none;
    }

    .mw-scroll-wheel {
        animation: none;
    }

    .mw-btn-primary::after {
        animation: none !important;
    }

    .mw-notification-show {
        animation: none;
    }

    .mw-product-card,
    .mw-trust-item,
    .mw-cat-card-inner,
    .mw-review-card,
    .mw-stat-card,
    .mw-countdown-item {
        transition: none;
    }
}


/* ==========================================================
   18. CUSTOM PRINT SECTION (Ozel Baski)
   ========================================================== */

.mw-custom-print-section {
    padding: 90px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.mw-custom-print-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

/* Print Visual / Mockup */
.mw-print-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

.mw-print-mockup {
    display: flex;
    gap: 30px;
    align-items: center;
}

.mw-print-tshirt-front,
.mw-print-tshirt-back {
    width: 180px;
    height: 220px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.15);
    font-size: 64px;
    position: relative;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.15);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
}

.mw-print-tshirt-front:hover,
.mw-print-tshirt-back:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.2);
}

.mw-print-tshirt-front {
    transform: rotate(-5deg);
}

.mw-print-tshirt-back {
    transform: rotate(5deg);
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
}

.mw-print-label {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 8px;
}

.mw-print-upload-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--accent, #f97316), #ea580c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.4);
    z-index: 2;
    animation: mwUploadPulse 2s ease-in-out infinite;
}

@keyframes mwUploadPulse {
    0%, 100% { box-shadow: 0 8px 24px rgba(249, 115, 22, 0.4); transform: translate(-50%, -50%) scale(1); }
    50% { box-shadow: 0 8px 32px rgba(249, 115, 22, 0.6); transform: translate(-50%, -50%) scale(1.08); }
}

/* Print Description */
.mw-print-desc {
    font-size: 15px;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 28px;
}

/* Print Features List */
.mw-print-features {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 32px;
}

.mw-print-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.mw-print-feature-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 12px;
    background: rgba(249, 115, 22, 0.08);
    color: #f97316;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
}

.mw-print-feature:hover .mw-print-feature-icon {
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: #fff;
    transform: scale(1.08);
    box-shadow: 0 4px 16px rgba(249, 115, 22, 0.3);
}

.mw-print-feature h5 {
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 4px;
}

.mw-print-feature p {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 0;
    line-height: 1.5;
}

/* Responsive for Custom Print */
@media (max-width: 991.98px) {
    .mw-custom-print-section {
        padding: 60px 0;
    }
    .mw-print-visual {
        min-height: 300px;
    }
    .mw-print-tshirt-front,
    .mw-print-tshirt-back {
        width: 150px;
        height: 180px;
        font-size: 48px;
    }
}

@media (max-width: 575.98px) {
    .mw-print-mockup {
        gap: 16px;
    }
    .mw-print-tshirt-front,
    .mw-print-tshirt-back {
        width: 120px;
        height: 150px;
        font-size: 36px;
    }
    .mw-print-upload-icon {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }
}
