/*
Theme Name: Pizza Theme
Author: AZIZ ELANBOURI
*/


* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Poppins', sans-serif;
  background-color: #FFF4F4;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #333;
  overflow-x: hidden;
}

nav {
  width: 100%;
  background-color: white;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  padding: 1.2rem 5%;
  position: sticky;
  top: 0;
  z-index: 10000000;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

.nav-left {
  display: flex;
  align-items: center;
  flex: 1;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: #FF6B00;
  line-height: 1;
  letter-spacing: -0.5px;
}

.tagline {
  font-size: 0.85rem;
  color: #666;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 0.3rem;
  font-weight: 500;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  justify-content: flex-end;
  flex: 1;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu li {
  position: relative;
  list-style: none;

}

.nav-menu a {
  text-decoration: none;
  color: black;
  font-weight: 500;
  font-size: 1.1rem;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  white-space: nowrap;
}

.nav-menu a:hover, .nav-menu a:focus {
  color: #FF6B00;
  outline: none;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  list-style: none;
  width: 180px;
  padding: 0.8rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 100;
}

.dropdown-menu li {
  padding: 0.5rem 1.2rem;
}

.dropdown-menu a {
  font-size: 1rem;
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-icon {
  font-size: 1.3rem;
  color: black;
  position: relative;
  transition: color 0.3s;
}

.nav-icon:hover, .nav-icon:focus {
  color: #FF6B00;
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #FF6B00;
  color: white;
  font-size: 0.7rem;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.mobile-toggle {
  display: none;
  font-size: 1.8rem;
  color: black;
  cursor: pointer;
  z-index: 101;
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
}

@media (max-width: 768px) {
  .nav-menu {
    flex-direction: column;
    display: flex;
    width: 100%;
  }

  .nav-right {
    flex-direction: column;
    align-items: start;
    position: fixed;
    top: 0;
    left: 0;
    background: white;
    width: 80%;
    max-width: 280px;
    height: 100vh;
    padding: 6rem 2rem 2rem;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.15);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 100;
  }

  .nav-right.active {
    transform: translateX(0);
    overflow-y: auto;
  }
  
  .nav-menu a {
    margin: 10% 0 10% 0;
  }
  
  .nav-menu {
    overflow-y: auto;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    width: 100%;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: #f9f9f9;
  }

  .dropdown.active .dropdown-menu {
    max-height: 300px;
    padding: 0.5rem 0 0 1.5rem;
  }

  .mobile-toggle {
    display: block;
  }

  .logo {
    font-size: 1.8rem;
  }

  .tagline {
    font-size: 0.7rem;
  }
}

@media (max-width: 400px) {
  .logo {
    font-size: 1.5rem;
  }

  .tagline {
    font-size: 0.6rem;
  }
}

/* ===== FOOTER STYLES ===== */
/* CSS Variables */
:root {
    --primary: #FF6B00;
    --secondary: #FF8C00;
    --accent: #FFD700;
    --dark: #2D2D2D;
    --light: #F8F8F8;
    --gray-400: #9CA3AF;
}

/* Container */
.container {
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

/* Newsletter Section */
.newsletter-section {
    position: relative;
    width: 100%;
    background-color: var(--light);
    padding: 3em 0;
    margin: 0 5em -3em;
    border-radius: 2em;
    max-width: 1200px;
    background-image: url('./assets/Images/Group-1000012602.png'), url('./assets/Images/Group-1000012603.png');
    background-position: top left, bottom right;
    background-repeat: no-repeat, no-repeat;
    background-size: 20vw, 20vw;
    z-index: 2;
}

.newsletter-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.newsletter-text {
    width: 100%;
    margin-bottom: 40px;
    text-align: center;
}

.newsletter-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
    font-family: 'Ephesis', cursive;
}

.newsletter-subtitle {
    font-size: 1rem;
    color: black;
    margin-bottom: 25px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    padding: 15px;
    border-radius: 10px;
    border: none;
    font-size: 1rem;
}

.newsletter-form button {
    background-color: var(--dark);
    color: white;
    padding: 15px 25px;
    border-radius: 10px;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
    background-color: black;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2em;
    max-width: 60em;
    margin: 3em auto;
}

.grid-image {
    width: 100%;
    border-radius: 10px;
}

/* Footer Section */
.footer {
    position: relative;
    z-index: 1;
    background-color: var(--primary);
    color: white;
    padding-top: 80px;
    padding-bottom: 40px;
    text-align: center;
    display: flex;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    justify-content: center;
}

.footer-logo img {
    height: 50px;
    max-width: 100%;
}

.footer-desc {
    color: var(--light);
    margin-bottom: 25px;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

.social-icons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.social-icon {
    color: var(--light);
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: var(--dark);
}

.footer-heading {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 25px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-link {
    margin-bottom: 3em !important;
}

.footer-link a {
    color: var(--light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link a:hover {
    color: var(--dark);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 20px;
}

.contact-icon {
    color: white;
    margin-top: 5px;
    margin-right: 15px;
    font-size: 1rem;
}

.contact-text {
    color: var(--light);
    text-align: left;
    flex: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.copyright {
    color: var(--light);
    margin-bottom: 20px;
    text-align: center;
}

.payment-methods {
    height: 35px;
    max-width: 100%;
}

/* Responsive Design */
@media (min-width: 768px) {
    .newsletter-content {
        flex-direction: row;
        align-items: center;
    }
    
    .newsletter-text {
        width: 50%;
        margin-bottom: 0;
        padding-right: 40px;
        text-align: left;
    }
    
    .newsletter-form {
        flex-direction: row;
    }
    
    .newsletter-form input {
        flex-grow: 1;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .image-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .copyright {
        margin-bottom: 0;
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .newsletter-title {
        font-size: 3rem;
    }
    
    .newsletter-subtitle {
        font-size: 1.5rem;
    }
}

@media (max-width: 767px) {
    .newsletter-section {
        margin: 0 1em -3em;
    }
    
   .image-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Fix footer link colors */
.footer a {
    color: #fff !important;
    text-decoration: none;
    transition: color 0.3s ease;
    margin-bottom: 2em !important;
}

.footer a:hover {
    color: #171715 !important; /* Gold accent color on hover */
}

/* Specific styles for footer links */
.footer-links a {
    color: #F8F8F8 !important;
}

.footer-links a:hover {
    color: #0f0f0e !important;
    margin-bottom: 2em !important;
}

/* Contact info styles */
.contact-text {
    color: #F8F8F8 !important;
}

.footer-links > li {
  margin-bottom: 1em;
}

/* ===== HOME PAGE STYLES ===== */
/* Colors */
:root {
    --primary: #FF6B00;
    --secondary: #FF8C00;
    --accent: #FFD700;
    --red: #FF2524;
    --dark: #2D2D2D;
    --light: #F8F8F8;
    --gray-400: #9CA3AF;
}

/* Container */
.container {
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    justify-items: center;
    align-items: center;

}

/* Hero Section */
.hero-section {
    background-color: #FFF9F0;
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    
}

.hero-title {
    margin: 3rem 0;
    margin:3em 0;
    position: relative;
    z-index: 10;
}

.hero-main-title {
    font-family: 'Poppins', sans-serif;
    font-size: 8rem;
    font-weight: 500;
    color: var(--primary);
    margin: 0;
    padding: 0;
    text-shadow: 3px 3px 0px rgba(0, 0, 0, 0.1);
    line-height: 0.9;
    letter-spacing: -3px;
    text-transform: capitalize;
}

.hero-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 4rem;
    color: black;
    margin: 0;
    padding: 0;
    font-weight: 600;
    letter-spacing: -2px;
    text-transform: capitalize;
}

.hero-button {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.2rem;
    font-weight: bold;
    color: white;
    text-align: center;
    background-color: var(--primary);
    border: none;
    padding: 1.3em 3em;
    border-radius: 2em;
    margin: 2rem auto 0;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(255, 37, 36, 0.3);
    display: inline-block;
    text-decoration: none;
}

.hero-button:hover {
    background-color: #d76514;
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(255, 37, 36, 0.4);
    color: white;
}

.hero-images {
    position: relative;
    display: flex;
    justify-content: center;
    min-height: 600px;
}

.hero-image {
    width: 70em;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease-out;
    transform: translateY(0);
}

.top-left {
    position: absolute;
    top: 0%;
    left: 0%;
    margin-left: -1em;
    width: 18em;
    max-width: 30%;
    z-index: 5;
    animation: bounceLeft 3s ease-in-out infinite;
}

.top-right {
    position: absolute;
    top: 0%;
    right: 0%;
    width: 10em;
    max-width: 20%;
    z-index: 5;
    animation: bounceRight 3.5s ease-in-out infinite;
}

/* Bounce Animations */
@keyframes bounceLeft {
    0%, 100% {
        transform: translateY(0) rotate(-5deg);
    }
    50% {
        transform: translateY(-25px) rotate(5deg);
    }
}

@keyframes bounceRight {
    0%, 100% {
        transform: translateY(0) rotate(5deg);
    }
    50% {
        transform: translateY(-20px) rotate(-5deg);
    }
}

/* Section Styles */
.section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 1.5rem;
    text-align: center;
}
.section-title > span {
  color: #FF6B00;
}

.section-subtitle > span {
  color: #FF6B00;
  
}
.divider {
    width: 80px;
    height: 4px;
    background-color: var(--primary);
    margin: 0 auto;
}

.free-drinks {
  background-color: #FF2524;
  padding: 2em;
  color: white;
  text-align: center;
}

/* Menu Items */
.menu-section .products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.primary-button {
    background: #FF6B00;
    color: white;
    padding: 1rem 2rem;
    border-radius: 2rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    margin: 3em 0;
    border: none;
    cursor: pointer;
}

.primary-button:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 15px -3px rgba(255, 37, 36, 0.4);
    color: white;
}

/* Delivery Section */
.card-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
}

.card {
    width: 100%;
    max-width: 700px;
    padding: 2rem;
    height: 25rem;
    border-radius: 3rem;
    color: white;
    text-align: start;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.card:nth-child(1) {
    background-color:  #FF2524;
}

.card:nth-child(2) {
    background-color: #FF8600;
}

.card h2 {
    font-family: "Ephesis";
    font-size: 3rem;
    margin-bottom: 10px;
    z-index: 2;
}

.card h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    z-index: 2;
}

.card-button {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 10px 20px;
    border-radius: 2em;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    z-index: 2;
}

.card-button:hover {
    background: white;
    color: var(--dark);
}

.pizza-card {
    position: absolute;
    width: 22rem;
    max-width: 70%;
    bottom: 0;
    right: 0;
    z-index: 1;
}

.delivery-container {
    display: flex;
    justify-content: space-between;
    background-color: var(--secondary);
    padding: 3rem 0;
    color: white;
    flex-wrap: wrap;
}

.delivery-content {
    flex: 1;
    min-width: 300px;
    padding: 2rem;
}

.delivery-subtitle {
    font-family: "Ephesis";
    font-size: 3rem;
    padding: 0;
    margin: 0;
}

.delivery-title {
    font-size: 5rem;
    font-weight: 100;
    padding: 0;
    margin: 0;
}

.delivery-description {
    font-size: 1.5rem;
    max-width: 600px;
}

.features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.feature-item {
    flex: 1;
    min-width: 200px;
}

.feature-icon {
    width: 7rem;
    margin: 1rem 0;
}

.feature-title {
    font-weight: 100;
    font-size: 1.5rem;
}

.delivery-image {
    flex: 1;
    min-width: 300px;
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.delivery-image img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    animation: float 3s ease-in-out infinite;
}

/* Floating animation */
@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-30px);
    }
    100% {
        transform: translateY(0);
    }
}

/* Testimonials */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3em 0;
}

.testimonial-card {
    background-color: var(--light);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.stars {
    color: #FFD700;
    font-size: 1.2rem;
}

/* Blog */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.blog-card {
    background-color: var(--light);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-main-title {
        font-size: 6rem;
    }
    
    .hero-subtitle {
        font-size: 4.5rem;
    }
    
    .card h2 {
        font-size: 2.5rem;
    }
    
    .card h1 {
        font-size: 2rem;
    }
    
    .card-button {
        font-size: 1.3rem;
    }
    
    .pizza-card {
        width: 18rem;
    }
    
    .delivery-title {
        font-size: 4rem;
    }
    
    .delivery-description {
        font-size: 1.3rem;
    }
}

@media (max-width: 992px) {
    .hero-main-title {
        font-size: 5rem;
    }
    
    .hero-subtitle {
        font-size: 3.5rem;
    }
    
    .card-container {
        flex-direction: column;
        align-items: center;
    }
    
    .card {
        width: 100%;
        max-width: 500px;
        margin-bottom: 2rem;
        height: 22rem;
    }
    
    .delivery-container {
        flex-direction: column;
        text-align: center;
    }
    
    .delivery-content {
        text-align: center;
    }
    
    .features {
        justify-content: center;
    }
    
    .testimonial-grid,
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-main-title {
        font-size: 4rem;
    }
    
    .hero-subtitle {
        font-size: 3rem;
    }
    
    .hero-button {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
    
    .menu-section .products {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .card {
        padding: 1.5rem;
        height: 20rem;
        border-radius: 2rem;
    }
    
    .card h2 {
        font-size: 2.2rem;
    }
    
    .card h1 {
        font-size: 1.8rem;
    }
    
    .card-button {
        font-size: 1.2rem;
        padding: 8px 16px;
    }
    
    .pizza-card {
        width: 15rem;
    }
    
    .delivery-subtitle {
        font-size: 2.5rem;
    }
    
    .delivery-title {
        font-size: 3rem;
    }
    
    .delivery-description {
        font-size: 1rem;
    }
    
    .feature-icon {
        width: 4rem;
    }
    
    .feature-title {
        font-size: 1rem;
    }
    
    .testimonial-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .hero-main-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 2.5rem;
    }
    
    .menu-section .products {
        grid-template-columns: 1fr;
    }
    
    .card {
        height: 18rem;
    }
    
    .card h2 {
        font-size: 1.8rem;
    }
    
    .card h1 {
        font-size: 1.5rem;
    }
    
    .card-button {
        font-size: 1rem;
    }
    
    .pizza-card {
        width: 12rem;
    }
    
    .delivery-title {
        font-size: 2.5rem;
    }
    
    .feature-item {
        min-width: 100%;
    }
}
.w-12 {
  width: 3rem; /* 48px */
}
.h-12 {
  height: 3rem; /* 48px */
}
.rounded-full {
  border-radius: 9999px;
}
.mr-4 {
  margin-right: 1rem; /* 16px */
}
.flex {
  display: flex;
}
.items-center {
  align-items: center;
}
.mb-6 {
  margin-bottom: 1.5rem; /* 24px */
}
.text-primary {
  color: #FF6B00;
}
/* Reservation Section Styling */
.booking {
    background-color: #f8f9fa;
    margin: 2em 0;
}

.bg-light {
    background-color: #f8f9fa !important;
}

.booking .container {
    max-width: 80vw;
    margin: 0 auto;
}

.booking .bg-white {
    background-color: white;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    padding: 2.5rem;
}

.booking h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #2D2D2D;
}

.booking h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #FF6B00;
    margin-bottom: 1.5rem;
}

.booking label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #4a5568;
}

.booking input,
.booking select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.booking input:focus,
.booking select:focus {
    outline: none;
    border-color: #FF6B00;
    box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.2);
}

.booking .btn-primary {
    background: linear-gradient(90deg, #FF6B00 0%, #FF8E00 100%);
    color: white;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(255, 107, 0, 0.3);
    cursor: pointer;
}

.booking .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(255, 107, 0, 0.4);
    background: linear-gradient(90deg, #e65a00 0%, #e67e00 100%);
}

.booking .space-y-6 > * + * {
    margin-top: 1.5rem;
}

.booking .gap-6 {
    gap: 1.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .booking h2 {
        font-size: 1.875rem;
    }
    
    .booking h3 {
        font-size: 1.25rem;
    }
    
    .booking .btn-primary {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    .booking .grid-cols-2 {
        grid-template-columns: 1fr;
    }
    
    .booking .gap-6 {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .booking .p-8 {
        padding: 1.5rem;
    }
    
    .booking h2 {
        font-size: 1.5rem;
    }
    
    .booking .btn-primary {
        width: 100%;
        padding: 0.875rem;
    }
}

.reserver {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-items: center;
  align-content: center;
  flex-direction: column;
}
/* Blog Section */
.blog-card {
    transition: all 0.3s ease;
    overflow: hidden;
    margin: 3em 0;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover img {
    transform: scale(1.05);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}
.p-6 {
  padding: 1.5rem;
}

/* Admin Reservation Styles */
.reservation-metabox {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.meta-row {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 20px;
    align-items: center;
}

.meta-th {
    font-weight: 600;
}

.meta-td input,
.meta-td select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #fff;
}

/* Front-end Form Styles */
.booking .bg-light {
    background-color: #f8f9fa;
}

.booking .bg-white {
    background-color: white;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    padding: 2.5rem;
}

.booking h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #2D2D2D;
}

.booking h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #FF6B00;
    margin-bottom: 1.5rem;
}

.booking label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #4a5568;
}

.booking input,
.booking select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.booking input:focus,
.booking select:focus {
    outline: none;
    border-color: #FF6B00;
    box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.2);
}

.booking .btn-primary {
    background: linear-gradient(90deg, #FF6B00 0%, #FF8E00 100%);
    color: white;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(255, 107, 0, 0.3);
    cursor: pointer;
}

.booking .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(255, 107, 0, 0.4);
    background: linear-gradient(90deg, #e65a00 0%, #e67e00 100%);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .booking .grid-cols-2 {
        grid-template-columns: 1fr;
    }
    
    .booking .meta-row {
        grid-template-columns: 1fr;
    }
}

/* Base Styles */
.pizza-menu-section {
    background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
    padding: 80px 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.pizza-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.8rem;
    color: #2d3748;
    margin-bottom: 15px;
    font-weight: 700;
}

.section-header h2 span {
    color: #e67e22;
    position: relative;
}

.section-header h2 span:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #e67e22, #f1c40f);
    border-radius: 3px;
}

.section-header p {
    font-size: 1.2rem;
    color: #718096;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Pizza Grid */
.pizza-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.pizza-cards {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
}

.pizza-cards:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* Image Container */
.pizza-image-container {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.pizza-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.pizza-cards:hover .pizza-image-container img {
    transform: scale(1.05);
}

.pizza-image-placeholder {
    height: 100%;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-weight: 500;
}

.sale-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #e74c3c;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Overlay Effect */
.pizza-overlay {
    position: absolute;
    bottom: -60px;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    padding: 15px;
    text-align: center;
    transition: bottom 0.3s ease;
}

.pizza-cards:hover .pizza-overlay {
    bottom: 0;
}

.add-to-cart-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #FF6B00;
    color: white;
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.add-to-cart-btn:hover {
    background: #d35400;
    transform: translateY(-2px);
}

.add-to-cart-btn svg {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    stroke: white;
}

/* Pizza Details */
.pizza-details {
    padding: 20px;
}

.pizza-details h3 {
    font-size: 1.4rem;
    color: #2d3748;
    margin-bottom: 10px;
    font-weight: 700;
}

.pizza-rating {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.pizza-rating .star {
    color: #e0e0e0;
    font-size: 1.1rem;
    margin-right: 3px;
}

.pizza-rating .star.filled {
    color: #FF6B00;
}

.rating-count {
    font-size: 0.9rem;
    color: #718096;
    margin-left: 8px;
}

.pizza-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    border-top: 1px solid #edf2f7;
}

.pizza-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FF6B00;
}

.add-to-cart-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #FF6B00;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.add-to-cart-icon:hover {
    background: #d35400;
    transform: rotate(90deg) scale(1.1);
}

.add-to-cart-icon svg {
    width: 20px;
    height: 20px;
    stroke: white;
    stroke-width: 3;
}

/* View All Button */
.view-all-container {
    text-align: center;
    margin-top: 20px;
}

.view-all-btn {
    display: inline-block;
    background: #FF6B00;
    color: white;
    padding: 15px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.view-all-btn:hover {
    background: #e67e22;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(230, 126, 34, 0.3);
}

.view-all-btn:after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20px;
    height: 200%;
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(25deg);
    transition: all 0.6s;
}

.view-all-btn:hover:after {
    left: 120%;
}

/* Responsive Design */
@media (max-width: 900px) {
    .pizza-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .pizza-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .section-header p {
        font-size: 1.1rem;
    }
}

/* ==================== */
/* REVIEWS SECTION STYLES */
/* ==================== */

.reviews-header {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    border: 1px solid #eee;
}

.reviews-title {
    font-size: 22px;
    margin-top: 0;
    margin-bottom: 15px;
    color: #333;
}

.average-rating {
    display: flex;
    align-items: center;
    gap: 15px;
}

.average-label {
    font-weight: 500;
    color: #555;
}

.average-rating .stars {
    display: flex;
    align-items: center;
    gap: 5px;
}

.average-value {
    font-weight: 600;
    color: #FF6B00;
    margin-left: 10px;
}

.star {
    color: #ddd;
    font-size: 18px;
    position: relative;
}

.star.filled {
    color: #FF6B00;
}

.star.half:before {
    content: '\f089';
    position: absolute;
    left: 0;
    color: #FF6B00;
    overflow: hidden;
    width: 50%;
}

/* Review Items */
.reviews-list {
    margin-bottom: 40px;
}

.review-item {
    padding: 25px;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 20px;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
    transition: transform 0.3s ease;
}

.review-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.review-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f5f5f5;
}

.review-author {
    font-weight: 600;
    color: #333;
    font-size: 16px;
}

.review-date {
    color: #888;
    font-size: 14px;
}

.review-rating {
    display: flex;
    gap: 3px;
}

.review-rating .star.filled {
    color: #FF6B00;
}

.review-content {
    padding-top: 10px;
}

.review-title {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 18px;
    color: #333;
}

.review-text {
    color: #555;
    line-height: 1.6;
    margin-bottom: 0;
}

.no-reviews {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    color: #666;
    border: 1px solid #eee;
}

/* Review Form */
.add-review-title {
    font-size: 22px;
    margin-top: 40px;
    margin-bottom: 10px;
    color: #333;
    padding-bottom: 10px;
    border-bottom: 2px solid #FF6B00;
}

.add-review-subtitle {
    color: #666;
    margin-bottom: 25px;
    font-size: 14px;
}

.review-form {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #eee;
}

.star-rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    margin-bottom: 20px;
}

.star-rating input {
    display: none;
}

.star-rating label {
    color: #ddd;
    font-size: 24px;
    padding: 0 3px;
    cursor: pointer;
    transition: color 0.2s;
}

.star-rating input:checked ~ label,
.star-rating label:hover,
.star-rating label:hover ~ label {
    color: #FF6B00;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.form-row .form-group {
    flex: 1;
    min-width: 250px;
}

.form-label {
    display: block;
    font-weight: 500;
    color: #555;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    transition: border-color 0.3s;
}

.form-input:focus {
    outline: none;
    border-color: #FF6B00;
    box-shadow: 0 0 0 2px rgba(255, 107, 0, 0.1);
}

.form-textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    min-height: 150px;
    font-size: 15px;
    resize: vertical;
    transition: border-color 0.3s;
}

.form-textarea:focus {
    outline: none;
    border-color: #FF6B00;
    box-shadow: 0 0 0 2px rgba(255, 107, 0, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.checkbox-input {
    margin-right: 10px;
}

.submit-btn {
    background-color: #FF6B00;
    color: white;
    font-weight: 600;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #e05d00;
}

.form-message {
    margin-top: 15px;
    padding: 10px;
    border-radius: 4px;
    display: none;
}

.form-message.success {
    background-color: #dff0d8;
    color: #3c763d;
    border: 1px solid #d6e9c6;
    display: block;
}

.form-message.error {
    background-color: #f2dede;
    color: #a94442;
    border: 1px solid #ebccd1;
    display: block;
}

/* Header Search */
.search-box {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    padding: 1rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    display: none;
    z-index: 1000;
    min-width: 300px;
}

.search-toggle:hover .search-box {
    display: block;
}

/* Cart Icon */
.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: red;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

/* Logo Link */
.logo {
    display: inline-block;
}

/* Add to Cart Popup Styling */
.woocommerce-message-added {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #4CAF50;
    color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    z-index: 9999;
    transform: translateX(120%);
    transition: transform 0.3s ease-in-out;
    max-width: 350px;
}

.woocommerce-message-added.show {
    transform: translateX(0);
}

.woocommerce-message-added .checkmark {
    width: 24px;
    height: 24px;
    margin-right: 15px;
    fill: white;
}

.woocommerce-message-added .message-content {
    flex: 1;
}

.woocommerce-message-added .message-content a {
    color: white;
    text-decoration: underline;
    font-weight: bold;
}

.woocommerce-message-added .close-popup {
    margin-left: 15px;
    cursor: pointer;
    font-size: 20px;
    line-height: 1;
}

/* View Cart Button Styling */
.woocommerce-message-added .view-cart-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 16px;
    background: white;
    color: #4CAF50;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
}

.woocommerce-message-added .view-cart-btn:hover {
    background: #f8f8f8;
    transform: translateY(-2px);
}

/* Hide default WooCommerce notices */
.woocommerce-message, 
.woocommerce-error, 
.woocommerce-info {
    display: none !important;
}

/* My Account Styles */
.woocommerce-MyAccount-navigation a {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
    display: block;
    transition: all 0.3s ease;
}

.woocommerce-MyAccount-navigation li.is-active a {
    color: #e74c3c;
    font-weight: 600;
    border-left: 3px solid #e74c3c;
}

.woocommerce-MyAccount-navigation a:hover {
    background-color: #f9f9f9;
    padding-left: 20px;
}

.woocommerce-address-fields .form-row {
    margin-bottom: 20px;
}

.woocommerce-EditAccountForm fieldset {
    border: 1px solid #eee;
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 30px;
}

.woocommerce-orders-table {
    width: 100%;
    border-collapse: collapse;
}

.woocommerce-orders-table th,
.woocommerce-orders-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.woocommerce-orders-table thead th {
    background-color: #f8f8f8;
    font-weight: 600;
}

.woocommerce-button {
    background-color: #e74c3c;
    color: white !important;
    padding: 10px 20px;
    border-radius: 4px;
    display: inline-block;
    text-align: center;
    transition: background-color 0.3s;
}

.woocommerce-button:hover {
    background-color: #c0392b;
}
/* My Account Page Styles */
.woocommerce-MyAccount-navigation {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1rem;
}

.woocommerce-MyAccount-navigation ul li a {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    color: #333;
    text-decoration: none;
    transition: all 0.2s;
}

.woocommerce-MyAccount-navigation ul li a:hover {
    background-color: #e9ecef;
    color: #000;
}

.woocommerce-MyAccount-navigation ul li.is-active a {
    background-color: #e9ecef;
    font-weight: 600;
    color: #000;
    border-left: 3px solid #d9230f;
}

.woocommerce-MyAccount-content {
    background: #fff;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

/* Login/Register Forms */
.customer-login-container {
    max-width: 1200px;
    margin: 0 auto;
}

.login-section, .register-section {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.woocommerce-form-login, .woocommerce-form-register {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.woocommerce-form-row {
    margin-bottom: 0;
}

.woocommerce-form-row label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.woocommerce-Input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.woocommerce-Button {
    background-color: #d9230f;
    color: white !important;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.woocommerce-Button:hover {
    background-color: #b51d0d;
}