/* Pizzaiolo - Main Stylesheet */
/* Color Scheme: Red (#C41E3A) and Gold (#D4AF37) */

:root {
    --primary-red: #C41E3A;
    --primary-red-dark: #A01A2E;
    --primary-red-light: #E84A5F;
    --gold: #D4AF37;
    --gold-dark: #B8941F;
    --gold-light: #F5D76E;
    --white: #FFFFFF;
    --black: #1A1A1A;
    --gray-light: #F5F5F5;
    --gray: #666666;
    --gray-dark: #333333;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--black);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-red);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    line-height: 1;
}

.logo::before {
    content: 'P';
    font-size: 2rem;
    background: linear-gradient(135deg, var(--primary-red), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.header-domain {
    font-size: 0.75rem;
    color: var(--gray);
    font-weight: 400;
    margin-top: 0.25rem;
    line-height: 1;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: var(--black);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

nav a:hover {
    color: var(--primary-red);
}

nav a.active {
    color: var(--primary-red);
    font-weight: 600;
}

nav a.active::after {
    width: 100%;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--gold);
    transition: var(--transition);
}

nav a:hover::after {
    width: 100%;
}

.cart-icon {
    position: relative;
    text-decoration: none;
    color: var(--black);
    font-size: 1rem;
    font-weight: 500;
    transition: var(--transition);
    padding: 0.5rem;
}

.cart-icon:hover {
    color: var(--primary-red);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--primary-red);
    color: var(--white);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--black);
    transition: var(--transition);
}

.mobile-menu-toggle:hover {
    color: var(--primary-red);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 2000;
    overflow: hidden;
    max-height: 0;
    transform: translateY(-10px);
    transition: max-height 0.3s ease, transform 0.3s ease;
}

.mobile-menu.active {
    max-height: 100vh;
    transform: translateY(0);
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1500;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid var(--gray-light);
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--black);
    transition: var(--transition);
}

.mobile-menu-close:hover {
    color: var(--primary-red);
    transform: rotate(90deg);
}

.mobile-menu-content {
    padding: 1rem;
}

.mobile-menu-section {
    margin-bottom: 2rem;
}

.mobile-menu-section:last-child {
    margin-bottom: 0;
}

.mobile-menu-section-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
    padding: 0 0.5rem;
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu ul li {
    margin-bottom: 0.5rem;
}

.mobile-menu ul li:last-child {
    margin-bottom: 0;
}

.mobile-menu ul a {
    text-decoration: none;
    color: var(--black);
    font-size: 1.1rem;
    font-weight: 500;
    display: block;
    padding: 0.75rem;
    transition: var(--transition);
    border-radius: 5px;
}

.mobile-menu ul a:hover {
    background-color: var(--gray-light);
    color: var(--primary-red);
}

.mobile-menu ul a.active {
    background-color: var(--primary-red);
    color: var(--white);
    font-weight: 600;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-dark) 100%);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-home {
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.8) 0%, rgba(160, 26, 46, 0.8) 100%), url('../images/hero.jfif') center/cover no-repeat;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
    text-align: center;
}

.btn-primary {
    background-color: var(--gold);
    color: var(--black);
}

.btn-primary:hover {
    background-color: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-red);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-red);
    border: 2px solid var(--primary-red);
}

.btn-outline:hover {
    background-color: var(--primary-red);
    color: var(--white);
}

/* Sections */
section {
    padding: 4rem 0;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

section.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-red);
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--gold));
    border-radius: 2px;
}

/* Pizza Grid */
.pizza-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.pizza-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    cursor: pointer;
}

.pizza-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(196, 30, 58, 0.2);
}

.pizza-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--primary-red-light), var(--primary-red));
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 3rem;
}

.pizza-info {
    padding: 1.5rem;
}

.pizza-name {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-red);
    margin-bottom: 0.5rem;
}

.pizza-description {
    color: var(--gray);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.pizza-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pizza-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--gold-dark);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    z-index: 3000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.cookie-text {
    flex: 1;
    min-width: 250px;
    color: var(--gray-dark);
}

.cookie-text a {
    color: var(--primary-red);
    text-decoration: none;
}

.cookie-text a:hover {
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.cookie-banner .btn {
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    min-width: 120px;
    white-space: nowrap;
    border-radius: 8px;
    cursor: pointer;
}

.cookie-banner .btn-primary {
    background-color: var(--primary-red);
    color: var(--white);
    border: 2px solid var(--primary-red);
}

.cookie-banner .btn-primary:hover {
    background-color: var(--primary-red-dark);
    border-color: var(--primary-red-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(196, 30, 58, 0.3);
}

.cookie-banner .btn-secondary {
    background-color: var(--white);
    color: var(--primary-red);
    border: 2px solid var(--primary-red);
}

.cookie-banner .btn-secondary:hover {
    background-color: var(--gray-light);
    color: var(--primary-red-dark);
    border-color: var(--primary-red-dark);
}

/* Footer */
footer {
    background-color: var(--black);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--gold);
    margin-bottom: 1rem;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    display: block;
    margin-bottom: 0.5rem;
}

.footer-section a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-dark);
    color: var(--gray);
}

/* Cart Styles */
.cart-container {
    max-width: 900px;
    margin: 2rem auto;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--gray-light);
    background-color: var(--white);
    margin-bottom: 1rem;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    gap: 1rem;
}

.cart-item-image {
    width: 80px;
    height: 80px;
    min-width: 80px;
    background-size: cover;
    background-position: center;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--primary-red);
    margin-bottom: 0.5rem;
}

.cart-item-price {
    color: var(--gray);
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quantity-btn {
    background-color: var(--gray-light);
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.2rem;
}

.quantity-btn:hover {
    background-color: var(--primary-red);
    color: var(--white);
}

.quantity-input {
    width: 50px;
    text-align: center;
    border: 1px solid var(--gray-light);
    border-radius: 5px;
    padding: 0.25rem;
}

.remove-btn {
    background-color: var(--primary-red);
    color: var(--white);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
}

.remove-btn:hover {
    background-color: var(--primary-red-dark);
}

.cart-summary {
    background-color: var(--gray-light);
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2rem;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.empty-cart {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--gray);
}

.empty-cart h2 {
    color: var(--primary-red);
    margin-bottom: 1rem;
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--gray-dark);
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--gray-light);
    border-radius: 5px;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(196, 30, 58, 0.1);
}

/* Map Container */
.map-container {
    margin: 2rem 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: 0;
    display: block;
}

/* Thank You Section */
.thank-you-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 0;
}

.thank-you-content h1 {
    color: var(--primary-red);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.thank-you-content p {
    font-size: 1.25rem;
    color: var(--gray);
    margin-bottom: 2rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Filter Buttons */
.filter-btn {
    transition: var(--transition);
}

.filter-btn.active {
    background-color: var(--primary-red) !important;
    color: var(--white) !important;
    border-color: var(--primary-red) !important;
}

.filter-btn:not(.active):hover {
    background-color: var(--primary-red);
    color: var(--white);
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

/* Accordion Styles */
.accordion {
    margin: 2rem 0;
}

.accordion-item {
    background-color: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.accordion-header {
    background-color: var(--gray-light);
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    font-weight: 600;
    color: var(--primary-red);
}

.accordion-header:hover {
    background-color: var(--primary-red);
    color: var(--white);
}

.accordion-header.active {
    background-color: var(--primary-red);
    color: var(--white);
}

.accordion-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.accordion-header.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 1.5rem;
}

.accordion-content.active {
    max-height: 1000px;
    padding: 1.5rem;
}

/* Table Styles */
.data-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background-color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.data-table thead {
    background-color: var(--primary-red);
    color: var(--white);
}

.data-table th {
    padding: 1rem 1.5rem;
    text-align: left;
    font-weight: 600;
    font-size: 1.1rem;
}

.data-table td {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--gray-light);
}

.data-table tbody tr:hover {
    background-color: var(--gray-light);
}

.data-table tbody tr:last-child td {
    border-bottom: none;
}

/* Mobile table to cards conversion */
@media (max-width: 768px) {
    .data-table {
        border: none;
        box-shadow: none;
        background: transparent;
    }
    
    .data-table thead {
        display: none;
    }
    
    .data-table tbody {
        display: block;
    }
    
    .data-table tbody tr {
        display: block;
        background-color: var(--white);
        border: 1px solid var(--gray-light);
        border-radius: 10px;
        margin-bottom: 1rem;
        padding: 1.5rem;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    
    .data-table tbody tr:last-child {
        margin-bottom: 0;
    }
    
    .data-table td {
        display: block;
        border: none;
        padding: 0.5rem 0;
        text-align: left;
        position: relative;
    }
    
    .data-table td:before {
        content: attr(data-label);
        display: inline-block;
        font-weight: 600;
        color: var(--primary-red);
        margin-right: 0.5rem;
        min-width: 120px;
    }
    
    .data-table td:first-child {
        font-weight: bold;
        color: var(--primary-red);
        font-size: 1.2rem;
        margin-bottom: 1rem;
        padding-bottom: 1rem;
        border-bottom: 2px solid var(--gray-light);
    }
    
    .data-table td:first-child:before {
        display: none;
    }
}

/* Reviews Styles */
.reviews-section {
    margin: 3rem 0;
}

.review-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.review-author {
    font-weight: 600;
    color: var(--primary-red);
    font-size: 1.1rem;
}

.review-date {
    color: var(--gray);
    font-size: 0.9rem;
}

.review-rating {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.review-text {
    color: var(--gray-dark);
    line-height: 1.8;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* Article Styles */
.article-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    transition: var(--transition);
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(196, 30, 58, 0.2);
}

.article-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.article-content {
    padding: 1.5rem;
}

.article-title {
    color: var(--primary-red);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.article-meta {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.article-excerpt {
    color: var(--gray-dark);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.article-link {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.article-link:hover {
    color: var(--primary-red-dark);
    text-decoration: underline;
}

/* Delivery How Section */
.delivery-how {
    background-color: var(--white);
    padding: 4rem 0;
}

.delivery-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.delivery-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    background-color: var(--black);
}

.delivery-image img {
    width: 100%;
    height: auto;
    display: block;
}

.delivery-steps {
    position: relative;
    padding-left: 2rem;
}

.delivery-steps::before {
    content: '';
    position: absolute;
    left: 1.5rem;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: var(--primary-red);
    z-index: 0;
}

.delivery-step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
}

.delivery-step:last-child {
    margin-bottom: 0;
}

.step-number {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background-color: var(--primary-red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(196, 30, 58, 0.3);
}

.step-content h3 {
    color: var(--primary-red);
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.step-content p {
    color: var(--gray-dark);
    line-height: 1.8;
    font-size: 1rem;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

.stat-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-red);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--gray-dark);
    font-size: 1.1rem;
}

/* Customize Pizza Section */
.customize-pizza-container {
    background-color: var(--white);
    border-radius: 10px;
    padding: 2.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
}

.customize-section {
    margin-bottom: 2rem;
}

.customize-section:last-of-type {
    margin-bottom: 0;
}

.customize-label {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 0.75rem;
}

.customize-select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--gray-light);
    border-radius: 5px;
    font-size: 1rem;
    background-color: var(--white);
    color: var(--black);
    cursor: pointer;
    transition: var(--transition);
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.customize-select:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(196, 30, 58, 0.1);
}

.customize-select:hover {
    border-color: var(--primary-red);
}

.toppings-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.topping-item {
    background-color: var(--gray-light);
    border-radius: 5px;
    padding: 0.75rem;
    transition: var(--transition);
}

.topping-item:hover {
    background-color: rgba(196, 30, 58, 0.1);
}

.topping-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 1rem;
    color: var(--black);
    user-select: none;
}

.topping-checkbox {
    width: 18px;
    height: 18px;
    margin-right: 0.75rem;
    cursor: pointer;
    accent-color: var(--primary-red);
}

.topping-checkbox:checked + span {
    font-weight: 600;
    color: var(--primary-red);
}

.customize-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--gray-light);
}

.total-label {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--black);
}

.total-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-red);
}

.customize-actions {
    margin-top: 2rem;
    text-align: center;
}

.customize-actions .btn {
    width: 100%;
    max-width: 300px;
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

