@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500&family=Plus+Jakarta+Sans:wght@700;800&display=swap');

:root {
    --bg-primary: #000000;
    --bg-secondary: #09090B;
    --bg-tertiary: #18181B;

    --primary-50:  #FFF0F4;
    --primary-100: #FFE1EA;
    --primary-200: #FFC2D6;
    --primary-300: #FFA3C2;
    --primary-400: #FF85AD;
    --primary-500: #FF4F87;
    --primary-600: #E63D76;
    --primary-700: #CC2B64;
    --primary-800: #B31952;
    --primary-900: #990040;
    --primary-rgb: 255, 79, 135;

    --text-primary: #FFFFFF;
    --text-secondary: #E4E4E7;
    --text-tertiary: #A1A1AA;
    --text-quaternary: #71717A;

    --success: #22C55E;
    --info: #3B82F6;
    --warning: #F59E0B;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-secondary);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6, .display-font {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-primary);
}

h1 { font-size: 76px; font-weight: 800; line-height: 1.1; letter-spacing: -0.02em; }
h2 { font-size: 48px; font-weight: 700; line-height: 1.2; }
h3 { font-size: 24px; font-weight: 600; line-height: 1.3; }

p { font-size: 16px; font-weight: 400; line-height: 1.7; }
.body-large { font-size: 20px; }
.label { font-size: 12px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-quaternary); }

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

/* REUSABLE UTILITIES */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary {
    background: linear-gradient(
        135deg,
        var(--primary-600) 0%,
        var(--primary-500) 30%,
        var(--primary-400) 60%,
        var(--primary-500) 100%
    );
    background-size: 200% 200%;
    animation: gradient-shift 4s ease infinite;
    color: #ffffff;
    border: none;
    box-shadow: 
        0 0 0 1px rgba(var(--primary-rgb), 0.5),
        0 4px 24px rgba(var(--primary-rgb), 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    filter: brightness(1.1);
    box-shadow: 
        0 0 0 2px rgba(var(--primary-rgb), 0.8),
        0 8px 40px rgba(var(--primary-rgb), 0.6);
}

.btn-secondary {
    background: transparent;
    border: 1px solid rgba(var(--primary-rgb), 0.3);
    color: var(--text-primary);
}

.btn-secondary:hover {
    background: rgba(var(--primary-rgb), 0.1);
    border-color: rgba(var(--primary-rgb), 0.6);
}

/* ANIMATIONS */
@keyframes fade-in-up {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes scale-in {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes fade-in-rotate {
    from { opacity: 0; transform: rotate(15deg) scale(0.8); }
    to { opacity: 1; transform: rotate(0deg) scale(1); }
}

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

@keyframes float-particle {
    0%, 100% { transform: translate(0, 0); opacity: 0.4; }
    25% { transform: translate(100px, -100px); opacity: 0.8; }
    50% { transform: translate(-50px, -200px); opacity: 0.6; }
    75% { transform: translate(-100px, -100px); opacity: 0.8; }
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 
            0 0 0 1px rgba(var(--primary-rgb), 0.5),
            0 4px 24px rgba(var(--primary-rgb), 0.4),
            0 0 60px rgba(var(--primary-rgb), 0.3);
    }
    50% {
        box-shadow: 
            0 0 0 2px rgba(var(--primary-rgb), 0.8),
            0 8px 40px rgba(var(--primary-rgb), 0.6),
            0 0 80px rgba(var(--primary-rgb), 0.5);
    }
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 24px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(var(--primary-rgb), 0.1);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
    padding: 16px 0;
}

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

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-link {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 16px;
    position: relative;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-500);
    transition: width 0.3s ease;
}
.nav-link:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 24px;
    cursor: pointer;
}

/* HERO SECTION */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 800px;
    background: radial-gradient(ellipse at top, rgba(var(--primary-rgb), 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.hero-text {
    max-width: 600px;
    z-index: 10;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 100px;
    background: rgba(var(--primary-rgb), 0.1);
    border: 1px solid rgba(var(--primary-rgb), 0.2);
    color: var(--primary-400);
    font-weight: 500;
    margin-bottom: 24px;
    opacity: 0;
    animation: fade-in-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero h1 {
    margin-bottom: 24px;
    opacity: 0;
    animation: fade-in-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
}

.hero h1 span {
    background: linear-gradient(135deg, var(--primary-600) 0%, var(--primary-500) 50%, var(--primary-400) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero p {
    font-size: 20px;
    color: var(--text-tertiary);
    margin-bottom: 40px;
    opacity: 0;
    animation: fade-in-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

.hero-cta {
    display: flex;
    gap: 16px;
    opacity: 0;
    animation: scale-in 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.4s forwards;
}

.hero-visual {
    position: relative;
    opacity: 0;
    animation: fade-in-rotate 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sphere {
    width: 450px;
    height: 450px;
    position: relative;
    transform-style: preserve-3d;
    animation: float 6s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sphere img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid rgba(var(--primary-rgb), 0.3);
    box-shadow: 
        0 0 60px rgba(var(--primary-rgb), 0.4),
        0 0 120px rgba(var(--primary-rgb), 0.3),
        inset 0 0 60px rgba(var(--primary-rgb), 0.2);
}

.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -2;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-400);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary-500);
}

/* SOCIAL PROOF */
.social-proof {
    padding: 60px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    background: var(--bg-secondary);
}

.proof-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 32px;
}

.proof-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.proof-number {
    font-size: 36px;
    font-weight: 800;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--primary-500);
}

/* SECTION HEADERS */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header h2 {
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-tertiary);
    max-width: 600px;
    margin: 0 auto;
}

/* SERVICES EXPERIENCES */
.services {
    padding: 120px 0;
    background: var(--bg-primary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

/* GLASSMORPHISM CARD */
.glass-card {
    background: linear-gradient(
        135deg,
        rgba(var(--primary-rgb), 0.08) 0%,
        rgba(var(--primary-rgb), 0.04) 50%,
        rgba(var(--primary-rgb), 0.08) 100%
    );
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(var(--primary-rgb), 0.15);
    border-radius: 24px;
    padding: 32px;
    box-shadow: 
        0 4px 6px -1px rgba(0, 0, 0, 0.3),
        0 2px 4px -2px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover {
    border-color: rgba(var(--primary-rgb), 0.35);
    box-shadow: 0 25px 50px -12px rgba(var(--primary-rgb), 0.35);
    transform: translateY(-4px);
}

/* COLLECTION CARDS (Grid e-Commerce style) */
.collection-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    overflow: hidden;
    padding: 0 !important; /* Override glass-card */
    opacity: 0;
    cursor: pointer;
}

.collection-card:hover {
    border-color: rgba(var(--primary-rgb), 0.5);
    box-shadow: 0 0 40px rgba(var(--primary-rgb), 0.2);
}

.collection-image-wrapper {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
    border-radius: 24px 24px 0 0;
}

.collection-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.collection-card:hover .collection-image {
    transform: scale(1.08); /* Zoom effect */
}

.collection-hover-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.collection-card:hover .collection-hover-overlay {
    opacity: 1; /* Dim and glow effect over image */
}

.view-collection-btn {
    background: rgba(var(--primary-rgb), 0.85);
    color: white;
    padding: 12px 24px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.2);
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.collection-card:hover .view-collection-btn {
    transform: translateY(0);
}

.collection-info {
    padding: 32px 24px;
    background: transparent;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.collection-title {
    color: var(--primary-400);
    margin-bottom: 8px;
    font-size: 24px;
    font-weight: 700;
    font-family: 'Plus Jakarta Sans', sans-serif;
    transition: color 0.3s ease;
}

.collection-card:hover .collection-title {
    color: var(--text-primary);
    text-shadow: 0 0 20px rgba(var(--primary-rgb), 0.6);
}

.collection-desc {
    color: var(--text-secondary);
    font-size: 15px;
    margin: 0;
    line-height: 1.5;
}

/* ABOUT / CREATIVE PROCESS */
.about {
    padding: 120px 0;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

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

.about-visual {
    position: relative;
}

.about-visual img {
    border-radius: 24px;
    width: 100%;
    border: 1px solid rgba(var(--primary-rgb), 0.2);
    filter: drop-shadow(0 0 40px rgba(var(--primary-rgb), 0.15));
}

.glow-circle {
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--primary-500);
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.2;
    z-index: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.about-content {
    z-index: 1;
}

/* CTA FINAL */
.cta-section {
    padding: 120px 0;
    text-align: center;
    background: radial-gradient(ellipse at center, rgba(var(--primary-rgb), 0.15) 0%, var(--bg-primary) 70%);
}

.cta-box {
    max-width: 800px;
    margin: 0 auto;
}

/* FOOTER */
footer {
    background: var(--bg-secondary);
    padding: 80px 0 40px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand p {
    color: var(--text-tertiary);
    margin-top: 16px;
    max-width: 300px;
}

.footer-col h4 {
    margin-bottom: 24px;
    color: var(--text-primary);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-tertiary);
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-400);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: var(--text-quaternary);
    font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .hero h1 { font-size: 56px; }
    .hero-content { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .hero-text { margin: 0 auto; }
    .hero-cta { justify-content: center; }
    .about-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(0,0,0,0.95);
        flex-direction: column;
        padding: 24px;
        text-align: center;
        backdrop-filter: blur(24px);
    }
    .nav-links.active { display: flex; }
    .mobile-menu-toggle { display: block; }
    
    .hero h1 { font-size: 40px; }
    .hero-label { font-size: 12px; }
    .sphere { width: 300px; height: 300px; }
    .services-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; }
    .hero-cta { flex-direction: column; }
    .sphere { width: 250px; height: 250px; }
}

/* Animations Trigger Class */
.animate-in {
    animation: fade-in-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards !important;
}

/* FLOATING WHATSAPP BUTTON (Dark Luxury Glass) */
.float-whatsapp {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(18, 140, 126, 0.15); /* Subtle WA dark green */
    border: 1px solid rgba(37, 211, 102, 0.3); /* Neon WA green border */
    color: #25D366; /* Neon WA green icon */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.15);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    animation: float-wa 4s ease-in-out infinite;
    padding: 0;
}

.float-whatsapp:hover {
    background: rgba(37, 211, 102, 0.2);
    border-color: rgba(37, 211, 102, 0.7);
    color: #4dfc8e; /* Brighter neon on hover */
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 0 40px rgba(37, 211, 102, 0.4), inset 0 0 20px rgba(37, 211, 102, 0.2);
}

@keyframes float-wa {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@media (max-width: 768px) {
    .float-whatsapp {
        bottom: 24px;
        right: 24px;
        width: 56px;
        height: 56px;
        font-size: 32px;
    }
}

/* --- CART ICON IN NAVBAR --- */
.cart-icon-link {
    display: flex;
    align-items: center;
    position: relative;
    padding: 8px 16px !important;
    background: rgba(var(--primary-rgb), 0.1);
    border: 1px solid rgba(var(--primary-rgb), 0.3);
    border-radius: 100px;
    transition: all 0.3s ease;
}

.cart-icon-link:hover {
    background: rgba(var(--primary-rgb), 0.2);
    transform: translateY(-2px);
}

.cart-icon-link::after {
    display: none; /* remove hover line */
}

.cart-badge {
    position: absolute;
    top: -6px;
    right: 4px;
    background: var(--primary-500);
    color: white;
    font-size: 12px;
    font-weight: 700;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid var(--bg-primary);
}

/* --- PRODUCTOS DESTACADOS --- */
.products-section {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.product-card {
    display: flex;
    flex-direction: column;
    padding: 0;
    overflow: hidden;
    position: relative;
}

.product-image {
    width: 100%;
    height: 280px;
    background: var(--bg-primary);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Using contain for product presentation */
    padding: 16px;
    transition: transform 0.4s ease;
}

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

.product-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-grow: 1;
}

.product-title {
    font-size: 18px;
    color: var(--text-primary);
    margin: 0;
}

.product-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-400);
    margin: 0;
}

.btn-add-cart {
    width: 100%;
    margin-top: auto;
    padding: 12px;
    font-size: 14px;
    gap: 8px;
}

/* --- CART OVERLAY & SIDEBAR --- */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -450px; /* Hidden by default */
    width: 100%;
    max-width: 450px;
    height: 100vh;
    background: var(--bg-secondary);
    border-left: 1px solid rgba(var(--primary-rgb), 0.2);
    box-shadow: -10px 0 50px rgba(0,0,0,0.5);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cart-sidebar.open {
    right: 0;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.close-cart {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 24px;
    cursor: pointer;
    transition: color 0.3s;
}

.close-cart:hover {
    color: var(--primary-500);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cart-items::-webkit-scrollbar {
    width: 8px;
}

.cart-items::-webkit-scrollbar-track {
    background: transparent;
}

.cart-items::-webkit-scrollbar-thumb {
    background: rgba(var(--primary-rgb), 0.3);
    border-radius: 4px;
}

.empty-cart-msg {
    text-align: center;
    color: var(--text-tertiary);
    margin-top: 40px;
    font-size: 16px;
}

.cart-item {
    display: flex;
    gap: 16px;
    background: rgba(255,255,255,0.02);
    padding: 12px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.05);
    align-items: center;
}

.cart-item-img {
    width: 64px;
    height: 64px;
    border-radius: 8px;
    object-fit: cover;
    background: var(--bg-primary);
}

.cart-item-info {
    flex: 1;
}

.cart-item-title {
    font-size: 14px;
    color: var(--text-primary);
    margin-bottom: 4px;
    font-weight: 500;
}

.cart-item-price {
    font-size: 14px;
    color: var(--primary-400);
    font-weight: 700;
}

.cart-qty {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
}

.qty-btn {
    background: rgba(255,255,255,0.1);
    border: none;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

.qty-btn:hover {
    background: var(--primary-500);
}

.cart-item-remove {
    background: none;
    border: none;
    color: var(--text-quaternary);
    cursor: pointer;
    font-size: 20px;
    padding: 8px;
    transition: color 0.3s;
}

.cart-item-remove:hover {
    color: var(--primary-500);
}

.cart-footer {
    padding: 24px;
    border-top: 1px solid rgba(255,255,255,0.05);
    background: rgba(0,0,0,0.2);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    font-size: 20px;
    color: var(--text-primary);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
}

/* --- CATEGORY TABS --- */
.category-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.cat-btn {
    background: transparent;
    border: 1px solid rgba(var(--primary-rgb), 0.3);
    color: var(--text-secondary);
    padding: 10px 24px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}
.cat-btn:hover {
    border-color: var(--primary-400);
    color: var(--primary-400);
}
.cat-btn.active {
    background: var(--primary-500);
    border-color: var(--primary-500);
    color: white;
}
