* { margin:0; padding:0; box-sizing:border-box; }
body { font-family:'Poppins', sans-serif; background:#000; color:#fff;}

    .header {
      width:100%;
      background: linear-gradient(135deg,#da3327);
      position: sticky;
      top:0;
      z-index:1000;
      box-shadow: 0 10px 30px rgba(0,0,0,0.45);
    }
    .container.nav {
      max-width:100%;
      margin:auto;
      height:22vh;
      padding:0 40px;
      background-color:#000;
      display:flex;
      align-items:center;
      gap:30px;
    }

    .logo-img { width:170px; margin-right: 70px; }
    .brand-info { display:flex; flex-direction:column;font-family: 'Cinzel', sans-serif; }
    .brand-title { font-size:26px; font-weight:700; font-family:'Playfair Display', serif; margin-left:60px;font-family: 'Cinzel', sans-serif; }
    .brand-points { font-size:12px; opacity:0.85; margin-top:5px; margin-left:62px; font-family: 'Cinzel', sans-serif;}

    .contact-btn { display:flex; flex-direction:column; text-decoration:none; color:#fff; padding:10px 16px; border-radius:12px; transition:0.3s;font-family: 'Cinzel', sans-serif; }
    .contact-btn:hover { background:#8b8b31; }
    .contact-title { font-size:18px; font-weight:600; font-family: 'Cinzel', sans-serif; }
    .contact-number { font-size:15px; font-weight:700; margin-top:5px; font-family: 'Cinzel', sans-serif; }
    
    .nav-actions { display:flex; align-items:flex-start; gap:15px; }
    .book {
      background:transparent; color:#fff; padding:11px 20px;
      border-radius:30px; border:1px solid #333; font-size:14px;
      font-weight:600; cursor:pointer; transition:0.25s; display:block; margin-top:60px;
    }
    .book:hover { background:#8b8b31; transform:translateY(-2px); }


.submenu-btn {
  width: 100%;
  text-align: left;
  background: none;
  margin-top: 0 !important;
  border: none;
  color: #fff;
  padding: 8px 16px; 
  cursor: pointer;
  font-size: 13px;
}


    .map-embed { width:190px; height:160px; border-radius:14px; overflow:hidden; margin-left:40px; }
    .map-embed iframe { width:100%; height:100%; }

.rate-btn{
  width:220px;
  height:160px;
  background:#ffffff;
  border-radius:18px;
  text-decoration:none;
  color:#fff;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  gap:14px;
  padding:20px;
  transition:0.3s;
  margin-left:18px;
  border:1px solid #222;
}

.rate-btn:hover{
  transform:translateY(-4px);
  box-shadow:0 12px 30px rgba(0,0,0,0.35);
}

.rate-icon{
  width:42px;
  height:42px;
}

.rate-content{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
}

.rate-title{
  font-size:23px;
  font-weight:600;
  color: #000000;
  font-family: 'Cinzel', sans-serif;
}

.rate-subtitle{
  font-size:13px;
  color: #000;
  opacity:0.85;
  margin-top:4px;
  letter-spacing:0.5px;
}

/* Mobile Side Menu */
.side-menu{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    padding: 30px 20px;
}

/* Logo */
.side-menu .logo-img{
    display: block;
    margin: 0 auto 20px;
    width: 190px;
}

/* Brand */
.side-menu .brand-info{
    text-align: center;
    margin-bottom: 20px;
}

.side-menu .brand-title,
.side-menu .brand-points{
    text-align: center;
}

/* Contact Button */
.side-menu .contact-btn{
    width: 100%;
    font-family: 'Cinzel', sans-serif;
    max-width: 320px;
    margin: 15px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: translateX(-40px);
    justify-content: center;
}

/* Order Button */
.side-menu .book{
    width: 100%;
    max-width: 320px;
    margin: 15px auto;
    display: block;
}

/* Google Map */
.side-menu .map-embed{
    width: 100%;
    max-width: 320px;
    margin: 20px auto;
}

.side-menu .map-embed iframe{
    width: 100%;
    border-radius: 15px;
}

/* Google Rating */
.side-menu .rate-btn{
    width: 100%;
    max-width: 320px;
    margin: 20px auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.side-menu .rate-content{
    width: 100%;
    text-align: center;
}

/* Close Button */
.side-menu .close-menu{
    position: absolute;
    top: 20px;
    right: 20px;
}


    .menu-toggle { display:none; font-size:28px; cursor:pointer; background:#111; padding:6px 14px; border-radius:8px; margin-left:auto; }


    .side-menu {
      position: fixed; top:0; right:-330px; width:280px; height:100vh;
      background:#0f0f0f; padding:30px 20px; display:flex; flex-direction:column; gap:10px; overflow-y:auto; transition:0.35s; z-index:3000;
    }
    .side-menu.active { right:0; }
    .close-menu { font-size:28px; cursor:pointer; align-self:flex-end; margin-bottom:20px; }

   @media (max-width: 1256px) {
  .container.nav .brand-info,
  .container.nav .brand-info * {
    display: none !important;
  }

  .side-menu .brand-info {
    display: none !important;
  }

  .container.nav .contact-btn,
  .nav-actions {
    display: none !important;
  }

  .menu-toggle {
    display: block !important;
  }

 
  .side-menu .contact-btn {
    margin-left: 40px;
    margin-top: -20px; 
  }


  .side-menu .pickup-dropdown,
  .side-menu .delivery-dropdown {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    width: 100%;
    display: none;
    opacity: 1 !important;
    flex-direction: column;
    visibility: visible !important;
    box-shadow: none;
    padding: 0;
    background: #141414;
  }

  .side-menu .pickup-item,
  .side-menu .delivery-item {
    padding: 12px 16px;
    border-bottom: 1px solid #222;
  }

  .side-menu .pickup-item:last-child,
  .side-menu .delivery-item:last-child {
    border-bottom: none;
  }

  .side-menu .book {
    width: 100%;
    margin-top: 0;
    margin-left: 0;
  }


  .side-menu .map-embed,
  .side-menu .review-box {
    width: 100%;
    margin-left: 0;
    margin-top: 10px;
  }
}

@media (min-width: 1437px) and (max-width: 1499px) {

  .container.nav .brand-title {
    font-size: 24px; 
    margin-left: 0; 
  }
  .container.nav .brand-points {
    font-size: 12px;
    margin-left: 0px;
    margin-top: 4px;
  }

  .container.nav .contact-title {
    font-size: 16px;
  }
  .container.nav .contact-number {
    font-size: 14px;
  }
  .container.nav .contact-tagline {
    font-size: 10px;
  }
}

@media (min-width: 1257px) and (max-width: 1436px) {
  
  .container.nav .brand-info {
    margin-left: 30px;
    display: none; 
  }
  .container.nav .brand-title {
    font-size: 22px; 
    margin-left: 0;  
  }
  .container.nav .brand-points {
    font-size: 12px;
    margin-left: -10px; 
    margin-top: 4px;
  }

  .container.nav .contact-btn {
    margin-left: auto; 
    margin-right: 30px; 
  }
  .container.nav .contact-title {
    font-size: 22px;
    margin-left: 27px;
  }
  .container.nav .contact-number {
    font-size: 15px;
    margin-left: 22px;
  }
  .container.nav .contact-tagline {
    display: none;
  }
}

/* ==========================
   PREMIUM VIDEO HERO SECTION
========================== */

.hero-section{
    position:relative;
    min-height:100vh;
    overflow:hidden;
    display:flex;
    align-items:center;
    justify-content:center;
    font-family:'Poppins',sans-serif;
}

/* Video */
.hero-video{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:1;
}

/* Dark Overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(0,0,0,0.45),
        rgba(0,0,0,0.25)
    );
    z-index: 1;
}

/* Content */
.hero-content{
    position:relative;
    z-index:3;
    max-width:1300px;
    width:90%;
    margin-top: -62px;
    text-align:center;
    color:#fff;
    font-family:'Cinzel',serif;
    padding:80px 20px;
}

.hero-content h1{
    display:inline-block;
    background:rgba(247,183,51,0.15);
    color:#ffffff;
    padding:10px 25px;
    border:1px solid rgba(247,183,51,0.4);
    border-radius:50px;
    margin-bottom:25px;
    font-weight:600;
    font-size: 20px;
}

.hero-content h4{
    font-size:clamp(3rem,6vw,5.5rem);
    font-weight:800;
    margin-bottom:20px;
    font-family: 'Playfair Display', sans-serif;
    line-height:1.1;
    color: #c4a600;  /*color: #da3327;*/
    text-shadow:0 5px 20px rgba(0,0,0,.5);
}

.hero-description{
    max-width:800px;
    margin:auto;
    font-size:1.3rem;
    color:#ddd;
    line-height:1.8;
}

/* Buttons */
.hero-buttons{
    margin-top:40px;
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.btn-primary,
.btn-secondary{
    text-decoration:none;
    padding:16px 35px;
    border-radius:50px;
    font-weight:700;
    transition:.4s;
}

.btn-primary{
    background:#f7b733;
    color:#000;
}

.btn-primary:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 35px rgba(247,183,51,.4);
}

.btn-secondary{
    border:2px solid #fff;
    color:#fff;
}

.btn-secondary:hover{
    background:#fff;
    color:#000;
}

/* Offer Cards */
.offer-grid{
    margin-top:70px;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.offer-card{
    backdrop-filter:blur(12px);
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.15);
    border-radius:20px;
    padding:30px;
    transition:.4s;
}

.offer-card:hover{
    transform:translateY(-8px);
    background:rgba(255,255,255,0.12);
}

.offer-card span{
    font-size:2rem;
}

.offer-card h3{
    margin:15px 0;
    font-size: 26px;
    color:#f7b733;
}

.offer-card h4{
    margin:15px 0;
      font-size: 25px;
    color:#f7b733;
}

.offer-card p{
    color:#ddd;
}

/* Opening Hours */
.opening-hours{
    margin-top:60px;
}

.opening-hours h3{
    color:#f7b733;
    margin-bottom:10px;
    font-size:2.3rem;
}

.opening-hours p{
    color:#ddd;
    font-size:1.6rem;
}

/* Menu Cards */
.menu-grid{
    margin-top:50px;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
    gap:20px;
}

.menu-card{
    backdrop-filter:blur(10px);
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.15);
    border-radius:16px;
    padding:25px;
    font-weight:600;
    transition:.4s;
    cursor:pointer;
}

.menu-card:hover{
    background:#f7b733;
    color:#000;
    transform:translateY(-5px);
}


.welcome-text{
    color:#c4a600;
    font-size:0.9em;
    font-weight:500;
    display:block;
    margin-bottom:10px;
    letter-spacing:2px;
}

.brand-red{
    color:#d62828;
}

.brand-white{
    color:#ffffff;
        font-size:0.8em;
}

.offer-link{
    text-decoration: none;
    color: inherit;
    display: block;
}

.offer-link .offer-card{
    height: 100%;
}

/* Mobile */
/* ===================================
   Large Laptops (1200px)
=================================== */
@media (max-width:1200px){

    .hero-content{
        width:92%;
    }

    .hero-description{
        max-width:700px;
        font-size:1.15rem;
    }

    .offer-card{
        padding:25px;
    }

}


/* ===================================
   Tablets (992px)
=================================== */
@media (max-width:992px){

    .hero-section{
        min-height:100vh;
    }

    .hero-content{
        margin-top:0;
        width:92%;
        padding:70px 15px;
    }

    .hero-content h1{
        font-size:18px;
        padding:10px 22px;
    }

    .hero-content h4{
        font-size:3.8rem;
        line-height:1.15;
    }

    .hero-description{
        font-size:1.1rem;
        max-width:650px;
    }

    .hero-buttons{
        margin-top:35px;
    }

    .offer-grid{
        gap:20px;
    }

    .offer-card h3,
    .offer-card h4{
        font-size:22px;
    }

    .opening-hours h3{
        font-size:2rem;
    }

    .opening-hours p{
        font-size:1.3rem;
    }

}


/* ===================================
   Mobile Landscape (768px)
=================================== */
@media (max-width:768px){

    .hero-section{
        min-height:100vh;
    }

    .hero-content{
        width:95%;
        padding:60px 15px;
        margin-top:0;
    }

    .hero-content h1{
        font-size:16px;
        padding:9px 18px;
    }

    .hero-content h4{
        font-size:3rem;
        margin-bottom:18px;
    }

    .hero-description{
        font-size:1rem;
        line-height:1.7;
    }

    .hero-buttons{
        flex-direction:column;
        align-items:center;
        gap:15px;
    }

    .btn-primary,
    .btn-secondary{
        width:250px;
        text-align:center;
        padding:15px 25px;
    }

    .offer-grid{
        grid-template-columns:1fr;
        gap:20px;
        margin-top:50px;
    }

    .offer-card{
        padding:25px;
    }

    .offer-card h3,
    .offer-card h4{
        font-size:22px;
    }

    .opening-hours{
        margin-top:45px;
    }

    .opening-hours h3{
        font-size:1.8rem;
    }

    .opening-hours p{
        font-size:1.15rem;
    }

    .menu-grid{
        grid-template-columns:repeat(2,1fr);
        gap:15px;
    }

    .menu-card{
        padding:20px;
        font-size:15px;
    }

}


/* ===================================
   Small Phones (576px)
=================================== */
@media (max-width:576px){

    .hero-content{
        width:100%;
        padding:50px 18px;
    }

    .hero-content h1{
        font-size:14px;
        padding:8px 16px;
        margin-bottom:18px;
    }

    .hero-content h4{
        font-size:2.3rem;
        line-height:1.2;
    }

    .hero-description{
        font-size:.95rem;
    }

    .btn-primary,
    .btn-secondary{
        width:100%;
        max-width:300px;
    }

    .offer-card{
        padding:22px;
    }

    .offer-card span{
        font-size:1.8rem;
    }

    .offer-card h3,
    .offer-card h4{
        font-size:20px;
    }

    .offer-card p{
        font-size:15px;
    }

    .opening-hours h3{
        font-size:1.6rem;
    }

    .opening-hours p{
        font-size:1rem;
    }

    .menu-grid{
        grid-template-columns:1fr;
    }

    .menu-card{
        padding:18px;
        font-size:15px;
    }

}


/* ===================================
   Extra Small Phones (400px)
=================================== */
@media (max-width:400px){

    .hero-content{
        padding:40px 15px;
    }

    .hero-content h1{
        font-size:13px;
        letter-spacing:.5px;
    }

    .hero-content h4{
        font-size:2rem;
    }

    .hero-description{
        font-size:.9rem;
    }

    .offer-card{
        padding:18px;
    }

    .offer-card h3,
    .offer-card h4{
        font-size:18px;
    }

    .opening-hours h3{
        font-size:1.4rem;
    }

    .opening-hours p{
        font-size:.95rem;
    }
}

.about-section {
    background-color: #ffffff;
    color: #fff;
    margin-top: -50px;
    padding: 100px 8%;
    overflow: hidden;
    position: relative;
}

.about-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right,
        rgba(255,179,71,.15),
        transparent 40%);
    pointer-events: none;
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 70px;
    margin-bottom: 80px;
}

.about-content {
    flex: 1;
}

.story-tag {
    color: #695a00;
    letter-spacing: 3px;
    font-size: 20px;
    font-family:'Cinzel',serif;
    display: inline-block;
    margin-bottom: 20px;
}

.about-content h2 {
    font-size: 61px;
    line-height: 1;
    color: #da3327;
    font-family: 'Playfair Display', sans-serif;
    margin-bottom: 20px;
}

.about-content h2 span {
    color: #da3327;
}

.divider {
    width: 140px;
    height: 2px;
    background: d8a331;
    margin-bottom: 30px;
}

.about-content h3 {
    font-size: 2rem;
    font-family:'Cinzel',serif;
    font-weight: 400;
    color: #695a00;
    margin-bottom: 25px;
}

.about-content p {
    color: #000000;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.9;
    font-family:'Cinzel',serif;
    margin-bottom: 20px;
}

.signature {
    font-size: 2rem;
    font-family:'Cinzel',serif;
    color: #695a00;
    margin: 35px 0;
}

.about-btn {
    display: inline-block;
    padding: 16px 40px;
    border: 2px solid #d4a94d;
    color: #000000;
    font-size: 16px;
    text-decoration: none;
    transition: .4s;
    letter-spacing: 2px;
}

.about-btn:hover {
    background: #d4a94d;
    color: #000;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,.5);
    transition: .5s;
}

.about-image img:hover {
    transform: scale(1.03);
}

.features {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
    margin-top: -10px;
}

.feature-box {
    text-align: center;
    padding: 40px 30px;
    background: #0c0c0c;
    border: 1px solid rgba(212,169,77,.2);
    transition: .4s;
}

.feature-box:hover {
    transform: translateY(-10px);
    border-color: #d4a94d;
}

.feature-box i {
    font-size: 45px;
    color: #d4a94d;
    margin-bottom: 20px;
}

.feature-box h4 {
    font-size: 28px;
    margin-bottom: 15px;
    font-family:'Cinzel',serif;
    color: #fff;
}

.feature-box p {
    color: #bfbfbf;
    font-family:'Cinzel',serif;
    line-height: 1.8;
}

.section-divider {
    width: 100%;
    height: 118px;
    background: #da3327;
    margin-top: -40px;
}

/* ===========================
   Large Tablets (1200px)
=========================== */
@media (max-width: 1200px) {

    .about-section {
        padding: 80px 6%;
    }

    .about-container {
        gap: 50px;
    }

    .about-content h2 {
        font-size: 50px;
    }

    .about-content h3 {
        font-size: 30px;
    }

    .about-content p {
        font-size: 18px;
    }

    .features {
        gap: 25px;
    }

}

/* ===========================
   Tablets (992px)
=========================== */
@media (max-width: 992px) {

    .about-section {
        padding: 70px 5%;
    }

    .about-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .about-image {
        order: -1;
    }

    .about-image img {
        max-width: 650px;
        width: 100%;
        margin: auto;
        display: block;
    }

    .divider {
        margin: 0 auto 30px;
    }

    .about-content h2 {
        font-size: 46px;
    }

    .about-content h3 {
        font-size: 28px;
    }

    .about-content p {
        font-size: 17px;
        line-height: 1.8;
    }

    .features {
        grid-template-columns: repeat(2,1fr);
        gap: 25px;
    }

}

/* ===========================
   Mobile Landscape (768px)
=========================== */
@media (max-width: 768px) {

    .about-section {
        margin-top: 0;
        padding: 60px 25px;
    }

    .story-tag {
        font-size: 16px;
        letter-spacing: 2px;
    }

    .about-content h2 {
        font-size: 38px;
    }

    .about-content h3 {
        font-size: 24px;
    }

    .about-content p {
        font-size: 16px;
        line-height: 1.8;
    }

    .signature {
        font-size: 28px;
    }

    .about-btn {
        padding: 14px 30px;
        font-size: 15px;
    }

    .features {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }

    .feature-box {
        padding: 35px 25px;
    }

    .feature-box h4 {
        font-size: 24px;
    }

    .section-divider {
        height: 80px;
    }

}

/* ===========================
   Small Mobiles (576px)
=========================== */
@media (max-width: 576px) {

    .about-section {
        padding: 50px 20px;
    }

    .story-tag {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .about-content h2 {
        font-size: 30px;
        line-height: 1.2;
    }

    .about-content h3 {
        font-size: 21px;
        margin-bottom: 18px;
    }

    .about-content p {
        font-size: 15px;
        line-height: 1.8;
    }

    .signature {
        font-size: 24px;
        margin: 25px 0;
    }

    .about-btn {
        width: 100%;
        text-align: center;
        padding: 15px;
    }

    .feature-box {
        padding: 30px 20px;
    }

    .feature-box i {
        font-size: 38px;
    }

    .feature-box h4 {
        font-size: 22px;
    }

    .feature-box p {
        font-size: 15px;
    }

    .section-divider {
        height: 60px;
        margin-top: 0;
    }

}

/* ===========================
   Extra Small Devices (400px)
=========================== */
@media (max-width: 400px) {

    .about-section {
        padding: 45px 16px;
    }

    .about-content h2 {
        font-size: 26px;
    }

    .about-content h3 {
        font-size: 18px;
    }

    .about-content p {
        font-size: 14px;
    }

    .story-tag {
        font-size: 13px;
    }

    .feature-box {
        padding: 25px 18px;
    }

    .feature-box i {
        font-size: 34px;
    }

    .feature-box h4 {
        font-size: 20px;
    }

}


.premium-deals{
    background:#ffffff;
    padding:120px 8%;
    position:relative;
    overflow:hidden;
}

.premium-deals::before{
    content:'';
    position:absolute;
    width:500px;
    height:500px;
    background:#ff9f1c20;
    filter:blur(150px);
    top:-200px;
    left:-100px;
}

.premium-container{
    margin-top: -50px;
}

.premium-header{
    text-align:center;
    margin-bottom:70px;
}

.sub-title{
    color:#695a00;
    font-family: 'Cinzel', serif;
    letter-spacing:3px;
    display: inline-block;
    font-size:20px;
}

.premium-header h2{
    font-size:61px;
    color: #da3327;
    margin-bottom: 20px;
    font-family: 'Playfair Display', sans-serif;
    line-height: 1;
}

.premium-header p{
    color:#695a00;
    font-size:2rem;
    font-family: 'Cinzel', serif;
    font-weight: 400;
    margin-bottom: 25px;;
}

.deals-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:35px;
}

.premium-card{
    position:relative;
    border-radius:30px;
    overflow:hidden;
    background:rgba(255,255,255,0.04);
    backdrop-filter:blur(15px);
    border:1px solid rgba(255,255,255,0.08);
    transition:.5s;
}

.premium-card:hover{
    transform:translateY(-12px);
    box-shadow:0 25px 50px rgba(255,159,28,.25);
}

.premium-card img{
    width:100%;
    height:280px;
    object-fit:cover;
    transition:.6s;
}

.premium-card:hover img{
    transform:scale(1.08);
}

.offer-badge{
    position:absolute;
    top:20px;
    left:20px;
    z-index:2;
    background:linear-gradient(135deg,#ffb703,#ff6b00);
    color:#000000;
    padding:8px 18px;
    border-radius:30px;
    font-size:12px;
    font-weight:700;
}

.premium-content{
    padding:30px;
    background-color: #313131;
}

.premium-content h3{
    color:#ffffff;
    font-family: 'Cinzel', sans-serif;
    font-size:1.8rem;
    margin-bottom:10px;
}

.premium-content p{
    color:#ffffff;
    font-family: 'Cinzel', serif;
    letter-spacing: 3px;
        display: inline-block;
    font-size: 20px;
}

.bottom-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.bottom-row span{
    color:#ffb703;
    font-family: 'Cinzel', sans-serif;
    font-size:2rem;
    font-weight:800;
    margin-top: 20px;
}

.bottom-row a{
    text-decoration:none;
    background:linear-gradient(135deg,#ffb703,#ff6b00);
    color:white;
    padding:12px 28px;
    margin-top: 20px;
    font-family: 'Cinzel', sans-serif;
    border-radius:50px;
    font-weight:700;
    transition:.3s;
}

.bottom-row a:hover{
    transform:scale(1.05);
}

/* ===============================
   Large Tablets (1200px)
================================*/
@media (max-width:1200px){

    .premium-deals{
        padding:100px 6%;
    }

    .premium-header h2{
        font-size:52px;
    }

    .deals-grid{
        gap:25px;
    }

}


/* ===============================
   Tablets (992px)
================================*/
@media (max-width:992px){

    .premium-deals{
        padding:80px 5%;
    }

    .premium-header{
        margin-bottom:50px;
    }

    .premium-header h2{
        font-size:46px;
    }

    .premium-header p{
        font-size:1.6rem;
    }

    .deals-grid{
        grid-template-columns:repeat(2,1fr);
        gap:25px;
    }

    .premium-card img{
        height:240px;
    }

}


/* ===============================
   Mobile (768px)
================================*/
@media (max-width:768px){

    .premium-deals{
        padding:70px 20px;
    }

    .sub-title{
        font-size:16px;
        letter-spacing:2px;
    }

    .premium-header h2{
        font-size:38px;
        line-height:1.2;
    }

    .premium-header p{
        font-size:1.3rem;
    }

    .deals-grid{
        grid-template-columns:1fr;
        gap:25px;
    }

    .premium-card img{
        height:220px;
    }

    .premium-content{
        padding:25px;
    }

    .premium-content h3{
        font-size:1.5rem;
    }

    .premium-content p{
        font-size:16px;
        letter-spacing:2px;
    }

    .bottom-row span{
        font-size:1.7rem;
    }

    .bottom-row a{
        padding:10px 22px;
        font-size:14px;
    }

}


/* ===============================
   Small Mobile (576px)
================================*/
@media (max-width:576px){

    .premium-deals{
        padding:60px 15px;
    }

    .sub-title{
        font-size:14px;
    }

    .premium-header h2{
        font-size:32px;
    }

    .premium-header p{
        font-size:1.1rem;
    }

    .premium-card{
        border-radius:20px;
    }

    .premium-card img{
        height:200px;
    }

    .premium-content{
        padding:20px;
    }

    .premium-content h3{
        font-size:1.3rem;
    }

    .premium-content p{
        font-size:15px;
    }

    .bottom-row{
        flex-direction:column;
        align-items:flex-start;
        gap:15px;
    }

    .bottom-row span{
        margin-top:0;
        font-size:1.5rem;
    }

    .bottom-row a{
        margin-top:0;
        padding:10px 20px;
    }

}


/* ===============================
   Extra Small Devices (400px)
================================*/
@media (max-width:400px){

    .premium-deals{
        padding:50px 12px;
    }

    .sub-title{
        font-size:13px;
        letter-spacing:1px;
    }

    .premium-header h2{
        font-size:28px;
    }

    .premium-header p{
        font-size:1rem;
    }

    .premium-card img{
        height:180px;
    }

    .offer-badge{
        font-size:11px;
        padding:6px 14px;
    }

    .premium-content{
        padding:18px;
    }

    .premium-content h3{
        font-size:1.2rem;
    }

    .premium-content p{
        font-size:14px;
        letter-spacing:1px;
    }

    .bottom-row span{
        font-size:1.3rem;
    }

    .bottom-row a{
        font-size:13px;
        padding:8px 18px;
    }

}


.build-pizza {
    position: relative;
    padding: 120px 8%;
    background-color: #fff;
    overflow: hidden;
    
}

.build-pizza::before{
    content:"";
    position:absolute;
    width:700px;
    height:700px;
    background: radial-gradient(circle,
    rgba(212,169,77,0.15),
    transparent 70%);
    top:-250px;
    right:-250px;
}

.build-pizza::after{
    content:"";
    position:absolute;
    width:600px;
    height:600px;
    background: radial-gradient(circle,
    rgba(255,255,255,0.05),
    transparent 70%);
    bottom:-300px;
    left:-300px;
}

.build-container{
    position:relative;
    z-index:2;
    max-width:1800px;
    margin:auto;
    margin-top: -40px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:80px;
}

.build-image{
    flex:1;
}

.build-image img{
    width:100%;
    border-radius:25px;
    box-shadow:
    0 30px 80px rgba(0,0,0,.6),
    0 0 40px rgba(212,169,77,.15);
    transition:.6s ease;
}

.build-image img:hover{
    transform:scale(1.04) rotate(-1deg);
}

.build-content{
    flex:1;
    margin-top: -50px;
}

.build-content h2{
    font-size:61px;
    font-family: 'Playfair Display', sans-serif;
    line-height:1;
    margin-bottom:25px;
    color:#da3327;
    
}

.build-content span{
    font-size:61px;
    font-family: 'Playfair Display', sans-serif;
    line-height:1;
    margin-bottom:25px;
    color:#da3327;
    
}

.build-content h2::after{
    content:"";
    display:block;
    width:160px;
    height:2px;
    background:#d4a94d;
    margin-top:20px;
}

.build-content p{
    font-size:23px;
    font-weight: 500;
    font-family:'Cinzel',serif;
    line-height:1.9;
    color:#000000;
    margin-bottom:35px;
}

.options{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
    margin-bottom:40px;
}

.option-box{
    padding:25px;
    border-radius:18px;
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter:blur(15px);
    transition:.4s ease;
}

.option-box:hover{
    transform:translateY(-8px);
    border-color:#d4a94d;
    box-shadow:
    0 15px 40px rgba(212,169,77,.15);
}

.option-box h4{
    color: #ffb703;
    font-size: 1.6rem;
    font-family: 'Cinzel', sans-serif;
    margin-bottom:12px;
    
}

.option-box p{
    color:#000000;
    font-size:19px;
    margin:0;
    font-weight: 500;
    font-family:'Cinzel',serif;
    line-height:1;
}

.build-btn{
    display:inline-flex;
    align-items:center;
    gap:12px;
    padding:18px 40px;
    background:transparent;
    color:#000000;
    border:2px solid #d4a94d;
    text-decoration:none;
    font-weight:600;
    letter-spacing:2px;
    transition:.4s;
}

.build-btn::after{
    content:"→";
    transition:.4s;
}

.build-btn:hover{
    background:#d4a94d;
    color:#000;
}

.build-btn:hover::after{
    transform:translateX(8px);
}

/* ===============================
   Large Tablets (1200px)
================================*/
@media (max-width:1200px){

    .build-pizza{
        padding:100px 6%;
    }

    .build-container{
        gap:50px;
    }

    .build-content h2,
    .build-content span{
        font-size:52px;
    }

}

@media (max-width:992px){

    .build-pizza{
        background:#ffffff;
        padding:80px 5%;
    }

    .build-container{
        flex-direction:column;
        gap:50px;
        text-align:center;
    }

    .build-content{
        margin-top:0;
    }

    .build-content h2,
    .build-content span{
        font-size:46px;
    }

    .build-content h2::after{
        margin:20px auto 0;
    }

    .build-content p{
        font-size:20px;
    }

    .options{
        grid-template-columns:repeat(2,1fr);
    }

}

@media (max-width:768px){

    .build-pizza{
        padding:70px 20px;
    }

    .build-container{
        gap:40px;
    }

    .build-content h2,
    .build-content span{
        font-size:38px;
        line-height:1.2;
    }

    .build-content p{
        font-size:17px;
        line-height:1.8;
    }

    .options{
        grid-template-columns:1fr;
        gap:18px;
    }

    .option-box{
        padding:22px;
    }

    .option-box h4{
        font-size:1.4rem;
    }

    .option-box p{
        font-size:16px;
        line-height:1.6;
    }

    .build-btn{
        padding:15px 30px;
        font-size:15px;
        letter-spacing:1px;
    }

}

@media (max-width:576px){

    .build-pizza{
        padding:60px 15px;
    }

    .build-content h2,
    .build-content span{
        font-size:32px;
    }

    .build-content p{
        font-size:16px;
    }

    .option-box{
        padding:18px;
    }

    .option-box h4{
        font-size:1.2rem;
    }

    .option-box p{
        font-size:15px;
    }

    .build-btn{
        width:100%;
        justify-content:center;
        padding:14px 20px;
    }

}

@media (max-width:400px){

    .build-pizza{
        padding:50px 12px;
    }

    .build-content h2,
    .build-content span{
        font-size:28px;
    }

    .build-content p{
        font-size:14px;
        line-height:1.7;
    }

    .option-box{
        padding:16px;
    }

    .option-box h4{
        font-size:1.1rem;
    }

    .option-box p{
        font-size:14px;
    }

    .build-btn{
        width:100%;
        font-size:13px;
        padding:12px 18px;
    }
}

.toppings-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #0f0f0f, #1a1a1a);
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.toppings-section h2 {
  font-size: 45px;
  color: #eedb2b;
  font-family: 'Playfair Display', sans-serif;
  margin-bottom: 10px;
}

.toppings-section p {
  color: #ccc;
  margin-bottom: 40px;
  font-family:'Cinzel',serif;
}

.toppings-slider {
  overflow-x: auto;                   
  overflow-y: hidden;                
  -webkit-overflow-scrolling: touch;  
  scroll-behavior: smooth;            
  padding: 0 50px;                  
  display: flex;
  scroll-snap-type: x mandatory;   
}

.toppings-track {
  display: flex;
  gap: 30px;                          
  width: max-content;                  
}

.topping-card {
  min-width: 150px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 10px;
  backdrop-filter: blur(10px);
  transition: 0.3s;
  scroll-snap-align: center;       
}

.topping-card:hover {
  transform: scale(1.08);
  background: rgba(255, 0, 0, 0.15);
}

.topping-card img {
  width: 100%;
  height: 110px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 8px;
}

.topping-card span {
  font-size: 14px;
  font-weight: 500;
  font-family:'Cinzel',serif;
  color: #fff;
}

.toppings-slider::-webkit-scrollbar {
  height: 8px;
}

.toppings-slider::-webkit-scrollbar-thumb {
  background: rgba(238, 219, 43, 0.7);
  border-radius: 4px;
}

.toppings-slider::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
}

@media (max-width: 768px) {
  .toppings-section h2 {
    font-size: 35px;
  }

  .topping-card {
    min-width: 120px;
  }

  .topping-card img {
    height: 90px;
  }
}


.special-pizzas{
    padding:120px 8%;
    background-color: #fff;
    position:relative;
}

.special-container{
    margin-top: -50px;
}

.special-pizzas h2{
    text-align:center;
    font-size:61px;
    font-family: 'Playfair Display', sans-serif;
    color:#da3327;
    margin-bottom:20px;
    line-height: 1;
}

.special-pizzas > p{
    color:#695a00;
    text-align: center;
    font-family:'Cinzel',serif;
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 25px;
}

.pizza-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:35px;
    max-width:1800px;
    margin:auto;
}

.pizza-card{
    position:relative;
    overflow:hidden;
    background:#313131;
    border:1px solid rgba(212,169,77,.15);
    backdrop-filter:blur(15px);
    border-radius:28px;
    transition:.5s ease;
    box-shadow:
    0 25px 60px rgba(0,0,0,.45);
}

.pizza-card:hover{
    transform:translateY(-10px);

    box-shadow:
    0 15px 50px rgba(212,169,77,.2);
}

.pizza-card img{
    width:100%;
    height:260px;
    object-fit:cover;
    display:block;
    transition:.6s ease;
}

.pizza-card:hover img{
    transform:scale(1.08);
}

.pizza-info{
    padding:25px;
}

.pizza-info h3{
    color: #ffffff;
    font-family: 'Cinzel', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 10px;  
}

.pizza-info p{
    color: #ffffff;
    font-size: 15px;
    line-height:1.7;
    letter-spacing: 3px;
    font-family:'Cinzel',serif;
    margin-bottom:18px;
    display: inline-block;
}

.pizza-info span{
    display:block;
    width:fit-content;
    margin-bottom:10px;
    background:#000;
    color:#ffffff;
    font-family:'Cinzel',serif;
    padding:10px 18px;
    border-radius:50px;
    font-size:18px;
    font-weight:600;
}

.pizza-info a{
    display:inline-block;
    margin-top:15px;
    padding: 12px 28px;
    font-family: 'Cinzel', sans-serif;
    background: linear-gradient(135deg, #ffb703, #ff6b00);
    color:#ffffff;
    border:2px solid #d4a94d;
    border-radius: 50px;
    text-decoration:none;
    font-weight:700;
    transition:.3s;
}

.pizza-info a:hover{
    transform:translateY(-3px);
    box-shadow:
    0 10px 25px rgba(212,169,77,.4);
}

@media(max-width:768px){

    .special-pizzas h2{
        font-size:45px;
    }

    .pizza-card img{
        height:220px;
    }

    .pizza-info h3{
        font-size:24px;
    }
}

.faq-section {
    padding: 90px 20px;
    background: #FFFFF0;
    
}

.faq-wrapper {
    max-width: 1600px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 60px;
}


.faq-image {
    flex: 1;
}

.faq-image img {
    width: 100%;
    height: 700px;
    border-radius: 25px;
    object-fit: cover;
    box-shadow: 0 10px 35px rgba(0,0,0,0.15);
}

/* RIGHT FAQ */

.faq-content {
    flex: 1;
}

.faq-content h2 {
    font-size: 61px;
    font-family: 'Playfair Display', sans-serif;
    color: #da3327;
    margin-bottom: 40px;
    
}

.faq-item {
    background: #fff;
    margin-bottom: 18px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 5px 18px rgba(0,0,0,0.08);
}

/* QUESTION */

.faq-question {
    width: 100%;
    padding: 22px 25px;
    border: none;
    font-family:'Cinzel',serif;
    background: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 19px;
    font-weight: 600;
    color: #222;
    transition: 0.3s;
}

.faq-question:hover {
    background: #fff2df;
}

.faq-question span {
    font-size: 31px;
    color: #ff9800;
    transition: 0.3s;
}

/* ANSWER */

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    background: #fffdf9;
    font-family:'Cinzel',serif;
}

.faq-answer p {
    padding: 0 25px 22px;
    color: #000000;
    line-height: 1.8;
    font-size: 18px;
}

/* ACTIVE */

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-item.active .faq-question span {
    transform: rotate(45deg);
}

/* MOBILE */

@media (max-width: 992px) {

    .faq-wrapper {
        flex-direction: column;
    }

    .faq-content h2 {
        text-align: center;
        font-size: 34px;
    }
}

@media (max-width: 768px) {

    .faq-question {
        font-size: 16px;
        padding: 18px 20px;
    }

    .faq-answer p {
        font-size: 14px;
    }
}

.footer{
    background: #912119;
    color:#fff;
    padding:25px 8%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:20px;
}

.footer-left,
.footer-right{
    font-size:19px;
    font-family: 'Cinzel', serif;
}

.footer-link{
    color:#d4a94d;
    text-decoration:none;
    font-weight:600;
    font-family: 'Cinzel', serif;
}

.footer-link:hover{
    color:#fff;
}

.footer-social{
    display:flex;
    gap:15px;
}


.social-icon{
    width:42px;
    height:42px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#1a1a1a;
    color:#fff;
    text-decoration:none;
    transition:.3s ease;
}

.social-icon:hover{
    background:#d4a94d;
    color:#111;
    transform:translateY(-4px);
}

.back-to-top {
  position: fixed;
  bottom: 40px;
  left: 40px;
  background-color: #eedb2b;
  color: #ff0000;
  font-size: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  text-align: center;
  line-height: 50px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
  z-index: 1000;
  text-decoration: none;
}

.back-to-top:hover {
  background-color: #ff0000;
  color: #eedb2b;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.hero-banner{
    position:relative;
    overflow:hidden;
}

.side-offers{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    display:flex;
    flex-direction:column;
    gap:20px;
    z-index:5;
}

.left-offers{
    left:25px;
}

.right-offers{
    right:25px;
}

.floating-offer{
    text-decoration:none;
    color:#fff;
    font-weight:700;
    font-size:15px;
    padding:14px 20px;
    border-radius:50px;
    background:linear-gradient(135deg,#ff4b2b,#ff416c);
    box-shadow:0 8px 20px rgba(0,0,0,0.35);
    transition:0.4s ease;
    animation:floatAnim 3s ease-in-out infinite;
    position:relative;
    overflow:hidden;
    backdrop-filter:blur(5px);
}

.left-offers .floating-offer:nth-child(2){
    background:linear-gradient(135deg,#f7971e,#ffd200);
    color:#111;
}

.right-offers .floating-offer:nth-child(1){
    background:linear-gradient(135deg,#4776E6,#8E54E9);
}

.right-offers .floating-offer:nth-child(2){
    background:linear-gradient(135deg,#00b09b,#96c93d);
}

@keyframes floatAnim{
    0%{
        transform:translateY(0px);
    }
    50%{
        transform:translateY(-12px);
    }
    100%{
        transform:translateY(0px);
    }
}

.floating-offer::before{
    content:"";
    position:absolute;
    top:0;
    left:-100%;
    width:50%;
    height:100%;
    background:rgba(255,255,255,0.35);
    transform:skewX(-25deg);
    animation:shine 3s infinite;
}

@keyframes shine{
    100%{
        left:180%;
    }
}

.floating-offer:hover{
    transform:scale(1.08);
}

@media(max-width:768px){

    .side-offers{
        position:static;
        transform:none;
        flex-direction:row;
        justify-content:center;
        margin-top:20px;
        flex-wrap:wrap;
    }

    .left-offers,
    .right-offers{
        left:auto;
        right:auto;
    }
}

.flyer-modal{
  position: fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background: rgba(0,0,0,0.7);
  display:flex;
  justify-content:center;
  align-items:center;
  z-index:9999;
}

.flyer-content{                               
  max-width:600px;
  width:90%;
}

.flyer-content img{
  width:100%;
  border-radius:10px;
  display:block;
}

@media (min-width: 1024px) {
  .flyer-content {
    max-width: 400px; 
  }
}

@media (min-width: 1440px) {
  .flyer-content {
    max-width: 550px;
  }
}
@media (max-width: 1023px) {
  .flyer-content {
    max-width: 450px;
  }
}



.flyer-buttons{
    margin-top:18px;
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
}

.flyer-btn{
    text-decoration:none;
    padding:12px 24px;
    border-radius:50px;
    color:#fff;
    font-weight:700;
    transition:0.3s ease;
    position:relative;
    overflow:hidden;
    animation:floatBtn 2.5s ease-in-out infinite;
}



.flyer-btn:hover{
    transform:scale(1.08);
}

.reviews-section{
    padding:120px 5%;
    overflow:hidden;
    background-color: #fff;
}

.reviews-header{
    text-align:center;
    margin-bottom:60px;
    margin-top: -50px;
}

.reviews-header span{
    color: #695a00;
    font-weight:700;
    font-family: 'Cinzel', serif;
    letter-spacing: 3px;
    display: inline-block;
    font-size: 20px;
}

.reviews-header h2{
    font-size: 61px;
    color: #da3327;
    margin-bottom: 20px;
    font-family: 'Playfair Display', sans-serif;
    line-height: 1;
}

.slider{
    width:100%;
    overflow:hidden;
    padding:60px 0;
    position:relative;
    margin-top: -50px;
}

/* soft edge fade (premium touch) */
.slider::before,
.slider::after{
    content:"";
    position:absolute;
    top:0;
    width:120px;
    height:100%;
    z-index:2;
    pointer-events:none;
}

/* ================= TRACK ================= */
.slide-track{
    display:flex;
    gap:25px;
    width:max-content;
    animation:scroll 35s linear infinite;
    will-change:transform;
}

.slider:hover .slide-track{
    animation-play-state:paused;
}

/* infinite loop */
@keyframes scroll{
    0%{
        transform:translateX(0);
    }
    100%{
        transform:translateX(-50%);
    }
}

/* ================= CARD ================= */
.review-card{
    min-width:50px;
    height:240px;
    background:#313131;
    border:1px solid rgba(0,0,0,0.05);
    padding:35px;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    box-shadow:0 10px 40px rgba(0,0,0,0.04);
    transition:0.4s ease;
    border-radius:14px;
}

.review-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 60px rgba(0,0,0,0.08);
}

/* ================= STARS ================= */
.review-stars{
    color:#d8a84e;
    font-size:18px;
    letter-spacing:3px;
}

/* ================= TEXT ================= */
.review-card p{
    color:#ffffff;
    font-size:19px;
    font-family: 'Cinzel', serif;
    line-height:1.8;
}

/* ================= FOOTER ================= */
.review-footer{
    display:flex;
    align-items:center;
    gap:12px;
}

.review-card img{
    width:52px;
    height:52px;
    border-radius:50%;
    object-fit:cover;
    border:3px solid #f3e0b5;
}

.review-info h4{
    font-size:16px;
    font-family: 'Cinzel', serif;
    color:#ffffff;
    font-weight:600;
}

.review-info span{
    font-size:16px;
    color:#000000;
}

.review-btn-wrap{
  width:100%;
  display:flex;
  justify-content:center;
  margin-top:40px;
}

.review-btn{
  display:inline-block;
  padding:14px 28px;
  background:#f0c578;
  color:#111;
  font-size: 19px;
  font-family: 'Crete Round',serif;
  text-decoration:none;
  font-weight:700;
  border-radius:6px;
}

/* =========================
   LARGE LAPTOPS
========================= */

@media (max-width:1200px){

    .reviews-section{
        padding:100px 5%;
    }

    .reviews-header h2{
        font-size:58px;
    }

    .reviews-header span{
        font-size:18px;
    }
}

/* =========================
   TABLETS
========================= */

@media (max-width:992px){

    .reviews-section{
        padding:90px 4%;
    }

    .reviews-header{
        margin-top:0;
        margin-bottom:40px;
    }

    .reviews-header h2{
        font-size:48px;
    }

    .reviews-header span{
        font-size:17px;
    }

    .slider{
        margin-top:0;
        padding:40px 0;
    }

    .review-card{
        width:320px;
        height:auto;
        min-height:240px;
        padding:28px;
    }

    .review-card p{
        font-size:17px;
    }
}

/* =========================
   LARGE MOBILE
========================= */

@media (max-width:768px){

    .reviews-section{
        padding:80px 20px;
    }

    .reviews-header h2{
        font-size:40px;
        line-height:1.2;
    }

    .reviews-header span{
        font-size:15px;
        letter-spacing:2px;
    }

    .review-card{
        width:280px;
        padding:25px;
    }

    .review-card p{
        font-size:16px;
        line-height:1.7;
    }

    .review-stars{
        font-size:16px;
    }

    .review-card img{
        width:48px;
        height:48px;
    }
}

/* =========================
   MOBILE
========================= */

@media (max-width:576px){

    .reviews-section{
        padding:70px 15px;
    }

    .reviews-header h2{
        font-size:32px;
    }

    .reviews-header span{
        font-size:13px;
    }

    .slider{
        padding:30px 0;
    }

    .slide-track{
        gap:15px;
    }

    .review-card{
        width:250px;
        padding:20px;
        border-radius:12px;
    }

    .review-card p{
        font-size:15px;
    }

    .review-info h4{
        font-size:14px;
    }

    .review-info span{
        font-size:13px;
    }

    .review-card img{
        width:42px;
        height:42px;
    }
}

/* =========================
   SMALL PHONES
========================= */

@media (max-width:400px){

    .reviews-header h2{
        font-size:28px;
    }

    .review-card{
        width:220px;
        padding:18px;
    }

    .review-card p{
        font-size:14px;
    }

    .review-stars{
        font-size:14px;
    }
}

.chatbot-container{
    position:fixed;
    bottom:25px;
    right:25px;
    z-index:9999;
}

/* Floating Button */

.chatbot-toggle {
    padding: 14px 22px;
    min-width: 220px;
    height: 60px;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    font-size: 18px;
    font-family: 'Cinzel', sans-serif;
    font-weight: 600;
    letter-spacing: 0.3px;

    background: linear-gradient(135deg, #d62828, #f77f00);
    color: #fff;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    box-shadow: 0 10px 25px rgba(0,0,0,0.25);

    transition: all 0.25s ease;
}

.chatbot-toggle:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 14px 30px rgba(0,0,0,0.3);
}

.chatbot-toggle:active {
    transform: scale(0.98);
}

.bot-info {
    font-family: 'Cinzel', sans-serif;
    display: flex;
    align-items: center;
    gap: 8px;
}

.bot-icon {
    width: 38px;
    height: 38px;
}
/* Chat Window */

.chatbot-box{

    position:absolute;

    bottom:80px;
    right:0;

    width:360px;
    height:500px;

    background:#111;

    border-radius:18px;

    overflow:hidden;

    display:none;

    flex-direction:column;

    box-shadow:0 15px 45px rgba(0,0,0,.45);

    border:2px solid #d4af37;

}

/* Header */

.chatbot-header{

    background:#d62828;

    color:white;

    padding:18px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    font-size:18px;

    font-weight:bold;

}

/* Close Button */

.close-chat{

    background:none;

    border:none;

    color:white;

    font-size:22px;

    cursor:pointer;

}

/* Messages */

.chatbot-body{

    flex:1;

    padding:18px;

    overflow-y:auto;

    background:#111;

}

.bot-message{
    background:#202020;
    color:white;
    padding:14px;
    border-radius:12px;
    line-height:1;
    font-family: 'Cinzel', sans-serif;
    width:fit-content;
    max-width:90%;
}

/* Footer */

.chatbot-footer{

    display:flex;

    gap:10px;

    padding:15px;

    background:#181818;

}

/* Input */

.chatbot-footer input{
    flex:1;
    padding:12px;
    border:none;
    outline:none;
    font-family: 'Cinzel', sans-serif;
    border-radius:10px;
    font-size:15px;
}

/* Send Button */

.chatbot-footer button{

    padding:12px 18px;

    border:none;

    border-radius:10px;

    cursor:pointer;

    background:#d4af37;

    color:black;

    font-weight:bold;

}

/* Mobile */

@media(max-width:600px){

.chatbot-box{

width:95vw;

height:70vh;

right:-10px;

}

}

/* User Message */

.user-message{

    background:#d4af37;

    color:#000;

    padding:12px 15px;

    border-radius:12px;
    font-family: 'Cinzel', sans-serif;

    margin:12px 0 12px auto;

    width:fit-content;

    max-width:80%;

    font-weight:600;

}

/* Bot Message */

.bot-message{

    margin:12px 0;

}

/* Typing Animation */

.typing {
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 10px 0;
}

.typing span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d4af37;
    animation: blink 1.4s infinite;
}

.typing span:nth-child(2) {
    animation-delay: .2s;
}

.typing span:nth-child(3) {
    animation-delay: .4s;
}

@keyframes blink {

    0% {
        opacity: .2;
        transform: scale(.8);
    }

    50% {
        opacity: 1;
        transform: scale(1);
    }

    100% {
        opacity: .2;
        transform: scale(.8);
    }

}

/* ================= RESULT CARD ================= */

.menu-result{

    background:#1b1b1b;

    border:1px solid #d4af37;

    border-radius:12px;

    padding:15px;

    margin-top:12px;

}

.menu-result h4{

    color:#fff;

    margin-bottom:10px;

    font-size:18px;

}

.menu-result p{

    color:#bbb;

    margin:6px 0;

    font-size:14px;

}

.order-btn{

    display:inline-block;

    margin-top:12px;

    padding:10px 18px;

    background:#d4af37;

    color:#000;

    text-decoration:none;

    border-radius:8px;

    font-weight:bold;

    transition:.3s;

}

.order-btn:hover{

    background:#f0c14b;

    transform:translateY(-2px);

}

.deal-btn{

    display:inline-block;

    margin-top:12px;

    padding:10px 18px;

    background:#d4af37;

    color:#000;

    text-decoration:none;

    border-radius:8px;

    font-weight:bold;

    transition:.3s;

}

.deal-btn:hover{

    background:#f0c14b;

    transform:translateY(-2px);

}