:root {
    --bg-dark: #f9f8f6;
    --bg-card: #ffffff;
    --bg-darker: #f2efeb;
    --primary-gold: #e2b357;
    /* Gold/Amber */
    --hover-gold: #f0c36a;
    --text-white: #2c2c2c;
    --text-gray: #5f5f5f;
    --border-color: #e5e5e5;
    --font-heading: 'Amiri', serif;
    --font-body: 'Cairo', sans-serif;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
    direction: rtl;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--text-white);
}

.section-subtitle {
    display: block;
    color: var(--primary-gold);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.text-highlight {
    color: var(--primary-gold);
    font-weight: 800;
    position: relative;
    display: inline-block;
    padding: 0 5px;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: var(--primary-gold);
    color: var(--bg-dark);
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 700;
    border: 2px solid var(--primary-gold);
    transition: var(--transition);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary-gold);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: transparent;
    color: var(--primary-gold);
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 700;
    border: 1px solid var(--primary-gold);
    transition: var(--transition);
}

.btn-secondary:hover {
    background-color: var(--primary-gold);
    color: var(--bg-dark);
}

/* Header */
header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

header .container {
    display: flex;
    justify-content: flex-end;
    /* Logo on Left (End in RTL) */
    align-items: center;
}

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-gold);
    font-family: var(--font-heading);
    display: flex;
    align-items: center;
    gap: 10px;
    order: 2;
    /* Move to Left (End in RTL) */
}

.nav-links {
    display: flex;
    gap: 30px;
    order: 1;
    /* Keep Center */
}

/* ... */

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    order: 0;
    /* Move to Right (Start in RTL) */
}

.cart-icon {
    position: relative;
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--text-white);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--primary-gold);
    color: var(--bg-dark);
    font-size: 0.7rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--primary-gold);
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 160px 0 80px;
    background-color: var(--bg-dark);
    /* Light theme bg */
    overflow: hidden;
    min-height: auto;
    height: auto;
    display: block;
}

.hero-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.hero-content {
    flex: 1;
    z-index: 2;
    text-align: right;
    padding-top: 0;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--primary-gold);
}

.hero p.lead {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--text-gray);
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

/* Hero Image Card */
.hero-image-card {
    flex: 1;
    background: #fff;
    padding: 15px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    transform: rotate(-2deg);
    transition: transform 0.3s ease;
    border: 1px solid var(--border-color);
}

.hero-image-card:hover {
    transform: rotate(0deg) scale(1.02);
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.image-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
}

.card-badge {
    position: absolute;
    bottom: -15px;
    left: 20px;
    background: var(--primary-gold);
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(226, 179, 87, 0.4);
}

@media (max-width: 992px) {
    .hero-layout {
        flex-direction: column;
        text-align: center;
    }

    .hero p.lead {
        margin: 0 auto 30px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-content {
        text-align: center;
    }
}

/* Sections */
.section {
    padding: 100px 0;
}

.section.bg-darker {
    background-color: var(--bg-darker);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.section-header p {
    color: var(--text-gray);
    font-size: 1.1rem;
}

/* Products */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background-color: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-gold);
}

.product-image {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary-gold);
    color: var(--bg-dark);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 2;
}

.badge.new {
    background-color: var(--text-white);
    color: var(--bg-dark);
}

.hover-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .hover-overlay {
    opacity: 1;
}

.btn-quick-view {
    background-color: var(--text-white);
    color: var(--bg-dark);
    border: none;
    padding: 12px 25px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transform: translateY(20px);
    transition: var(--transition);
}

.product-card:hover .btn-quick-view {
    transform: translateY(0);
}

.product-info {
    padding: 25px;
}

.rating {
    color: #ffd700;
    font-size: 0.85rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.product-info h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.product-info p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.price-row {
    display: flex;
    align-items: center;
    gap: 15px;
}

.price {
    color: var(--primary-gold);
    font-size: 1.5rem;
    font-weight: 700;
}

.old-price {
    color: #666;
    text-decoration: line-through;
    font-size: 1rem;
}

/* Features Box */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-box {
    background-color: var(--bg-card);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-box:hover {
    transform: translateY(-5px);
    border-color: var(--primary-gold);
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    background-color: rgba(226, 179, 87, 0.1);
    color: var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
}

.feature-box h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.feature-box p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-item {
    background-color: var(--bg-card);
    padding: 40px;
    border-radius: 12px;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.quote-icon {
    color: rgba(226, 179, 87, 0.2);
    font-size: 3rem;
    position: absolute;
    top: 30px;
    left: 30px;
}

.testimonial-item p {
    color: var(--text-gray);
    font-style: italic;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-profile img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.user-profile h4 {
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.user-profile span {
    color: var(--primary-gold);
    font-size: 0.85rem;
}

/* Contact CTA */
.cta-section {
    padding-bottom: 0;
}

.cta-container {
    background-color: var(--bg-card);
    border-radius: 20px;
    padding: 80px 40px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.cta-subtitle {
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    display: block;
    margin-bottom: 15px;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.cta-content p {
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.contact-details {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 40px;
}

.contact-details div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contact-details span {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.contact-details strong {
    font-size: 1.2rem;
    color: var(--primary-gold);
    direction: ltr;
}

/* Footer */
footer {
    background-color: var(--bg-darker);
    padding: 80px 0 30px;
    margin-top: 80px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-brand p {
    color: var(--text-gray);
    margin-top: 20px;
    max-width: 300px;
}

.footer-links h3 {
    color: var(--text-white);
    margin-bottom: 25px;
    font-size: 1.2rem;
}

.footer-links ul li {
    margin-bottom: 15px;
}

.footer-links a {
    color: var(--text-gray);
}

.footer-links a:hover {
    color: var(--primary-gold);
    padding-right: 5px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--text-white);
}

.social-icons a:hover {
    background-color: var(--primary-gold);
    color: var(--bg-dark);
}

.footer-bottom {
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.payment-icons {
    display: flex;
    gap: 15px;
    align-items: center;
    font-size: 1.5rem;
}

.payment-icons span {
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-right: 15px;
    color: #4caf50;
}

/* Responsive */
@media (max-width: 900px) {
    .hero h1 {
        font-size: 3rem;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {

    .nav-links,
    .header-actions .btn-primary {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .hero {
        text-align: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .stat-divider {
        width: 50px;
        height: 1px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .logo {
        justify-content: center;
    }

    .contact-details {
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Product Detail Page */
.product-page-body {
    background-color: var(--bg-dark);
}

.product-detail-section {
    padding-top: 150px;
    /* Offset for fixed header */
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

/* Gallery */
.product-gallery {
    position: sticky;
    top: 120px;
}

.main-image {
    width: 100%;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.thumbnail-container {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    justify-content: center;
}

.thumb {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.thumb:hover {
    opacity: 1;
}

.thumb.active {
    border-color: var(--primary-gold);
    opacity: 1;
    transform: scale(1.05);
}

/* Product Content */
.breadcrumbs {
    color: var(--text-gray);
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.breadcrumbs a:hover {
    color: var(--primary-gold);
}

.product-content h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--primary-gold);
}

.rating-large {
    color: #ffd700;
    margin-bottom: 25px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.rating-large span {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-right: 10px;
}

.price-box-large {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.current-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-white);
}

.price-box-large .old-price {
    font-size: 1.5rem;
}

.product-content p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.features-list-small {
    margin-bottom: 40px;
}

.features-list-small li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--text-white);
}

.features-list-small i {
    color: var(--primary-gold);
}

.divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    margin: 40px 0;
}

/* Order Form */
.order-form-container {
    background-color: var(--bg-card);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid var(--primary-gold);
}

.order-form-container h3 {
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-gold);
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-gray);
    font-size: 0.9rem;
}


.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(226, 179, 87, 0.2);
    border-radius: 8px;
    color: var(--text-light);
    font-family: inherit;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--primary-gold);
    background-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 10px rgba(226, 179, 87, 0.1);
}

.form-group select option {
    background-color: #1a1814;
    /* Dark background for options */
    color: #fff;
}

.delivery-options {
    margin-bottom: 25px;
    display: grid;
    gap: 15px;
}

.delivery-option {
    display: flex;
    align-items: center;
    /* Center Vertically */
    background-color: var(--bg-dark);
    padding: 15px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    gap: 15px;
}

/* Hide default radio input but keep it accessible */
.delivery-option input {
    opacity: 0;
    position: absolute;
    width: 0;
    height: 0;
}

/* Custom radio circle */
.radio-custom {
    width: 20px;
    height: 20px;
    border: 2px solid var(--text-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
}

.radio-custom::after {
    content: '';
    width: 10px;
    height: 10px;
    background-color: var(--primary-gold);
    border-radius: 50%;
    opacity: 0;
    transform: scale(0);
    transition: var(--transition);
}

/* Active State */
.delivery-option input:checked+.radio-custom {
    border-color: var(--primary-gold);
}

.delivery-option input:checked+.radio-custom::after {
    opacity: 1;
    transform: scale(1);
}

.delivery-option input:checked~.option-info .option-title {
    color: var(--primary-gold);
}

.delivery-option:hover {
    border-color: rgba(226, 179, 87, 0.3);
}

.delivery-option.active {
    border-color: var(--primary-gold);
    background-color: rgba(226, 179, 87, 0.05);
}

.option-info {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}

.option-title {
    font-weight: 600;
}

.option-price {
    color: var(--primary-gold);
    font-weight: 700;
}

.btn-block {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
}

/* Responsive Product Page & Form */
@media (max-width: 900px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .main-image {
        height: auto;
        aspect-ratio: 1/1;
        /* Square image on mobile */
    }

    .product-gallery {
        position: static;
        /* Remove sticky on mobile */
    }
}

@media (max-width: 600px) {
    .product-detail-section {
        padding-top: 120px;
        /* Less padding on small screens */
    }

    .product-content h1 {
        font-size: 2rem;
        /* Smaller title */
    }

    .form-row {
        grid-template-columns: 1fr;
        /* Stack form inputs */
        gap: 15px;
    }

    .price-box-large {
        flex-wrap: wrap;
        /* Allow wrapping if pricing is long */
    }

    .current-price {
        font-size: 2rem;
    }
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #128c7e;
    color: #fff;
}

/* Promo Badge */
.promo-badge-animated {
    display: inline-block;
    background-color: var(--primary-gold);
    color: var(--bg-dark);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: bold;
    margin-left: 10px;
    /* Space between price */
    box-shadow: 0 4px 10px rgba(226, 179, 87, 0.4);
    animation: pulse-attention 2s infinite ease-in-out;
    vertical-align: middle;
    letter-spacing: 0.5px;
}

@keyframes pulse-attention {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(226, 179, 87, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 6px rgba(226, 179, 87, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(226, 179, 87, 0);
    }
}


/* Quantity Selector Cards */
.qty-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.qty-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* Items split to edges */
    gap: 10px;
    background-color: var(--bg-card);
    padding: 15px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    flex: 1;
    min-width: 140px;
}

.qty-card:hover {
    border-color: rgba(226, 179, 87, 0.5);
    background-color: rgba(255, 255, 255, 0.02);
}

.qty-card.active {
    border-color: var(--primary-gold);
    background-color: rgba(226, 179, 87, 0.08);
    /* Light Gold BG */
    box-shadow: 0 4px 12px rgba(226, 179, 87, 0.15);
}

/* Radio Circle Styles */
.qty-radio-custom {
    width: 22px;
    height: 22px;
    border: 2px solid var(--text-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
}

.qty-card input:checked+.qty-radio-custom {
    border-color: var(--primary-gold);
    background-color: #fff;
}

.qty-radio-custom::after {
    content: '';
    width: 12px;
    height: 12px;
    background-color: var(--primary-gold);
    border-radius: 50%;
    opacity: 0;
    transform: scale(0);
    transition: var(--transition);
}

.qty-card input:checked+.qty-radio-custom::after {
    opacity: 1;
    transform: scale(1);
}

/* Card Text */
.qty-info {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-white);
}

.qty-card.active .qty-info {
    color: var(--primary-gold);
}

/* Custom Input Field */
#custom-quantity {
    width: 100%;
    padding: 15px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    background-color: var(--bg-card);
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 1rem;
    margin-top: 10px;
    transition: all 0.3s ease;
}

#custom-quantity:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(226, 179, 87, 0.1);
}