.main-section {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 60px;
    min-height: 115vh;
}

:root {
    --primary: #ffffff;
    --secondary: #ffffff;
    --dark: #ffffff;
    --light: #ffffff;
    --accent: #ffffff;
}

.products-section {
    margin-bottom: 0;
}

.section-title {
    color: var(--light);
    font-size: clamp(1.8rem, 4vw, 2.2rem);
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.section-title.visible {
    opacity: 1;
    transform: translateY(0);
}

.content-container,
.bundles-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.card {
    width: 100%;
    max-width: 340px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    background: rgba(17, 46, 43, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.37);
    border-radius: 12px;
    overflow: hidden;
}

.card.visible {
    opacity: 1;
    transform: translateY(0);
}

.card:nth-child(1).visible { transition-delay: 0.05s; }
.card:nth-child(2).visible { transition-delay: 0.1s; }
.card:nth-child(3).visible { transition-delay: 0.15s; }
.card:nth-child(4).visible { transition-delay: 0.2s; }

.card:hover {
    border-color: rgba(255, 255, 255, 0.671);
}

.card-inner {
    width: 100%;
}

.card-front {
    display: flex;
    flex-direction: column;
    padding: 0;
    align-items: center;
}

.product-image {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 0;
    padding: 30px 20px 10px;
    height: 200px;
}

.product-image img {
    max-width: 85%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0, 255, 200, 0.2));
}

.bundle-image {
    perspective: 800px;
    position: relative;
}

.stacked-img {
    position: absolute;
    max-width: 70%;
    max-height: 160px;
    object-fit: contain;
    filter: drop-shadow(0 3px 12px rgba(0, 0, 0, 0.3));
}

.card-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    padding: 20px;
    padding-top: 10px;
}

.product-info {
    text-align: center;
    width: 100%;
}

.product-name {
    color: var(--light);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 8px 0;
    letter-spacing: 0.3px;
}

.product-brand {
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-contents {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.content-item {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 255, 200, 0.08);
    border: 1px solid rgba(0, 255, 200, 0.2);
    border-radius: 6px;
    padding: 4px 10px;
}

.content-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    border-radius: 2px;
}

.content-amount {
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 600;
}

.bundle-description {
    color: rgba(240, 240, 255, 0.6);
    font-size: 0.85rem;
    margin-top: 8px;
}

.product-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.5px;
    text-align: center;
    margin-bottom: 8px;
}

.quantity-selector {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.quantity-label {
    color: rgba(240, 240, 255, 0.6);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
}

.quantity-buttons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.qty-btn {
    padding: 8px 12px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 255, 200, 0.3);
    border-radius: 6px;
    color: rgba(240, 240, 255, 0.7);
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    min-width: auto;
    flex: 1;
}

.qty-btn:hover {
    background: rgba(0, 255, 200, 0.1);
    border-color: rgba(0, 255, 200, 0.5);
    color: rgba(240, 240, 255, 0.9);
    transform: translateY(-2px);
}

.qty-btn.active {
    background: rgba(0, 255, 200, 0.2);
    border-color: #00ffc8;
    color: #00ffc8;
    font-weight: 600;
}

.purchase-btn {
    width: 100%;
    padding: 12px 20px;
    background: rgba(0, 255, 200, 0.1);
    border: 1px solid rgba(0, 255, 200, 0.3);
    border-radius: 6px;
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.purchase-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #000;
}

.purchase-btn:active {
    transform: scale(0.98);
}

.price-cart-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.flying-image {
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: none;
}

.flying-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.cart-item-quantity {
    color: rgba(231, 251, 255, 0.8);
    font-size: clamp(11px, 2vw, 13px);
    margin-bottom: 5px;
}

.cart-item-total {
    color: #00ffc8;
    font-size: clamp(14px, 3vw, 16px);
    font-weight: 700;
    margin-top: 5px;
}

.features-section {
    padding: 40px;
    background: rgba(0, 69, 87, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(0, 255, 200, 0.1);
}

.features-header {
    text-align: center;
    margin-bottom: 40px;
}

.features-title {
    color: var(--light);
    font-size: clamp(1.6rem, 4vw, 2rem);
    font-weight: 700;
    margin-bottom: 10px;
}

.features-subtitle {
    color: rgba(240, 240, 255, 0.6);
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.features-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.feature-card {
    background: rgba(17, 46, 43, 0.3);
    border: 1px solid rgba(0, 255, 200, 0.15);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease;
}

.feature-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:nth-child(1).visible { transition-delay: 0.05s; }
.feature-card:nth-child(2).visible { transition-delay: 0.1s; }
.feature-card:nth-child(3).visible { transition-delay: 0.15s; }

.feature-card:hover {
    border-color: rgba(0, 255, 200, 0.3);
}

.feature-card .card-front {
    display: block;
    padding: 0;
    background: none;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 255, 200, 0.1);
    border: 2px solid rgba(0, 255, 200, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon svg {
    color: var(--primary);
    width: 30px;
    height: 30px;
}

.feature-name {
    color: var(--light);
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    font-weight: 600;
    margin-bottom: 10px;
}

.feature-description {
    color: rgba(240, 240, 255, 0.6);
    font-size: clamp(0.85rem, 2vw, 0.95rem);
    line-height: 1.5;
}

.stats-section {
    padding: 40px;
    background: rgba(0, 69, 87, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(0, 255, 200, 0.1);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.stats-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.stat-card {
    text-align: center;
    padding: 25px;
    background: rgba(17, 46, 43, 0.3);
    border-radius: 12px;
    border: 1px solid rgba(0, 255, 200, 0.15);
    transition: border-color 0.3s ease;
}

.stat-card:hover {
    border-color: rgba(0, 255, 200, 0.3);
}

.stat-number {
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.stat-label {
    color: rgba(240, 240, 255, 0.6);
    font-size: clamp(0.85rem, 2vw, 0.95rem);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.stars-container {
    display: flex;
    gap: 4px;
    justify-content: center;
    align-items: center;
}

.star {
    color: rgba(240, 240, 255, 0.2);
    stroke: rgba(240, 240, 255, 0.3);
    transition: all 0.3s ease;
}

.star.active {
    color: #00ffc8;
    fill: #00ffc8;
    stroke: #00ffc8;
    filter: drop-shadow(0 0 3px rgba(0, 255, 200, 0.4));
}

.footer {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.footer.visible {
    opacity: 1;
    transform: translateY(0);
}


@media screen and (max-width: 1024px) {
    .content-container,
    .bundles-container {
        grid-template-columns: repeat(auto-fill, minmax(320px, 320px));
    }
    
    .card {
        width: 320px;
    }
    
    .product-image {
        height: 180px;
        padding: 25px 20px 10px;
    }
}

@media (max-width: 768px) {
    .content-container,
    .bundles-container {
        grid-template-columns: repeat(auto-fill, minmax(300px, 300px));
    }
    
    .card {
        width: 300px;
    }
    
    .product-image {
        height: 170px;
        padding: 20px 15px 10px;
    }
    
    .card-content {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .content-container,
    .bundles-container {
        grid-template-columns: 1fr;
        padding: 0 10px;
    }
    
    .card {
        width: 100%;
        max-width: 340px;
        margin: 0 auto;
    }
    
    .product-image {
        height: 160px;
        padding: 20px 15px 10px;
    }
    
    .card-content {
        padding: 15px;
    }
}

.bundles-title {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.bundles-title.visible {
    opacity: 1;
    transform: translateY(0);
}



body {
    position: relative;
    overflow-x: hidden;
}

.background-overlay {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1500px;
    height: 100vh;
    background-image: url('/img/background.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.05;
    z-index: -1;
    pointer-events: none;
}

.euro-symbols {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.euro-symbol {
    position: absolute;
    font-size: 24px;
    font-weight: bold;
    opacity: 0.6;
    animation: fall linear infinite;
}

@keyframes fall {
    0% {
        transform: translateY(-100px) rotate(0deg);
        opacity: 0.6;
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

.reviews-section {
    padding: 60px 40px;
    background: rgba(0, 69, 87, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(0, 255, 200, 0.1);
    position: relative;
    z-index: 1;
}

.reviews-title {
    text-align: center;
    margin-bottom: 40px;
}

.reviews-slider {
    overflow-x: auto;
    overflow-y: hidden;
    padding: 20px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
    pointer-events: none;
}

.reviews-slider::-webkit-scrollbar {
    display: none;
}

.reviews-track {
    display: flex;
    gap: 20px;
    padding: 0 20px;
}

.review-slide {
    flex-shrink: 0;
    width: 300px;
    height: 600px;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(0, 255, 200, 0.2);
    background: rgba(17, 46, 43, 0.3);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.review-slide:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 200, 0.4);
}

.review-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .review-slide {
        width: 250px;
        height: 500px;
    }
}

.footer-payment {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0px;
    flex-wrap: wrap;
}

.payment-method-icon {
    width: 38px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.payment-method-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.payment-method-icon:hover img {
    opacity: 1;
}

@media (max-width: 768px) {
    .footer-payment {
        gap: 8px;
    }
    
    .payment-method-icon {
        width: 34px;
        height: 22px;
    }
}

@media (max-width: 480px) {
    .footer-payment {
        gap: 6px;
    }
    
    .payment-method-icon {
        width: 30px;
        height: 20px;
    }
}


.bundle-builder {
    background: rgba(17, 46, 43, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.37);
    border-radius: 12px;
    padding: 30px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.bundle-builder.visible {
    opacity: 1;
    transform: translateY(0);
}

.bundle-builder-header {
    text-align: center;
    margin-bottom: 25px;
}

.bundle-builder-description {
    color: rgba(240, 240, 255, 0.7);
    font-size: 0.95rem;
}

.bundle-builder-products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.bundle-builder-card {
    background: rgba(0, 255, 200, 0.05);
    border: 1px solid rgba(0, 255, 200, 0.2);
    border-radius: 10px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.bundle-builder-card:hover {
    border-color: rgba(0, 255, 200, 0.4);
    transform: translateY(-3px);
}

.builder-card-image {
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.builder-card-image img {
    max-width: 80%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0, 255, 200, 0.2));
}

.builder-card-content {
    width: 100%;
    text-align: center;
}

.builder-card-name {
    color: var(--light);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.builder-card-price {
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.builder-card-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.bundle-qty-btn {
    width: 35px;
    height: 35px;
    background: rgba(0, 255, 200, 0.1);
    border: 1px solid rgba(0, 255, 200, 0.3);
    border-radius: 6px;
    color: var(--primary);
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bundle-qty-btn:hover {
    background: rgba(0, 255, 200, 0.2);
    border-color: var(--primary);
}

.bundle-qty-input {
    width: 70px;
    height: 35px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 255, 200, 0.3);
    border-radius: 6px;
    color: var(--light);
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    padding: 0 8px;
}

.bundle-qty-input:focus {
    outline: none;
    border-color: var(--primary);
}

.bundle-builder-summary {
    background: rgba(0, 69, 87, 0.1);
    border: 1px solid rgba(0, 255, 200, 0.2);
    border-radius: 10px;
    padding: 25px;
}

.summary-content {
    max-width: 600px;
    margin: 0 auto;
}

.summary-items {
    max-height: 300px;
    overflow-y: auto;
    margin-bottom: 20px;
}

.empty-bundle {
    text-align: center;
    color: rgba(240, 240, 255, 0.5);
    font-size: 0.9rem;
    padding: 20px;
}

.summary-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px;
    background: rgba(0, 255, 200, 0.05);
    border: 1px solid rgba(0, 255, 200, 0.15);
    border-radius: 8px;
    margin-bottom: 10px;
}

.summary-item-image {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 6px;
}

.summary-item-info {
    flex: 1;
}

.summary-item-name {
    color: var(--light);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 3px;
}

.summary-item-qty {
    color: rgba(240, 240, 255, 0.7);
    font-size: 0.8rem;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-top: 2px solid rgba(0, 255, 200, 0.3);
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--light);
}

.bundle-total-price {
    color: var(--primary);
}

.bundle-add-cart-btn {
    width: 100%;
    padding: 14px 20px;
    background: rgba(0, 255, 200, 0.1);
    border: 1px solid rgba(0, 255, 200, 0.3);
    border-radius: 8px;
    color: var(--primary);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bundle-add-cart-btn:hover:not(:disabled) {
    background: var(--primary);
    border-color: var(--primary);
    color: #000;
}

.bundle-add-cart-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.cart-item-bundle-contents {
    margin-top: 6px;
    padding-top: 6px;
    border-top: 1px solid rgba(0, 255, 200, 0.1);
}

@media (max-width: 768px) {
    .bundle-builder {
        padding: 20px 15px;
    }
    
    .bundle-builder-products {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .bundle-builder-summary {
        padding: 20px 15px;
    }
}

.inspect-btn {
    width: 100%;
    padding: 10px 20px;
    background: rgba(0, 255, 200, 0.05);
    border: 1px solid rgba(0, 255, 200, 0.2);
    border-radius: 6px;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 8px;
}

.inspect-btn:hover {
    background: rgba(0, 255, 200, 0.1);
    border-color: rgba(0, 255, 200, 0.4);
}

.inspect-btn svg {
    width: 18px;
    height: 18px;
}

.inspect-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
}

.inspect-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.inspect-modal-content {
    width: 100%;
    max-width: 800px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    position: relative;
}

.inspect-close {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    color: var(--light);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    z-index: 10;
}

.inspect-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.inspect-title {
    color: var(--light);
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 30px;
}

.inspect-slider {
    max-width: 800px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.inspect-image-container {
    width: 100%;
    max-width: 800px;
    max-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.inspect-image {
    max-width: 100%;
    max-height: 50vh;
    object-fit: contain;
}

.inspect-nav {
    display: none;
}

.inspect-dots {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    max-width: 100%;
    padding: 0 20px;
}

.inspect-dot {
    width: 120px;
    height: 80px;
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 6px;
    overflow: hidden;
    opacity: 0.5;
    transition: opacity 0.2s ease, border-color 0.2s ease;
}

.inspect-dot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.inspect-dot.active {
    opacity: 1;
    border-color: rgba(0, 255, 200, 0.8);
}

.inspect-dot:hover {
    opacity: 0.8;
}

@media (max-width: 768px) {
    .inspect-modal-content {
        padding: 20px 15px;
    }
    
    .inspect-close {
        top: 10px;
        right: 10px;
        padding: 8px 15px;
        font-size: 0.85rem;
    }
    
    .inspect-title {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }
    
    .inspect-image-container {
        max-height: 45vh;
    }
    
    .inspect-image {
        max-height: 45vh;
    }
    
    .inspect-dots {
        gap: 10px;
        padding: 0 10px;
    }
    
    .inspect-dot {
        width: 80px;
        height: 55px;
    }
}

@media (max-width: 480px) {
    .inspect-dots {
        gap: 8px;
    }
    
    .inspect-dot {
        width: 70px;
        height: 48px;
    }
}

.bundle-qty-select {
    width: 100%;
    padding: 10px 12px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 255, 200, 0.3);
    border-radius: 6px;
    color: rgba(240, 240, 255, 0.9);
    font-size: 0.9rem;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
}

.bundle-qty-select:hover {
    border-color: rgba(0, 255, 200, 0.5);
    background: rgba(0, 0, 0, 0.4);
}

.bundle-qty-select:focus {
    outline: none;
    border-color: #00ffc8;
    background: rgba(0, 0, 0, 0.5);
}

.bundle-qty-select option {
    background: #0a0f1e;
    color: rgba(240, 240, 255, 0.9);
    padding: 8px;
}

.builder-card-price {
    font-size: 0.85rem;
    color: rgba(240, 240, 255, 0.7);
    margin-top: 4px;
}