/* ========================================
   HoodEcho - Design System
   Theme: Purple/Pink + White
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

/* ---- CSS Variables ---- */
:root {
    --primary: #9B59B6;
    --primary-light: #C39BD3;
    --primary-dark: #7D3C98;
    --accent: #E91E8C;
    --accent-light: #F06ABC;
    --gradient: linear-gradient(135deg, #9B59B6 0%, #E91E8C 100%);
    --gradient-hover: linear-gradient(135deg, #E91E8C 0%, #9B59B6 100%);
    --bg-dark: #0A0A0F;
    --bg-dark-2: #12121A;
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-glass: rgba(155, 89, 182, 0.08);
    --bg-white: #FAFAFA;
    --bg-white-2: #F0F0F5;
    --text-light: #FFFFFF;
    --text-light-muted: rgba(255, 255, 255, 0.65);
    --text-dark: #1A1A2E;
    --text-dark-muted: #6C6C80;
    --border-light: rgba(255, 255, 255, 0.08);
    --border-dark: rgba(0, 0, 0, 0.08);
    --glow-purple: 0 0 30px rgba(155, 89, 182, 0.3);
    --glow-pink: 0 0 30px rgba(233, 30, 140, 0.3);
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    outline: none;
    font-family: inherit;
    transition: var(--transition);
}

input,
select {
    font-family: inherit;
    outline: none;
    transition: var(--transition);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---- Scrollbar ---- */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient);
    border-radius: 10px;
}

/* ========================================
   HEADER / NAVIGATION
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
    background: transparent;
}

.header.scrolled {
    background: rgba(10, 10, 15, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    padding: 10px 0;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.logo-name {
    font-family: 'Outfit', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
    line-height: 1.1;
}

.logo-tagline {
    font-size: 0.65rem;
    color: var(--text-light-muted);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 300;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-links a {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-light-muted);
    position: relative;
    padding: 4px 0;
    letter-spacing: 0.3px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--text-light);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--bg-glass);
    border: 1px solid var(--border-light);
    color: var(--text-light);
    font-size: 1.1rem;
    position: relative;
    transition: var(--transition);
}

.nav-icon:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--glow-purple);
}

.cart-count {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 18px;
    height: 18px;
    background: var(--accent);
    border-radius: 50%;
    font-size: 0.65rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 2px 8px rgba(233, 30, 140, 0.4);
}

.btn-cta {
    padding: 10px 24px;
    background: var(--gradient);
    border: none;
    border-radius: 50px;
    color: white;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.btn-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.btn-cta:hover::before {
    left: 100%;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(155, 89, 182, 0.4);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
    padding: 6px;
}

.hamburger span {
    width: 26px;
    height: 2px;
    background: var(--text-light);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ========================================
   HERO FULLSCREEN
   ======================================== */
.hero-fullscreen {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 650px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-bg-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center right;
    opacity: 0;
    transform: scale(1.08);
    transition: opacity 1.2s ease, transform 6s ease;
}

.hero-bg-slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(90deg,
            rgba(10, 10, 15, 0.92) 0%,
            rgba(10, 10, 15, 0.7) 40%,
            rgba(10, 10, 15, 0.2) 70%,
            transparent 100%);
}

.hero-fs-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    padding-top: 80px;
    max-width: 100%;
    width: 100%;
    margin: 0;
    padding-left: 5vw;
    padding-right: 0;
}

.hero-fs-text {
    max-width: 600px;
}

.hero-fs-title {
    font-family: 'Outfit', sans-serif;
    font-size: 5.5rem;
    font-weight: 900;
    line-height: 1.0;
    margin-bottom: 24px;
    letter-spacing: -3px;
    text-transform: uppercase;
    color: var(--text-light);
}

.hero-fs-title .gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-fs-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 460px;
}

.hero-fs-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

/* ========================================
   HERO SECTION (legacy - kept for compatibility)
   ======================================== */
/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--bg-dark);
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(155, 89, 182, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 8s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(233, 30, 140, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 10s ease-in-out infinite reverse;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.2);
        opacity: 1;
    }
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    z-index: 2;
    padding-top: 100px;
}

.hero-content {
    flex: 1;
    max-width: 520px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: var(--bg-glass);
    border: 1px solid var(--border-light);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--primary-light);
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.hero-badge span {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    animation: blink 2s ease-in-out infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: 3.8rem;
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 20px;
    letter-spacing: -1.5px;
}

.hero-title .gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.05rem;
    color: var(--text-light-muted);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 440px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    padding: 14px 36px;
    background: var(--gradient);
    border: none;
    border-radius: 50px;
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(155, 89, 182, 0.4);
}

.btn-secondary {
    padding: 14px 36px;
    background: transparent;
    border: 1px solid var(--border-light);
    border-radius: 50px;
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: var(--glow-purple);
}

/* Hero Slider */
.hero-slider {
    flex: 1;
    max-width: 520px;
    position: relative;
}

.slider-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/5;
    background: var(--bg-dark-2);
    border: 1px solid var(--border-light);
    box-shadow: var(--glow-purple);
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(1.05);
    transition: var(--transition-slow);
}

.slide.active {
    opacity: 1;
    transform: scale(1);
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 24px 24px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
}

.slide-info h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.slide-info p {
    font-size: 0.8rem;
    color: var(--text-light-muted);
}

.slide-info .price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent-light);
    margin-top: 8px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-light);
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.slider-dot.active {
    background: var(--gradient);
    width: 30px;
    border-radius: 5px;
    box-shadow: var(--glow-purple);
}

/* ========================================
   SECTION COMMON
   ======================================== */
section {
    padding: 100px 0;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-light);
    margin-bottom: 16px;
}

.section-label::before {
    content: '';
    width: 30px;
    height: 2px;
    background: var(--gradient);
    border-radius: 2px;
}

.section-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-light-muted);
    max-width: 600px;
    line-height: 1.7;
}

/* Light sections */
.section-light {
    background: var(--bg-white);
    color: var(--text-dark);
}

.section-light .section-subtitle {
    color: var(--text-dark-muted);
}

.section-light .section-label {
    color: var(--primary);
}

.section-light .about-text p {
    color: var(--text-dark-muted);
}

.section-light .about-text strong {
    color: var(--text-dark);
}

.section-light .stat {
    background: rgba(155, 89, 182, 0.06);
    border: 1px solid rgba(155, 89, 182, 0.15);
}

.section-light .stat-label {
    color: var(--text-dark-muted);
}

.section-light .about-image {
    border-color: rgba(0, 0, 0, 0.1);
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about {
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 50px;
}

.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    aspect-ratio: 3/4;
    border: 1px solid var(--border-light);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light-muted);
    margin-bottom: 24px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 36px;
}

.stat {
    text-align: center;
    padding: 20px;
    background: var(--bg-glass);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
}

.stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-light-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

/* ========================================
   QR CODE / SCAN SECTION
   ======================================== */
.scan-section {
    background: var(--bg-dark-2);
    position: relative;
    overflow: hidden;
}

.scan-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(155, 89, 182, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.scan-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 50px;
}

.scan-content h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.scan-content h3 .gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.scan-content p {
    font-size: 1rem;
    color: var(--text-light-muted);
    line-height: 1.8;
    margin-bottom: 16px;
}

.scan-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 28px;
}

.scan-feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 20px;
    background: var(--bg-glass);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.scan-feature:hover {
    border-color: var(--primary);
    transform: translateX(8px);
}

.scan-feature-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: var(--gradient);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.scan-feature h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.scan-feature p {
    font-size: 0.82rem;
    color: var(--text-light-muted);
    margin: 0;
    line-height: 1.5;
}

.scan-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-light);
    box-shadow: var(--glow-purple);
    aspect-ratio: 3/4;
}

.scan-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ========================================
   MATERIALS SECTION
   ======================================== */
.materials {
    position: relative;
}

.materials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.material-card {
    padding: 36px 28px;
    background: var(--bg-glass);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.material-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: var(--transition);
}

.material-card:hover::before {
    transform: scaleX(1);
}

.material-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: var(--glow-purple);
}

.material-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: var(--gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.material-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.material-card p {
    font-size: 0.88rem;
    color: var(--text-light-muted);
    line-height: 1.6;
}

.material-value {
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 12px 0 4px;
}

/* ========================================
   PRODUCTS / GALLERY SECTION
   ======================================== */
.products {
    background: var(--bg-white);
    color: var(--text-dark);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.product-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: white;
    border: 1px solid var(--border-dark);
    transition: var(--transition);
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(155, 89, 182, 0.15);
    border-color: var(--primary-light);
}

.product-image {
    aspect-ratio: 4/5;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(transparent 50%, rgba(10, 10, 15, 0.8));
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: flex-end;
    padding: 24px;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-overlay .btn-primary {
    width: 100%;
    text-align: center;
    padding: 12px;
    font-size: 0.85rem;
}

.product-info {
    padding: 20px 24px;
}

.product-name {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.product-song {
    font-size: 0.82rem;
    color: var(--text-dark-muted);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
}

.product-price {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Product Slider */
.products-slider {
    position: relative;
    max-width: 500px;
    margin: 50px auto 0;
    overflow: hidden;
}

.product-slide {
    display: none;
    animation: fadeSlide 0.5s ease;
}

.product-slide.active {
    display: block;
}

@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.products-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 28px;
}

.p-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: var(--transition);
}

.p-dot:hover {
    background: var(--primary-light);
}

.p-dot.active {
    background: var(--gradient);
    width: 32px;
    border-radius: 6px;
    box-shadow: 0 0 12px rgba(155, 89, 182, 0.4);
}

/* ========================================
   QUOTE SECTION
   ======================================== */
.quote-section {
    background: var(--bg-dark);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.quote-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(233, 30, 140, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.quote-icon {
    font-size: 3rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 24px;
}

.quote-text {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.4;
    max-width: 700px;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
}

.quote-text .gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.quote-author {
    font-size: 0.9rem;
    color: var(--text-light-muted);
    font-style: italic;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--bg-dark-2);
    padding: 80px 0 30px;
    border-top: 1px solid var(--border-light);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-brand .logo-name {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 0.88rem;
    color: var(--text-light-muted);
    line-height: 1.7;
    margin-top: 8px;
    max-width: 300px;
}

.footer-col h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-light);
}

.footer-col a {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light-muted);
    padding: 6px 0;
}

.footer-col a:hover {
    color: var(--primary-light);
    transform: translateX(4px);
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-glass);
    border: 1px solid var(--border-light);
    border-radius: 10px;
    font-size: 1.1rem;
    transition: var(--transition);
    padding: 0;
}

.footer-social a:hover {
    background: var(--gradient);
    border-color: transparent;
    transform: translateY(-4px);
    box-shadow: var(--glow-purple);
}

.footer-bottom {
    border-top: 1px solid var(--border-light);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--text-light-muted);
}

/* ========================================
   CART PAGE
   ======================================== */
.cart-page {
    padding-top: 120px;
    min-height: 100vh;
}

.cart-header {
    text-align: center;
    margin-bottom: 40px;
}

.cart-header h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
}

.cart-header p {
    color: var(--text-light-muted);
    margin-top: 8px;
}

.cart-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Cart Items */
.cart-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cart-empty {
    text-align: center;
    padding: 60px 20px;
    background: var(--bg-glass);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
}

.cart-empty-icon {
    font-size: 3rem;
    margin-bottom: 16px;
    opacity: 0.4;
}

.cart-empty h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.cart-empty p {
    color: var(--text-light-muted);
    font-size: 0.9rem;
}

.cart-item {
    display: flex;
    gap: 24px;
    padding: 24px;
    background: var(--bg-glass);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.cart-item:hover {
    border-color: var(--primary);
}

.cart-item-image {
    width: 120px;
    height: 150px;
    border-radius: var(--radius-md);
    overflow: hidden;
    flex-shrink: 0;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details {
    flex: 1;
}

.cart-item-name {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.cart-item-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 16px;
}

.cart-item-meta span {
    font-size: 0.82rem;
    color: var(--text-light-muted);
    padding: 4px 12px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 50px;
}

.cart-item-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.qty-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-glass);
    color: var(--text-light);
    font-size: 1rem;
    border: none;
    transition: var(--transition);
}

.qty-btn:hover {
    background: var(--primary);
}

.qty-value {
    width: 44px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 600;
    background: var(--bg-dark-2);
    color: var(--text-light);
}

.cart-item-price {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cart-item-remove {
    background: none;
    border: none;
    color: var(--text-light-muted);
    cursor: pointer;
    font-size: 1.2rem;
    padding: 4px;
    transition: var(--transition);
    margin-left: 16px;
}

.cart-item-remove:hover {
    color: #e74c3c;
}

/* Cart Summary */
.cart-summary {
    padding: 30px;
    background: var(--bg-glass);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 100px;
}

.cart-summary h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-light);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    font-size: 0.9rem;
}

.summary-row span:first-child {
    color: var(--text-light-muted);
}

.summary-row.total {
    border-top: 1px solid var(--border-light);
    margin-top: 12px;
    padding-top: 16px;
    font-weight: 700;
    font-size: 1.1rem;
}

.summary-row.total span:last-child {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.free-shipping {
    color: #2ecc71 !important;
    font-weight: 500;
}

/* ========================================
   CHECKOUT FORM
   ======================================== */
.checkout-section {
    margin-top: 40px;
}

.checkout-section h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkout-section h3 span {
    width: 28px;
    height: 28px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group.full {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-light-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select {
    padding: 14px 18px;
    background: var(--bg-dark-2);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    color: var(--text-light);
    font-size: 0.9rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(155, 89, 182, 0.15);
}

.form-group input::placeholder {
    color: var(--text-light-muted);
    opacity: 0.5;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%239B59B6' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

/* Payment Method */
.payment-methods {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.payment-method {
    flex: 1;
    padding: 16px;
    background: var(--bg-dark-2);
    border: 2px solid var(--border-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-light-muted);
}

.payment-method.active,
.payment-method:hover {
    border-color: var(--primary);
    color: var(--text-light);
    box-shadow: var(--glow-purple);
}

.payment-method img {
    height: 24px;
}

.btn-order {
    width: 100%;
    padding: 16px;
    background: var(--gradient);
    border: none;
    border-radius: var(--radius-md);
    color: white;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 24px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.btn-order::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.6s;
}

.btn-order:hover::before {
    left: 100%;
}

.btn-order:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(155, 89, 182, 0.4);
}

.secure-badge {
    text-align: center;
    margin-top: 16px;
    font-size: 0.78rem;
    color: var(--text-light-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* ========================================
   ANIMATIONS - Fade in on scroll
   ======================================== */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ========================================
   RESPONSIVE
   ======================================== */

/* --- Tablet (max 1024px) --- */
@media (max-width: 1024px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-subtitle {
        margin: 0 auto 36px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-slider {
        max-width: 400px;
    }

    .hero-fs-title {
        font-size: 4rem;
        letter-spacing: -2px;
    }

    .hero-fs-content {
        padding-left: 40px;
    }

    .about-grid,
    .scan-grid {
        grid-template-columns: 1fr;
    }

    .scan-image {
        order: -1;
        max-width: 400px;
        margin: 0 auto;
    }

    .materials-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .cart-layout {
        grid-template-columns: 1fr;
    }

    .products-slider {
        max-width: 420px;
    }
}

/* --- Mobile (max 768px) --- */
@media (max-width: 768px) {
    html {
        font-size: 15px;
    }

    .container {
        padding: 0 20px;
    }

    section {
        padding: 60px 0;
    }

    /* Nav */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 32px;
        transition: var(--transition);
        z-index: 999;
        border-left: 1px solid var(--border-light);
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links a {
        font-size: 1.2rem;
    }

    .hamburger {
        display: flex;
    }

    .btn-cta {
        display: none;
    }

    /* Hero Fullscreen */
    .hero-fullscreen {
        min-height: 100vh;
        min-height: 100svh;
    }

    .hero-fs-content {
        padding-left: 24px;
        padding-right: 24px;
        align-items: center;
        padding-top: 100px;
        padding-bottom: 40px;
    }

    .hero-fs-title {
        font-size: 3rem;
        letter-spacing: -1.5px;
    }

    .hero-fs-subtitle {
        font-size: 0.95rem;
        max-width: 100%;
    }

    .hero-overlay {
        background: linear-gradient(0deg,
                rgba(10, 10, 15, 0.95) 0%,
                rgba(10, 10, 15, 0.75) 40%,
                rgba(10, 10, 15, 0.45) 100%);
    }

    .hero-title {
        font-size: 2.6rem;
    }

    .hero-badge {
        font-size: 0.72rem;
    }

    /* About */
    .about-image {
        max-width: 350px;
        margin: 0 auto;
    }

    .about-stats {
        flex-wrap: wrap;
        gap: 12px;
    }

    .stat {
        flex: 1;
        min-width: 90px;
    }

    /* Scan */
    .scan-feature {
        gap: 12px;
    }

    .scan-feature-icon {
        width: 44px;
        height: 44px;
        min-width: 44px;
        font-size: 1rem;
    }

    /* Materials */
    .materials-grid {
        grid-template-columns: 1fr;
    }

    .material-card {
        padding: 28px 20px;
    }

    /* Products */
    .section-title {
        font-size: 2rem;
    }

    .products-slider {
        max-width: 100%;
    }

    .product-card {
        border-radius: var(--radius-md);
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .products-dots {
        margin-top: 20px;
    }

    /* Quote */
    .quote-text {
        font-size: 1.3rem;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    /* Cart */
    .cart-page {
        padding-top: 100px;
    }

    .cart-header h1 {
        font-size: 1.6rem;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .cart-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .cart-item-image {
        width: 100%;
        max-width: 200px;
        height: 200px;
    }

    .cart-item-bottom {
        flex-direction: column;
        gap: 16px;
    }

    .cart-summary {
        margin-bottom: 20px;
    }

    .checkout-section {
        padding: 20px;
    }
}

/* --- Small phone (max 480px) --- */
@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    .hero-fs-title {
        font-size: 2.4rem;
        letter-spacing: -1px;
    }

    .hero-fs-subtitle {
        font-size: 0.88rem;
        margin-bottom: 28px;
    }

    .hero-fs-content {
        padding-left: 18px;
        padding-right: 18px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
        padding: 14px 20px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-bg-slide {
        background-position: 30% center;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .section-subtitle {
        font-size: 0.88rem;
    }

    .section-label {
        font-size: 0.72rem;
    }

    .about-text p {
        font-size: 0.9rem;
    }

    .stat-number {
        font-size: 1.4rem;
    }

    .stat-label {
        font-size: 0.68rem;
    }

    .scan-feature h4 {
        font-size: 0.9rem;
    }

    .scan-feature p {
        font-size: 0.78rem;
    }

    .material-icon {
        width: 56px;
        height: 56px;
        font-size: 1.4rem;
    }

    .material-value {
        font-size: 1.8rem;
    }

    .product-info {
        padding: 16px;
    }

    .product-name {
        font-size: 1rem;
    }

    .quote-text {
        font-size: 1.1rem;
    }

    .footer-brand p {
        font-size: 0.85rem;
    }

    .payment-methods {
        flex-direction: column;
    }

    .p-dot {
        width: 10px;
        height: 10px;
    }

    .p-dot.active {
        width: 28px;
    }
}