:root {
    --bg-dark: #0a0a0a;
    --bg-card: #141414;
    --text-main: #e0e0e0;
    --text-muted: #a0a0a0;
    --brand-green: #4ade80;
    --brand-glow: rgba(74, 222, 128, 0.4);
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-stack: 'Outfit', sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-stack);
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

/* Nav */
.glass-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.highlight {
    color: var(--brand-green);
    text-shadow: 0 0 20px var(--brand-glow);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--brand-green);
}

.btn-primary {
    background: var(--brand-green);
    color: #000;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    font-family: var(--font-stack);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px var(--brand-glow);
}

.btn-primary.small {
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
}

.btn-secondary {
    background: transparent;
    color: var(--text-main);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    border: 1px solid var(--glass-border);
    font-weight: 600;
    cursor: pointer;
    margin-left: 1rem;
    transition: background 0.3s;
    font-family: var(--font-stack);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
}

/* Hero */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5rem 5%;
    min-height: 80vh;
    background: radial-gradient(circle at 80% 20%, rgba(74, 222, 128, 0.05) 0%, transparent 50%);
}

.hero-content {
    max-width: 600px;
}

.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    color: var(--brand-green);
}

h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin: 0 0 1.5rem 0;
    letter-spacing: -0.03em;
}

.gradient-text {
    background: linear-gradient(135deg, #fff 0%, var(--brand-green) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

/* Device Mockup (CSS Art placeholder) */
.hero-visual {
    position: relative;
    width: 400px;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.glow-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, var(--brand-glow) 0%, transparent 70%);
    opacity: 0.5;
    animation: pulse 4s infinite;
}

.device-frame {
    width: 300px;
    height: 200px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    backdrop-filter: blur(20px);
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.mist-effect {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.1), transparent);
    border-radius: 0 0 12px 12px;
    pointer-events: none;
}

.screen-ui {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat .label {
    font-size: 0.6rem;
    text-transform: uppercase;
    color: var(--text-muted);
}

.stat .value {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--brand-green);
}

/* Features */
.features {
    padding: 5rem 5%;
    text-align: center;
}

.features h2 {
    font-size: 2.5rem;
    margin-bottom: 4rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--brand-green);
}

.icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

/* Economics */
.economics {
    padding: 5rem 5%;
    background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(20, 20, 20, 1) 100%);
}

.calc-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.calculator {
    background: var(--bg-card);
    padding: 3rem;
    border-radius: 24px;
    margin-top: 3rem;
    border: 1px solid var(--glass-border);
}

.calc-inputs {
    margin-bottom: 3rem;
    text-align: left;
}

input[type=range] {
    width: 100%;
    margin-top: 1rem;
    background: transparent;
    appearance: none;
    -webkit-appearance: none;
}

input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 24px;
    width: 24px;
    border-radius: 50%;
    background: var(--brand-green);
    cursor: pointer;
    margin-top: -10px;
    box-shadow: 0 0 15px var(--brand-glow);
}

input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 4px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}

.range-value {
    text-align: right;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand-green);
    margin-top: 0.5rem;
}

.calc-results {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.result-box {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
}

.result-box .price {
    font-size: 2rem;
    font-weight: 700;
}

.result-box .sub {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.savings {
    grid-column: 1 / -1;
    font-size: 1.5rem;
    margin-top: 1rem;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.2;
    }

    100% {
        transform: scale(0.95);
        opacity: 0.5;
    }
}

/* Shop Section */
.shop-section {
    padding: 5rem 5%;
}

.shop-section h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
}

.section-sub {
    font-size: 1.5rem;
    margin: 4rem 0 2rem;
    color: var(--text-muted);
    font-weight: 300;
}

/* Featured Product (The Machine) */
.product-featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(20, 20, 20, 0.5) 100%);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.product-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.device-frame.large {
    width: 350px;
    height: 250px;
    background: rgba(255, 255, 255, 0.05);
    /* Lighter for visibility */
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    backdrop-filter: blur(25px);
    z-index: 2;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

.glow-ring.large {
    width: 120%;
    height: 120%;
}

.product-info h3 {
    font-size: 2.5rem;
    margin: 0.5rem 0 1rem;
}

.price-block {
    display: flex;
    align-items: flex-start;
    margin: 2rem 0;
    color: var(--brand-green);
}

.price-block .currency {
    font-size: 1.5rem;
    margin-top: 0.5rem;
    margin-right: 0.2rem;
}

.price-block .amount {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
}

.large-btn {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.shipping-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Product Grid (Blocks) */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.product-card:hover {
    border-color: var(--brand-green);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px -10px rgba(74, 222, 128, 0.1);
}

.product-hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 0 50px rgba(74, 222, 128, 0.1);
    border: 1px solid var(--glass-border);
}

.card-image {
    height: 200px;
    background: #0f1012;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    padding: 0;
    /* Clear padding for images */
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .card-image img {
    transform: scale(1.05);
}

/* Crop classes for mixed_blocks.png */
/* Image is: Left=Lion, Center=Yellow, Right=King */
.card-image.crop-b img {
    width: 300%;
    /* Zoom in significantly */
    height: 100%;
    object-fit: cover;
    object-position: center center;
    /* Focus on center */
    transform: scale(1.0);
    /* Fix scale override */
}

.product-card:hover .card-image.crop-b img {
    transform: scale(1.1);
}

.card-image.crop-c img {
    width: 300%;
    height: 100%;
    object-fit: cover;
    object-position: 80% center;
    /* Focus on right side */
}

/* Shop Categories */
.category-group {
    margin-bottom: 5rem;
}

.category-header {
    font-size: 2rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 1rem;
    display: flex;
    align-items: baseline;
    gap: 1rem;
}

.category-header .icon {
    font-size: 2rem;
}

.category-header .sub-text {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 300;
}

.product-card.special {
    border-color: rgba(74, 222, 128, 0.3);
    background: linear-gradient(180deg, var(--bg-card) 0%, rgba(74, 222, 128, 0.05) 100%);
}

.product-card.special:hover {
    box-shadow: 0 0 40px rgba(74, 222, 128, 0.15);
}

.product-card.experimental {
    border-color: rgba(168, 85, 247, 0.3);
    /* Purple for Experimental */
    background: linear-gradient(180deg, var(--bg-card) 0%, rgba(168, 85, 247, 0.05) 100%);
}

.product-card.experimental:hover {
    box-shadow: 0 0 40px rgba(168, 85, 247, 0.15);
}

/* New CSS Art Shapes */
.shroom-shape.honeycomb {
    width: 40px;
    height: 90px;
    background: repeating-linear-gradient(45deg, #2a2a2a, #2a2a2a 5px, #1a1a1a 5px, #1a1a1a 10px);
    border-radius: 50% 50% 10% 10%;
    border: 2px solid #555;
}

/* Hero Visual */
.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.hero-device-img {
    width: 100%;
    max-width: 600px;
    height: auto;
    filter: drop-shadow(0 0 50px rgba(74, 222, 128, 0.2));
    animation: float 6s ease-in-out infinite;
}

/* How It Works */
.how-it-works {
    padding: 5rem 5%;
    background: #000;
    text-align: center;
}

.steps-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.step-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    padding: 2rem;
    border-radius: 16px;
    width: 250px;
    text-align: center;
    position: relative;
}

.step-icon {
    width: 50px;
    height: 50px;
    background: var(--brand-green);
    color: #000;
    font-weight: bold;
    font-size: 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    box-shadow: 0 0 20px rgba(74, 222, 128, 0.4);
}

.step-line {
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--brand-green), transparent);
    display: none;
    /* Hidden on mobile */
}

@media (min-width: 768px) {
    .step-line {
        display: block;
    }
}

.shroom-shape.slab {
    width: 100px;
    height: 50px;
    background: linear-gradient(90deg, #8b0000, #b22222);
    border-radius: 50% 10% 30% 10%;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5);
    /* Meaty depth */
}

.shroom-shape.cloud {
    width: 80px;
    height: 60px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    filter: blur(10px);
    box-shadow: 20px 0 rgba(255, 255, 255, 0.8), -20px 0 rgba(255, 255, 255, 0.8);
}

.shroom-shape.brain {
    width: 80px;
    height: 80px;
    background: #f0e68c;
    border-radius: 50%;
    background-image: radial-gradient(circle at 10px 10px, rgba(0, 0, 0, 0.1) 2px, transparent 2.5px);
    background-size: 15px 15px;
    box-shadow: 0 0 10px #f0e68c;
}

.shroom-shape.velvet {
    width: 25px;
    height: 80px;
    background: #fff;
    /* Stem */
    position: relative;
    border-radius: 2px;
}

.shroom-shape.velvet::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -15px;
    width: 55px;
    height: 15px;
    background: #8b4513;
    /* Brown Cap */
    border-radius: 20px 20px 5px 5px;
}

.shroom-shape.spike {
    width: 6px;
    height: 80px;
    background: #ffa500;
    box-shadow: 10px 0 #ffa500, -10px 10px #ffa500, 20px 5px #ffa500, -20px -5px #ffa500;
    border-radius: 4px;
}

.shroom-shape.fan {
    width: 100px;
    height: 60px;
    background: radial-gradient(circle at 50% 100%, #8b4513 20%, #cd853f 50%, #deb887 80%, #fff 100%);
    border-radius: 50% 50% 0 0;
}

.shroom-shape.cluster {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #d2691e;
    box-shadow: 35px 10px #d2691e, 15px 35px #d2691e, -20px 15px #d2691e, 40px -20px #d2691e;
}

.shroom-shape.needles {
    width: 3px;
    height: 90px;
    background: #fff;
    box-shadow: 10px 5px #fff, 20px -10px #fff, -10px 15px #fff, -20px 5px #fff, 5px 20px #fff;
    border-radius: 2px;
}

/* Main Header / Hero */
header {
    background: url('assets/images/hero_bg.jpg') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
}

.shroom-shape.thick {
    width: 40px;
    height: 100px;
    background: #f0f0f0;
    border-radius: 10px 10px 5px 5px;
    position: relative;
}

.shroom-shape.thick::after {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    width: 60px;
    height: 20px;
    background: #deb887;
    border-radius: 20px 20px 5px 5px;
}

.shroom-shape.frill {
    width: 90px;
    height: 70px;
    background: repeating-radial-gradient(circle at 50% 100%, #696969, #808080 10px, #a9a9a9 20px);
    border-radius: 50% 50% 20% 20%;
}

.shroom-shape.slime {
    width: 35px;
    height: 35px;
    background: #ffa500;
    border-radius: 50%;
    box-shadow: 0 0 15px #ffa500;
    /* Slime glow */
    position: relative;
}

.shroom-shape.slime::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: 30px;
    height: 30px;
    background: #ffa500;
    border-radius: 50%;
    box-shadow: 0 0 15px #ffa500;
}

/* CSS Art Shrooms */
.shroom-shape {
    width: 80px;
    height: 80px;
    background: #fff;
    opacity: 0.8;
}

.shroom-shape.round {
    border-radius: 50%;
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.5);
    /* Lion's Mane glow */
}

.shroom-shape.flat {
    border-radius: 50% 50% 10% 10%;
    height: 60px;
}

/* Product Detail Modal - PREMIUM POPUP */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal-content {
    background: #141414;
    border: 1px solid rgba(74, 222, 128, 0.2);
    border-radius: 24px;
    width: 90%;
    max-width: 950px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.9);
    transform: scale(0.95) translateY(20px);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .modal-content {
        flex-direction: row;
        overflow-y: hidden;
        /* Scroll inside text col instead */
        height: 600px;
    }
}

.modal-overlay.active .modal-content {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--brand-green);
}

.modal-image-col {
    flex: 1;
    background: #000;
    position: relative;
    overflow: hidden;
    min-height: 300px;
}

.modal-image-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
}

.modal-image-col::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(20, 20, 20, 0) 80%, #141414 100%);
    pointer-events: none;
}

.modal-info-col {
    flex: 1.3;
    padding: 3rem;
    overflow-y: auto;
    /* Custom Scrollbar */
    scrollbar-width: thin;
    scrollbar-color: var(--brand-green) #141414;
}

.modal-info-col::-webkit-scrollbar {
    width: 6px;
}

.modal-info-col::-webkit-scrollbar-track {
    background: #141414;
}

.modal-info-col::-webkit-scrollbar-thumb {
    background-color: var(--brand-green);
    border-radius: 10px;
}

.modal-info-col h2 {
    font-size: 3rem;
    margin: 0;
    line-height: 1;
    background: linear-gradient(90deg, #fff, #aaa);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.modal-info-col h4 {
    color: var(--brand-green);
    font-size: 1.1rem;
    margin: 0.5rem 0 2.5rem 0;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.modal-section {
    margin-bottom: 2.5rem;
}

.modal-section h5 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.modal-section p {
    font-size: 1rem;
    line-height: 1.7;
    color: #d0d0d0;
}

.modal-section .science-tag {
    color: var(--brand-green);
    border: 1px solid rgba(74, 222, 128, 0.3);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.8em;
    margin-right: 5px;
    display: inline-block;
    margin-bottom: 5px;
}

.modal-price-row {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
}

.modal-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.05em;
}

/* Updated selector to match ID and added top button styles */
#modal-add-btn {
    flex: 1;
    background: var(--brand-green);
    color: #000;
    border: none;
    padding: 1rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: var(--font-stack);
}

#modal-add-btn:hover {
    background: #fff;
    box-shadow: 0 0 30px rgba(74, 222, 128, 0.4);
    transform: translateY(-2px);
}

/* Modal Header Layout */
.modal-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    gap: 1rem;
}

.modal-header-text {
    flex: 1;
}

.modal-header-row h2 {
    margin-bottom: 0.5rem;
}

.modal-header-row h4 {
    margin: 0;
}

.info-btn-small {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--brand-green);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 0.7rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 8px;
    transition: all 0.2s;
}


/* --- WhatsApp Cart Styles --- */
.cart-fab {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: var(--brand-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(74, 222, 128, 0.4);
    cursor: pointer;
    z-index: 10000;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid #fff;
}

.cart-fab:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 15px 40px rgba(74, 222, 128, 0.6);
}

.cart-fab:active {
    transform: scale(0.95);
}

.cart-icon {
    font-size: 1.8rem;
    color: #000;
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff4757;
    color: white;
    font-size: 0.8rem;
    font-weight: 800;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #141414;
    transition: transform 0.2s;
}

.cart-badge.bump {
    transform: scale(1.4);
}

/* Toast Notification */
.toast-container {
    position: fixed;
    bottom: 110px;
    right: 30px;
    z-index: 10001;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
    /* Let clicks pass through */
}

.toast {
    background: rgba(20, 20, 20, 0.95);
    border: 1px solid var(--brand-green);
    color: #fff;
    padding: 12px 20px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    transform: translateX(100px);
    opacity: 0;
    transition: all 0.3s ease-out;
    pointer-events: auto;
    /* Re-enable clicks on the toast itself */
    max-width: 300px;
}

.toast.show {
    transform: translateX(0);
    opacity: 1;
}

.toast-icon {
    color: var(--brand-green);
    font-size: 1.2rem;
}