/* Pizza Starter Theme - CSS */
/* ========================= */

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--light);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Fredoka One', cursive;
    font-weight: 400;
    line-height: 1.2;
    color: var(--dark);
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary);
}

img {
    max-width: 100%;
    height: auto;
}

/* Utility Classes */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

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

.section-subtitle {
    font-size: 1.125rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn svg {
    width: 18px;
    height: 18px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
    color: white;
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

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

.btn-light {
    background: white;
    color: var(--primary);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    color: var(--primary);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-block {
    width: 100%;
}

/* ====================== */
/* HEADER / NAVIGATION    */
/* ====================== */

.top-bar {
    background: var(--dark);
    color: white;
    padding: 0.5rem 0;
    font-size: 0.875rem;
}

.top-bar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    gap: 1.5rem;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.top-bar-item svg {
    width: 14px;
    height: 14px;
}

.top-bar-right .delivery-badge {
    background: var(--accent);
    color: var(--dark);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.75rem;
}

/* Main Header */
.header {
    background: white;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.logo-icon svg {
    width: 28px;
    height: 28px;
}

.logo-text {
    font-family: 'Fredoka One', cursive;
    font-size: 1.5rem;
    color: var(--dark);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--dark);
    font-weight: 600;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    color: var(--primary);
}

.nav-phone svg {
    width: 20px;
    height: 20px;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn svg {
    width: 28px;
    height: 28px;
    color: var(--dark);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    z-index: 1001;
    padding: 2rem;
    flex-direction: column;
    gap: 1rem;
}

.mobile-menu.active {
    display: flex;
}

.mobile-nav-link {
    font-size: 1.25rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #eee;
    color: var(--dark);
    font-weight: 600;
}

.mobile-menu-actions {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (max-width: 768px) {
    .nav-links, .nav-actions {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .top-bar-left {
        flex-direction: column;
        gap: 0.25rem;
    }

    .top-bar-container {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* ====================== */
/* HERO SECTION           */
/* ====================== */

.hero {
    background: linear-gradient(135deg, var(--light) 0%, #fff 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 80%, rgba(220, 38, 38, 0.05) 0%, transparent 40%),
                      radial-gradient(circle at 80% 20%, rgba(234, 88, 12, 0.05) 0%, transparent 40%);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(220, 38, 38, 0.1);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.hero-badge svg {
    width: 16px;
    height: 16px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.hero-stat svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

.stat-value {
    display: block;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--dark);
}

.stat-label {
    display: block;
    font-size: 0.75rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 500px;
}

.pizza-showcase {
    position: relative;
    width: 100%;
    height: 100%;
}

.pizza-circle {
    position: absolute;
    border-radius: 50%;
}

.pizza-1 {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, var(--accent) 0%, #fcd34d 100%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 20px 60px rgba(251, 191, 36, 0.3);
}

.pizza-1::before {
    content: '';
    position: absolute;
    inset: 15px;
    border-radius: 50%;
    background: repeating-radial-gradient(circle at 30% 40%, var(--primary) 0, var(--primary) 10px, transparent 10px, transparent 30px),
                repeating-radial-gradient(circle at 70% 60%, var(--primary) 0, var(--primary) 8px, transparent 8px, transparent 25px);
}

.pizza-2 {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    top: 10%;
    right: 20%;
    animation: float 4s ease-in-out infinite;
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
}

.pizza-3 {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    bottom: 20%;
    left: 10%;
    animation: float 5s ease-in-out infinite reverse;
    box-shadow: 0 8px 25px rgba(234, 88, 12, 0.3);
}

.floating-topping {
    position: absolute;
    border-radius: 50%;
    animation: float 3s ease-in-out infinite;
}

.topping-1 {
    width: 30px;
    height: 30px;
    background: var(--success);
    top: 30%;
    right: 10%;
    animation-delay: 0.5s;
}

.topping-2 {
    width: 20px;
    height: 20px;
    background: var(--primary);
    bottom: 30%;
    right: 25%;
    animation-delay: 1s;
}

.topping-3 {
    width: 25px;
    height: 25px;
    background: var(--accent);
    top: 60%;
    left: 5%;
    animation-delay: 1.5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@media (max-width: 968px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        max-width: none;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-actions {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        display: none;
    }
}

/* ====================== */
/* SPECIALS SECTION       */
/* ====================== */

.specials {
    padding: 5rem 0;
    background: white;
}

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

.special-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.special-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.special-card.featured {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border: none;
}

.special-card.featured .special-name,
.special-card.featured .special-desc,
.special-card.featured .special-original {
    color: rgba(255, 255, 255, 0.9);
}

.special-badge {
    display: inline-block;
    background: var(--accent);
    color: var(--dark);
    padding: 0.35rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.special-badge.secondary {
    background: rgba(220, 38, 38, 0.1);
    color: var(--primary);
}

.special-card.featured .special-badge {
    background: white;
    color: var(--primary);
}

.special-name {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.special-desc {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.special-pricing {
    margin-bottom: 1.5rem;
}

.special-price {
    font-family: 'Fredoka One', cursive;
    font-size: 2.5rem;
    color: var(--primary);
}

.special-card.featured .special-price {
    color: white;
}

.special-original {
    display: block;
    text-decoration: line-through;
    color: #999;
    font-size: 1rem;
}

@media (max-width: 968px) {
    .specials-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}

/* ====================== */
/* MENU SECTION           */
/* ====================== */

.menu {
    padding: 5rem 0;
    background: var(--light);
}

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

.menu-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.menu-item-image {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, var(--light) 0%, #fff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pizza-placeholder {
    width: 120px;
    height: 120px;
}

.menu-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
}

.menu-item-content {
    padding: 1.5rem;
}

.menu-item-name {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.menu-item-desc {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.menu-item-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-item-price {
    font-family: 'Fredoka One', cursive;
    font-size: 1.5rem;
    color: var(--primary);
}

.add-to-cart {
    background: var(--primary);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.add-to-cart:hover {
    background: var(--secondary);
    transform: scale(1.05);
}

.menu-cta {
    text-align: center;
    margin-top: 3rem;
}

@media (max-width: 968px) {
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .menu-grid {
        grid-template-columns: 1fr;
    }
}

/* ====================== */
/* WHY US SECTION         */
/* ====================== */

.why-us {
    padding: 5rem 0;
    background: white;
}

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

.why-card {
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.why-card:hover {
    background: var(--light);
    transform: translateY(-5px);
}

.why-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1), rgba(234, 88, 12, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.why-icon svg {
    width: 36px;
    height: 36px;
    color: var(--primary);
}

.why-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.why-card p {
    color: #666;
    font-size: 0.95rem;
}

@media (max-width: 968px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}

/* ====================== */
/* TESTIMONIALS           */
/* ====================== */

.testimonials {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--light) 0%, #fff 100%);
}

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

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.testimonial-stars svg {
    width: 20px;
    height: 20px;
    color: var(--accent);
}

.testimonial-text {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: 'Fredoka One', cursive;
    font-size: 1.25rem;
}

.testimonial-author strong {
    display: block;
    color: var(--dark);
}

.testimonial-author span {
    font-size: 0.875rem;
    color: #888;
}

@media (max-width: 968px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

/* ====================== */
/* CTA SECTION            */
/* ====================== */

.cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    position: relative;
    overflow: hidden;
}

.cta-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.cta-content {
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 0.75rem;
}

.cta-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-decoration {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.2;
}

.pizza-slice {
    width: 200px;
    height: 200px;
    background: white;
    border-radius: 0 100% 0 0;
    transform: rotate(45deg);
}

/* ====================== */
/* FOOTER                 */
/* ====================== */

.footer {
    background: var(--dark);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand .footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: white;
}

.footer-brand .logo-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.footer-brand .logo-icon svg {
    width: 24px;
    height: 24px;
}

.footer-about {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact-item svg {
    width: 18px;
    height: 18px;
    color: var(--primary);
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact-item a:hover {
    color: white;
}

.footer-links h4 {
    color: white;
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-social svg {
    width: 18px;
    height: 18px;
    color: white;
}

@media (max-width: 968px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* ====================== */
/* PAGE TEMPLATES         */
/* ====================== */

.page-hero {
    background: linear-gradient(135deg, var(--light) 0%, #fff 100%);
    padding: 4rem 0;
    text-align: center;
}

.page-hero-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.page-title {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.25rem;
    color: #666;
}

.page-content {
    padding: 4rem 0;
}

.page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.page-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
}

.page-grid.full-width {
    grid-template-columns: 1fr;
}

.page-main {
    min-width: 0;
}

.page-body {
    font-size: 1.1rem;
    line-height: 1.8;
}

.page-body h2 {
    margin: 2rem 0 1rem;
}

.page-body h3 {
    margin: 1.5rem 0 0.75rem;
}

.page-body p {
    margin-bottom: 1.5rem;
}

.page-body ul, .page-body ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.page-body li {
    margin-bottom: 0.5rem;
}

/* Sidebar */
.page-sidebar, .post-sidebar, .archive-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-widget {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.sidebar-widget.featured {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
}

.sidebar-widget.featured h4 {
    color: white;
}

.sidebar-widget h4 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--light);
}

.sidebar-widget.featured h4 {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.hours-list .hours-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.hours-list .hours-row:last-child {
    border-bottom: none;
}

.phone-link {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0.5rem 0;
}

.delivery-note {
    font-size: 0.875rem;
    color: #666;
    margin-top: 0.5rem;
}

/* Order Info Section */
.order-info {
    padding: 4rem 0;
    background: var(--light);
}

.order-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.order-info-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.order-info-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1), rgba(234, 88, 12, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.order-info-icon svg {
    width: 32px;
    height: 32px;
    color: var(--primary);
}

.order-info-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.order-info-card p {
    color: #666;
    margin-bottom: 0.25rem;
}

.order-info-card .price-text {
    color: #888;
}

.order-info-card .highlight-text {
    color: var(--primary);
    font-weight: 700;
}

/* Contact Form Wrapper */
.contact-form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 2rem;
    margin-top: 2rem;
}

.contact-info-card {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 2rem;
    border-radius: 20px;
}

.contact-info-card h3 {
    color: white;
    margin-bottom: 1.5rem;
}

.contact-details .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.contact-details .contact-item svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.hours-info {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hours-info h4 {
    color: white;
    margin-bottom: 0.75rem;
}

.hours-info p {
    margin-bottom: 0.25rem;
    opacity: 0.9;
}

.contact-form-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {
    .page-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        grid-template-columns: 1fr;
    }

    .order-info-grid {
        grid-template-columns: 1fr;
    }
}

/* ====================== */
/* BLOG / ARCHIVE         */
/* ====================== */

.archive-hero {
    background: linear-gradient(135deg, var(--light) 0%, #fff 100%);
    padding: 4rem 0;
    text-align: center;
}

.archive-hero-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.archive-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.archive-title {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.archive-subtitle {
    color: #666;
    font-size: 1.125rem;
}

.archive-content {
    padding: 4rem 0;
}

.archive-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.archive-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
}

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

.post-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.post-card-link {
    display: block;
    color: inherit;
}

.post-card-image {
    height: 200px;
    background: var(--light);
    overflow: hidden;
}

.post-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.post-card-image.placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
}

.post-card-image.placeholder svg {
    width: 80px;
    height: 80px;
}

.post-card-content {
    padding: 1.5rem;
}

.post-card-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.post-card-category {
    color: var(--primary);
    font-weight: 600;
}

.post-card-date {
    color: #888;
}

.post-card-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.post-card-excerpt {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.post-card-readmore {
    color: var(--primary);
    font-weight: 700;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 3rem;
}

.pagination-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: white;
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.pagination-btn svg {
    width: 18px;
    height: 18px;
}

.pagination-numbers {
    display: flex;
    gap: 0.5rem;
}

.pagination-number {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--dark);
    font-weight: 600;
    transition: all 0.3s ease;
}

.pagination-number:hover {
    background: var(--light);
    color: var(--primary);
}

.pagination-number.active {
    background: var(--primary);
    color: white;
}

/* No Posts */
.no-posts {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: 20px;
}

.no-posts-icon svg {
    width: 80px;
    height: 80px;
    color: #ddd;
    margin-bottom: 1.5rem;
}

.no-posts h2 {
    margin-bottom: 0.75rem;
}

.no-posts p {
    color: #666;
    margin-bottom: 1.5rem;
}

/* Categories List */
.categories-list {
    list-style: none;
}

.categories-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.categories-list li:last-child {
    border-bottom: none;
}

.categories-list a {
    color: var(--dark);
}

.categories-list a:hover {
    color: var(--primary);
}

.categories-list .count {
    background: var(--light);
    padding: 0.15rem 0.5rem;
    border-radius: 10px;
    font-size: 0.75rem;
    color: #666;
}

/* Newsletter CTA */
.newsletter-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.newsletter-cta .cta-content h2 {
    color: white;
}

.newsletter-cta .cta-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.newsletter-form {
    display: flex;
    gap: 0.75rem;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
}

.newsletter-form .btn {
    white-space: nowrap;
}

@media (max-width: 968px) {
    .archive-grid {
        grid-template-columns: 1fr;
    }

    .posts-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        flex-direction: column;
    }
}

/* ====================== */
/* SINGLE POST            */
/* ====================== */

.post-hero {
    background: linear-gradient(135deg, var(--light) 0%, #fff 100%);
    padding: 3rem 0 4rem;
}

.post-hero-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.post-featured-image {
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.post-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-hero-content {
    text-align: center;
}

.post-meta {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.post-category {
    background: var(--primary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.post-date {
    color: #888;
    font-size: 0.875rem;
}

.post-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.post-author {
    color: #666;
}

.post-content {
    padding: 4rem 0;
}

.post-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.post-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
}

.post-body {
    font-size: 1.1rem;
    line-height: 1.8;
}

.post-body p {
    margin-bottom: 1.5rem;
}

.post-body h2, .post-body h3 {
    margin: 2rem 0 1rem;
}

.post-body img {
    border-radius: 15px;
    margin: 2rem 0;
}

.post-body blockquote {
    border-left: 4px solid var(--primary);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: #555;
}

/* Post Footer */
.post-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.post-tags {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.tags-label {
    font-weight: 600;
    color: var(--dark);
}

.tag {
    background: var(--light);
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    font-size: 0.875rem;
    color: var(--dark);
    transition: all 0.3s ease;
}

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

.post-share {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.share-label {
    font-weight: 600;
    color: var(--dark);
}

.share-buttons {
    display: flex;
    gap: 0.5rem;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.share-btn.facebook {
    background: #1877f2;
    color: white;
}

.share-btn.twitter {
    background: #000;
    color: white;
}

.share-btn:hover {
    transform: scale(1.1);
}

.share-btn svg {
    width: 18px;
    height: 18px;
}

/* Related Posts */
.related-posts {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.related-posts h3 {
    margin-bottom: 1.5rem;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.related-post-card {
    display: block;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.related-post-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.related-post-image {
    height: 120px;
    background: var(--light);
}

.related-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-post-card h4 {
    padding: 1rem;
    font-size: 1rem;
    color: var(--dark);
}

/* Post CTA */
.post-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.post-cta .cta-content h2 {
    color: white;
}

.post-cta .cta-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

/* Recent Posts Sidebar List */
.recent-posts-list {
    list-style: none;
}

.recent-posts-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.recent-posts-list li:last-child {
    border-bottom: none;
}

.recent-posts-list a {
    display: block;
    color: var(--dark);
    font-weight: 600;
    margin-bottom: 0.25rem;
    line-height: 1.4;
}

.recent-posts-list a:hover {
    color: var(--primary);
}

.recent-posts-list .post-date {
    font-size: 0.75rem;
    color: #888;
}

@media (max-width: 968px) {
    .post-grid {
        grid-template-columns: 1fr;
    }

    .post-title {
        font-size: 2rem;
    }

    .related-posts-grid {
        grid-template-columns: 1fr;
    }
}

/* ====================== */
/* 404 PAGE               */
/* ====================== */

.error-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 1.5rem;
    background: linear-gradient(135deg, var(--light) 0%, #fff 100%);
}

.error-container {
    text-align: center;
    max-width: 700px;
}

.error-visual {
    position: relative;
    margin-bottom: 2rem;
}

.error-pizza svg {
    width: 200px;
    height: 200px;
}

.error-code {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Fredoka One', cursive;
    font-size: 4rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.error-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.error-content p {
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 2rem;
}

.error-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.error-suggestions h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.suggestions-grid {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.suggestion-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    color: var(--dark);
    transition: all 0.3s ease;
}

.suggestion-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    color: var(--primary);
}

.suggestion-icon {
    width: 50px;
    height: 50px;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.suggestion-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

@media (max-width: 576px) {
    .error-actions {
        flex-direction: column;
    }

    .suggestions-grid {
        flex-direction: column;
        align-items: center;
    }
}

/* ====================== */
/* WIDGET STYLES          */
/* ====================== */

.widget {
    margin-bottom: 1.5rem;
}

.widget-title {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--light);
}

.widget-menu {
    list-style: none;
}

.widget-menu li {
    margin-bottom: 0.5rem;
}

.widget-menu a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.widget-menu a:hover {
    color: var(--primary);
}

.widget-text {
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
}

.widget-recent-posts {
    list-style: none;
}

.widget-recent-posts li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.widget-recent-posts li:last-child {
    border-bottom: none;
}

.widget-recent-posts a {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.widget-recent-posts a:hover {
    color: var(--primary);
}

.widget-recent-posts .post-date {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}

.widget-categories {
    list-style: none;
}

.widget-categories li {
    margin-bottom: 0.5rem;
}

.widget-categories a {
    color: rgba(255, 255, 255, 0.7);
}

.widget-categories a:hover {
    color: var(--primary);
}

.widget-social {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.social-link svg {
    width: 18px;
    height: 18px;
    color: white;
}

.widget-contact-info .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
}

.widget-contact-info .contact-item svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--primary);
}

.widget-contact-info a {
    color: rgba(255, 255, 255, 0.7);
}

.widget-contact-info a:hover {
    color: white;
}

.widget-hours .hours-row {
    display: flex;
    justify-content: space-between;
    padding: 0.4rem 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.widget-hours .day {
    font-weight: 600;
}

/* Footer Widget Area Overrides */
.footer-widget-area .widget-title {
    color: white;
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

/* Form Styles */
.order-form-wrapper,
.contact-form-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

/* Contact Form Plugin Styles Override */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-form label {
    font-weight: 600;
    color: var(--dark);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    padding: 0.875rem 1rem;
    border: 2px solid #eee;
    border-radius: 10px;
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-form button[type="submit"] {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
}

/* Scrolled Header */
.header.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}
