/* ============================================
   Sweet Palace - Premium Chocolates & Confections
   Clean, Modern, Minimal Design
   ============================================ */

/* Font Face */
@font-face {
    font-family: 'Laviossa';
    src: url('../assets/fonts/Laviossa-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

/* CSS Variables */
:root {
    --color-black: #191919;
    --color-gold: #F3C008;
    --color-white: #FAFAFA;
    --color-white-soft: rgba(250, 250, 250, 0.7);
    --color-white-muted: rgba(250, 250, 250, 0.5);
    --color-gold-soft: rgba(243, 192, 8, 0.15);

    --font-primary: 'Laviossa', serif;
    --font-secondary: 'Plus Jakarta Sans', sans-serif;

    --container-max: 1300px;
    --hero-content-max: 550px;

    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-slower: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-base);
}

ul {
    list-style: none;
}

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

/* Container */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 40px;
}

/* ============================================
   Preloader
   ============================================ */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-black);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
}

.preloader-logo {
    width: 320px;
    height: 70px;
    opacity: 0;
    animation: logoFadeIn 1.2s ease forwards 0.3s;
}

.preloader-text {
    font-family: var(--font-primary);
    font-size: 28px;
    font-weight: 600;
    fill: var(--color-white);
    letter-spacing: 2px;
}

.preloader-stroke {
    fill: var(--color-gold);
    transform-origin: left center;
    transform: scaleX(0);
    animation: strokeReveal 1s ease forwards 0.8s;
}

@keyframes logoFadeIn {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes strokeReveal {
    0% {
        transform: scaleX(0);
    }

    100% {
        transform: scaleX(1);
    }
}

/* ============================================
   Top Information Bar
   ============================================ */
.top-bar {
    background-color: #1E1E1E;
    border-bottom: 1px solid rgba(250, 250, 250, 0.08);
    padding: 12px 0;
    position: relative;
    z-index: 100;
}

.top-bar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 400;
    color: var(--color-white-soft);
    letter-spacing: 0.3px;
    transition: color var(--transition-base);
}

.top-bar-item:hover {
    color: var(--color-gold);
}

.top-bar-icon {
    width: 14px;
    height: 14px;
    color: var(--color-gold);
    flex-shrink: 0;
}

.top-bar-separator {
    width: 1px;
    height: 12px;
    background-color: rgba(250, 250, 250, 0.15);
}

.service-badge {
    color: var(--color-gold);
    font-weight: 500;
}

/* ============================================
   Main Header
   ============================================ */
.header {
    background-color: #1E1E1E;
    padding: 13px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all var(--transition-base);
}

.header.scrolled {
    padding: 16px 0;
    background-color: rgba(30, 30, 30, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 1px 0 rgba(250, 250, 250, 0.05);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
}

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

/* Navigation */
.nav-list {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-white-soft);
    letter-spacing: 0.5px;
    position: relative;
    padding: 4px 0;
    transition: color var(--transition-base);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background-color: var(--color-gold);
    transition: width var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-white);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Hamburger Menu Toggle (hidden on desktop) */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1002;
}

.menu-toggle-bar {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hamburger to X animation */
.menu-toggle.active .menu-toggle-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active .menu-toggle-bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .menu-toggle-bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Nav Overlay */
.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-overlay.active {
    display: block;
    opacity: 1;
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    height: 80vh;
    min-height: 600px;
    max-height: 700px;
    overflow: hidden;
}

.hero-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-slider {
    display: flex;
    width: 400%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hero Slide */
.hero-slide {
    position: relative;
    width: 25%;
    height: 100%;
    flex-shrink: 0;
    background-size: cover;
    background-position: center right;
}

.hero-slide.active .hero-label,
.hero-slide.active .hero-title,
.hero-slide.active .hero-subtitle,
.hero-slide.active .hero-buttons {
    opacity: 1;
    transform: translateY(0);
}

/* Hero Overlay - Left Side Only (600px width) */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 600px;
    height: 100%;
    background: linear-gradient(to right,
            rgba(22, 22, 22, 0.95) 0%,
            rgba(8, 8, 8, 0.9) 40%,
            rgba(30, 30, 30, 0.7) 70%,
            rgba(30, 30, 30, 0.3) 90%,
            transparent 100%);
}

/* Hero Content */
.hero-slide .container {
    position: relative;
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: var(--hero-content-max);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    padding: 80px 0;
}

.hero-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-gold);
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease 0.2s;
}

.hero-slide.active .hero-label {
    opacity: 1;
    transform: translateY(0);
}

.hero-title {
    font-family: var(--font-primary);
    font-size: clamp(40px, 5vw, 58px);
    font-weight: 500;
    line-height: 1.2;
    color: var(--color-white);
    margin-bottom: 24px;
    letter-spacing: 1px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease 0.35s;
}

.hero-slide.active .hero-title {
    opacity: 1;
    transform: translateY(0);
}

.hero-subtitle {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--color-white-soft);
    margin-bottom: 40px;
    max-width: 480px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease 0.5s;
}

.hero-slide.active .hero-subtitle {
    opacity: 1;
    transform: translateY(0);
}

/* Hero Buttons Container */
.hero-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease 0.65s;
}

.hero-slide.active .hero-buttons {
    opacity: 1;
    transform: translateY(0);
}

/* Primary CTA Button - Filled Gold */
.hero-cta-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-black);
    background-color: var(--color-gold);
    border: 2px solid var(--color-gold);
    border-radius: 50px;
    transition: all var(--transition-base);
}

.hero-cta-primary:hover {
    background-color: transparent;
    color: var(--color-gold);
}

/* Secondary CTA Button - Outline */
.hero-cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-white);
    background-color: transparent;
    border: 2px solid var(--color-white);
    border-radius: 50px;
    transition: all var(--transition-base);
}

.hero-cta-secondary:hover {
    background-color: var(--color-white);
    color: var(--color-black);
}

/* ============================================
   Carousel Controls - Arrow Navigation
   ============================================ */
.carousel-controls {
    position: absolute;
    bottom: 50px;
    right: 40px;
    z-index: 20;
    display: flex;
    align-items: center;
    gap: 16px;
}

.carousel-arrow {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(30, 30, 30, 0.6);
    border: 2px solid rgba(250, 250, 250, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--transition-base);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.carousel-arrow:hover {
    background-color: var(--color-gold);
    border-color: var(--color-gold);
    transform: scale(1.05);
}

.carousel-arrow svg {
    width: 22px;
    height: 22px;
    stroke: var(--color-white);
    stroke-width: 2;
    transition: stroke var(--transition-base);
}

.carousel-arrow:hover svg {
    stroke: var(--color-black);
}

.carousel-counter {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 500;
    color: var(--color-white);
    margin-right: 12px;
    padding: 10px 20px;
    background-color: rgba(30, 30, 30, 0.6);
    border-radius: 30px;
    border: 1px solid rgba(250, 250, 250, 0.2);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.carousel-counter .current {
    color: var(--color-gold);
    font-size: 18px;
    font-weight: 600;
}

.carousel-counter .separator {
    color: var(--color-white-muted);
}

.carousel-counter .total {
    color: var(--color-white-muted);
}

/* ============================================
   Story Page Hero Section
   ============================================ */
.story-hero {
    position: relative;
    min-height: 90vh;
    padding: 100px 0 80px;
    background-color: var(--color-black);
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Light Yellow Animation */
.story-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(243, 192, 8, 0.08) 0%, transparent 50%);
    animation: heroGlow 8s ease-in-out infinite;
    pointer-events: none;
}

.story-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -30%;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(243, 192, 8, 0.06) 0%, transparent 60%);
    animation: heroGlow 10s ease-in-out infinite reverse;
    pointer-events: none;
}

@keyframes heroGlow {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.5;
    }

    25% {
        transform: translate(10%, 5%) scale(1.1);
        opacity: 0.8;
    }

    50% {
        transform: translate(5%, 10%) scale(1);
        opacity: 0.6;
    }

    75% {
        transform: translate(-5%, 5%) scale(1.05);
        opacity: 0.7;
    }
}

.story-hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Hero Content - Left Side */
.story-hero-content {
    position: relative;
    z-index: 2;
}

.story-hero-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--color-gold);
    margin-bottom: 20px;
    padding: 10px 20px;
    background-color: rgba(243, 192, 8, 0.1);
    border-radius: 50px;
    border: 1px solid rgba(243, 192, 8, 0.2);
}

.story-hero-title {
    font-family: var(--font-primary);
    font-size: 54px;
    font-weight: 500;
    color: var(--color-white);
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: 1px;
}

.story-hero-title span {
    color: var(--color-gold);
    display: inline-block;
}

.story-hero-text {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--color-white-soft);
    margin-bottom: 36px;
    max-width: 480px;
}

.story-hero-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 50px;
}

.story-hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 50px;
    transition: all var(--transition-base);
    text-decoration: none;
}

.story-hero-btn.primary {
    background-color: var(--color-gold);
    color: var(--color-black);
    border: 2px solid var(--color-gold);
}

.story-hero-btn.primary:hover {
    background-color: transparent;
    color: var(--color-gold);
}

.story-hero-btn.primary svg {
    width: 18px;
    height: 18px;
    transition: transform var(--transition-base);
}

.story-hero-btn.primary:hover svg {
    transform: translateX(4px);
}

.story-hero-btn.secondary {
    background-color: transparent;
    color: var(--color-white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.story-hero-btn.secondary:hover {
    background-color: var(--color-white);
    color: var(--color-black);
    border-color: var(--color-white);
}

/* Hero Stats */
.story-hero-stats {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-item .stat-number {
    font-family: var(--font-primary);
    font-size: 28px;
    font-weight: 500;
    color: var(--color-gold);
    line-height: 1;
}

.stat-item .stat-label {
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-white-muted);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.15);
}

/* Hero Image - Right Side */
.story-hero-image {
    position: relative;
    height: 600px;
}

.story-hero-image-main {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.story-hero-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.story-hero-image-main:hover img {
    transform: scale(1.05);
}

.story-hero-image-accent {
    position: absolute;
    bottom: -30px;
    left: -40px;
    width: 180px;
    height: 180px;
    border-radius: 20px;
    overflow: hidden;
    border: 5px solid var(--color-black);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

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

.story-hero-badge {
    position: absolute;
    top: 30px;
    right: -20px;
    background-color: var(--color-gold);
    padding: 20px 24px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 15px 35px rgba(243, 192, 8, 0.3);
    z-index: 3;
}

.badge-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--color-black);
}

.badge-text {
    font-size: 13px;
    font-weight: 700;
    color: var(--color-black);
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Decorative Elements */
.story-hero-decor {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.decor-circle {
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(243, 192, 8, 0.08) 0%, transparent 70%);
}

.decor-dots {
    position: absolute;
    bottom: 100px;
    left: 50px;
    width: 100px;
    height: 100px;
    background-image: radial-gradient(rgba(243, 192, 8, 0.3) 2px, transparent 2px);
    background-size: 12px 12px;
    opacity: 0.5;
}

/* ============================================
   Story Page Hero Section V2 - New Design
   ============================================ */
.story-hero-v2 {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

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

.story-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.3);
}

.story-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(30, 30, 30, 0.95) 0%,
            rgba(30, 30, 30, 0.7) 50%,
            rgba(30, 30, 30, 0.85) 100%);
}

.story-hero-v2-wrapper {
    position: relative;
    z-index: 2;
    padding: 120px 0 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.story-hero-v2-content {
    max-width: 700px;
    margin-bottom: 60px;
}

.story-hero-v2-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--color-gold);
    margin-bottom: 24px;
    padding: 12px 24px;
    background-color: rgba(243, 192, 8, 0.1);
    border-radius: 50px;
    border: 1px solid rgba(243, 192, 8, 0.3);
}

.story-hero-v2-title {
    font-family: var(--font-primary);
    font-size: clamp(44px, 6vw, 72px);
    font-weight: 500;
    color: var(--color-white);
    line-height: 1.1;
    margin-bottom: 28px;
    letter-spacing: -1px;
}

.story-hero-v2-title span {
    color: var(--color-gold);
    display: block;
}

.story-hero-v2-text {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.8;
    color: var(--color-white-soft);
    margin-bottom: 40px;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}

.story-hero-v2-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.story-hero-v2-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 36px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 50px;
    transition: all var(--transition-base);
    text-decoration: none;
}

.story-hero-v2-btn.primary {
    background-color: var(--color-gold);
    color: var(--color-black);
    border: 2px solid var(--color-gold);
}

.story-hero-v2-btn.primary:hover {
    background-color: transparent;
    color: var(--color-gold);
}

.story-hero-v2-btn.primary svg {
    width: 18px;
    height: 18px;
    transition: transform var(--transition-base);
}

.story-hero-v2-btn.primary:hover svg {
    transform: translateX(4px);
}

.story-hero-v2-btn.secondary {
    background-color: transparent;
    color: var(--color-white);
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.story-hero-v2-btn.secondary:hover {
    background-color: var(--color-white);
    color: var(--color-black);
    border-color: var(--color-white);
}

/* Floating Product Cards */
.story-floating-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 60px;
    perspective: 1000px;
}

.floating-card {
    position: relative;
    width: 180px;
    height: 220px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: floatCard 4s ease-in-out infinite;
}

.floating-card:nth-child(1) {
    animation-delay: 0s;
    transform: rotate(-8deg) translateY(20px);
}

.floating-card:nth-child(2) {
    animation-delay: 0.5s;
    transform: translateY(-10px);
    z-index: 2;
    width: 200px;
    height: 250px;
}

.floating-card:nth-child(3) {
    animation-delay: 1s;
    transform: rotate(8deg) translateY(20px);
}

.floating-card:hover {
    transform: translateY(-15px) scale(1.05) rotate(0deg) !important;
    box-shadow: 0 35px 70px rgba(243, 192, 8, 0.3);
}

.floating-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.floating-card:hover img {
    transform: scale(1.1);
}

.floating-card-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
    font-size: 12px;
    font-weight: 600;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0) rotate(var(--rotation, 0deg));
    }

    50% {
        transform: translateY(-15px) rotate(var(--rotation, 0deg));
    }
}

.floating-card.card-1 {
    --rotation: -8deg;
}

.floating-card.card-2 {
    --rotation: 0deg;
}

.floating-card.card-3 {
    --rotation: 8deg;
}

/* Stats Bar V2 */
.story-hero-v2-stats {
    display: flex;
    align-items: center;
    gap: 50px;
    padding: 30px 60px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-v2-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.stat-v2-number {
    font-family: var(--font-primary);
    font-size: 32px;
    font-weight: 500;
    color: var(--color-gold);
    line-height: 1;
}

.stat-v2-label {
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-white-muted);
}

.stat-v2-divider {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.3), transparent);
}

/* Decorative Elements V2 */
.story-hero-v2-decor {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

.decor-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
}

.decor-glow.glow-1 {
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: var(--color-gold);
    opacity: 0.15;
}

.decor-glow.glow-2 {
    bottom: -150px;
    right: -150px;
    width: 500px;
    height: 500px;
    background: var(--color-gold);
    opacity: 0.1;
}

.decor-line {
    position: absolute;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(243, 192, 8, 0.3), transparent);
}

.decor-line.line-1 {
    left: 15%;
    top: 0;
    height: 100%;
}

.decor-line.line-2 {
    right: 15%;
    top: 0;
    height: 100%;
}

/* Story Hero V2 Responsive */
@media (max-width: 1024px) {
    .story-hero-v2-wrapper {
        padding: 100px 0 60px;
    }

    .story-hero-v2-title {
        font-size: clamp(36px, 5vw, 56px);
    }

    .story-floating-cards {
        gap: 20px;
    }

    .floating-card {
        width: 150px;
        height: 180px;
    }

    .floating-card:nth-child(2) {
        width: 170px;
        height: 210px;
    }

    .story-hero-v2-stats {
        gap: 40px;
        padding: 24px 50px;
    }

    .stat-v2-number {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .story-hero-v2 {
        min-height: auto;
    }

    .story-hero-v2-wrapper {
        padding: 80px 0 60px;
    }

    .story-hero-v2-content {
        margin-bottom: 50px;
    }

    .story-hero-v2-text {
        font-size: 16px;
    }

    .story-floating-cards {
        gap: 15px;
        margin-bottom: 50px;
    }

    .floating-card {
        width: 120px;
        height: 150px;
    }

    .floating-card:nth-child(1),
    .floating-card:nth-child(3) {
        transform: rotate(0deg) translateY(0);
    }

    .floating-card:nth-child(2) {
        width: 140px;
        height: 175px;
    }

    .floating-card-label {
        font-size: 10px;
        padding: 12px;
    }

    .story-hero-v2-stats {
        flex-wrap: wrap;
        gap: 30px;
        padding: 24px 40px;
        border-radius: 20px;
    }

    .stat-v2-divider {
        display: none;
    }

    .stat-v2-number {
        font-size: 24px;
    }

    .stat-v2-label {
        font-size: 10px;
    }

    .decor-line {
        display: none;
    }
}

@media (max-width: 480px) {
    .story-hero-v2-wrapper {
        padding: 60px 0 50px;
    }

    .story-hero-v2-label {
        font-size: 10px;
        letter-spacing: 2px;
        padding: 10px 18px;
    }

    .story-hero-v2-title {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .story-hero-v2-text {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .story-hero-v2-buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .story-hero-v2-btn {
        width: 100%;
        padding: 16px 28px;
        font-size: 12px;
    }

    .story-floating-cards {
        gap: 10px;
        margin-bottom: 40px;
    }

    .floating-card {
        width: 100px;
        height: 130px;
        border-radius: 14px;
    }

    .floating-card:nth-child(2) {
        width: 115px;
        height: 145px;
    }

    .floating-card-label {
        font-size: 9px;
        padding: 10px;
    }

    .story-hero-v2-stats {
        gap: 20px;
        padding: 20px 30px;
    }

    .stat-v2-item {
        gap: 4px;
    }

    .stat-v2-number {
        font-size: 22px;
    }

    .stat-v2-label {
        font-size: 9px;
        letter-spacing: 1px;
    }
}

/* ============================================
   Story Page Hero - Split Design
   ============================================ */
.story-hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    background-color: var(--color-black);
}

.hero-split-left {
    display: flex;
    align-items: center;
    padding: 80px 60px 80px 80px;
    background-color: var(--color-black);
}

.hero-split-content {
    max-width: 560px;
    margin-left: auto;
}

.hero-badge-wrap {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px 10px 14px;
    background: rgba(243, 192, 8, 0.1);
    border: 1px solid rgba(243, 192, 8, 0.25);
    border-radius: 50px;
    margin-bottom: 30px;
}

.hero-badge-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-gold);
    border-radius: 50%;
}

.hero-badge-icon svg {
    width: 14px;
    height: 14px;
    stroke: var(--color-black);
}

.hero-badge-text {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-gold);
}

.hero-split-title {
    font-family: var(--font-primary);
    font-size: clamp(40px, 4.5vw, 60px);
    font-weight: 500;
    color: var(--color-white);
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-split-title .title-accent {
    color: var(--color-gold);
    display: block;
}

.hero-split-text {
    font-size: 17px;
    line-height: 1.8;
    color: var(--color-white-soft);
    margin-bottom: 36px;
}

.hero-split-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 50px;
}

.btn-primary-gold {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--color-gold);
    color: var(--color-black);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 50px;
    border: 2px solid var(--color-gold);
    transition: all var(--transition-base);
    text-decoration: none;
}

.btn-primary-gold svg {
    width: 18px;
    height: 18px;
    transition: transform var(--transition-base);
}

.btn-primary-gold:hover {
    background: transparent;
    color: var(--color-gold);
}

.btn-primary-gold:hover svg {
    transform: translateX(4px);
}

.btn-outline-white {
    display: inline-flex;
    align-items: center;
    padding: 16px 32px;
    background: transparent;
    color: var(--color-white);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all var(--transition-base);
    text-decoration: none;
}

.btn-outline-white:hover {
    background: var(--color-white);
    color: var(--color-black);
    border-color: var(--color-white);
}

/* Quick Stats */
.hero-quick-stats {
    display: flex;
    gap: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.quick-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.quick-stat-num {
    font-family: var(--font-primary);
    font-size: 28px;
    font-weight: 500;
    color: var(--color-gold);
}

.quick-stat-text {
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-white-muted);
}

/* Hero Right - Image Grid */
.hero-split-right {
    position: relative;
    overflow: hidden;
}

.hero-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    height: 100%;
    gap: 4px;
}

.grid-item {
    position: relative;
    overflow: hidden;
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.grid-item:hover img {
    transform: scale(1.1);
}

.grid-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    transition: background var(--transition-base);
}

.grid-item:hover::after {
    background: rgba(243, 192, 8, 0.1);
}

/* Floating Badges */
.hero-float-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--color-white);
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    z-index: 10;
    animation: floatBadge 4s ease-in-out infinite;
}

.hero-float-badge.badge-quality {
    top: 20%;
    left: -30px;
    animation-delay: 0s;
}

.hero-float-badge.badge-global {
    bottom: 25%;
    right: -30px;
    animation-delay: 1s;
}

@keyframes floatBadge {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

.float-badge-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-gold);
    border-radius: 12px;
}

.float-badge-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--color-black);
}

.float-badge-text {
    display: flex;
    flex-direction: column;
}

.badge-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-black);
    line-height: 1.2;
}

.badge-sub {
    font-size: 12px;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   Stats Runner Section
   ============================================ */
.stats-runner {
    padding: 100px 0;
    background-color: var(--color-white);
}

.stats-runner-header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 70px;
}

.stats-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--color-gold);
    margin-bottom: 16px;
}

.stats-runner-title {
    font-family: var(--font-primary);
    font-size: 44px;
    font-weight: 500;
    color: var(--color-black);
    line-height: 1.3;
}

.stats-runner-title span {
    color: var(--color-gold);
}

.stats-runner-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.stats-runner-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 50px 30px;
    background: var(--color-white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    transition: all var(--transition-base);
}

.stats-runner-item:hover {
    border-color: var(--color-gold);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.runner-number {
    font-family: var(--font-secondary);
    font-size: clamp(40px, 5vw, 56px);
    font-weight: 600;
    color: var(--color-black);
    line-height: 1;
    margin-bottom: 12px;
}

.runner-label {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(0, 0, 0, 0.5);
}

/* ============================================
   Founders Profile Section
   ============================================ */
.founders-profile {
    padding: 120px 0;
    background: var(--color-black);
}

.founders-profile-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 70px;
}

.fp-head-left {
    display: flex;
    flex-direction: column;
}

.fp-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--color-gold);
    margin-bottom: 16px;
}

.fp-title {
    font-family: var(--font-primary);
    font-size: 44px;
    font-weight: 500;
    color: var(--color-white);
}

.fp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: var(--color-gold);
    border: 2px solid var(--color-gold);
    color: var(--color-black);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    border-radius: 50px;
    transition: all var(--transition-base);
}

.fp-btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.fp-btn:hover {
    background: transparent;
    color: var(--color-gold);
}

.fp-btn:hover svg {
    transform: translateX(4px);
}

.founders-profile-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.fp-card {
    display: grid;
    grid-template-columns: 480px 1fr;
    background: linear-gradient(90deg, rgba(50, 50, 50, 0.4) 0%, rgba(30, 30, 30, 0.8) 100%);
    border-radius: 12px;
    overflow: hidden;
    min-height: 520px;
}

/* Image */
.fp-card-image {
    position: relative;
    overflow: hidden;
}

.fp-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.fp-card-image::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, var(--color-black) 100%);
}

/* Content */
.fp-card-content {
    padding: 50px 50px 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.fp-quote {
    font-family: var(--font-primary);
    font-size: 120px;
    color: rgba(243, 192, 8, 0.15);
    line-height: 1;
    position: absolute;
    top: 20px;
    left: 30px;
}

.fp-name {
    font-family: var(--font-secondary);
    font-size: 32px;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.fp-role {
    display: block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-gold);
    margin-bottom: 24px;
}

.fp-bio {
    font-size: 15px;
    line-height: 1.9;
    color: var(--color-white-soft);
    margin-bottom: 30px;
}

.fp-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 30px;
}

.fp-tag-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    color: var(--color-white);
}

.fp-tag-item i {
    color: var(--color-gold);
    font-size: 14px;
}

.fp-socials {
    display: flex;
    gap: 12px;
}

.fp-social-btn {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    color: var(--color-white);
    font-size: 18px;
    transition: all 0.3s ease;
}

.fp-social-btn:hover {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-black);
}

/* Responsive */
@media (max-width: 1100px) {
    .fp-card {
        grid-template-columns: 400px 1fr;
        min-height: 480px;
    }

    .fp-card-content {
        padding: 40px 40px 40px 30px;
    }

    .fp-name {
        font-size: 36px;
    }

    .fp-quote {
        font-size: 100px;
    }
}

@media (max-width: 900px) {
    .founders-profile {
        padding: 100px 0;
    }

    .fp-card {
        grid-template-columns: 320px 1fr;
        min-height: 420px;
    }

    .fp-card-content {
        padding: 30px;
    }

    .fp-name {
        font-size: 30px;
    }

    .fp-role {
        font-size: 12px;
        margin-bottom: 20px;
    }

    .fp-bio {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .fp-quote {
        font-size: 80px;
        top: 10px;
        left: 20px;
    }

    .fp-tag-item {
        padding: 10px 16px;
        font-size: 12px;
    }

    .fp-social-btn {
        width: 44px;
        height: 44px;
        font-size: 16px;
    }
}

@media (max-width: 700px) {
    .founders-profile {
        padding: 80px 0;
    }

    .founders-profile-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        margin-bottom: 50px;
    }

    .fp-title {
        font-size: 32px;
    }

    .fp-btn {
        padding: 14px 24px;
        font-size: 12px;
    }

    .founders-profile-list {
        gap: 24px;
    }

    .fp-card {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .fp-card-image {
        height: 350px;
    }

    .fp-card-image::after {
        width: 100%;
        height: 80px;
        top: auto;
        bottom: 0;
        right: 0;
        background: linear-gradient(180deg, transparent 0%, var(--color-black) 100%);
    }

    .fp-card-content {
        padding: 30px 24px;
    }

    .fp-quote {
        display: none;
    }

    .fp-name {
        font-size: 28px;
    }

    .fp-tags {
        gap: 10px;
    }

    .fp-tag-item {
        padding: 10px 14px;
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .founders-profile {
        padding: 60px 0;
    }

    .fp-title {
        font-size: 30px;
    }

    .fp-card-image {
        height: 375px;
    }

    .fp-card-content {
        padding: 24px 20px;
    }

    .fp-name {
        font-size: 24px;
        letter-spacing: 1px;
    }

    .fp-role {
        font-size: 11px;
        letter-spacing: 2px;
    }

    .fp-bio {
        font-size: 13px;
    }

    .fp-tags {
        flex-direction: column;
    }

    .fp-tag-item {
        justify-content: center;
    }

    .fp-socials {
        justify-content: center;
    }

    .fp-social-btn {
        width: 42px;
        height: 42px;
        font-size: 15px;
    }
}

/* Story Hero Split Responsive */
@media (max-width: 1200px) {
    .hero-split-left {
        padding: 60px 40px 60px 50px;
    }

    .hero-float-badge.badge-quality {
        left: 10px;
    }

    .hero-float-badge.badge-global {
        right: 10px;
    }
}

@media (max-width: 1024px) {
    .story-hero-split {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero-split-left {
        padding: 80px 40px;
        order: 2;
    }

    .hero-split-content {
        max-width: 100%;
        margin: 0 auto;
        text-align: center;
    }

    .hero-badge-wrap {
        justify-content: center;
    }

    .hero-split-title .title-accent {
        display: inline;
    }

    .hero-split-buttons {
        justify-content: center;
    }

    .hero-quick-stats {
        justify-content: center;
    }

    .hero-split-right {
        order: 1;
        height: 50vh;
        min-height: 400px;
    }

    .hero-float-badge {
        display: none;
    }

    .stats-runner {
        padding: 80px 0;
    }

    .stats-runner-header-center {
        margin-bottom: 50px;
    }

    .stats-runner-title {
        font-size: 32px;
    }

    .stats-runner-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stats-runner-item {
        padding: 40px 24px;
    }
}

@media (max-width: 768px) {
    .hero-split-left {
        padding: 60px 24px;
    }

    .hero-split-title {
        font-size: 36px;
    }

    .hero-split-text {
        font-size: 15px;
    }

    .hero-split-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .btn-primary-gold,
    .btn-outline-white {
        width: 100%;
        justify-content: center;
    }

    .hero-quick-stats {
        flex-wrap: wrap;
        gap: 30px;
    }

    .hero-split-right {
        height: 45vh;
        min-height: 350px;
    }

    .stats-runner {
        padding: 60px 0;
    }

    .stats-runner-header-center {
        margin-bottom: 40px;
    }

    .stats-runner-title {
        font-size: 28px;
    }

    .stats-runner-item {
        padding: 35px 20px;
    }

    .runner-number {
        font-size: 40px;
    }

    .runner-label {
        font-size: 11px;
        letter-spacing: 1.5px;
    }
}

@media (max-width: 480px) {
    .hero-split-left {
        padding: 50px 20px;
    }

    .hero-badge-wrap {
        padding: 8px 16px 8px 10px;
        margin-bottom: 24px;
    }

    .hero-badge-icon {
        width: 24px;
        height: 24px;
    }

    .hero-badge-icon svg {
        width: 12px;
        height: 12px;
    }

    .hero-badge-text {
        font-size: 10px;
    }

    .hero-split-title {
        font-size: 30px;
        margin-bottom: 20px;
    }

    .hero-split-text {
        font-size: 14px;
        margin-bottom: 28px;
    }

    .hero-split-buttons {
        margin-bottom: 40px;
    }

    .btn-primary-gold,
    .btn-outline-white {
        padding: 14px 24px;
        font-size: 12px;
    }

    .hero-quick-stats {
        gap: 24px;
        padding-top: 24px;
    }

    .quick-stat-num {
        font-size: 24px;
    }

    .quick-stat-text {
        font-size: 10px;
    }

    .hero-split-right {
        height: 40vh;
        min-height: 300px;
    }

    .stats-runner {
        padding: 50px 0;
    }

    .stats-runner-header-center {
        margin-bottom: 30px;
    }

    .stats-runner-title {
        font-size: 24px;
    }

    .stats-runner-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .stats-runner-item {
        padding: 30px 16px;
        border-radius: 16px;
    }

    .runner-number {
        font-size: 32px;
        margin-bottom: 8px;
    }

    .runner-label {
        font-size: 10px;
        letter-spacing: 1px;
    }
}

/* Story Hero Responsive */
@media (max-width: 1024px) {
    .story-hero {
        padding: 80px 0 60px;
        min-height: auto;
    }

    .story-hero-wrapper {
        gap: 50px;
    }

    .story-hero-image {
        height: 500px;
    }

    .story-hero-badge {
        right: 0;
    }

    .story-hero-image-accent {
        left: -20px;
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 768px) {
    .story-hero {
        padding: 60px 0 80px;
    }

    .story-hero-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .story-hero-content {
        text-align: center;
    }

    .story-hero-text {
        max-width: 100%;
    }

    .story-hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .story-hero-stats {
        justify-content: center;
    }

    .story-hero-image {
        height: 450px;
        max-width: 500px;
        margin: 0 auto;
    }

    .story-hero-image-accent {
        left: 0;
        bottom: -20px;
        width: 130px;
        height: 130px;
    }

    .story-hero-badge {
        right: 10px;
        top: 20px;
        padding: 16px 20px;
    }

    .badge-icon {
        width: 36px;
        height: 36px;
    }

    .badge-text {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .story-hero {
        padding: 40px 0 60px;
    }

    .story-hero-label {
        font-size: 10px;
        letter-spacing: 2px;
        padding: 8px 16px;
    }

    .story-hero-title {
        font-size: 32px;
    }

    .story-hero-text {
        font-size: 15px;
    }

    .story-hero-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .story-hero-btn {
        width: 100%;
        padding: 14px 28px;
        font-size: 12px;
    }

    .story-hero-stats {
        gap: 20px;
        flex-wrap: wrap;
    }

    .stat-item .stat-number {
        font-size: 24px;
    }

    .stat-item .stat-label {
        font-size: 10px;
    }

    .story-hero-image {
        height: 380px;
    }

    .story-hero-image-accent {
        width: 110px;
        height: 110px;
    }

    .story-hero-badge {
        padding: 12px 16px;
        gap: 10px;
    }

    .badge-icon {
        width: 32px;
        height: 32px;
    }

    .badge-icon svg {
        width: 18px;
        height: 18px;
    }

    .badge-text {
        font-size: 10px;
    }

    .decor-circle,
    .decor-dots {
        display: none;
    }
}

/* ============================================
   About Section
   ============================================ */
.about {
    padding: 120px 0;
    background-color: var(--color-black);
    position: relative;
    overflow: hidden;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* About Image */
.about-image {
    position: relative;
    padding-left: 40px;
    padding-bottom: 40px;
}

.about-image-main {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.about-image-main img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 12px;
}

.about-image-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 180px;
    height: 180px;
    border-radius: 12px;
    overflow: hidden;
    border: 4px solid var(--color-black);
    z-index: 2;
}

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

.about-experience {
    position: absolute;
    top: -50px;
    right: 28px;
    background-color: var(--color-gold);
    padding: 24px 28px;
    border-radius: 12px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 4px;
    z-index: 3;
}

.experience-number {
    font-family: var(--font-primary);
    font-size: 36px;
    font-weight: 500;
    color: var(--color-black);
    line-height: 1;
}

.experience-text {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-black);
}

/* About Content */
.about-content {
    padding-right: 20px;
}

.about-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-gold);
    margin-bottom: 20px;
}

.about-title {
    font-family: var(--font-primary);
    font-size: 44px;
    font-weight: 500;
    line-height: 1.2;
    color: var(--color-white);
    margin-bottom: 28px;
    letter-spacing: 0.5px;
}

.about-description {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.8;
    color: var(--color-white-soft);
    margin-bottom: 20px;
}

.about-description:last-of-type {
    margin-bottom: 36px;
}

/* About Features */
.about-features {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

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

.feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-gold-soft);
    border-radius: 10px;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--color-gold);
}

.feature-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.feature-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-white);
}

.feature-desc {
    font-size: 13px;
    font-weight: 400;
    color: var(--color-white-muted);
}

/* About CTA Button */
.about-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-black);
    background-color: var(--color-gold);
    border: 2px solid var(--color-gold);
    border-radius: 50px;
    transition: all var(--transition-base);
}

.about-cta:hover {
    background-color: transparent;
    color: var(--color-gold);
}

/* About Buttons Container */
.about-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* About Secondary Button */
.about-cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-white);
    background-color: transparent;
    border: 2px solid var(--color-white);
    border-radius: 50px;
    transition: all var(--transition-base);
}

.about-cta-secondary:hover {
    background-color: var(--color-white);
    color: var(--color-black);
}

/* ============================================
   About Light Theme (for Our Story page)
   ============================================ */
.about-light {
    background-color: var(--color-white);
}

.about-light .about-image-accent {
    border-color: var(--color-white);
}

.about-light .about-title {
    color: var(--color-black);
}

.about-light .about-description {
    color: rgba(30, 30, 30, 0.7);
}

.about-light .feature-icon {
    background-color: rgba(243, 192, 8, 0.15);
}

.about-light .feature-title {
    color: var(--color-black);
}

.about-light .feature-desc {
    color: rgba(30, 30, 30, 0.6);
}

.about-light .about-cta:hover {
    background-color: var(--color-black);
    border-color: var(--color-black);
    color: var(--color-white);
}

.about-light .about-cta-secondary {
    color: var(--color-black);
    border-color: var(--color-black);
}

.about-light .about-cta-secondary:hover {
    background-color: var(--color-black);
    color: var(--color-white);
}

/* ============================================
   Gallery Section
   ============================================ */
.gallery-section {
    padding: 120px 0;
    background: var(--color-black);
}

.gallery-header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.gallery-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--color-gold);
    margin-bottom: 16px;
}

.gallery-title {
    font-family: var(--font-primary);
    font-size: 44px;
    font-weight: 500;
    color: var(--color-white);
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 16px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 240px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

/* Row 1-2: Large image (6 cols, 2 rows) + 4 small (3 cols each) */
.gallery-item:nth-child(1) {
    grid-column: span 6;
    grid-row: span 2;
    height: 496px;
}

.gallery-item:nth-child(2),
.gallery-item:nth-child(3),
.gallery-item:nth-child(4),
.gallery-item:nth-child(5) {
    grid-column: span 3;
}

/* Row 3: 4 images (3 cols each) */
.gallery-item:nth-child(6),
.gallery-item:nth-child(7),
.gallery-item:nth-child(8),
.gallery-item:nth-child(9) {
    grid-column: span 3;
}

/* Row 4: 3 images (4 cols each) */
.gallery-item:nth-child(10),
.gallery-item:nth-child(11),
.gallery-item:nth-child(12) {
    grid-column: span 4;
}

/* Gold border on hover */
.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
    pointer-events: none;
}

.gallery-item:hover::after {
    border-color: var(--color-gold);
}

/* Gallery Responsive */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(6, 1fr);
        gap: 12px;
    }

    .gallery-item {
        height: 180px;
    }

    .gallery-item:nth-child(1) {
        grid-column: span 3;
        grid-row: span 2;
        height: 372px;
    }

    .gallery-item:nth-child(2),
    .gallery-item:nth-child(3),
    .gallery-item:nth-child(4),
    .gallery-item:nth-child(5) {
        grid-column: span 3;
    }

    .gallery-item:nth-child(6),
    .gallery-item:nth-child(7),
    .gallery-item:nth-child(8),
    .gallery-item:nth-child(9) {
        grid-column: span 3;
    }

    .gallery-item:nth-child(10),
    .gallery-item:nth-child(11),
    .gallery-item:nth-child(12) {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .gallery-section {
        padding: 80px 0;
    }

    .gallery-title {
        font-size: 36px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .gallery-item {
        height: 160px;
    }

    .gallery-item:nth-child(1) {
        grid-column: span 2;
        grid-row: span 1;
        height: 200px;
    }

    .gallery-item:nth-child(2),
    .gallery-item:nth-child(3),
    .gallery-item:nth-child(4),
    .gallery-item:nth-child(5),
    .gallery-item:nth-child(6),
    .gallery-item:nth-child(7),
    .gallery-item:nth-child(8),
    .gallery-item:nth-child(9),
    .gallery-item:nth-child(10),
    .gallery-item:nth-child(11),
    .gallery-item:nth-child(12) {
        grid-column: span 1;
    }
}

@media (max-width: 480px) {
    .gallery-section {
        padding: 60px 0;
    }

    .gallery-title {
        font-size: 28px;
    }

    .gallery-item {
        height: 150px;
    }

    .gallery-item:nth-child(1) {
        height: 180px;
    }

    .gallery-btn {
        padding: 14px 24px;
        font-size: 12px;
    }
}

/* ============================================
   Product Categories Section
   ============================================ */
.categories {
    padding: 120px 0;
    background-color: var(--color-white);
    position: relative;
}

.categories-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 50px;
}

.categories-header-left {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.categories-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-gold);
}

.categories-title {
    font-family: var(--font-primary);
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 500;
    line-height: 1.2;
    color: var(--color-black);
    letter-spacing: 0.5px;
}

.categories-view-all {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-gold);
    transition: all var(--transition-base);
}

.categories-view-all svg {
    width: 18px;
    height: 18px;
    transition: transform var(--transition-base);
}

.categories-view-all:hover {
    color: var(--color-black);
}

.categories-view-all:hover svg {
    transform: translateX(5px);
}

/* Categories Grid */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* Category Card */
.category-card {
    display: block;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    aspect-ratio: 1;
}

.category-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top,
            rgba(30, 30, 30, 0.9) 0%,
            rgba(30, 30, 30, 0.6) 40%,
            transparent 100%);
    z-index: 2;
    transition: all var(--transition-base);
}

.category-card:hover::before {
    height: 100%;
    background: linear-gradient(to top,
            rgba(30, 30, 30, 0.95) 0%,
            rgba(30, 30, 30, 0.7) 50%,
            rgba(30, 30, 30, 0.4) 100%);
}

.category-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.category-card:hover .category-image img {
    transform: scale(1.1);
}

/* Category Info */
.category-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 24px;
    z-index: 3;
    text-align: center;
}

.category-name {
    font-family: var(--font-secondary);
    font-size: 18px;
    font-weight: 600;
    color: var(--color-white);
    letter-spacing: 0.5px;
    transition: all var(--transition-base);
}

.category-card:hover .category-name {
    color: var(--color-gold);
    transform: translateY(-5px);
}

/* ============================================
   Product Categories Section
   ============================================ */
.product-categories {
    padding: 100px 0;
    background-color: var(--color-white);
    position: relative;
}

.categories-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 50px;
}

.categories-header-left {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.categories-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-gold);
}

.categories-title {
    font-family: var(--font-primary);
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 500;
    line-height: 1.2;
    color: var(--color-black);
    letter-spacing: 0.5px;
}

.categories-view-all {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-gold);
    transition: all var(--transition-base);
}

.categories-view-all svg {
    width: 18px;
    height: 18px;
    transition: transform var(--transition-base);
}

.categories-view-all:hover {
    color: var(--color-black);
}

.categories-view-all:hover svg {
    transform: translateX(5px);
}

/* Categories Grid */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* Category Card */
.category-card {
    display: block;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    background-color: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all var(--transition-base);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.category-card:hover {
    border-color: var(--color-gold);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* Category Icon */
.category-icon {
    position: absolute;
    top: 16px;
    left: 16px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #FFFFFF;
    border-radius: 10px;
    z-index: 3;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.category-icon svg {
    width: 20px;
    height: 20px;
    stroke: #1a365d;
}

/* Category Badge */
.category-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 6px 12px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    z-index: 3;
}

.category-badge.hot {
    background-color: #EF4444;
    color: #FFFFFF;
}

.category-badge.new {
    background-color: #10B981;
    color: #FFFFFF;
}

/* Category Image */
.category-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.category-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform var(--transition-slow);
}

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

/* Category Info */
.category-info {
    padding: 20px;
    background-color: #FFFFFF;
}

.category-name {
    font-family: var(--font-secondary);
    font-size: 18px;
    font-weight: 700;
    color: var(--color-black);
    letter-spacing: 0.3px;
    margin-bottom: 12px;
    transition: color var(--transition-base);
}

.category-card:hover .category-name {
    color: var(--color-gold);
}

/* Category Meta */
.category-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.category-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 500;
    color: rgba(30, 30, 30, 0.6);
}

.category-meta svg {
    width: 14px;
    height: 14px;
    stroke: rgba(30, 30, 30, 0.4);
}

/* Category Button */
.category-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 24px;
    background-color: #1a365d;
    color: #FFFFFF;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all var(--transition-base);
}

.category-btn svg {
    width: 16px;
    height: 16px;
    transition: transform var(--transition-base);
}

.category-card:hover .category-btn {
    background-color: var(--color-gold);
    color: var(--color-black);
}

.category-card:hover .category-btn svg {
    transform: translateX(4px);
}

/* Product Categories Responsive */
@media (max-width: 1200px) {
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .category-name {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .categories-grid {
        grid-template-columns: 1fr;
    }

    .category-card {
        max-width: 320px;
        margin: 0 auto;
    }

    .category-meta {
        display: flex;
    }
}

/* ============================================
   Testimonials Section
   ============================================ */
.testimonials {
    padding: 120px 0;
    background-color: var(--color-white);
    position: relative;
}

.testimonials-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 50px;
}

.testimonials-header-left {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.testimonials-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-gold);
}

.testimonials-title {
    font-family: var(--font-primary);
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 500;
    line-height: 1.2;
    color: var(--color-black);
    letter-spacing: 0.5px;
}

/* Google Badge */
.testimonials-google-badge {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 24px;
    background-color: var(--color-black);
    border-radius: 12px;
}

.google-icon {
    flex-shrink: 0;
}

.google-rating {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.rating-score {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1;
}

.rating-stars {
    display: flex;
    gap: 2px;
}

.rating-stars svg {
    width: 16px;
    height: 16px;
}

.rating-count {
    font-size: 11px;
    color: var(--color-white-muted);
}

/* Testimonials Carousel */
.testimonials-carousel {
    overflow-x: auto;
    overflow-y: hidden;
    position: relative;
    margin: 0 -12px;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.testimonials-carousel::-webkit-scrollbar {
    display: none;
}

.testimonials-track {
    display: flex;
    gap: 24px;
    animation: testimonialScroll 30s linear infinite;
    width: max-content;
    padding: 10px 12px;
}

/* Testimonial Carousel Controls */
.testimonials-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
}

.testimonial-arrow {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-black);
    border: 2px solid rgba(30, 30, 30, 0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--transition-base);
}

.testimonial-arrow:hover {
    background-color: var(--color-gold);
    border-color: var(--color-gold);
    transform: scale(1.05);
}

.testimonial-arrow svg {
    width: 20px;
    height: 20px;
    stroke: var(--color-white);
    stroke-width: 2;
    transition: stroke var(--transition-base);
}

.testimonial-arrow:hover svg {
    stroke: var(--color-black);
}

@keyframes testimonialScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Testimonial Card */
.testimonial-card {
    background-color: var(--color-black);
    border-radius: 20px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: all var(--transition-base);
    min-width: 340px;
    max-width: 340px;
    flex-shrink: 0;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-gold) 0%, #d4a806 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: var(--color-black);
    flex-shrink: 0;
}

.testimonial-author {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.testimonial-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-white);
    line-height: 1.2;
}

.testimonial-designation {
    font-size: 12px;
    color: var(--color-white-muted);
}

.testimonial-rating {
    display: flex;
    align-items: center;
    gap: 4px;
}

.testimonial-rating svg {
    width: 16px;
    height: 16px;
}

.testimonial-rating .testimonial-google {
    margin-right: 6px;
}

.testimonial-text {
    font-size: 14px;
    line-height: 1.7;
    color: var(--color-white-soft);
}

/* ============================================
   Why Choose Us Section
   ============================================ */
/* ============================================
   Why Choose Us Section
   ============================================ */
.why-choose-us {
    padding: 120px 0;
    background-color: var(--color-black);
    position: relative;
    overflow: hidden;
}

.why-choose-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at top right, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
        radial-gradient(ellipse at bottom left, rgba(212, 175, 55, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.why-choose-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    text-align: left;
    margin-bottom: 70px;
    position: relative;
}

.why-choose-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-gold);
    margin-bottom: 16px;
}

.why-choose-title {
    font-family: var(--font-primary);
    font-size: clamp(36px, 4vw, 52px);
    font-weight: 400;
    color: var(--color-white);
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.why-choose-title span {
    color: var(--color-gold);
}

.why-choose-title {
    max-width: 550px;
}

.why-choose-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-white);
    background-color: transparent;
    border: 1px solid rgba(250, 250, 250, 0.3);
    border-radius: 50px;
    transition: all var(--transition-base);
    white-space: nowrap;
}

.why-choose-btn:hover {
    background-color: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-black);
}

.why-choose-btn svg {
    width: 16px;
    height: 16px;
    transition: transform var(--transition-base);
    stroke-width: 2px;
}

.why-choose-btn:hover svg {
    transform: translateX(4px);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 80px;
    position: relative;
}

.why-choose-item {
    display: flex;
    gap: 24px;
    padding: 32px 0;
    border-bottom: 1px solid rgba(250, 250, 250, 0.08);
    position: relative;
    transition: all var(--transition-base);
}

.why-choose-item:hover {
    transform: translateX(8px);
}

.why-choose-item:hover .why-choose-number {
    color: var(--color-white);
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

.why-choose-item:hover .why-choose-item-title {
    color: var(--color-gold);
}

.why-choose-number {
    font-family: var(--font-secondary);
    font-size: 72px;
    font-weight: 700;
    color: var(--color-gold);
    line-height: 0.9;
    flex-shrink: 0;
    min-width: 70px;
    transition: all var(--transition-base);
    opacity: 0.9;
}

.why-choose-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 12px;
}

.why-choose-item-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-white);
    letter-spacing: 0.2px;
    transition: color var(--transition-base);
}

.why-choose-item-desc {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.75;
    color: var(--color-white-muted);
}

/* ============================================
   Collections Page
   ============================================ */
.collections-page {
    min-height: 60vh;
    padding: 80px 0;
    background-color: var(--color-white);
}

/* ============================================
   Products Section - Collections Page
   ============================================ */
.products-section {
    padding: 60px 0 80px;
    background: #ffffff;
}

.products-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 35px;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 20px;
    align-items: start;
}

/* Category Filter Sidebar */
.category-filter {
    position: sticky;
    top: 120px;
    background: #ffffff;
    padding: 25px 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    height: fit-content;
    border: 1px solid rgba(243, 192, 8, 0.15);
}

.category-filter-title {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(243, 192, 8, 0.2);
}

.category-tabs {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.category-tab {
    padding: 14px 18px;
    background: #f8f9fa;
    border: 2px solid transparent;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-black);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
}

.category-tab i {
    font-size: 16px;
    color: var(--color-gold);
    min-width: 20px;
}

.category-tab:hover {
    background: rgba(243, 192, 8, 0.1);
    border-color: var(--color-gold);
    transform: translateX(5px);
}

.category-tab.active {
    background: linear-gradient(135deg, var(--color-gold) 0%, #d4a600 100%);
    color: var(--color-black);
    border-color: var(--color-gold);
    box-shadow: 0 4px 15px rgba(243, 192, 8, 0.3);
}

.category-tab.active i {
    color: var(--color-black);
}

/* Products Area */
.products-area {
    display: flex;
    flex-direction: column;
}

.products-count {
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.products-count-text {
    font-size: 16px;
    color: #666;
    font-weight: 500;
}

.products-count-number {
    color: var(--color-gold);
    font-weight: 700;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 50px;
}

.product-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(243, 192, 8, 0.2);
    border-color: var(--color-gold);
}

.product-image-box {
    position: relative;
    width: 100%;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow: hidden;
}

.product-image {
    width: 160px;
    height: 160px;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.product-card:hover .product-image {
    transform: scale(1.1);
}

/* Product Badge */
.product-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 3;
}

.badge-new {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #fff;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

.badge-hot {
    background: linear-gradient(135deg, var(--color-gold) 0%, #d4a600 100%);
    color: var(--color-black);
    box-shadow: 0 4px 12px rgba(243, 192, 8, 0.4);
}

/* Product Info */
.product-info {
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-name {
    font-size: 14px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
    font-family: var(--font-body);
    line-height: 1.3;
    min-height: 38px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-specs {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 12px;
    flex: 1;
}

.product-spec-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #64748b;
    font-weight: 500;
}

.product-spec-item i {
    font-size: 11px;
    color: var(--color-gold);
    width: 14px;
}

.product-btn {
    width: 100%;
    padding: 10px 16px;
    background: linear-gradient(135deg, var(--color-gold) 0%, #d4a600 100%);
    color: var(--color-black);
    border: none;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-family: var(--font-body);
    box-shadow: 0 4px 12px rgba(243, 192, 8, 0.3);
}

.product-btn:hover {
    background: linear-gradient(135deg, var(--color-black) 0%, #1a1a1a 100%);
    color: var(--color-gold);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.product-btn i {
    font-size: 14px;
}

/* Pastel Colors for Product Cards */
.product-color-1 {
    background: linear-gradient(135deg, #fff8e1 0%, #ffffff 100%);
}

.product-color-2 {
    background: linear-gradient(135deg, #fef3e2 0%, #ffffff 100%);
}

.product-color-3 {
    background: linear-gradient(135deg, #fff9f0 0%, #ffffff 100%);
}

.product-color-4 {
    background: linear-gradient(135deg, #fffbeb 0%, #ffffff 100%);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 50px;
}

.pagination-btn {
    width: 40px;
    height: 40px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--color-black);
    font-weight: 600;
    font-size: 14px;
}

.pagination-btn:hover {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-black);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(243, 192, 8, 0.3);
}

.pagination-btn.active {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-black);
    box-shadow: 0 4px 12px rgba(243, 192, 8, 0.3);
}

.pagination-btn.disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.pagination-btn.disabled:hover {
    background: #ffffff;
    border-color: #e2e8f0;
    color: var(--color-black);
    transform: none;
    box-shadow: none;
}

.pagination-dots {
    padding: 0 10px;
    color: #666;
    font-weight: 600;
}

/* Hidden State */
.hidden {
    display: none !important;
}

/* Products Responsive */
@media (max-width: 1400px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1200px) {
    .products-container {
        padding: 0 40px;
        grid-template-columns: 250px 1fr;
        gap: 30px;
    }

    .category-filter {
        padding: 20px 15px;
    }

    .category-tab {
        padding: 12px 15px;
        font-size: 12px;
    }

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

@media (max-width: 1024px) {
    .products-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .category-filter {
        position: relative;
        top: 0;
        padding: 20px;
    }

    .category-tabs {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .category-tab {
        justify-content: center;
        text-align: center;
    }

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

@media (max-width: 768px) {
    .products-section {
        padding: 30px 0 60px;
    }

    .products-container {
        padding: 0 20px;
        grid-template-columns: 1fr;
    }

    .category-filter {
        position: relative;
        top: 0;
        padding: 20px 15px;
        margin-bottom: 30px;
    }

    .category-tabs {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .category-tab {
        padding: 12px 14px;
        font-size: 11px;
        flex-direction: row;
        gap: 8px;
        justify-content: flex-start;
    }

    .category-tab i {
        font-size: 14px;
    }

    .products-count {
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-top: 20px;
    }

    .product-image-box {
        height: 150px;
    }

    .product-image {
        width: 130px;
        height: 130px;
    }

    .product-name {
        font-size: 13px;
        min-height: 35px;
    }

    .product-btn {
        font-size: 11px;
        padding: 9px 14px;
    }
}

@media (max-width: 480px) {
    .category-tabs {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .pagination-btn {
        width: 36px;
        height: 36px;
        font-size: 13px;
    }
}

/* ============================================
   Brand Partners Section - Scrolling Animation
   ============================================ */
.sp-partners-section {
    padding: 80px 0;
    background-color: var(--color-white);
    overflow: hidden;
    position: relative;
}

.sp-partners-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

.sp-partners-content {
    padding-top: 2rem;
}

.sp-partners-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-gold);
    margin-bottom: 16px;
}

.sp-partners-title {
    font-family: var(--font-primary);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 500;
    color: var(--color-black);
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.sp-partners-subtitle {
    font-size: 16px;
    color: rgba(30, 30, 30, 0.7);
    font-weight: 400;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.sp-partners-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--color-gold);
    color: var(--color-black);
    border: none;
    border-radius: 50px;
    padding: 14px 28px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all var(--transition-base);
}

.sp-partners-btn:hover {
    background-color: var(--color-white);
    transform: translateY(-2px);
}

.sp-partners-btn svg {
    transition: transform var(--transition-base);
}

.sp-partners-btn:hover svg {
    transform: translateX(3px);
}

/* Grid Container */
.sp-partners-grid-container {
    position: relative;
    overflow: hidden;
    height: 650px;
    -webkit-mask-image: linear-gradient(to bottom,
            transparent 0%, rgba(0, 0, 0, 0.1) 5%, black 15%,
            black 85%, rgba(0, 0, 0, 0.1) 95%, transparent 100%);
    mask-image: linear-gradient(to bottom,
            transparent 0%, rgba(0, 0, 0, 0.1) 5%, black 15%,
            black 85%, rgba(0, 0, 0, 0.1) 95%, transparent 100%);
}

.sp-partners-grid-container.paused .sp-scroll-track {
    animation-play-state: paused !important;
}

.sp-partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    height: 100%;
    position: relative;
}

@keyframes spScrollUp {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50%);
    }
}

@keyframes spScrollDown {
    0% {
        transform: translateY(-50%);
    }

    100% {
        transform: translateY(0);
    }
}

.sp-grid-column {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.sp-scroll-track {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-fill-mode: both;
    animation-play-state: paused;
}

/* Animations when active */
.sp-partners-grid-container.active .sp-grid-column:nth-child(1) .sp-scroll-track {
    animation: spScrollUp 20s linear infinite;
    animation-play-state: running;
}

.sp-partners-grid-container.active .sp-grid-column:nth-child(2) .sp-scroll-track {
    animation: spScrollDown 22s linear infinite;
    animation-play-state: running;
}

.sp-partners-grid-container.active .sp-grid-column:nth-child(3) .sp-scroll-track {
    animation: spScrollUp 25s linear infinite;
    animation-play-state: running;
}

.sp-partners-grid-container.active .sp-grid-column:nth-child(4) .sp-scroll-track {
    animation: spScrollDown 18s linear infinite;
    animation-play-state: running;
}

/* Partner Item */
.sp-partner-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.25rem;
    background-color: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    cursor: pointer;
    height: 130px;
    justify-content: center;
    gap: 0.75rem;
    flex-shrink: 0;
    transition: all var(--transition-base);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.sp-partner-item:hover {
    border-color: var(--color-gold);
    transform: translateY(-2px);
    background-color: #FFFFFF;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.sp-partner-logo {
    width: 90px;
    height: 90px;
    object-fit: contain;
    transition: transform var(--transition-base);
}

.sp-partner-item:hover .sp-partner-logo {
    transform: scale(1.05);
}

.sp-partner-name {
    font-size: 11px;
    font-weight: 600;
    color: rgba(30, 30, 30, 0.6);
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color var(--transition-base);
}

.sp-partner-item:hover .sp-partner-name {
    color: var(--color-gold);
}

/* Mobile Button */
.sp-mobile-btn-wrap {
    display: none;
    margin-top: 2rem;
    text-align: center;
}

/* Mobile Static Grid */
.sp-mobile-static-grid {
    display: none;
}

.sp-mobile-static-grid .sp-static-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.sp-mobile-static-grid .sp-partner-item {
    height: 130px;
    padding: 1rem;
}

/* ============================================
   Shop By Category Section
   ============================================ */
.shop-category-section {
    padding: 100px 0;
    background: #fff;
    position: relative;
}

.shop-category-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 60px;
}

.shop-category-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 60px;
}

.shop-category-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--color-gold);
    margin-bottom: 16px;
}

.shop-category-title {
    font-family: var(--font-primary);
    font-size: 48px;
    font-weight: 500;
    color: var(--color-black);
    line-height: 1.2;
    margin-bottom: 20px;
}

.shop-category-title span {
    color: var(--color-gold);
}

.shop-category-desc {
    font-size: 16px;
    color: rgba(30, 30, 30, 0.65);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

.shop-category-view-all {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--color-gold) 0%, #d4a600 100%);
    color: var(--color-black);
    border: none;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(243, 192, 8, 0.4);
}

.shop-category-view-all:hover {
    background: linear-gradient(135deg, var(--color-black) 0%, #1a1a1a 100%);
    color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.shop-category-view-all svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.shop-category-view-all:hover svg {
    transform: translateX(3px);
}

/* Category Grid - 4 per row */
.shop-category-section .category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* Category Card - Shop By Category Section */
.shop-category-section .category-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    position: relative;
    text-decoration: none;
    display: block;
    aspect-ratio: auto;
}

/* Remove dark overlay from category cards */
.shop-category-section .category-card::before {
    display: none;
}

.shop-category-section .category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(243, 192, 8, 0.2);
}

/* Category Image Box - Shop By Category */
.shop-category-section .category-image {
    position: relative;
    width: 100%;
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    overflow: visible;
}

.shop-category-section .category-image img {
    width: 180px;
    height: 180px;
    object-fit: contain;
    transition: transform 0.4s ease;
    position: relative;
    z-index: 2;
}

.shop-category-section .category-card:hover .category-image img {
    transform: scale(1.12);
}

/* Category Icon - Shop By Category */
.shop-category-section .category-icon {
    position: absolute;
    top: 14px;
    left: 14px;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    z-index: 3;
}

.shop-category-section .category-icon i {
    font-size: 17px;
    color: var(--color-gold);
}

/* Category Badge - Shop By Category */
.shop-category-section .category-badge-new,
.shop-category-section .category-badge-hot {
    position: absolute;
    top: 14px;
    right: 14px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 3;
}

.shop-category-section .category-badge-new {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #FFFFFF;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

.shop-category-section .category-badge-hot {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #FFFFFF;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
}

/* Category Info - Shop By Category */
.shop-category-section .category-info {
    padding: 20px;
    background-color: #ffffff;
    position: relative;
    text-align: center;
}

.shop-category-section .category-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 12px;
    font-family: var(--font-secondary);
    line-height: 1.3;
    min-height: auto;
    transition: color 0.3s ease;
}

.shop-category-section .category-card:hover .category-name {
    color: var(--color-gold);
}

.shop-category-section .category-details {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.shop-category-section .category-weight,
.shop-category-section .category-count {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: rgba(30, 30, 30, 0.6);
    font-weight: 500;
}

.shop-category-section .category-weight i,
.shop-category-section .category-count i {
    font-size: 11px;
    color: var(--color-gold);
}

/* Gold View All Button - Shop By Category */
.shop-category-section .category-btn {
    width: 100%;
    padding: 12px 18px;
    background: linear-gradient(135deg, var(--color-gold) 0%, #d4a600 100%);
    color: var(--color-black);
    border: none;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-secondary);
    box-shadow: 0 4px 15px rgba(243, 192, 8, 0.35);
}

.shop-category-section .category-btn:hover {
    background: linear-gradient(135deg, #d4a600 0%, #b8930a 100%);
    color: var(--color-black);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(243, 192, 8, 0.5);
}

.shop-category-section .category-btn i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.shop-category-section .category-card:hover .category-btn i {
    transform: translateX(4px);
}

/* Different Pastel Shade Colors for Cards - Shop By Category */
.shop-category-section .category-color-1 .category-image {
    background: linear-gradient(145deg, #fef3e2 0%, #fff9f0 100%);
}

.shop-category-section .category-color-2 .category-image {
    background: linear-gradient(145deg, #f0e7ff 0%, #f8f4ff 100%);
}

.shop-category-section .category-color-3 .category-image {
    background: linear-gradient(145deg, #ffe4e6 0%, #fff0f1 100%);
}

.shop-category-section .category-color-4 .category-image {
    background: linear-gradient(145deg, #e0f2fe 0%, #f0f9ff 100%);
}

.shop-category-section .category-color-5 .category-image {
    background: linear-gradient(145deg, #fef9e7 0%, #fffcf0 100%);
}

.shop-category-section .category-color-6 .category-image {
    background: linear-gradient(145deg, #f3e8ff 0%, #faf5ff 100%);
}

.shop-category-section .category-color-7 .category-image {
    background: linear-gradient(145deg, #fce7f3 0%, #fef1f8 100%);
}

.shop-category-section .category-color-8 .category-image {
    background: linear-gradient(145deg, #dbeafe 0%, #eff6ff 100%);
}

/* View All Collections Button */
.category-view-all {
    text-align: center;
    margin-top: 50px;
}

.category-view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    background: transparent;
    color: var(--color-black);
    border: 2px solid var(--color-gold);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    transition: all 0.4s ease;
}

.category-view-all-btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.category-view-all-btn:hover {
    background: var(--color-gold);
    color: var(--color-black);
}

.category-view-all-btn:hover svg {
    transform: translateX(5px);
}

/* Shop Category Responsive */
@media (max-width: 1200px) {
    .shop-category-section .category-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 1024px) {
    .shop-category-container {
        padding: 0 40px;
    }

    .shop-category-header {
        margin-bottom: 50px;
    }

    .shop-category-title {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .shop-category-section {
        padding: 70px 0;
    }

    .shop-category-container {
        padding: 0 20px;
    }

    .shop-category-title {
        font-size: 34px;
    }

    .shop-category-desc {
        font-size: 15px;
    }

    .shop-category-section .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .shop-category-section .category-image {
        height: 200px;
    }

    .shop-category-section .category-image img {
        width: 150px;
        height: 150px;
    }

    .shop-category-section .category-info {
        padding: 16px;
    }

    .shop-category-section .category-name {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .shop-category-section .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .shop-category-title {
        font-size: 28px;
    }

    .shop-category-section .category-image {
        height: 160px;
        padding: 15px;
    }

    .shop-category-section .category-image img {
        width: 120px;
        height: 120px;
    }

    .shop-category-section .category-name {
        font-size: 13px;
    }

    .shop-category-section .category-btn {
        font-size: 11px;
        padding: 10px 14px;
    }

    .shop-category-section .category-icon {
        width: 34px;
        height: 34px;
    }

    .shop-category-section .category-icon i {
        font-size: 14px;
    }

    .shop-category-section .category-details {
        gap: 8px;
        margin-bottom: 12px;
    }

    .shop-category-section .category-weight,
    .shop-category-section .category-count {
        font-size: 11px;
    }
}

/* ============================================
   Chocolate Memory Game Section
   ============================================ */
.choco-game-section {
    padding: 80px 0;
    background: #1E1E1E;
}

.choco-game-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.choco-game-left {
    padding-right: 40px;
}

.choco-game-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-gold);
    margin-bottom: 20px;
}

.choco-game-title {
    font-family: var(--font-primary);
    font-size: 52px;
    font-weight: 500;
    color: var(--color-white);
    line-height: 1.1;
    margin-bottom: 20px;
}

.choco-game-title span {
    color: var(--color-gold);
}

.choco-game-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 40px;
}

.choco-game-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 35px;
}

.stat-item {
    text-align: left;
}

.stat-value {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: var(--color-gold);
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.5);
}

.game-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    background: transparent;
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.game-btn svg {
    width: 16px;
    height: 16px;
}

.game-btn:hover {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-black);
}

/* Game Board */
.choco-game-right {
    display: flex;
    justify-content: center;
}

.choco-game-board {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    max-width: 400px;
    width: 100%;
}

.game-card {
    aspect-ratio: 1;
    perspective: 1000px;
    cursor: pointer;
}

.game-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.5s;
    transform-style: preserve-3d;
}

.game-card.flipped .game-card-inner,
.game-card.matched .game-card-inner {
    transform: rotateY(180deg);
}

.game-card.matched {
    pointer-events: none;
}

.game-card.matched .card-front {
    border: 2px solid var(--color-gold);
}

.card-front,
.card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-front {
    background: #2a2a2a;
    transform: rotateY(180deg);
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.card-front img {
    max-width: 85%;
    max-height: 85%;
    object-fit: contain;
}

.card-back {
    background: linear-gradient(145deg, #333 0%, #222 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.card-back::before {
    content: '?';
    font-size: 28px;
    font-weight: 700;
    color: var(--color-gold);
}

/* Win Modal */
.choco-game-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.choco-game-modal.show {
    display: flex;
}

.choco-game-modal .modal-content {
    background: var(--color-black);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 50px;
    border-radius: 15px;
    text-align: center;
    max-width: 350px;
    animation: modalPop 0.4s ease;
}

@keyframes modalPop {
    0% {
        transform: scale(0.9);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.modal-title {
    font-family: var(--font-primary);
    font-size: 28px;
    color: var(--color-white);
    margin-bottom: 10px;
}

.modal-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 30px;
}

.modal-text span {
    font-weight: 700;
    color: var(--color-gold);
}

.play-again-btn {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-black);
}

.play-again-btn:hover {
    background: transparent;
    color: var(--color-gold);
}

/* Memory Game Responsive */
@media (max-width: 992px) {
    .choco-game-layout {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .choco-game-left {
        padding-right: 0;
    }

    .choco-game-stats {
        justify-content: center;
    }

    .stat-item {
        text-align: center;
    }

    .choco-game-title {
        font-size: 42px;
    }
}

@media (max-width: 576px) {
    .choco-game-section {
        padding: 60px 0;
    }

    .choco-game-title {
        font-size: 32px;
    }

    .choco-game-stats {
        gap: 20px;
    }

    .stat-value {
        font-size: 28px;
    }

    .choco-game-board {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        max-width: 280px;
    }

    .card-back::before {
        font-size: 22px;
    }

    .choco-game-modal .modal-content {
        padding: 35px 25px;
        margin: 20px;
    }
}

/* ============================================
   Responsive Design
   ============================================ */
/* ============================================
   Creative Showcase Section
   ============================================ */
/* ============================================
   Creative Showcase Section
   ============================================ */
.creative-showcase {
    padding: 0;
    background-color: var(--color-black);
    position: relative;
    padding-bottom: 80px;
}

.creative-wrapper {
    position: relative;
    overflow: hidden;
    /* Masking for the contained slider */
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

/* Remove old full-width pseudo elements */
.creative-showcase::before,
.creative-showcase::after {
    display: none;
}

.creative-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: listMarquee 30s linear infinite;
    padding: 20px 0;
}


.creative-item {
    width: 300px;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

.creative-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.creative-overlay {
    display: none;
}

@keyframes listMarquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}


/* ============================================
   Mission & Vision Section
   ============================================ */
/* ============================================
   Mission & Vision Section
   ============================================ */
.mission-vision {
    padding: 120px 0;
    background-color: var(--color-white);
    color: var(--color-black);
    position: relative;
    overflow: hidden;
}

.mv-header,
.mv-header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.mv-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-gold);
    margin-bottom: 16px;
}

.mv-title {
    font-family: var(--font-primary);
    font-size: 44px;
    font-weight: 500;
    color: var(--color-black);
    line-height: 1.2;
}

.mv-btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.mv-btn:hover {
    background: transparent;
    color: var(--color-gold);
}

.mv-btn:hover svg {
    transform: translateX(4px);
}

.mv-rows {
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.mv-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.mv-row.reverse .mv-image {
    order: 2;
}

.mv-row.reverse .mv-content {
    order: 1;
}

.mv-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 380px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.mv-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.mv-image:hover img {
    transform: scale(1.05);
}

.mv-content {
    padding: 20px;
}

.mv-layout-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.mv-icon-box {
    width: 50px;
    height: 50px;
    background-color: var(--color-gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-black);
}

.mv-icon-box svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

.mv-subtitle {
    font-family: var(--font-primary);
    font-size: 32px;
    font-weight: 500;
    color: var(--color-black);
}

.mv-description {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(30, 30, 30, 0.75);
    margin-bottom: 30px;
}

.mv-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mv-list-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 500;
    color: var(--color-black);
}

.mv-check {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: rgba(243, 192, 8, 0.2);
    color: var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mv-check svg {
    width: 12px;
    height: 12px;
}

/* Responsive for Mission Vision */
@media (max-width: 900px) {
    .mv-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        margin-bottom: 60px;
    }

    .mv-title {
        font-size: 32px;
    }

    .mv-btn {
        padding: 14px 24px;
        font-size: 12px;
    }

    .mv-row,
    .mv-row.reverse {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .mv-row.reverse .mv-image {
        order: unset;
    }

    .mv-row.reverse .mv-content {
        order: unset;
    }

    .mv-image {
        height: 350px;
    }

    .mv-content {
        padding: 0;
    }
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    .nav-list {
        gap: 30px;
    }

    .hero-content {
        max-width: 500px;
    }

    .about {
        padding: 100px 0;
    }

    .about-wrapper {
        gap: 60px;
    }

    .about-image-main img {
        height: 450px;
    }

    .about-experience {
        right: 0;
    }

    .categories {
        padding: 100px 0;
    }

    .categories-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }

    /* Product Categories Section - 1024px */
    .product-categories {
        padding: 80px 0;
    }

    .categories-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }

    /* Testimonials Section - 1024px */
    .testimonials {
        padding: 100px 0;
    }

    .testimonial-card {
        min-width: 320px;
        max-width: 320px;
    }

    /* Why Choose Us Section - 1024px */
    .why-choose-us {
        padding: 80px 0;
    }

    .why-choose-wrapper {
        grid-template-columns: 1fr 1.2fr;
        gap: 50px;
    }

    .why-choose-left {
        position: relative;
        top: 0;
    }

    .why-choose-title {
        font-size: 36px;
    }

    .why-choose-stats {
        gap: 24px;
    }

    .stat-number {
        font-size: 30px;
    }

    .why-choose-number {
        font-size: 36px;
        min-width: 60px;
    }

    .why-choose-item {
        padding: 24px 0;
        gap: 20px;
    }

    .why-choose-item-title {
        font-size: 16px;
    }

    /* Partners Section - 1024px */
    .sp-partners-container {
        gap: 3rem;
    }

    .sp-partners-grid-container {
        height: 550px;
    }

    .sp-partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .sp-grid-column:nth-child(4) {
        display: none;
    }
}

/* ============================================
   Tablet/Mobile Menu Breakpoint
   ============================================ */
@media (max-width: 992px) {
    /* Show hamburger menu */
    .menu-toggle {
        display: flex;
    }

    /* Mobile Navigation Slide-in */
    .nav {
        position: fixed;
        top: 0;
        right: -300px;
        width: 300px;
        height: 100vh;
        background-color: #1E1E1E;
        z-index: 1001;
        transition: right 0.3s ease;
        padding: 80px 30px 40px;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
    }

    .nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
        align-items: stretch;
    }

    .nav-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .nav-link {
        display: block;
        padding: 16px 0;
        font-size: 15px;
        letter-spacing: 0.5px;
    }

    .nav-link::after {
        display: none;
    }

    .nav-link.active {
        color: var(--color-gold);
    }

    /* Top bar: Row 1 = phone + email, Row 2 = location, hide 24/7 */
    .top-bar {
        padding: 8px 0;
    }

    .top-bar-content {
        flex-direction: column;
        align-items: center;
        gap: 6px;
    }

    .top-bar-left {
        gap: 12px;
    }

    .top-bar-item {
        font-size: 11px;
    }

    .top-bar-icon {
        width: 12px;
        height: 12px;
    }

    .top-bar-separator {
        display: none;
    }

    .top-bar-right {
        display: flex;
        gap: 12px;
    }

    .top-bar-right .top-bar-item {
        font-size: 11px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }

    /* Top bar - compact */
    .top-bar {
        padding: 5px 0;
    }

    .top-bar-content {
        gap: 4px;
    }

    .top-bar-left {
        gap: 10px;
    }

    .top-bar-item {
        font-size: 12px;
    }

    .top-bar-icon {
        width: 13px;
        height: 13px;
    }

    .top-bar-right .top-bar-item {
        font-size: 12px;
    }

    .top-bar-right .service-badge {
        display: none;
    }

    .top-bar-right a[href*="maps"] {
        color: var(--color-gold);
    }

    .top-bar-right a[href*="maps"] .top-bar-icon {
        stroke: var(--color-gold);
    }

    /* Header */
    .header {
        padding: 10px 0;
    }

    .logo-img {
        height: 40px;
    }

    .hero {
        height: 80vh;
        min-height: auto;
        max-height: none;
    }

    .hero-slide {
        height: 75vh !important;
        min-height: auto !important;
    }

    .hero-slide .container {
        align-items: center;
        height: auto;
    }

    .hero-content {
        max-width: 100%;
        padding: 60px 0 80px;
        text-align: center;
        align-items: center;
        justify-content: center;
    }

    .hero-overlay {
        display: none;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 15px;
        max-width: 100%;
    }

    .hero-buttons {
        flex-direction: row;
        justify-content: center;
        gap: 12px;
    }

    .hero-cta-primary,
    .hero-cta-secondary {
        padding: 14px 28px;
        font-size: 12px;
        letter-spacing: 1.5px;
    }

    /* Mobile hero background images */
    .hero-slide-1 {
        background-image: url('../assets/background-images/mobile-1.jpg') !important;
    }

    .hero-slide-2 {
        background-image: url('../assets/background-images/mobile-2.jpg') !important;
    }

    .hero-slide-3 {
        background-image: url('../assets/background-images/mobile-3.jpg') !important;
    }

    .hero-slide-4 {
        background-image: url('../assets/background-images/mobile-4.jpg') !important;
    }

    .carousel-controls {
        bottom: 24px;
        right: 24px;
        gap: 10px;
    }

    .carousel-arrow {
        width: 48px;
        height: 48px;
    }

    .carousel-arrow svg {
        width: 20px;
        height: 20px;
    }

    .carousel-counter {
        display: none;
    }

    /* Creative Showcase - Mobile */
    .creative-item {
        width: 310px;
        height: 260px;
    }

    .creative-track {
        gap: 20px;
    }

    /* About Section - Tablet */
    .about {
        padding: 80px 0;
    }

    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-image {
        padding-left: 30px;
        padding-bottom: 30px;
        max-width: 500px;
        margin: 0 auto;
    }

    .about-image-main img {
        height: 400px;
    }

    .about-image-accent {
        left: 0;
        bottom: 0;
        width: 140px;
        height: 140px;
    }

    .about-experience {
        right: 20px;
        top: 20px;
        padding: 20px 24px;
    }

    .about-buttons {
        justify-content: center;
    }

    .experience-number {
        font-size: 30px;
    }

    .about-content {
        padding-right: 0;
        text-align: center;
    }

    .about-features {
        justify-content: center;
    }

    .about-feature {
        text-align: left;
    }

    /* Categories Section - Tablet */
    .categories {
        padding: 80px 0;
    }

    .categories-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 40px;
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .category-info {
        padding: 16px;
    }

    .category-name {
        font-size: 15px;
    }

    /* Product Categories Section - Tablet */
    .product-categories {
        padding: 80px 0;
    }

    .categories-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 40px;
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .category-info {
        padding: 16px;
    }

    .category-name {
        font-size: 16px;
    }

    .category-meta {
        flex-wrap: wrap;
        gap: 10px;
    }

    /* Testimonials Section - Tablet */
    .testimonials {
        padding: 80px 0;
    }

    .testimonials-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        margin-bottom: 40px;
    }

    .testimonials-google-badge {
        align-self: flex-start;
    }

    .testimonial-card {
        min-width: 300px;
        max-width: 300px;
        padding: 24px;
    }

    .testimonial-text {
        font-size: 13px;
    }

    /* Why Choose Us Section - Tablet */
    .why-choose-us {
        padding: 70px 0;
    }

    .why-choose-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 40px;
    }

    .why-choose-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .why-choose-left {
        text-align: center;
    }

    .why-choose-title {
        font-size: 32px;
    }

    .why-choose-desc {
        max-width: 500px;
        margin: 0 auto 30px;
    }

    .why-choose-stats {
        justify-content: center;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .why-choose-number {
        font-size: 40px;
        min-width: 55px;
    }

    .why-choose-item {
        padding: 22px 0;
        gap: 18px;
    }

    .why-choose-item-title {
        font-size: 15px;
    }

    .why-choose-item-desc {
        font-size: 13px;
    }

    /* Partners Section - Tablet */
    .sp-partners-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .sp-partners-content {
        padding-top: 0;
    }

    .sp-desktop-btn {
        display: none;
    }

    .sp-partners-grid-container {
        display: none;
    }

    .sp-mobile-static-grid {
        display: block;
    }

    .sp-mobile-btn-wrap {
        display: block;
    }

    .sp-mobile-static-grid .sp-static-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    .logo-img {
        height: 36px;
    }

    /* Top bar - small screens */
    .top-bar-left {
        gap: 8px;
    }

    .top-bar-item {
        font-size: 11px;
    }

    .top-bar-item .top-bar-icon {
        width: 12px;
        height: 12px;
    }

    .top-bar-right .top-bar-item {
        font-size: 11px;
    }

    .top-bar-right .top-bar-item span {
        max-width: 220px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    /* Mobile nav panel narrower */
    .nav {
        width: 260px;
        right: -260px;
    }

    .hero-content {
        padding: 40px 0 60px;
    }

    .hero-label {
        font-size: 10px;
        letter-spacing: 2px;
        margin-bottom: 16px;
    }

    .hero-title {
        font-size: 26px;
        margin-bottom: 16px;
    }

    .hero-subtitle {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .hero-buttons {
        flex-direction: row;
        gap: 10px;
    }

    .hero-cta-primary,
    .hero-cta-secondary {
        padding: 12px 20px;
        font-size: 11px;
        letter-spacing: 1px;
    }

    /* About Section - Mobile */
    .about {
        padding: 60px 0;
    }

    .about-image-main img {
        height: 320px;
    }

    .about-image-accent {
        width: 110px;
        height: 110px;
    }

    .about-experience {
        padding: 14px 18px;
        right: 10px;
    }

    .about-buttons {
        flex-direction: row;
        gap: 6px;
    }

    .about-cta,
    .about-cta-secondary {
        padding: 14px 28px;
        font-size: 12px;
    }

    .experience-number {
        font-size: 26px;
    }

    .experience-text {
        font-size: 10px;
    }

    .about-title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .about-description {
        font-size: 14px;
    }

    .about-features {
        flex-direction: column;
        gap: 20px;
        align-items: start;
    }

    .about-cta {
        padding: 14px 28px;
        font-size: 12px;
    }

    /* Categories Section - Mobile */
    .categories {
        padding: 60px 0;
    }

    .categories-title {
        font-size: 28px;
    }

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

    .category-info {
        padding: 14px;
    }

    .category-name {
        font-size: 14px;
    }

    /* Product Categories Section - Mobile */
    .product-categories {
        padding: 60px 0;
    }

    .categories-title {
        font-size: 28px;
    }

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

    .category-info {
        padding: 14px;
    }

    .category-name {
        font-size: 14px;
    }

    .category-meta {
        display: none;
    }

    .category-btn {
        padding: 12px 16px;
        font-size: 11px;
    }

    .category-icon {
        width: 32px;
        height: 32px;
        top: 12px;
        left: 12px;
    }

    .category-icon svg {
        width: 16px;
        height: 16px;
    }

    .category-badge {
        padding: 4px 8px;
        font-size: 8px;
        top: 12px;
        right: 12px;
    }

    .category-image {
        padding: 20px;
    }

    /* Testimonials Section - Mobile */
    .testimonials {
        padding: 60px 0;
    }

    .testimonials-title {
        font-size: 28px;
    }

    .testimonials-google-badge {
        padding: 12px 16px;
        gap: 12px;
    }

    .rating-score {
        font-size: 20px;
    }

    .rating-stars svg {
        width: 14px;
        height: 14px;
    }

    .testimonials-track {
        gap: 16px;
        animation: none !important;
    }

    .testimonials-carousel {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
    }

    .testimonial-card {
        min-width: 280px;
        max-width: 280px;
        padding: 20px;
        scroll-snap-align: start;
    }

    .testimonial-avatar {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }

    .testimonial-name {
        font-size: 14px;
    }

    .testimonial-text {
        font-size: 13px;
    }

    .testimonials-controls {
        margin-top: 30px;
        gap: 12px;
    }

    .testimonial-arrow {
        width: 44px;
        height: 44px;
    }

    .testimonial-arrow svg {
        width: 18px;
        height: 18px;
    }

    /* Why Choose Us Section - Mobile */
    .why-choose-us {
        padding: 50px 0;
    }

    .why-choose-header {
        margin-bottom: 30px;
    }

    .why-choose-btn {
        padding: 10px 20px;
        font-size: 11px;
    }

    .why-choose-wrapper {
        gap: 30px;
    }

    .why-choose-label {
        font-size: 10px;
        letter-spacing: 2px;
        margin-bottom: 12px;
    }

    .why-choose-title {
        font-size: 24px;
    }

    .why-choose-desc {
        font-size: 13px;
        margin-bottom: 24px;
    }

    .why-choose-stats {
        flex-wrap: wrap;
        gap: 20px;
    }

    .stat-number {
        font-size: 28px;
    }

    .why-choose-number {
        font-size: 32px;
        min-width: 42px;
    }

    .why-choose-item {
        gap: 12px;
        padding: 16px 0;
    }

    .why-choose-content {
        gap: 4px;
        padding-top: 6px;
    }

    .why-choose-item-title {
        font-size: 14px;
    }

    .why-choose-item-desc {
        font-size: 12px;
        line-height: 1.6;
    }

    .stat-text {
        font-size: 11px;
    }

    .why-choose-number {
        font-size: 28px;
        min-width: 48px;
    }

    .why-choose-item {
        padding: 18px 0;
        gap: 14px;
    }

    .why-choose-item:hover {
        padding-left: 8px;
    }

    .why-choose-content {
        gap: 6px;
    }

    .why-choose-item-title {
        font-size: 14px;
    }

    .why-choose-item-desc {
        font-size: 13px;
        line-height: 1.6;
    }

    /* Partners Section - Mobile */
    .sp-partners-section {
        padding: 60px 0;
    }

    .sp-partners-container {
        padding: 0 20px;
    }

    .sp-partners-title {
        font-size: 28px;
    }

    .sp-partners-subtitle {
        font-size: 14px;
    }

    .sp-mobile-static-grid .sp-static-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .sp-mobile-static-grid .sp-partner-item {
        height: 120px;
        padding: 0.875rem;
    }

    .sp-mobile-static-grid .sp-partner-logo {
        width: 70px;
        height: 70px;
    }

    .sp-mobile-static-grid .sp-partner-name {
        font-size: 10px;
    }
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background-color: #000000;
    padding: 70px 0 0;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
    gap: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(250, 250, 250, 0.08);
}

.footer-brand {
    padding-right: 20px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 24px;
}

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

.footer-desc {
    font-size: 14px;
    color: rgba(250, 250, 250, 0.6);
    line-height: 1.8;
    margin-bottom: 28px;
}

.footer-social {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.social-link {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(250, 250, 250, 0.1);
    border-radius: 50%;
    color: var(--color-white);
    font-size: 16px;
    transition: all var(--transition-base);
}

.social-link:hover {
    background-color: var(--color-gold);
    color: var(--color-black);
    transform: translateY(-3px);
}

.social-link i {
    font-size: 16px;
}

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

.footer-heading {
    font-family: var(--font-secondary);
    font-size: 16px;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 28px;
    position: relative;
    padding-bottom: 14px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 35px;
    height: 3px;
    background-color: var(--color-gold);
    border-radius: 2px;
}

.footer-list {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.footer-list li a {
    font-size: 14px;
    color: rgba(250, 250, 250, 0.6);
    transition: all var(--transition-base);
    display: inline-block;
}

.footer-list li a:hover {
    color: var(--color-white);
    transform: translateX(5px);
}

/* Contact List Styles */
.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.contact-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-gold);
    border-radius: 10px;
    color: #000000;
}

.contact-icon i {
    font-size: 18px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--color-white);
    letter-spacing: 0.5px;
}

.contact-value {
    font-size: 13px;
    color: rgba(250, 250, 250, 0.6);
    line-height: 1.5;
    transition: color var(--transition-base);
}

a.contact-value:hover {
    color: var(--color-gold);
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0;
}

.footer-copyright {
    font-size: 13px;
    color: rgba(250, 250, 250, 0.5);
}

.footer-copyright a {
    color: var(--color-gold);
    font-weight: 500;
    transition: color var(--transition-base);
}

.footer-copyright a:hover {
    color: var(--color-white);
}

.footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-tagline-bottom {
    font-size: 13px;
    color: rgba(250, 250, 250, 0.5);
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-tagline-bottom i {
    font-size: 10px;
    color: var(--color-gold);
}

.footer-designed {
    font-size: 13px;
    color: rgba(250, 250, 250, 0.5);
}

.footer-designed a {
    color: var(--color-gold);
    font-weight: 500;
    transition: color var(--transition-base);
}

.footer-designed a:hover {
    color: var(--color-white);
}

/* Footer Responsive */
@media (max-width: 1200px) {
    .footer-main {
        grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
        gap: 35px;
    }
}

@media (max-width: 1024px) {
    .footer {
        padding: 60px 0 0;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        padding-bottom: 40px;
    }

    .footer-brand {
        grid-column: span 2;
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 50px 0 0;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 36px;
        padding-bottom: 36px;
    }

    .footer-brand {
        grid-column: span 1;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }

    .footer-bottom-right {
        flex-direction: column;
        gap: 4px;
    }

    .footer-tagline-bottom,
    .footer-designed {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 40px 0 0;
    }

    .footer-main {
        gap: 30px;
        padding-bottom: 30px;
    }

    .footer-logo-img {
        height: 45px;
    }

    .footer-desc {
        font-size: 13px;
    }

    .footer-heading {
        font-size: 15px;
        margin-bottom: 22px;
    }

    .footer-list li a {
        font-size: 13px;
    }

    .social-link {
        width: 38px;
        height: 38px;
    }

    .social-link i {
        font-size: 14px;
    }

    .contact-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        border-radius: 8px;
    }

    .contact-icon i {
        font-size: 16px;
    }

    .contact-label {
        font-size: 11px;
    }

    .contact-value {
        font-size: 12px;
    }

    .footer-bottom {
        padding: 18px 0;
        gap: 10px;
    }

    .footer-copyright,
    .footer-tagline-bottom,
    .footer-designed {
        font-size: 11px;
    }

    .footer-bottom {
        gap: 8px;
    }

    .footer-bottom-right {
        gap: 3px;
    }
}

/* ============================================
   Enquiry CTA Section
   ============================================ */
.enquiry-section {
    padding: 80px 0;
    background-color: var(--color-black);
    position: relative;
    border-top: 1px solid rgba(250, 250, 250, 0.05);
}

.enquiry-box {
    background: linear-gradient(135deg, rgba(30, 30, 30, 1) 0%, rgba(20, 20, 20, 1) 100%);
    border: 1px solid rgba(243, 192, 8, 0.2);
    border-radius: 20px;
    padding: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.enquiry-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(243, 192, 8, 0.05), transparent 60%);
    z-index: 1;
}

.enquiry-content {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    max-width: 700px;
    position: relative;
    z-index: 2;
}

.enquiry-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(243, 192, 8, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(243, 192, 8, 0.3);
}

.enquiry-icon svg {
    width: 28px;
    height: 28px;
    color: var(--color-gold);
}

.enquiry-text {
    flex: 1;
}

.enquiry-title {
    font-family: var(--font-primary);
    font-size: 28px;
    font-weight: 500;
    color: var(--color-white);
    margin-bottom: 12px;
}

.enquiry-desc {
    font-size: 15px;
    color: var(--color-white-soft);
    line-height: 1.6;
}

.enquiry-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.enquiry-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.enquiry-btn svg {
    width: 18px;
    height: 18px;
}

.enquiry-btn.primary {
    background-color: var(--color-gold);
    color: var(--color-black);
    border: 2px solid var(--color-gold);
}

.enquiry-btn.primary:hover {
    background-color: transparent;
    color: var(--color-gold);
    border-color: var(--color-gold);
    transform: translateY(-3px);
}

.enquiry-btn.secondary {
    background-color: transparent;
    color: var(--color-white);
    border: 2px solid rgba(250, 250, 250, 0.2);
}

.enquiry-btn.secondary:hover {
    border-color: var(--color-white);
    background-color: var(--color-white);
    color: var(--color-black);
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 992px) {
    .enquiry-box {
        flex-direction: column;
        align-items: flex-start;
        padding: 40px;
    }

    .enquiry-actions {
        width: 100%;
        justify-content: flex-start;
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .enquiry-content {
        flex-direction: column;
        gap: 20px;
    }

    .enquiry-icon {
        width: 50px;
        height: 50px;
    }

    .enquiry-title {
        font-size: 24px;
    }

    .enquiry-actions {
        flex-direction: column;
        width: 100%;
    }

    .enquiry-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   Testimonials Dark Theme (Collections Page)
   ============================================ */
.testimonials-dark {
    background-color: var(--color-black) !important;
}

.testimonials-dark .testimonials-title {
    color: var(--color-white);
}

.testimonials-dark .rating-count {
    color: rgba(255, 255, 255, 0.7);
}

.testimonials-dark .testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.testimonials-dark .testimonial-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--color-gold);
}

.testimonials-dark .testimonial-name {
    color: var(--color-white);
}

.testimonials-dark .testimonial-designation {
    color: rgba(255, 255, 255, 0.6);
}

.testimonials-dark .testimonial-text {
    color: rgba(255, 255, 255, 0.8);
}

.testimonials-dark .testimonial-arrow {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    color: var(--color-white);
}

.testimonials-dark .testimonial-arrow:hover {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-black);
}

/* ============================================
   Enquiry CTA Section with Image
   ============================================ */
.enquiry-cta-section {
    padding: 100px 0;
    background: var(--color-white);
}

.enquiry-cta-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.enquiry-cta-content {
    display: flex;
    flex-direction: column;
}

.enquiry-cta-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-gold);
    margin-bottom: 16px;
}

.enquiry-cta-title {
    font-family: var(--font-primary);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 500;
    color: var(--color-black);
    margin-bottom: 20px;
    line-height: 1.2;
}

.enquiry-cta-desc {
    font-size: 16px;
    color: rgba(30, 30, 30, 0.7);
    line-height: 1.7;
    margin-bottom: 30px;
}

.enquiry-cta-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.enquiry-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--color-black);
    font-weight: 500;
}

.enquiry-feature i {
    color: var(--color-gold);
    font-size: 18px;
}

.enquiry-cta-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.enquiry-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.enquiry-cta-btn i {
    font-size: 18px;
}

.enquiry-cta-btn.primary {
    background: var(--color-gold);
    color: var(--color-black);
    border: 2px solid var(--color-gold);
}

.enquiry-cta-btn.primary:hover {
    background: transparent;
    color: var(--color-gold);
    transform: translateY(-3px);
}

.enquiry-cta-btn.secondary {
    background: #25D366;
    color: var(--color-white);
    border: 2px solid #25D366;
}

.enquiry-cta-btn.secondary:hover {
    background: #1da851;
    border-color: #1da851;
    transform: translateY(-3px);
}

.enquiry-cta-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.enquiry-cta-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}

.enquiry-image-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: var(--color-gold);
    padding: 16px 24px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.enquiry-image-badge .badge-number {
    font-family: var(--font-primary);
    font-size: 28px;
    font-weight: 700;
    color: var(--color-black);
    line-height: 1;
}

.enquiry-image-badge .badge-text {
    font-size: 11px;
    font-weight: 600;
    color: var(--color-black);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Enquiry CTA Responsive */
@media (max-width: 992px) {
    .enquiry-cta-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .enquiry-cta-content {
        text-align: center;
        align-items: center;
    }

    .enquiry-cta-features {
        align-items: center;
    }

    .enquiry-cta-buttons {
        justify-content: center;
    }

    .enquiry-cta-image {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .enquiry-cta-section {
        padding: 60px 0;
    }

    .enquiry-cta-title {
        font-size: 26px;
    }

    .enquiry-cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .enquiry-cta-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
    }

    .enquiry-cta-image img {
        height: 300px;
    }

    .enquiry-image-badge {
        bottom: 16px;
        left: 16px;
        padding: 12px 18px;
    }

    .enquiry-image-badge .badge-number {
        font-size: 22px;
    }

    .enquiry-image-badge .badge-text {
        font-size: 10px;
    }
}

/* ============================================
   Floating WhatsApp Button
   ============================================ */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
}

.floating-btn {
    position: relative;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.floating-btn:hover {
    transform: scale(1.1);
}

.floating-btn svg {
    width: 24px;
    height: 24px;
    position: relative;
    z-index: 2;
}

/* WhatsApp button */
.whatsapp-btn {
    background-color: #25D366;
    color: #fff;
    box-shadow: 0 4px 18px rgba(37, 211, 102, 0.5);
}

.whatsapp-btn:hover {
    background-color: #1ebe57;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.6);
}

/* Wave rings using extra elements */
.whatsapp-btn::before,
.whatsapp-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: rgba(37, 211, 102, 0.35);
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
    z-index: -1;
}

.whatsapp-btn::before {
    animation: waveExpand 3s ease-out infinite;
}

.whatsapp-btn::after {
    animation: waveExpand 3s ease-out 1s infinite;
}

@keyframes waveExpand {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        opacity: 0.2;
    }
    100% {
        transform: translate(-50%, -50%) scale(2.2);
        opacity: 0;
    }
}

.whatsapp-btn:hover::before,
.whatsapp-btn:hover::after {
    animation: none;
    opacity: 0;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .floating-buttons {
        bottom: 20px;
        right: 16px;
    }

    .floating-btn {
        width: 46px;
        height: 46px;
    }

    .floating-btn svg {
        width: 22px;
        height: 22px;
    }
}

@media (max-width: 480px) {
    .floating-buttons {
        bottom: 16px;
        right: 14px;
    }

    .floating-btn {
        width: 44px;
        height: 44px;
    }

    .floating-btn svg {
        width: 20px;
        height: 20px;
    }
}