:root {
    /* Color Palette - Bold Orange & Black */
    --bg-main: #0A0A0A;
    --bg-surface: #1A1A1A;
    --bg-surface-light: #2A2A2A;

    --accent: #FF6B35;
    --accent-secondary: #FF8C42;
    --accent-gradient: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
    --accent-glow: rgba(255, 107, 53, 0.6);

    --text-primary: #FFFFFF;
    --text-secondary: rgba(255, 255, 255, 0.8);
    --text-muted: rgba(255, 255, 255, 0.5);

    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 107, 53, 0.15);
    --glass-blur: blur(16px);

    --success: #10b981;
    --error: #ef4444;

    /* Spacing & Sizing */
    --container-max: 1300px;
    --header-height: 80px;
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 28px;
    --radius-xl: 40px;

    /* Shadows & Effects */
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 10px 35px rgba(0, 0, 0, 0.6);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.7);
    --shadow-orange: 0 10px 40px rgba(255, 107, 53, 0.3);

    /* Animation Speeds */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    background: var(--bg-main);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.logo {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

/* Scrollbar Style */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-main);
}

::-webkit-scrollbar-thumb {
    background: var(--bg-surface-light);
    border-radius: 10px;
    border: 2px solid var(--bg-main);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

/* Utility Classes */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding {
    padding: 8rem 0;
}

.accent-text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.glass-card {
    background: var(--glass);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    transition: var(--transition-base);
}

.glass-card:hover {
    border-color: rgba(255, 107, 53, 0.4);
    box-shadow: var(--shadow-orange);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-base);
    border: none;
    gap: 0.75rem;
    font-size: 1rem;
}

.btn-primary {
    background: var(--accent-gradient);
    color: white;
    box-shadow: 0 10px 20px -5px var(--accent-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -5px var(--accent-glow);
}

.btn-outline {
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    background: var(--glass);
}

.btn-outline:hover {
    background: var(--glass-border);
    border-color: var(--accent);
}

.btn-whatsapp {
    background: #10b981;
    color: white;
}

.btn-gmail {
    background: #ea4335;
    color: white;
}

.btn-link {
    background: transparent;
    color: var(--accent);
    padding: 0;
}

.w-100 {
    width: 100%;
}

/* LOADER */
.loader {
    position: fixed;
    inset: 0;
    background: var(--bg-main);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease;
}

.loader-bar {
    width: 200px;
    height: 2px;
    background: var(--glass-border);
    margin-top: 2rem;
    position: relative;
    overflow: hidden;
}

.loader-progress {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 50%;
    background: var(--accent);
    animation: loading 1.5s infinite ease-in-out;
}

@keyframes loading {
    0% {
        left: -100%;
        width: 50%;
    }

    50% {
        width: 100%;
    }

    100% {
        left: 100%;
        width: 50%;
    }
}

/* HEADER */
header {
    height: var(--header-height);
    display: flex;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: var(--transition-base);
    border-bottom: 1px solid transparent;
}

header.scrolled {
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--glass-border);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-size: 1.8rem;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: -1px;
}

.logo span {
    color: var(--accent);
}

.nav-links {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-fast);
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition-base);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.cart-icon {
    position: relative;
    cursor: pointer;
    font-size: 1.4rem;
    color: var(--text-primary);
    transition: var(--transition-fast);
}

.cart-icon:hover {
    color: var(--accent);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background: var(--accent);
    color: white;
    font-size: 0.7rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* HERO SECTION */
.hero {
    min-height: 100vh;
    padding-top: var(--header-height);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: radial-gradient(circle at top right, rgba(255, 107, 53, 0.1), transparent 40%),
        radial-gradient(circle at bottom left, rgba(255, 107, 53, 0.05), transparent 40%);
}

/* Remove old blobs or make them very subtle if needed, 
   but for this clean look we rely on the radial-gradient above. */
.hero-blob {
    display: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.new-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 50px;
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease;
}

.hero-content h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 500px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    animation: fadeInUp 1s ease 0.2s;
}

.trust-avatars {
    display: flex;
}

.trust-avatars img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--bg-main);
    margin-left: -10px;
}

.trust-avatars img:first-child {
    margin-left: 0;
}

.trust-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.glow-effect {
    position: absolute;
    width: 80%;
    height: 80%;
    background: var(--accent);
    filter: blur(120px);
    opacity: 0.2;
    border-radius: 50%;
    z-index: 0;
}

.hero-main-img {
    width: 100%;
    max-width: 550px;
    border-radius: var(--radius-xl);
    position: relative;
    z-index: 1;
    transform: rotateY(-10deg) rotateX(5deg);
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-slow);
}

.hero-visual:hover .hero-main-img {
    transform: rotateY(0) rotateX(0);
}

.float-info {
    position: absolute;
    padding: 1rem 1.25rem;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(20, 20, 20, 0.8) !important;
    /* Overriding glass-card slightly for readability */
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    animation: float 5s ease-in-out infinite;
}

.icon-box {
    width: 40px;
    height: 40px;
    background: var(--accent-gradient);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.float-info h5 {
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.float-info span {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-1 {
    top: 20%;
    left: 0;
    transform: translate(-30%, 0);
}

.info-2 {
    bottom: 20%;
    right: 0;
    transform: translate(20%, 0);
    animation-delay: 2.5s;
}

/* PRODUCT CARDS */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-base);
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.05);
}

.product-img {
    height: 320px;
    position: relative;
    overflow: hidden;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.product-card:hover .product-img img {
    transform: scale(1.1);
}

.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--accent-gradient);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
}

.product-info {
    padding: 2rem;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.product-title {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-features {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    height: 2.7rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
}

.add-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--glass-border);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-base);
}

.add-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: rotate(90deg);
}

/* SIDEBARS */
.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -450px;
    width: 450px;
    height: 100%;
    z-index: 1002;
    transition: var(--transition-base);
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.cart-sidebar.active {
    right: 0;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding-right: 1rem;
}

.cart-footer {
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
}

.cart-total-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    font-size: 1.2rem;
    font-weight: 700;
}

/* FOOTER */
footer {
    background: var(--bg-surface);
    padding: 6rem 0 3rem;
    border-top: 1px solid var(--glass-border);
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 6rem;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-desc {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 300px;
}

.footer-column h3 {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition-base);
}

.social-link:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: translateY(-3px);
}

.footer-bottom {
    padding-top: 3rem;
    border-top: 1px solid var(--glass-border);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* CONTACT PAGE */
.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.form-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 1rem;
    color: white;
    font-family: inherit;
    transition: var(--transition-base);
}

.form-input:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.08);
}

/* ANIMATIONS */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.animate-up {
    animation: fadeInUp 0.8s ease forwards;
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

/* PAGES */
.page {
    display: none;
}

.page.active {
    display: block;
    animation: fadeInUp 0.6s ease;
}

/* FLOATING ACTIONS */
.floating-whatsapp {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    transition: var(--transition-base);
}

.floating-whatsapp:hover {
    transform: scale(1.1) rotate(10deg);
}

.go-top {
    position: fixed;
    bottom: 2rem;
    right: 7rem;
    width: 60px;
    height: 60px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    color: var(--text-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
}

.go-top.active {
    opacity: 1;
    visibility: visible;
}

/* ============================================
   ABOUT SECTION MODERN
   ============================================ */
.about-container-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
    width: fit-content;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.about-feature-item {
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.about-feature-item i {
    font-size: 1.5rem;
    color: var(--accent);
    background: rgba(255, 107, 53, 0.1);
    padding: 10px;
    border-radius: 10px;
}

.about-feature-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.about-feature-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.about-image-wrapper {
    position: relative;
    padding: 2rem;
}

.image-frame {
    position: relative;
    padding: 1rem;
    border-radius: var(--radius-xl);
    z-index: 2;
    background: rgba(255, 255, 255, 0.03);
}

.about-main-img {
    width: 100%;
    border-radius: var(--radius-lg);
    display: block;
    aspect-ratio: 4/5;
    object-fit: cover;
}

.floating-stat {
    position: absolute;
    padding: 1.5rem 2rem;
    text-align: center;
    z-index: 3;
    animation: float 6s ease-in-out infinite;
    background: rgba(10, 10, 10, 0.8);
}

.stat-1 {
    top: 10%;
    right: -20px;
    border-color: var(--accent);
}

.stat-2 {
    bottom: 15%;
    left: -20px;
    animation-delay: 2s;
}

.floating-stat h3 {
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 0.25rem;
}

.floating-stat p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Fix line-clamp compatibility */
.product-title,
.product-features {
    line-clamp: 2;
}

/* Note: -webkit-line-clamp uses non-standard property, adding standard line-clamp to satisfy lint */


/* ============================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ============================================ */

/* Tablet & Small Desktop (1024px and below) */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-container-modern {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .about-content {
        align-items: center;
    }

    .about-features {
        text-align: left;
    }

    .hero-content {
        text-align: center;
    }

    .hero-content h1 {
        font-size: 3.5rem;
    }

    .hero-actions {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-image-wrapper {
        order: -1;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }

    .section-padding {
        padding: 5rem 0;
    }
}

/* Mobile & Tablet (768px and below) */
@media (max-width: 768px) {

    /* Header & Navigation */
    header {
        height: 70px;
    }

    :root {
        --header-height: 70px;
    }

    .logo {
        font-size: 1.5rem;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        display: flex;
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transition: left 0.4s ease;
        z-index: 1000;
        border-top: 1px solid var(--glass-border);
        align-items: flex-start;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links a {
        font-size: 1.3rem;
        width: 100%;
        padding: 1rem 0;
        border-bottom: 1px solid var(--glass-border);
    }

    /* Cart Icon adjustments if needed, otherwise default inherited */
    .cart-icon {
        margin-top: 0;
    }

    .mobile-toggle {
        display: block;
        z-index: 1001;
    }

    /* Hero Section */
    .hero {
        min-height: auto;
        padding: calc(70px + 2rem) 0 3rem;
    }

    .hero-container {
        gap: 2rem;
    }

    .hero-content h1 {
        font-size: 2.5rem !important;
        line-height: 1.2 !important;
        margin-bottom: 1rem !important;
    }

    .hero-content p {
        font-size: 1rem !important;
        margin-bottom: 1.5rem !important;
        max-width: 100% !important;
    }

    .hero-actions {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
        max-width: 300px;
    }

    .hero-visual {
        margin-top: 3rem;
        transform: none;
        /* Remove 3D tilt */
    }

    .hero-main-img {
        transform: none !important;
        /* Reset rotation */
        max-width: 80%;
        margin: 0 auto;
        display: block;
    }

    .float-info {
        padding: 0.75rem 1rem;
    }

    .hero-trust {
        justify-content: center;
    }

    /* Section Headers */
    .section-header {
        flex-direction: column;
        gap: 1.5rem;
        margin-bottom: 2.5rem;
        text-align: center;
    }

    .section-header h2 {
        font-size: 2rem !important;
    }

    .section-padding {
        padding: 3rem 0;
    }

    /* Products Grid */
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .floating-stat {
        padding: 1rem;
        min-width: 100px;
    }

    .stat-1 {
        top: 5%;
        right: 0;
    }

    .stat-2 {
        bottom: 5%;
        left: 0;
    }

    .product-card {
        max-width: 100%;
    }

    .product-img {
        height: 250px;
    }

    .product-info {
        padding: 1.5rem;
    }

    .product-title {
        font-size: 1.2rem;
    }

    .product-price {
        font-size: 1.3rem;
    }

    /* Features Grid */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .feature-card {
        padding: 2rem 1.5rem;
    }

    /* Footer */
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        margin-bottom: 3rem;
    }

    footer {
        padding: 4rem 0 2rem;
    }

    .footer-bottom {
        padding-top: 2rem;
        font-size: 0.85rem;
    }

    /* Cart Sidebar */
    .cart-sidebar {
        width: 100%;
        right: -100%;
        padding: 1.5rem;
    }

    .cart-sidebar.active {
        right: 0;
    }

    /* Contact Page */
    .contact-grid {
        gap: 2rem;
    }

    .contact-form {
        padding: 2rem !important;
    }

    /* Floating Actions */
    .floating-whatsapp {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 1.5rem;
        right: 1.5rem;
    }

    .go-top {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        bottom: 1.5rem;
        right: 5.5rem;
    }

    /* Bio Popup */
    .bio-content {
        max-width: 90%;
        padding: 2rem;
        margin: 1rem;
    }

    .bio-img {
        width: 120px;
        height: 120px;
    }

    .bio-name {
        font-size: 1.5rem;
    }

    /* Buttons */
    .btn {
        padding: 0.9rem 2rem;
        font-size: 0.95rem;
    }
}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero-content h1 {
        font-size: 2rem !important;
    }

    .hero-visual {
        margin-top: 2rem;
    }

    .hero-main-img {
        max-width: 100%;
    }

    .info-1 {
        left: -10px;
        transform: scale(0.9);
    }

    .info-2 {
        right: -10px;
        transform: scale(0.9);
    }

    .section-header h2 {
        font-size: 1.75rem !important;
    }

    .product-img {
        height: 200px;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .floating-whatsapp,
    .go-top {
        width: 45px;
        height: 45px;
    }

    .go-top {
        right: 5rem;
    }
}

/* SECTION HEADERS */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section-header.center-text {
    flex-direction: column;
    gap: 1rem;
}

.section-header h2 {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* FEATURES GRID */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.feature-card {
    padding: 3rem 2rem;
    text-align: center;
    transition: var(--transition-base);
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: var(--shadow-orange);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* BIO POPUP */
.bio-popup {
    position: fixed;
    inset: 0;
    z-index: 1003;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
}

.bio-popup.active {
    opacity: 1;
    visibility: visible;
}

.bio-content {
    position: relative;
    max-width: 500px;
    padding: 3rem;
    text-align: center;
    animation: fadeInUp 0.5s ease;
}

.bio-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.5rem;
    border: 4px solid var(--accent);
    box-shadow: var(--shadow-orange);
}

.bio-name {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.bio-role {
    font-size: 1.1rem;
}

.bio-text {
    line-height: 1.8;
    margin-top: 1rem;
}

/* CART ITEM STYLES */
.cart-item {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 1rem;
    margin-bottom: 1rem;
    transition: var(--transition-base);
}

.cart-item:hover {
    border-color: var(--accent);
}