/* Global Styles */
:root {
    --primary-color: #D35400; /* Deep Organic Orange */
    --secondary-color: #F5CBA7; /* Soft Cream */
    --accent-color: #1F618D; /* Deep Blue for contrast */
    --text-color: #2C3E50;
    --bg-color: #FDFEFE;
    --card-bg: #FFFFFF;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    --shadow: 0 10px 30px rgba(0,0,0,0.08);
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: var(--font-heading);
    font-weight: 700;
}

a { text-decoration: none; }
button { cursor: pointer; border: none; outline: none; transition: 0.3s; }

/* Announcement Bar */
.shop-announcement {
    display: none;
    background: linear-gradient(90deg, #e74c3c, #c0392b);
    color: white;
    text-align: center;
    padding: 12px 20px;
    font-size: 1rem;
    font-weight: 600;
    position: sticky;
    top: 0;
    z-index: 2000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    animation: slideDown 0.5s ease-out;
}

.shop-announcement.active {
    display: block;
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    position: absolute;
    width: 100%;
    z-index: 10;
    background: transparent;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 1px;
    cursor: pointer;
    text-decoration: none;
}

.nav-logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    border-radius: 50%;
    filter: brightness(0.9);
}

.cart-icon {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
    z-index: 1000;
    transition: transform 0.3s ease;
}

.cart-icon:hover {
    transform: scale(1.1);
}

.cart-icon span {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--primary-color);
    color: white;
    font-size: 0.85rem;
    font-weight: 700;
    width: 26px;
    height: 26px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.15);
}

/* Cart Bounce Animation (Decreasing Energy Ball Bounce) */
@keyframes cartBounce {
    0%, 100% { transform: translateY(0); }
    15% { transform: translateY(-15px); } /* Big */
    30% { transform: translateY(0); }
    45% { transform: translateY(-7px); }  /* Small */
    60% { transform: translateY(0); }
    75% { transform: translateY(-3px); }  /* Smallest (Snall) */
    85% { transform: translateY(0); }
}

.cart-bounce {
    animation: cartBounce 2s ease-in-out infinite;
}

/* Hero Section */
.hero {
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #fff5e6 0%, #ffffff 100%);
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--secondary-color);
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    z-index: 0;
    top: 20%;
    left: 10%;
}

.hero-content {
    z-index: 1;
    max-width: 700px;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.hero p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2rem;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(211, 84, 0, 0.4);
    transition: transform 0.2s;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(211, 84, 0, 0.5);
}

/* Menu Section */
.menu-section {
    padding: 5rem 5%;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
    width: 100%;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    min-height: 200px;
}

@media (min-width: 1100px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Tablet adjustments */
@media (max-width: 1099px) and (min-width: 768px) {
    .menu-section {
        padding: 4rem 3%;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero-content {
        max-width: 600px;
    }

    .btn-add {
        width: 100%;
        margin-top: 10px;
        margin-left: 0;
    }
}

/* Nest Hub Max / Small Desktop stacking */
@media (min-width: 1100px) and (max-width: 1480px) {
    .btn-add {
        width: 100%;
        margin-top: 10px;
    }
}

.loading, .error {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    text-align: center;
    padding: 5rem;
    font-size: 1.2rem;
    color: #7f8c8d;
    font-weight: 500;
}

.product-card {
    background: var(--card-bg);
    border-radius: 20px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-image {
    height: 250px;
    width: 100%;
    background: #f9f9f9;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.product-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: 0.5s;
}

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

.product-card.out-of-stock {
    opacity: 0.9;
}

.oos-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.75);
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    pointer-events: none;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.product-info {
    padding: 2rem;
}

.product-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.description {
    color: #777;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}



.action-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.quantity-label {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-color);
    white-space: nowrap;
}

.quantity-select {
    padding: 8px 12px;
    border-radius: 12px;
    border: 2px solid var(--primary-color);
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-color);
    background-color: #fff;
    cursor: pointer;
    outline: none;
    transition: all 0.3s ease;
    flex: 1; /* Allow it to take available space */
    min-width: 0; /* Prevent overflow */
}

.quantity-select:hover, .quantity-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    white-space: nowrap;
}

.btn-add {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 8px 15px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
}

.btn-add:hover {
    background: var(--primary-color);
    color: white;
}

.btn-add:disabled {
    background: #fdfdfd !important;
    border-color: #eee !important;
    color: #ccc !important;
    cursor: not-allowed;
    box-shadow: none !important;
    transform: none !important;
    opacity: 0.8;
}

/* Cart OOS Styles */
.cart-item-oos {
    background: #fcfcfc !important;
    border-left: 4px solid #f1f1f1 !important;
    border-radius: 12px;
    padding: 14px 12px !important;
    margin: 8px 0;
    border-bottom: 1px solid #eee !important;
}

.cart-item-oos span:first-child {
    color: #95a5a6;
}

.cart-item-oos .price {
    color: #bdc3c7 !important;
}

.oos-pill {
    background: #f1f1f1;
    color: #95a5a6;
    font-size: 0.65rem;
    padding: 3px 10px;
    border-radius: 30px;
    font-weight: 700;
    margin-left: 10px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    letter-spacing: 0.5px;
    border: 1px solid #eee;
}

/* About Section */
.about-section {
    background: #FAF3E0;
    padding: 5rem 5%;
    text-align: center;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.about-content p {
    font-size: 1.1rem;
    color: #444;
}

.loading-reviews {
    text-align: center;
    color: #999;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 60px 40px;
    background: rgba(211, 84, 0, 0.02);
    border-radius: 20px;
    border: 2px dashed rgba(211, 84, 0, 0.1);
    flex: 1;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {
    0% { opacity: 0.6; transform: scale(0.98); }
    50% { opacity: 1; transform: scale(1); }
    100% { opacity: 0.6; transform: scale(0.98); }
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem;
    background: #2C3E50;
    color: white;
    font-size: 0.9rem;
}

/* Cart Sidebar */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 350px;
    height: 100vh;
    background: white;
    z-index: 100;
    box-shadow: -5px 0 30px rgba(0,0,0,0.1);
    transition: 0.4s ease-in-out;
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

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

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.clear-btn {
    background: transparent;
    color: #e74c3c;
    border: 1px solid #e74c3c;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.85rem;
    cursor: pointer;
    margin-left: auto; /* Push to right, but before close button if flex order matters, wait. Cart header is flex. */
    margin-right: 15px;
}

.clear-btn:hover {
    background: #e74c3c;
    color: white;
}

.close-btn {
    font-size: 1.5rem;
    background: transparent;
    color: #888;
    width: 30px;
    height: 30px;
    display: flex;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s;
}

.close-btn:hover {
    background: #f0f0f0;
    color: #e74c3c;
}


.status-badge {
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap; /* Prevent wrapping for "Out for Delivery" */
}

.status-delivered {
    background: #d5f5e3;
    color: #27ae60;
}

.status-cancelled {
    background: #ffcccc;
    color: #d63031;
}

.btn-confirm {
    background: #27ae60;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 600;
}

.btn-confirm:hover:not(:disabled) {
    background: #219150;
    transform: translateY(-1px);
}

.btn-clear-oos {
    background: #fdf2f2;
    color: #e74c3c;
    border: 1px solid #fadbd8;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    display: none; /* Shown via JS */
    align-items: center;
    gap: 6px;
    margin-bottom: 15px;
    width: 100%;
    justify-content: center;
}

.btn-clear-oos:hover {
    background: #e74c3c;
    color: white;
}

.oos-divider {
    display: none; /* Toggled via JS */
    align-items: center;
    text-align: center;
    margin: 20px 0 10px 0;
    position: relative;
}

.oos-divider::before, .oos-divider::after {
    content: "";
    flex: 1;
    border-bottom: 1px dashed #fadbd8;
}

.oos-divider span {
    padding: 0 10px;
    font-size: 0.75rem;
    color: #e74c3c;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}

.btn-confirm:disabled {
    background: #ccc;
    color: #f8f9fa;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

.remove-item-btn {
    background: #fff;
    color: #bdc3c7;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 1.2rem;
    margin-left: 12px;
    transition: all 0.2s;
    border: 1.5px solid #fadbd8; /* Reddish border */
}

.remove-item-btn:hover {
    background: #e74c3c;
    color: white;
    border-color: #e74c3c;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f9f9f9;
    font-size: 0.95rem;
    color: #34495e;
    transition: all 0.3s ease;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-footer {
    border-top: 1px solid #eee;
    padding-top: 1rem;
}

.total-row {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.btn-checkout {
    width: 100%;
    background: #25D366; /* WhatsApp Green */
    color: white;
    padding: 15px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
}

.btn-checkout:hover {
    background: #128C7E;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 90;
    display: none;
    opacity: 0;
    transition: opacity 0.3s;
}

.overlay.active {
    display: block;
    opacity: 1;
}

.empty-cart-msg {
    text-align: center;
    color: #999;
    margin-top: 2rem;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Mobile Responsive */
@media (max-width: 767px) {
    .navbar {
        padding: 1rem 5%;
    }

    .hero h1 { font-size: 2.2rem; }
    .hero p { font-size: 1.1rem; }
    
    .menu-section {
        padding: 3rem 1.5rem;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .product-grid {
        gap: 1.5rem;
        grid-template-columns: 1fr;
    }

    .product-info {
        padding: 1.5rem;
    }

    .cart-sidebar { 
        width: 100%; 
        right: -100%; 
        padding: 1.5rem;
    }
    
    .action-row {
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .btn-add {
        width: 100%;
        margin-top: 10px;
        margin-left: 0;
    }
}
/* Order Confirmation Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

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

.modal-content {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    transform: translateY(20px);
    transition: transform 0.3s;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-content i.success-icon {
    font-size: 4rem;
    color: #27ae60;
    margin-bottom: 1rem;
}

.modal-content h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.modal-content p {
    color: #555;
    margin-bottom: 1.5rem;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.btn-whatsapp:hover {
    background: #128C7E;
}


.btn-close-modal {
    display: block;
    margin: 10px auto 0;
    background: transparent;
    color: #888;
    text-decoration: underline;
    font-size: 0.9rem;
}

#order-address {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    resize: none;
    font-family: inherit;
    box-sizing: border-box;
}

#order-address:focus {
    outline: none;
    border-color: var(--primary-color);
}


/* Stylish Status Dropdown */

/* Customer Reviews Section */

/* Customer Reviews Section */
.reviews-section {
    padding: 120px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.reviews-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 20%, rgba(211, 84, 0, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 90% 80%, rgba(0, 0, 0, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.section-header-content {
    text-align: center;
    margin-bottom: 50px;
}

.section-subtitle {
    display: block;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.review-summary-header {
    margin-top: 20px;
}

.overall-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.overall-rating #avg-rating-value {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
}

.stars-outer {
    position: relative;
    display: inline-block;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 1.5rem;
    color: #eee;
}

.stars-outer::before {
    content: "\f005 \f005 \f005 \f005 \f005";
}

.stars-inner {
    position: absolute;
    top: 0;
    left: 0;
    white-space: nowrap;
    overflow: hidden;
    width: 0%;
    color: #ffc107;
    transition: width 0.5s ease;
}

.stars-inner::before {
    content: "\f005 \f005 \f005 \f005 \f005";
}

.total-reviews {
    color: #777;
    font-size: 0.95rem;
}

.reviews-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 40px -10px;
    justify-content: center;
}

.reviews-carousel {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 30px 10px 30px 20px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    border-radius: 24px;
}

.reviews-carousel::-webkit-scrollbar {
    display: none;
}

/* Center the "No reviews yet" message */
.reviews-carousel:has(.loading-reviews) {
    justify-content: center !important;
}

.review-card {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 24px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.08);
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    flex: 0 0 380px;
    max-width: 380px;
    scroll-snap-align: center;
    position: relative;
    border: 1px solid rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(211, 84, 0, 0.12);
    border-color: rgba(211, 84, 0, 0.1);
}

.review-card::before {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 30px;
    left: 25px;
    font-size: 2.5rem;
    color: rgba(211, 84, 0, 0.04);
}

.badge-verified {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.75rem;
    color: #27ae60;
    margin-bottom: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.review-comment {
    font-size: 1.25rem;
    color: #2c3e50;
    line-height: 1.8;
    position: relative;
    z-index: 1;
    margin-top: 10px;
}


.carousel-control {
    background: white;
    border: 1px solid rgba(0,0,0,0.05);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    color: var(--primary-color);
    transition: all 0.4s;
    z-index: 10;
}

.carousel-control:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.review-actions {
    text-align: center;
    margin-top: 60px;
}

.btn-write-review {
    padding: 16px 32px;
    background: #fff;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.btn-write-review:hover {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 10px 25px rgba(211, 84, 0, 0.3);
    transform: translateY(-2px);
}

@media (max-width: 767px) {
    .reviews-section {
        padding: 80px 0;
    }
    
    .overall-rating #avg-rating-value {
        font-size: 2.5rem;
    }
    
    .reviews-carousel {
        justify-content: flex-start;
        padding: 30px 20px;
    }
    
    .review-card {
        flex: 0 0 calc(100vw - 100px);
        max-width: 350px;
        min-width: 280px;
        padding: 2.5rem 1.8rem;
    }
    
    .carousel-control {
        width: 44px;
        height: 44px;
    }
    
    .reviews-carousel-wrapper {
        margin: 30px -20px;
        padding: 0 20px;
    }
}

/* Review Modal & Form */
.review-modal {
    max-width: 500px !important;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark);
}

.form-group input, 
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    box-sizing: border-box;
}

.form-group input:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.star-rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 5px;
}

.star-rating input {
    display: none;
}

.star-rating label {
    font-size: 1.5rem;
    color: #ddd;
    cursor: pointer;
    transition: color 0.2s;
}

.star-rating label:hover,
.star-rating label:hover ~ label,
.star-rating input:checked ~ label {
    color: #f1c40f;
}

.close-modal-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #777;
}


/* Floating News Section */

