/** HOME PAGE **/
/* ===== RESET ===== */

/* =========================================
   RESET
========================================= */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

:root{
  --cream:#F4E9D8;
  --cocoa:#4A2E1F;
  --sage:#7B8F78;
  --clay:#C96A3A;
  --card:#F9F3EA;
  --white:#ffffff;
}

body{
  font-family:Georgia, serif;
  color:var(--cocoa);

  background:
    linear-gradient(
    to bottom,
    #F8F1E7,
    #EADBC8
    );
    
    background-attachment:fixed;

  overflow-x:hidden;
}

.page-wrapper{
  width:100%;
  min-height:100vh;

  padding:18px 28px 18px;

  position:relative;
}

/* TRANSPARENT FADE OVERLAY */

.page-wrapper::before{
  content:"";

  position:absolute;
  inset:0;

  pointer-events:none;


  backdrop-filter:blur(1.5px);

  z-index:0;
}

/* KEEP CONTENT ABOVE OVERLAY */

.page-wrapper > *{
  position:relative;
  z-index:1;
}

/* HEADER */

header{
  width:calc(100% - 56px);
  height:82px;

  background:rgba(249,243,234,0.94);

  border-radius:24px;

  padding:0 30px;

  display:flex;
  justify-content:space-between;
  align-items:center;

  position:fixed;

  top:18px;
  left:28px;

  z-index:99999;

  box-shadow:0 6px 18px rgba(0,0,0,0.10);

  backdrop-filter:blur(6px);
}

main{
  padding-top:20px;
}

.logo{
  display:flex;
  align-items:center;
  gap:12px;
}

.logo img{
  width:48px;
  height:48px;
  border-radius:50%;
  object-fit:cover;
}

.logo span{
  font-size:16px;
  font-weight:bold;
  line-height:1.1;
  color:var(--cocoa);
}

nav a{
  text-decoration:none;
  color:var(--cocoa);

  font-weight:bold;
  font-size:15px;

  padding:8px 16px;
  border-radius:18px;

  transition:0.25s;
}

/* HOVER ONLY FOR NON-ACTIVE LINKS */

nav a:not(.active):hover{
  background:var(--clay);
  color:#F4E9D8;
}

/* ACTIVE BUTTON */

nav a.active{
  background:var(--clay);
  color:#F4E9D8;
}

.header-right{
  display:flex;
  align-items:center;
  gap:22px;
}

/* =========================
   CART ICON NAVBAR
========================= */

.cart-icon-link{
  text-decoration: none;
}

.cart-icon-wrapper{
  position: relative;

  width: 42px;
  height: 42px;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #C96A3A;


  transition: 0.2s;
}

.cart-icon-wrapper:hover{
  transform: scale(1.05);
}

.cart-icon-wrapper img{
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.cart-count{
  position: absolute;

  top: -7px;
  right: -7px;

  min-width: 20px;
  height: 20px;

  background: #E74C3C;
  color: white;

  border-radius: 50%;

  font-size: 10px;
  font-weight: bold;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 2px;

  border: 2px solid #FFF8ED;

  z-index: 2;
}
/* DARK MODE */

body.dark-mode .cart-icon-wrapper{
  border: 2px solid #FFF3E6;
}

.cart{
  display:flex;
  align-items:center;
  gap:6px;
}

.cart img{
  width:16px;
}

.header-right button{
  border:none;
  background:var(--clay);
  color:#F4E9D8;
  padding:12px 24px;
  border-radius:24px;
  font-weight:bold;
  cursor:pointer;
}

.dark-toggle{
  width:42px;
  height:42px;
  padding:0 !important;
  border-radius:50% !important;
}

/* HERO */

.hero{
  width:100%;
  margin-top:16px;

  padding:0;

  border-radius:32px;

  background-image:
    linear-gradient(
      rgba(74,46,31,0.10),
      rgba(74,46,31,0.16)
    ),
    url("mockup/hero.png");

  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;

  min-height:660px;

  box-shadow:0 14px 36px rgba(0,0,0,0.18);

  overflow:hidden;
}

.hero-overlay{
  width:100%;
  min-height:620px;

  padding:70px;

  display:flex;
  align-items:center;
}

.hero-card{
  width:430px;

  background:rgba(249,243,234,0.96);

  border-radius:34px;

  padding:42px 40px;

  box-shadow:0 18px 40px rgba(0,0,0,0.20);
}

.mini-title{
  color:var(--clay);
  font-size:15px;
  font-family:Arial, sans-serif;
  font-weight:bold;
  margin-bottom:20px;
}

.hero-card h1{
  font-size:64px;
  line-height:0.95;
  margin-bottom:28px;
  color:var(--cocoa);
}

.hero-card h1 span{
  color:var(--clay);
}

.hero-desc{
  font-size:17px;
  line-height:1.6;
  font-family:Arial, sans-serif;
  margin-bottom:34px;
  color:#5c4638;
}

.hero-buttons{
  display:flex;
  gap:16px;
}

.hero-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  width:165px;
  height:58px;

  border-radius:30px;

  text-decoration:none;

  font-size:16px;
  font-weight:bold;

  transition:0.2s;
}

.hero-btn.orange{
  background:var(--clay);
  color:white;
  border:none;
  box-shadow:none;
}

.hero-btn.green{
  background:var(--sage);
  color:white;
}

.hero-btn:hover{
  transform:translateY(-2px);
}

/* TOP MEALS */

.top-meals{
  width:100%;

  margin-top:34px;

  background:rgba(249,243,234,0.55);

  border-radius:36px;

  padding:70px 45px;

  backdrop-filter:blur(10px);

  box-shadow:
  0 10px 24px rgba(74,46,31,0.06);
}

.top-heading{
  text-align:center;
  margin-bottom:46px;
}

.top-heading p{
  color:var(--clay);
  font-size:16px;
  font-weight:bold;
  margin-bottom:10px;
}

.top-heading h2{
  font-size:52px;
  margin-bottom:10px;
  color:var(--cocoa);
}

.top-heading span{
  font-size:14px;
  font-family:Arial, sans-serif;
}

/* MEAL CARDS */

.meal-container{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}

.meal-card{
  background:var(--card);
  border-radius:24px;
  padding:18px;
  box-shadow:0 10px 24px rgba(0,0,0,0.08);
  transition:0.25s;
}

.meal-card:hover{
  transform:translateY(-7px);
}

.featured-card{
  border:3px solid var(--clay);
}

.badge{
  width:fit-content;
  background:var(--clay);
  color:white;
  padding:7px 14px;
  border-radius:18px;
  font-size:12px;
  font-weight:bold;
  margin-bottom:12px;
}

.meal-img{
  width:100%;
  height:190px;
  object-fit:cover;
  border-radius:18px;
  margin-bottom:16px;
}

.meal-card h3{
  font-size:22px;
  margin-bottom:8px;
  color:var(--cocoa);
}

.meal-card p{
  color:var(--clay);
  font-weight:bold;
  margin-bottom:14px;
}

.meal-stars{
  display:flex;
  align-items:center;
  gap:4px;
  margin-top:10px;
  margin-bottom:18px;
}

.meal-stars img{
  width:22px;
  height:22px;
  object-fit:contain;
}

/* FOOTER */

footer{
  width:100%;

  margin-top:22px;

  background:rgba(249,243,234,0.92);

  border-radius:20px;

  padding:18px 30px;

  display:flex;
  justify-content:space-between;
  align-items:center;

  box-shadow:0 6px 18px rgba(0,0,0,0.06);

  backdrop-filter:blur(6px);
}

footer p{
  font-size:13px;
  color:var(--cocoa);
}

.social-icons{
  display:flex;
  gap:12px;
}

.social-icons img{
  width:26px;
}

.footer-right{
  display:flex;
  align-items:center;
  gap:10px;
}

.footer-right img{
  width:42px;
}

.footer-right p{
  font-size:13px;
  font-weight:bold;
}



/* MENU PAGE */

.menu-section{
  width: 100%;
  background: #F5EBDD;
  border-radius: 24px;
  padding: 28px 55px 35px;
  margin-top: 10px;
}

.categories{
  display: flex;
  justify-content: center;
  gap: 22px;
  margin-bottom: 40px;
}

.categories a{
  text-decoration: none;

  background: #F7EFE3;
  color: #4B2E20;

  padding: 14px 42px;

  border-radius: 30px;
  border: 3px solid #D6BE9B;

  font-size: 16px;
  font-weight: bold;

  transition: 0.2s;
}

.categories a:hover{
  background: #D57B2C;
  color: white;
}

.active-category{
  background: #D57B2C !important;
  color: white !important;
}

.menu-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.menu-card{
  min-height: 275px;
  background: #FFF4E6;
  border: 3px solid #D7C1A2;
  border-radius: 24px;
  padding: 18px 16px;
  text-align: center;
  box-shadow: 0 4px 0 #C8B090;
}

.menu-card img{
  width: 125px;
  height: 90px;
  object-fit: contain;
  margin-bottom: 12px;
}

.menu-card h3{
  font-size: 17px;
  margin-bottom: 8px;
}

.menu-card p{
  font-size: 11px;
  line-height: 1.3;
  min-height: 45px;
}

.meal-bottom{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 18px;
}

.meal-bottom span{
  font-family: Arial, sans-serif;
  color: #D26F27;
  font-size: 12px;
  font-weight: bold;
}

.meal-bottom button{
  background: #66753F;
  color: white;
  padding: 8px 14px;
  border-radius: 18px;
  font-size: 10px;
}

/* FIX MENU ADD TO CART BUTTON */

.menu-card .meal-bottom{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 18px;
}

.menu-card .meal-bottom button{
  width: auto;
  height: auto;
  background: #66753F;
  color: white;
  padding: 7px 12px;
  border-radius: 18px;
  font-size: 10px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.menu-card .meal-bottom button img{
  width: 12px !important;
  height: 12px !important;
  object-fit: contain;
  display: inline-block;
  margin: 0;
}

/* ABOUT PAGE */

/* FULL WIDTH PROMO */

/* PROMO BANNER - SHOW WHOLE IMAGE, NOT CROPPED */

.promo{
  width: 100%;
  margin-top: 12px;
  border-radius: 24px;
  overflow: hidden;
  background: transparent;
}

.promo img{
  width: 100%;
  height: auto;
  display: block;

  object-fit: contain;
  object-position: center;

  border-radius: 24px;
  border: 5px solid #8B5A3C;
}

.about-section{
  width: 100%;
  min-height: 300px;
  background: #F5EBDD;
  border-radius: 24px;
  margin-top: 14px;
  padding: 28px 45px;
  display: flex;
  align-items: center;
  gap: 45px;
}

.about-left{
  width: 42%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.about-banner{
  position: absolute;
  top: -15px;
  left: 0;
  width: 170px;
}

.people-img{
  width: 360px;
  object-fit: contain;
  margin-top: 35px;
}

.about-right{
  width: 58%;
}

.about-right h1{
  font-family: Arial, sans-serif;
  font-size: 34px;
  color: #4D3427;
  margin-bottom: 18px;
}

.about-right p{
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 12px;
}

.tagline{
  width: fit-content;
  background: #66753F;
  color: white;
  padding: 12px 28px;
  border-radius: 25px;
  font-family: Arial, sans-serif;
  font-weight: bold;
  font-size: 13px;
  margin: 18px 0 22px;
}

.features{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  text-align: center;
}

.feature img{
  width: 38px;
  height: 38px;
  object-fit: contain;
  margin-bottom: 8px;
}

.feature h3{
  font-size: 14px;
  margin-bottom: 6px;
}

.feature p{
  font-size: 10px;
  line-height: 1.25;
  margin: 0;
}

/* PORK MEALS PAGE */

/* FIX PORK PAGE CENTERING */

.pork-section{
  width: 100%;
  background: #F5EBDD;
  border-radius: 24px;
  margin-top: 12px;
  padding: 28px 70px 45px;

  display: flex;
  flex-direction: column;
  align-items: center;
}

.pork-grid{
  width: 100%;

  display: flex;
  justify-content: center;
  align-items: stretch;

  gap: 60px;

  margin-top: 28px;
}

.pork-card{
  width: 320px;
  min-height: 340px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  text-align: center;
}

.pork-card img{
  width: 180px;
  height: 130px;
  object-fit: contain;

  margin: 0 auto 12px;
}

.pork-card h3{
  font-size: 30px;
  margin-bottom: 10px;
}

.pork-card p{
  font-size: 16px;
  line-height: 1.3;
  min-height: 60px;
}

.pork-card .meal-bottom{
  width: 100%;

  display: flex;
  justify-content: space-between;
  align-items: center;

  margin-top: 25px;
}

.pork-card .meal-bottom button{
  display: flex;
  align-items: center;
  gap: 5px;
}

.pork-card .meal-bottom button img{
  width: 14px !important;
  height: 14px !important;
  margin: 0;
}

/* CHICKEN MEALS PAGE */

.chicken-section{
  width: 100%;
  background: #F5EBDD;
  border-radius: 24px;
  margin-top: 12px;
  padding: 28px 35px 45px;
}

.chicken-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 28px;
}

.chicken-card{
  min-height: 420px;
  background: #FFF4E6;
  border: 3px solid #D7C1A2;
  border-radius: 24px;
  padding: 25px 20px;
  text-align: center;
  box-shadow: 0 4px 0 #C8B090;

  display: flex;
  flex-direction: column;
}

.chicken-card > img{
  width: 190px;
  height: 150px;
  object-fit: contain;
  margin: 0 auto 18px;
}

.chicken-card h3{
  font-size: 27px;
  margin-bottom: 12px;
}

.chicken-card p{
  font-size: 14px;
  line-height: 1.35;
  min-height: 70px;
}

.chicken-card .meal-bottom{
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chicken-card .meal-bottom span{
  font-family: Arial, sans-serif;
  color: #D26F27;
  font-size: 16px;
  font-weight: bold;
}

.chicken-card .meal-bottom button{
  background: #66753F;
  color: white;
  padding: 9px 14px;
  border-radius: 18px;
  font-size: 11px;

  display: flex;
  align-items: center;
  gap: 6px;
}

.chicken-card .meal-bottom button img{
  width: 14px !important;
  height: 14px !important;
  object-fit: contain;
  margin: 0;
}

/* SIDES PAGE */

.sides-section{
  width: 100%;
  background: #F5EBDD;
  border-radius: 24px;
  margin-top: 12px;
  padding: 28px 70px 45px;

  display: flex;
  flex-direction: column;
  align-items: center;
}

.sides-grid{
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 28px;
}

.sides-card{
  width: 360px;
  min-height: 360px;
  background: #FFF4E6;
  border: 3px solid #D7C1A2;
  border-radius: 24px;
  padding: 25px 28px;
  text-align: center;
  box-shadow: 0 4px 0 #C8B090;

  display: flex;
  flex-direction: column;
}

.sides-card > img{
  width: 210px;
  height: 150px;
  object-fit: contain;
  margin: 0 auto 18px;
}

.sides-card h3{
  font-size: 30px;
  margin-bottom: 12px;
}

.sides-card p{
  font-size: 18px;
  line-height: 1.35;
  min-height: 70px;
}

.sides-card .meal-bottom{
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sides-card .meal-bottom span{
  font-family: Arial, sans-serif;
  color: #D26F27;
  font-size: 18px;
  font-weight: bold;
}

.sides-card .meal-bottom button{
  background: #66753F;
  color: white;
  padding: 10px 18px;
  border-radius: 20px;
  font-size: 13px;

  display: flex;
  align-items: center;
  gap: 7px;
}

.sides-card .meal-bottom button img{
  width: 16px !important;
  height: 16px !important;
  object-fit: contain;
  margin: 0;
}

/* REVIEWS PAGE */
/* REVIEWS PAGE */

.customer-section{
  width:100%;
  background:#F5EBDD;
  border-radius:24px;
  margin-top:12px;
  padding:28px 50px 38px;
  text-align:center;
}

.customer-section h1{
  font-size:32px;
  margin-bottom:24px;
  color:#4A2E1F;
}

.review-cards{
  display:grid;
  grid-template-columns:repeat(3, 270px);
  justify-content:center;
  gap:55px;
}

.review-card{
  width:270px;
  min-height:210px;
  background:#FFF4E6;
  border:3px solid #D7C1A2;
  border-radius:22px;
  padding:20px;
  text-align:left;
  box-shadow:0 4px 0 #C8B090;
  word-wrap:break-word;
}

.review-top{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:12px;
}

.user-icon{
  width:38px;
  height:38px;
  object-fit:contain;
  flex-shrink:0;
}

.review-card h3{
  font-size:14px;
  margin-bottom:5px;
  color:#4A2E1F;
}

.review-card .stars{
  display:flex;
  gap:3px;
  flex-wrap:wrap;
}

.review-card .stars img{
  width:15px;
  height:15px;
  object-fit:contain;
}

.review-card p{
  font-size:13px;
  line-height:1.35;
  margin-bottom:18px;
  font-weight:bold;
  color:#4A2E1F;
}

.date{
  font-size:10px;
  color:#7A5A47;
}

.review-uploaded-img{
  width:100%;
  height:150px;
  object-fit:cover;
  border-radius:14px;
  margin:12px 0;
  border:2px solid #D7C1A2;
}

/* PAGINATION */

.review-pagination{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:10px;
  margin-top:25px;
  flex-wrap:wrap;
}

.review-pagination button{
  border:none;
  background:#D7C1A2;
  color:#4A2E1F;
  min-width:38px;
  height:38px;
  border-radius:50%;
  font-weight:bold;
  cursor:pointer;
  transition:0.2s;
}

.review-pagination button:hover{
  background:#C96A3A;
  color:#F4E9D8;
}

.review-pagination button.active-page{
  background:#C96A3A;
  color:#F4E9D8;
}

.review-pagination button:disabled{
  opacity:0.4;
  cursor:not-allowed;
}

/* WRITE REVIEW */

.write-section{
  width:100%;
  background:#F5EBDD;
  border-radius:24px;
  margin-top:12px;
  padding:26px 35px;
  display:flex;
  gap:35px;
  align-items:flex-start;
}

.write-left{
  width:28%;
}

.write-left h1{
  font-size:30px;
  color:#4A2E1F;
}

.write-left p{
  font-size:14px;
  margin-bottom:10px;
  color:#4A2E1F;
}

.people-image{
  width:170px;
  object-fit:contain;
}

.review-form{
  width:72%;
}

.form-row{
  display:grid;
  grid-template-columns:1fr 1fr 1.5fr;
  gap:28px;
  align-items:start;
}

.form-group label{
  display:block;
  font-size:12px;
  font-weight:bold;
  margin-bottom:8px;
  color:#4A2E1F;
}

.form-group input,
.review-box textarea{
  width:100%;
  border:2px solid #D7C1A2;
  outline:none;
  background:#D8BF9A;
  border-radius:10px;
  padding:14px;
  font-family:Georgia, serif;
}

.review-box textarea{
  height:95px;
  resize:none;
}

.rating-stars{
  display:flex;
  gap:6px;
}

.rating-stars img{
  width:26px;
  height:26px;
  object-fit:contain;
  cursor:pointer;
  transition:0.2s;
}

.rating-stars img:hover{
  transform:scale(1.12);
}

.second-row{
  grid-template-columns:1.4fr 1fr;
  align-items:end;
  margin-top:18px;
}

.upload-box{
  height:75px;
  background:#D8BF9A;
  border-radius:10px;
  display:flex !important;
  justify-content:center;
  align-items:center;
  gap:12px;
  cursor:pointer;
  border:2px solid #D7C1A2;
}

.upload-box img{
  width:24px;
}

.upload-box span{
  max-width:250px;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}

#upload{
  display:none;
}

.submit-btn{
  width:fit-content;
  justify-self:end;
  background:#66753F;
  color:#F4E9D8;
  padding:14px 22px;
  border-radius:22px;
  border:none;
  display:flex;
  align-items:center;
  gap:8px;
  font-weight:bold;
  cursor:pointer;
}

.submit-btn img{
  width:18px;
}
/* CONTACT PAGE */

.contact-section{
  width: 100%;
  background: #F5EBDD;
  border-radius: 24px;
  margin-top: 12px;
  padding: 18px 40px 28px;
  text-align: center;
}

.contact-banner{
  width: 240px;
  height: auto;
  object-fit: contain;
}

.subtitle{
  font-size: 13px;
  margin: 5px 0 12px;
}

.contact-content{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.contact-info,
.message-box{
  background: #FFF4E6;
  border: 3px solid #D7C1A2;
  border-radius: 22px;
  padding: 18px 25px;
  box-shadow: 0 4px 0 #C8B090;
  text-align: left;
}

.contact-info h3,
.message-box h3{
  width: fit-content;
  margin: 0 auto 15px;
  background: #66753F;
  color: white;
  padding: 8px 35px;
  border-radius: 20px;
  font-size: 14px;
}

.info-row{
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 11px 0;
  border-bottom: 1px solid #E2CDAE;
}

.info-row:last-child{
  border-bottom: none;
}

.info-row img{
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.info-row p,
.message-box p{
  font-size: 12px;
  line-height: 1.4;
}

.message-box label{
  display: block;
  font-size: 12px;
  font-weight: bold;
  margin: 8px 0 5px;
}

.message-box input,
.message-box textarea{
  width: 100%;
  border: none;
  outline: none;
  background: #E7D8C0;
  border-radius: 8px;
  padding: 10px;
  font-family: Georgia, serif;
}

.message-box textarea{
  height: 90px;
  resize: none;
}

.message-box button{
  display: block;
  margin: 12px auto 0;
  background: #66753F;
  color: white;
  padding: 10px 18px;
  border-radius: 20px;
  font-size: 11px;
}

.map-box{
  width: 100%;
  height: 150px;
  margin-top: 22px;
  border: 3px solid #D7C1A2;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 4px 0 #C8B090;
}

.map-box iframe{
  width: 100%;
  height: 100%;
  border: none;
}

.friend-section{
  margin-top: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 70px;
}

.friend-text h2{
  font-size: 32px;
  margin-bottom: 8px;
}

.friend-text p{
  font-size: 12px;
  margin-bottom: 12px;
}

.big-socials{
  display: flex;
  justify-content: center;
  gap: 28px;
}

.big-socials img{
  width: 45px;
  height: 45px;
  object-fit: contain;
}

.contact-people{
  width: 230px;
  object-fit: contain;
}
/* ========================= 
   CART PAGE FINAL FIXED
========================= */

.cart-section{
  width: 100%;
  background: #F7EFE3;
  border-radius: 26px;
  margin-top: 8px;
  padding: 16px 24px 22px;
}

/* CART BANNER */

.cart-banner{
  width: 100%;
  height: 120px;
  overflow: hidden;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  margin-bottom: 18px;
  padding: 0;
}

.cart-banner img{
  width: 520px;
  height: 120px;

  object-fit: cover;
  object-position: center;

  display: block;

  transform: scale(1.45);
  margin-bottom: -8px;
}

.cart-banner p{
  margin: 0;
  font-size: 14px;
  font-weight: bold;
  color: #4A2C1F;
  text-align: center;
}

/* CART CONTENT */

.cart-content{
  width: 100%;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 18px;
  align-items: stretch;
}

/* LEFT AND RIGHT BOXES */

.cart-items,
.order-summary{
  background: #FFF8ED;
  border: 3px solid #D6BE9B;
  border-radius: 22px;
  box-shadow: 0 4px 0 #C8AF8C;
}

/* LEFT ITEMS */

.cart-items{
  padding: 16px 18px 14px;
}

.cart-item{
  display: grid;
  grid-template-columns: 88px 1fr 80px 18px;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px dashed #D6BE9B;
}

.cart-item > img{
  width: 80px;
  height: 70px;
  object-fit: cover;
  border-radius: 14px;
}

.cart-info h3{
  font-size: 14px;
  margin-bottom: 4px;
  color: #4A2C1F;
}

.cart-info p{
  font-size: 9px;
  line-height: 1.3;
  color: #5D4030;
  margin-bottom: 6px;
}

.cart-info span{
  font-size: 14px;
  font-weight: bold;
  color: #D1762D;
}

.cart-item img:first-child{
  width:90px;
  height:90px;
  object-fit:cover;
  border-radius:14px;
}

/* QUANTITY */

.qty-box{
  width: 72px;
  height: 27px;

  background: #FFF8ED;

  border: 2px solid #D6BE9B;
  border-radius: 20px;

  display: flex;
  align-items: center;
  justify-content: space-around;

  box-shadow: 0 3px 5px rgba(0,0,0,0.18);
}

.qty-box button{
  border: none;
  background: transparent;

  font-size: 16px;
  font-weight: bold;

  color: #4A2C1F;

  cursor: pointer;
}

.qty-box span{
  font-size: 12px;
  font-weight: bold;
}

.trash-icon{
  width: 12px !important;
  height: 12px !important;
  object-fit: contain !important;
}

/* CONTINUE SHOPPING */

.continue-btn{
  width: fit-content;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;

  margin-top: 14px;

  background: white;
  color: #4A2C1F;

  border: 2px solid #D6BE9B;
  border-radius: 20px;

  padding: 8px 16px;

  text-decoration: none;

  font-size: 11px;
  font-weight: bold;
}

.continue-btn img{
  width: 10px;
  height: 10px;
  object-fit: contain;
  display: block;
}

/* ORDER SUMMARY */

.error-message{
  color: #B00020;
  font-size: 11px;
  margin-top: 4px;
  display: block;
}

.form-group input.error,
.payment-option.error{
  border-color: #B00020;
}

.payment-option{
  display: flex;
  align-items: center;
  gap: 12px;
}

.payment-option input{
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.order-summary{
  padding: 22px 24px;

  display: flex;
  flex-direction: column;

  overflow: hidden;
}

.order-summary h2{
  font-size: 28px;
  margin-bottom: 18px;
  color: #4A2C1F;
}

.summary-row{
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  margin-bottom: 9px;
}

.summary-row b{
  font-weight: bold;
}

.discount{
  color: #66753F;
}

.summary-total{
  border-top: 2px dashed #D6BE9B;
  margin-top: 14px;
  padding-top: 16px;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

.summary-total h3{
  font-size: 25px;
  color: #D1762D;
}

.checkout-img{
  width: 150px;
  display: block;
  margin: 8px auto 10px;
  object-fit: contain;
}

/* FIXED CHECKOUT BUTTON */

.checkout-btn{
  width: 100%;

  background: #D1762D;
  color:#F4E9D8;

  border-radius: 18px;

  padding: 12px 18px;

  text-decoration: none;

  font-size: 12px;
  font-weight: bold;

  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;

  box-sizing: border-box;

  overflow: hidden;
}

.checkout-btn img{
  width: 16px;
  height: 16px;
  object-fit: contain;
  flex-shrink: 0;
}

/* =========================
   CHECKOUT IMAGE
========================= */

.checkout-area{
  margin-top: 18px;
}

.checkout-img{
  width: 180px;

  display: block;

  margin: 0 auto 14px;

  object-fit: contain;
}

/* =========================
   CHECKOUT BUTTON
========================= */

.checkout-btn{
  width: 100%;

  background: #D57B2C;
  color:#F4E9D8;

  text-decoration: none;

  text-align: center;

  padding: 16px 20px;

  border-radius: 30px;

  font-size: 14px;
  font-weight: bold;

  display: block;

  transition: 0.2s;
}

.checkout-btn:hover{
  background: #BC6721;
}

/* CHECKOUT PAGE */

.checkout-section{
  width: 100%;
  background: #F7EFE3;
  border-radius: 26px;
  margin-top: 8px;
  padding: 12px 24px 28px;
}

.checkout-banner{
  width: 100%;
  text-align: center;
  margin-bottom: 18px;
  padding: 0;
}

.checkout-banner img{
  width: 430px;
  height: 110px;
  object-fit: cover;
  object-position: center;
  display: block;
  margin: 0 auto -8px;
}

.checkout-banner p{
  font-size: 14px;
  font-weight: bold;
  color: #4A2C1F;
  margin: 0 0 12px;
}

.checkout-content{
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 22px;
  align-items: start;
}

.checkout-left,
.summary-card{
  background: #FFF8ED;
  border: 3px solid #D6BE9B;
  border-radius: 24px;
  box-shadow: 0 4px 0 #C8AF8C;
  padding: 24px;
}

.step-title{
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.step-title img{
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.step-title h2{
  font-size: 24px;
  color: #4A2C1F;
}

.form-group{
  margin-bottom: 14px;
}

.form-group label{
  display: block;
  font-size: 13px;
  font-weight: bold;
  margin-bottom: 6px;
  color: #4A2C1F;
}

.form-group input{
  width: 100%;
  height: 40px;
  border: 2px solid #D6BE9B;
  border-radius: 10px;
  background: #F7EFE3;
  padding: 0 14px;
  font-family: Arial, sans-serif;
}

.checkout-left hr{
  border: none;
  border-top: 2px dashed #D6BE9B;
  margin: 22px 0;
}

.payment-option{
  border: 2px solid #D6BE9B;
  border-radius: 16px;
  padding: 12px 14px;
  margin-bottom: 12px;
  background: #F7EFE3;
}

.payment-left{
  display: flex;
  align-items: center;
  gap: 12px;
}

.payment-left img{
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.payment-left h3{
  font-size: 16px;
  color: #4A2C1F;
}

.payment-left p{
  font-size: 11px;
  color: #6A4B3A;
}

.summary-card h2{
  font-size: 34px;
  margin-bottom: 20px;
  color: #4A2C1F;
}

.summary-item{
  display: grid;
  grid-template-columns: 70px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px dashed #D6BE9B;
}

.summary-item img{
  width: 65px;
  height: 58px;
  object-fit: cover;
  border-radius: 12px;
}

.summary-info h4{
  font-size: 14px;
  color: #4A2C1F;
}

.summary-info span{
  color: #D1762D;
  font-weight: bold;
  font-size: 12px;
}

.summary-item strong{
  font-size: 13px;
  color: #4A2C1F;
}

.summary-totals{
  margin-top: 18px;
}

.summary-line{
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 15px;
}

.green-text{
  color: #66753F;
}

.total-line{
  border-top: 2px dashed #D6BE9B;
  margin-top: 14px;
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
}

.total-line h3{
  font-size: 28px;
  color: #D1762D;
}

.checkout-couple{
  width: 160px;
  display: block;
  margin: 12px auto;
}

.place-order-btn{
  width: 100%;
  background: #D1762D;
  color:#F4E9D8;
  border: none;
  border-radius: 24px;
  padding: 14px 18px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.place-order-btn img{
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.secure-text{
  text-align: center;
  font-size: 11px;
  margin-top: 10px;
  color: #6A4B3A;
}

.dark-toggle{
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: #4A2C1F;
  color:#F4E9D8;
  font-size: 18px;
  cursor: pointer;
}

body.dark-mode{
  background-color: #1F1612;
  color: #F7EFE3;
}

body.dark-mode header,
body.dark-mode footer,
body.dark-mode .hero-card,
body.dark-mode .top-meals,
body.dark-mode .menu-section,
body.dark-mode .cart-section,
body.dark-mode .checkout-section,
body.dark-mode .about-section,
body.dark-mode .contact-section,
body.dark-mode .review-section,
body.dark-mode .chicken-section,
body.dark-mode .pork-section,
body.dark-mode .sides-section{
  background: #2B1B14 !important;
  color: #F4E9D8 !important;
}

body.dark-mode nav a,
body.dark-mode .logo span,
body.dark-mode h1,
body.dark-mode h2,
body.dark-mode h3,
body.dark-mode p,
body.dark-mode span{
  color: #F4E9D8;
}

body.dark-mode .meal-card,
body.dark-mode .menu-card,
body.dark-mode .cart-items,
body.dark-mode .order-summary,
body.dark-mode .summary-card,
body.dark-mode .checkout-left,
body.dark-mode .review-card,
body.dark-mode .contact-info,
body.dark-mode .message-box,
body.dark-mode .chicken-card,
body.dark-mode .pork-card,
body.dark-mode .sides-card{
  background: #3A251B !important;
  border-color: #8B5A3C !important;
  color: #F4E9D8 !important;
}

/* HOVER EFFECTS */

nav a:hover{
  color:var(--clay);
}

.header-right button:hover{
  background:#8C4523;
  transform:translateY(-2px);
}

.hero-btn.orange:hover{
  background:#8C4523;
}

.hero-btn.green:hover{
  background:#556B44;
}

.hero-btn:hover{
  transform:translateY(-2px);
}

.meal-card:hover{
  transform:translateY(-7px);
  box-shadow:0 16px 32px rgba(0,0,0,0.16);
}

.meal-card .hero-btn.orange:hover{
  background:#8C4523;
}

.social-icons img:hover{
  transform:scale(1.12);
  cursor:pointer;
}

.footer-right img:hover{
  transform:rotate(-8deg) scale(1.08);
}

/* CARD HOVER EFFECT */

.meal-card{
  transition:
  transform 0.28s ease,
  box-shadow 0.28s ease,
  border-color 0.28s ease;

  cursor:pointer;
}

.meal-card:hover{
  transform:translateY(-10px) scale(1.02);

  box-shadow:
  0 18px 40px rgba(74,46,31,0.18);

  border-color:#C96A3A;
}

/* IMAGE ZOOM */

.meal-card .meal-img{
  transition:transform 0.35s ease;
}

.meal-card:hover .meal-img{
  transform:scale(1.05);
}

/* BUTTON ANIMATION */

.meal-card .hero-btn{
  transition:
  background 0.25s ease,
  transform 0.25s ease;
}

.meal-card:hover .hero-btn{
  transform:translateY(-2px);
}

/* TITLE COLOR CHANGE */

.meal-card h3{
  transition:color 0.25s ease;
}

.meal-card:hover h3{
  color:#C96A3A;
}

/* MENU CARD HOVER EFFECT */

.menu-card{
  transition:
  transform 0.30s ease,
  box-shadow 0.30s ease,
  border-color 0.30s ease,
  background 0.30s ease;

  cursor:pointer;

  border:3px solid transparent;
}

/* CARD HOVER */

.menu-card:hover{
  transform:
  translateY(-10px)
  scale(1.02);

  border:3px solid #C96A3A;

  box-shadow:
  0 18px 40px rgba(74,46,31,0.18);

  background:#F9F3EA;
}

/* IMAGE ZOOM */

.menu-card img{
  transition:
  transform 0.35s ease;
}

.menu-card:hover img{
  transform:scale(1.06);
}

/* TITLE HOVER */

.menu-card h3{
  transition:color 0.25s ease;
}

.menu-card:hover h3{
  color:#C96A3A;
}

/* BUTTON HOVER */

.menu-card .meal-bottom button{
  transition:
  transform 0.25s ease,
  background 0.25s ease;
}

.menu-card:hover .meal-bottom button{
  transform:translateY(-2px);
  background:#556B44;
}

/* PRICE HOVER */

.menu-card span{
  transition:0.25s ease;
}

.menu-card:hover span{
  color:#C96A3A;
}

/* CHICKEN CARD HOVER EFFECT */

.chicken-card{
  transition:
  transform 0.30s ease,
  box-shadow 0.30s ease,
  border-color 0.30s ease,
  background 0.30s ease;

  cursor:pointer;

  border:3px solid transparent;
}

/* CARD FLOAT */

.chicken-card:hover{
  transform:
  translateY(-10px)
  scale(1.02);

  border:3px solid #C96A3A;

  box-shadow:
  0 18px 40px rgba(74,46,31,0.18);

  background:#F9F3EA;
}

/* IMAGE ZOOM */

.chicken-card img{
  transition:transform 0.35s ease;
}

.chicken-card:hover img{
  transform:scale(1.06);
}

/* TITLE COLOR */

.chicken-card h3{
  transition:color 0.25s ease;
}

.chicken-card:hover h3{
  color:#C96A3A;
}

/* BUTTON EFFECT */

.chicken-card .meal-bottom button{
  transition:
  transform 0.25s ease,
  background 0.25s ease;
}

.chicken-card:hover .meal-bottom button{
  transform:translateY(-2px);

  background:#556B44;
}

/* PRICE EFFECT */

.chicken-card span{
  transition:0.25s ease;
}

.chicken-card:hover span{
  color:#C96A3A;
}

/* SIDES CARD HOVER EFFECT */

.sides-card{
  transition:
  transform 0.30s ease,
  box-shadow 0.30s ease,
  border-color 0.30s ease,
  background 0.30s ease;

  cursor:pointer;

  border:3px solid transparent;
}

/* FLOAT + STROKE */

.sides-card:hover{
  transform:
  translateY(-10px)
  scale(1.02);

  border:3px solid #C96A3A;

  box-shadow:
  0 18px 40px rgba(74,46,31,0.18);

  background:#F9F3EA;
}

/* IMAGE ZOOM */

.sides-card img{
  transition:transform 0.35s ease;
}

.sides-card:hover img{
  transform:scale(1.06);
}

/* TITLE EFFECT */

.sides-card h3{
  transition:color 0.25s ease;
}

.sides-card:hover h3{
  color:#C96A3A;
}

/* BUTTON EFFECT */

.sides-card .meal-bottom button{
  transition:
  transform 0.25s ease,
  background 0.25s ease;
}

.sides-card:hover .meal-bottom button{
  transform:translateY(-2px);

  background:#556B44;
}

/* PRICE EFFECT */

.sides-card span{
  transition:0.25s ease;
}

.sides-card:hover span{
  color:#C96A3A;
}

.error{
  color:#C96A3A;
  font-size:13px;
  display:block;
  margin-top:6px;
  margin-bottom:12px;
}

input.error-input,
textarea.error-input{
  border:2px solid #C96A3A !important;
}

.review-pagination{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:10px;
  margin-top:25px;
  flex-wrap:wrap;
}

.review-pagination button{
  border:none;
  background:#D7C1A2;
  color:#4A2E1F;

  min-width:40px;
  height:40px;

  border-radius:50%;

  font-weight:bold;
  cursor:pointer;

  transition:0.2s;
}

.review-pagination button:hover{
  background:#C96A3A;
  color:#F4E9D8;
}

.review-pagination .active-page{
  background:#C96A3A;
  color:#F4E9D8;
}

.page-arrow{
  font-size:18px;
}

.review-pagination button:disabled{
  opacity:0.4;
  cursor:not-allowed;
}

/* =========================
   DARK MODE - REVIEWS PAGE
========================= */

body.dark-mode .customer-section,
body.dark-mode .write-section{
  background:#2A1E17;
}

body.dark-mode .customer-section h1,
body.dark-mode .write-left h1,
body.dark-mode .write-left p,
body.dark-mode .form-group label,
body.dark-mode .review-card h3,
body.dark-mode .review-card p,
body.dark-mode .date{
  color:#F5EBDD;
}

body.dark-mode .review-card{
  background:#3A2A21;
  border:3px solid #6D4C3D;
  box-shadow:0 4px 0 #241812;
}

body.dark-mode .form-group input,
body.dark-mode .review-box textarea,
body.dark-mode .upload-box{
  background:#4B3529;
  border:2px solid #6D4C3D;
  color:#F5EBDD;
}

body.dark-mode .form-group input::placeholder,
body.dark-mode .review-box textarea::placeholder{
  color:#D8C1B2;
}

body.dark-mode .review-pagination button{
  background:#4B3529;
  color:#F5EBDD;
}

body.dark-mode .review-pagination button.active-page{
  background:#C96A3A;
  color:#FFF;
}

body.dark-mode .review-pagination button:hover{
  background:#C96A3A;
  color:#FFF;
}

body.dark-mode .submit-btn{
  background:#8AA05A;
  color:#FFF;
}

body.dark-mode .upload-box span{
  color:#F5EBDD;
}

/* DARK MODE - CHECKOUT PAGE */

body.dark-mode .checkout-section,
body.dark-mode .checkout-left,
body.dark-mode .summary-card{
  background:#2B1B14 !important;
  color:#F4E9D8 !important;
}

body.dark-mode .checkout-section h1,
body.dark-mode .checkout-section h2,
body.dark-mode .checkout-section h3,
body.dark-mode .checkout-section h4,
body.dark-mode .checkout-section p,
body.dark-mode .checkout-section span,
body.dark-mode .checkout-section label,
body.dark-mode .summary-card strong{
  color:#F4E9D8 !important;
}

body.dark-mode .checkout-left,
body.dark-mode .summary-card{
  border-color:#6D4C3D !important;
  box-shadow:0 4px 0 #1F130E !important;
}

body.dark-mode .form-group input,
body.dark-mode .payment-option{
  background:#3A251B !important;
  border:2px solid #6D4C3D !important;
  color:#F4E9D8 !important;
}

body.dark-mode .form-group input::placeholder{
  color:#C8B7AA !important;
}

body.dark-mode .checkout-left hr,
body.dark-mode .summary-item,
body.dark-mode .total-line{
  border-color:#6D4C3D !important;
}

body.dark-mode .payment-left p,
body.dark-mode .secure-text{
  color:#C8B7AA !important;
}

body.dark-mode .green-text{
  color:#8AA05A !important;
}

body.dark-mode .total-line h3,
body.dark-mode .summary-total h3{
  color:#D9823B !important;
}

body.dark-mode .place-order-btn{
  background:#C96A3A !important;
  color:#F4E9D8 !important;
}

body.dark-mode .place-order-btn:hover{
  background:#8C4523 !important;
}

.complete-order-btn{
  width: 100%;
  margin-top: 10px;
  background: #66753F;
  color: white;
  border: none;
  border-radius: 24px;
  padding: 12px;
  font-weight: bold;
  cursor: pointer;
}

.complete-order-btn:hover{
  background: #556133;
}

.complete-order-btn{
  width: 100%;
  margin-top: 10px;
  background: #66753F;
  color: white;
  border: none;
  border-radius: 24px;
  padding: 12px;
  font-weight: bold;
  cursor: pointer;
}

.complete-order-btn:hover{
  background: #556133;
}


/* STICKY / FIXED HEADER */

header{
  position:fixed !important;
  top:18px;
  left:28px;
  right:28px;

  width:calc(100% - 56px);

  z-index:99999 !important;

  margin-bottom:0 !important;
}

/* SPACE SO CONTENT WON'T HIDE UNDER HEADER */

main{
  padding-top:130px;
} 

/* DARK MODE CATEGORY BUTTONS */

body.dark-mode .categories a{
  background:#2B1B14;
  color:#F4E9D8;
  border:3px solid #6D4C3D;
}

body.dark-mode .categories a:hover{
  background:#C96A3A;
  color:#FFF4E6;
  border-color:#E7B17A;
}

body.dark-mode .categories .active-category{
  background:#D9823B !important;
  color:#FFF4E6 !important;
  border-color:#F0C28A !important;
}

/* DARK MODE CART QUANTITY + TRASH */

body.dark-mode .qty-box{
  background:#F4E9D8 !important;
  border:2px solid #D7C1A2 !important;
}

body.dark-mode .qty-box button,
body.dark-mode .qty-box span{
  color:#4A2E1F !important;
}

.trash-icon{
  width:18px !important;
  height:18px !important;
  cursor:pointer;
  object-fit:contain;
}

/* FIX CART DARK MODE IMAGES + TRASH */

.cart-item > img:first-child{
  width:80px;
  height:80px;
  object-fit:cover;
  border-radius:14px;
}

.trash-icon{
  width:22px !important;
  height:22px !important;
  object-fit:contain;
  cursor:pointer;
  opacity:1 !important;
  filter:none !important;
}

body.dark-mode .trash-icon{
  filter:brightness(0) saturate(100%) invert(59%) sepia(80%) saturate(846%) hue-rotate(337deg) brightness(95%) contrast(92%) !important;
}

body.dark-mode .qty-box{
  background:#F4E9D8 !important;
  border:2px solid #D7C1A2 !important;
}

body.dark-mode .qty-box button,
body.dark-mode .qty-box span{
  color:#2B1B14 !important;
  opacity:1 !important;
}

/* =========================
   ORDERS PAGE
========================= */

.orders-section{
  width: 100%;
  background: #F7EFE3;
  border-radius: 26px;
  margin-top: 8px;
  padding: 28px 24px;
  box-sizing: border-box;
}

.orders-banner{
  text-align: center;
  margin-bottom: 24px;
}

.orders-banner h1{
  font-size: 42px;
  color: #4A2C1F;
  margin-bottom: 8px;
}

.orders-banner p{
  font-size: 14px;
  font-weight: bold;
  color: #6A4B3A;
}

.orders-tabs{
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 24px;
}

.orders-tab{
  background: #FFF8ED;
  color: #4A2C1F;
  border: 2px solid #D6BE9B;
  border-radius: 24px;
  padding: 12px 22px;
  font-weight: bold;
  cursor: pointer;
}

.orders-tab.active,
.orders-tab:hover{
  background: #D1762D;
  color: #F4E9D8;
}

.orders-container{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
}

.order-card{
  background: #FFF8ED;
  border: 3px solid #D6BE9B;
  border-radius: 24px;
  box-shadow: 0 4px 0 #C8AF8C;
  padding: 22px;
}

.order-card h3{
  color: #D1762D;
  font-size: 24px;
  margin-bottom: 10px;
}

.order-card p{
  font-size: 14px;
  color: #4A2C1F;
  margin-bottom: 8px;
}

.order-items{
  margin-top: 14px;
  border-top: 2px dashed #D6BE9B;
  padding-top: 12px;
}

.order-item{
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  margin-bottom: 8px;
  color: #4A2C1F;
}

.cancel-order-btn{
  width: 100%;
  margin-top: 16px;
  background: #D1762D;
  color: #F4E9D8;
  border: none;
  border-radius: 24px;
  padding: 12px;
  font-weight: bold;
  cursor: pointer;
}

.cancel-order-btn:hover{
  background: #BC6721;
}

.empty-orders{
  text-align: center;
  font-weight: bold;
  color: #4A2C1F;
  background: #FFF8ED;
  border: 3px solid #D6BE9B;
  border-radius: 24px;
  padding: 28px;
}

/* =========================
   ORDERS PAGE DARK MODE
========================= */

body.dark-mode .orders-section{
  background: #2A160F;
}

body.dark-mode .orders-banner h1,
body.dark-mode .orders-banner p{
  color: #FFF3E6;
}

body.dark-mode .orders-tab{
  background: #5A3A28;
  color: #FFF3E6;
  border: none;
}

body.dark-mode .orders-tab.active{
  background: #D57B2C;
  color: white;
}

body.dark-mode .order-card,
body.dark-mode .empty-orders{
  background: #4A281A;
  border: 3px solid #A86A3D;
  box-shadow: 0 4px 0 #24120C;
}

body.dark-mode .order-card h3{
  color: #F0A35A;
}

body.dark-mode .order-card p,
body.dark-mode .order-item,
body.dark-mode .empty-orders{
  color: #FFF3E6;
}

body.dark-mode .order-items{
  border-top: 2px dashed #A86A3D;
}

body.dark-mode .cancel-order-btn{
  background: #D57B2C;
  color: white;
}

body.dark-mode .cancel-order-btn:hover{
  background: #BC6721;
}
/* =========================
   CONTACT PAGE DARK MODE FINAL FIX
========================= */

body.dark-mode .contact-section{
  background: #2A160F !important;
  color: #FFF3E6 !important;
}

body.dark-mode .contact-info,
body.dark-mode .message-box,
body.dark-mode .friend-section{
  background: #4A281A !important;
  border: 3px solid #A86A3D !important;
  box-shadow: 0 4px 0 #24120C !important;
}

body.dark-mode .contact-section h2,
body.dark-mode .contact-section h3,
body.dark-mode .contact-section p,
body.dark-mode .contact-section label,
body.dark-mode .contact-section b,
body.dark-mode .subtitle{
  color: #FFF3E6 !important;
}

body.dark-mode .message-box h3{
  background: #66753F !important;
  color: #FFF3E6 !important;
}

/* INPUTS */

body.dark-mode .message-box input,
body.dark-mode .message-box textarea{
  background: #3A2117 !important;
  color: #FFF3E6 !important;
  border: 2px solid #A86A3D !important;
}

body.dark-mode .message-box input::placeholder,
body.dark-mode .message-box textarea::placeholder{
  color: #D6BE9B !important;
}

/* BUTTON */

body.dark-mode .message-box button{
  background: #D57B2C !important;
  color: #FFF3E6 !important;
  border: 2px solid #1A0D08 !important;
}

body.dark-mode .message-box button:hover{
  background: #BC6721 !important;
}

/* MAP */

body.dark-mode .map-box{
  border: 3px solid #A86A3D !important;
  box-shadow: 0 4px 0 #24120C !important;
}

/* ERRORS */

body.dark-mode .error{
  color: #FFB3B3 !important;
}

/* =========================================
   TABLET RESPONSIVE
========================================= */

@media screen and (max-width: 1024px){

  .page-wrapper{
    padding:16px;
  }

  header{
    width:100%;
    left:0;
    right:0;
    top:0;
    border-radius:0;
    padding:0 20px;
  }

  main{
    padding-top:110px;
  }

  nav{
    display:flex;
    gap:8px;
  }

  nav a{
    font-size:13px;
    padding:8px 12px;
  }

  .hero-overlay{
    padding:40px;
  }

  .hero-card{
    width:100%;
    max-width:500px;
  }

  .hero-card h1{
    font-size:52px;
  }

  .meal-container,
  .menu-grid,
  .chicken-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .review-cards{
    grid-template-columns:repeat(2,1fr);
    gap:25px;
  }

  .review-card{
    width:100%;
  }

  .contact-content{
    grid-template-columns:1fr;
  }

  .friend-section{
    flex-direction:column;
    text-align:center;
  }

  .cart-content,
  .checkout-content{
    grid-template-columns:1fr;
  }

  .pork-grid,
  .sides-grid{
    flex-wrap:wrap;
    justify-content:center;
  }

  .write-section{
    flex-direction:column;
  }

  .write-left,
  .review-form{
    width:100%;
  }

  .form-row{
    grid-template-columns:1fr;
  }

  footer{
    flex-direction:column;
    gap:16px;
    text-align:center;
  }

}

/* =========================================
   PHONE RESPONSIVE
========================================= */

@media screen and (max-width: 768px){

  .page-wrapper{
    padding:10px;
  }

  header{
    height:auto;
    padding:14px;
    flex-direction:column;
    gap:14px;
    position:relative !important;
    border-radius:22px;
  }

  main{
    padding-top:20px;
  }

  .logo{
    justify-content:center;
  }

  nav{
    flex-wrap:wrap;
    justify-content:center;
    gap:8px;
  }

  nav a{
    font-size:12px;
    padding:7px 10px;
  }

  .header-right{
    gap:12px;
    flex-wrap:wrap;
    justify-content:center;
  }

  .header-right button{
    padding:10px 18px;
    font-size:12px;
  }

  .hero{
    min-height:auto;
  }

  .hero-overlay{
    padding:25px;
  }

  .hero-card{
    width:100%;
    padding:28px 24px;
  }

  .hero-card h1{
    font-size:42px;
  }

  .hero-desc{
    font-size:14px;
  }

  .hero-buttons{
    flex-direction:column;
  }

  .hero-btn{
    width:100%;
  }

  .top-heading h2{
    font-size:36px;
  }

  .meal-container,
  .menu-grid,
  .review-cards,
  .chicken-grid{
    grid-template-columns:1fr;
  }

  .review-card{
    width:100%;
  }

  .categories{
    flex-wrap:wrap;
  }

  .categories a{
    width:100%;
    text-align:center;
  }

  .about-section{
    flex-direction:column;
    padding:25px;
  }

  .about-left,
  .about-right{
    width:100%;
  }

  .features{
    grid-template-columns:repeat(2,1fr);
  }

  .pork-grid,
  .sides-grid{
    flex-direction:column;
    align-items:center;
  }

  .pork-card,
  .sides-card{
    width:100%;
  }

  .cart-item{
    grid-template-columns:1fr;
    text-align:center;
  }

  .qty-box{
    margin:auto;
  }

  .summary-item{
    grid-template-columns:1fr;
    text-align:center;
  }

  .checkout-banner img,
  .cart-banner img{
    width:100%;
    height:auto;
    transform:none;
  }

  .orders-tabs{
    flex-direction:column;
    align-items:center;
  }

  .orders-tab{
    width:100%;
    max-width:280px;
  }

  .orders-container{
    grid-template-columns:1fr;
  }

  .order-card{
    padding:18px;
  }

  .contact-banner{
    width:180px;
  }

  .contact-people{
    width:180px;
  }

  .big-socials{
    gap:18px;
  }

  .big-socials img{
    width:38px;
    height:38px;
  }

}

/* =========================================
   SMALL PHONE RESPONSIVE
========================================= */

@media screen and (max-width: 480px){

  .hero-card h1{
    font-size:34px;
  }

  .top-heading h2,
  .orders-banner h1,
  .customer-section h1,
  .about-right h1{
    font-size:28px;
  }

  .meal-card h3,
  .menu-card h3,
  .chicken-card h3,
  .pork-card h3,
  .sides-card h3{
    font-size:22px;
  }

  .contact-info,
  .message-box,
  .order-card,
  .cart-items,
  .order-summary,
  .checkout-left,
  .summary-card{
    padding:16px;
  }

  .form-group input,
  .message-box textarea{
    font-size:14px;
  }

  .checkout-btn,
  .place-order-btn,
  .cancel-order-btn{
    font-size:12px;
  }

  footer{
    padding:18px;
  }

  .footer-right{
    flex-direction:column;
  }

}

/* =========================================
   MOBILE RESPONSIVE
========================================= */

@media screen and (max-width: 425px){

  .page-wrapper{
    padding:10px;
  }

  header{
    height:auto;
    padding:14px;
    flex-direction:column;
    gap:14px;
    position:relative !important;
    border-radius:22px;
  }

  main{
    padding-top:20px;
  }

  .logo{
    justify-content:center;
    text-align:center;
  }

  .logo span{
    font-size:14px;
  }

  nav{
    flex-wrap:wrap;
    justify-content:center;
    gap:6px;
  }

  nav a{
    font-size:11px;
    padding:6px 8px;
  }

  .header-right{
    gap:10px;
    flex-wrap:wrap;
    justify-content:center;
  }

  .header-right button{
    padding:9px 16px;
    font-size:11px;
  }

  .dark-toggle{
    width:38px;
    height:38px;
  }

  .hero-overlay{
    padding:20px;
  }

  .hero-card{
    width:100%;
    padding:22px 18px;
  }

  .hero-card h1{
    font-size:34px;
  }

  .hero-desc{
    font-size:13px;
  }

  .hero-buttons{
    flex-direction:column;
  }

  .hero-btn{
    width:100%;
    height:50px;
    font-size:14px;
  }

  .top-heading h2,
  .orders-banner h1,
  .customer-section h1,
  .about-right h1{
    font-size:28px;
  }

  .meal-container,
  .menu-grid,
  .review-cards,
  .chicken-grid,
  .orders-container{
    grid-template-columns:1fr;
  }

  .meal-card,
  .menu-card,
  .review-card,
  .chicken-card,
  .pork-card,
  .sides-card{
    width:100%;
  }

  .categories{
    flex-direction:column;
    gap:12px;
  }

  .categories a{
    width:100%;
    text-align:center;
  }

  .about-section,
  .write-section,
  .friend-section{
    flex-direction:column;
    padding:20px;
    gap:20px;
  }

  .about-left,
  .about-right,
  .write-left,
  .review-form{
    width:100%;
  }

  .features{
    grid-template-columns:1fr 1fr;
    gap:14px;
  }

  .contact-content,
  .cart-content,
  .checkout-content{
    grid-template-columns:1fr;
  }

  .contact-info,
  .message-box,
  .order-card,
  .cart-items,
  .order-summary,
  .checkout-left,
  .summary-card{
    padding:16px;
  }

  .contact-banner{
    width:180px;
  }

  .contact-people{
    width:170px;
  }

  .big-socials{
    gap:16px;
  }

  .big-socials img{
    width:38px;
    height:38px;
  }

  .cart-item{
    grid-template-columns:1fr;
    text-align:center;
  }

  .qty-box{
    margin:auto;
  }

  .summary-item{
    grid-template-columns:1fr;
    text-align:center;
  }

  .checkout-banner img,
  .cart-banner img{
    width:100%;
    height:auto;
    transform:none;
  }

  .orders-tabs{
    flex-direction:column;
    align-items:center;
  }

  .orders-tab{
    width:100%;
    max-width:250px;
  }

  .form-row,
  .second-row{
    grid-template-columns:1fr;
  }

  .form-group input,
  .message-box textarea{
    font-size:14px;
  }

  .checkout-btn,
  .place-order-btn,
  .cancel-order-btn{
    font-size:12px;
  }

  footer{
    flex-direction:column;
    gap:14px;
    text-align:center;
    padding:18px;
  }

  .footer-right{
    flex-direction:column;
    gap:8px;
  }

}

/* =========================================
   SMALL PHONE RESPONSIVE - 320PX
========================================= */

@media screen and (max-width: 320px){

  .page-wrapper{
    padding:6px;
  }

  header{
    padding:10px;
    gap:10px;
  }

  .logo img{
    width:42px;
    height:42px;
  }

  .logo span{
    font-size:12px;
    line-height:1.1;
  }

  nav{
    gap:4px;
  }

  nav a{
    font-size:10px;
    padding:5px 6px;
  }

  .header-right{
    gap:8px;
  }

  .header-right button{
    padding:7px 12px;
    font-size:10px;
  }

  .dark-toggle{
    width:34px;
    height:34px;
    font-size:12px;
  }

  .hero-card{
    padding:18px 14px;
  }

  .hero-card h1{
    font-size:28px;
  }

  .hero-desc{
    font-size:12px;
  }

  .hero-btn{
    height:46px;
    font-size:12px;
  }

  .top-heading h2,
  .orders-banner h1,
  .customer-section h1,
  .about-right h1{
    font-size:24px;
  }

  .meal-card,
  .menu-card,
  .review-card,
  .chicken-card,
  .pork-card,
  .sides-card,
  .order-card{
    padding:14px;
  }

  .meal-card img,
  .menu-card img,
  .review-card img{
    width:100%;
    height:auto;
  }

  .meal-card h3,
  .menu-card h3,
  .review-card h3{
    font-size:18px;
  }

  .meal-card p,
  .menu-card p,
  .review-card p{
    font-size:11px;
  }

  .contact-banner{
    width:150px;
  }

  .contact-info,
  .message-box,
  .checkout-left,
  .summary-card,
  .cart-items,
  .order-summary{
    padding:12px;
  }

  .message-box h3{
    font-size:14px;
    padding:10px;
  }

  .form-group input,
  .message-box input,
  .message-box textarea{
    font-size:12px;
    padding:10px;
  }

  .message-box textarea{
    min-height:120px;
  }

  .checkout-btn,
  .place-order-btn,
  .cancel-order-btn,
  .complete-order-btn{
    font-size:11px;
    padding:10px;
  }

  .orders-tab{
    font-size:11px;
    padding:10px;
  }

  .summary-item{
    gap:8px;
  }

  .summary-item strong,
  .summary-info h4{
    font-size:12px;
  }

  .total-line h3{
    font-size:20px;
  }

  .footer-right p,
  footer p{
    font-size:11px;
  }

  .social-icons img,
  .big-socials img{
    width:30px;
    height:30px;
  }

}
/* =========================================
   RICE TO MEET YOU — ENHANCED STYLES v2
   Upgrades: animations, polish, cart badge,
   toast, order status badges, micro-interactions
   All existing structure preserved.
========================================= */

/* =========================
   KEYFRAME ANIMATIONS
========================= */

@keyframes headerSlideIn {
  from { opacity:0; transform:translateY(-20px); }
  to   { opacity:1; transform:translateY(0); }
}

@keyframes fadeUp {
  from { opacity:0; transform:translateY(28px); }
  to   { opacity:1; transform:translateY(0); }
}

@keyframes heroCardIn {
  from { opacity:0; transform:translateX(-40px) scale(0.97); }
  to   { opacity:1; transform:translateX(0) scale(1); }
}

@keyframes badgePop {
  0%   { transform:scale(1); }
  50%  { transform:scale(1.4); }
  100% { transform:scale(1); }
}

@keyframes shimmer {
  0%   { background-position:-400px 0; }
  100% { background-position:400px 0; }
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,106,58,0); }
  50%       { box-shadow: 0 0 0 8px rgba(201,106,58,0.18); }
}

/* =========================
   HEADER — UPGRADED
========================= */

header {
  transition: background 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
  animation: headerSlideIn 0.5s cubic-bezier(0.22,1,0.36,1) both;
}

/* Scrolled header effect */
header.scrolled {
  background: rgba(249,243,234,0.98) !important;
  box-shadow: 0 8px 32px rgba(74,46,31,0.16) !important;
}

body.dark-mode header.scrolled {
  background: rgba(35,20,12,0.98) !important;
}

/* Nav links — refined hover pill */
nav a {
  position: relative;
  overflow: hidden;
}

nav a::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--clay);
  border-radius: 2px;
  transform: translateX(-50%);
  transition: width 0.25s ease;
}

nav a:not(.active):hover::after {
  width: 60%;
}

nav a.active::after { display: none; }

/* Orders button — extra glow on hover */
.order-btn-link button {
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.order-btn-link button:hover {
  box-shadow: 0 6px 18px rgba(201,106,58,0.35);
  transform: translateY(-2px);
}

/* =========================
   HERO — UPGRADED
========================= */

.hero-card {
  animation: heroCardIn 0.7s cubic-bezier(0.22,1,0.36,1) 0.15s both;
  border: 1px solid rgba(201,106,58,0.18);
}

.hero-card h1 {
  letter-spacing: -1px;
}

.hero-card h1 span {
  position: relative;
  display: inline-block;
}

.hero-card h1 span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 4px;
  background: var(--clay);
  border-radius: 4px;
  opacity: 0.4;
}

.hero-btn {
  position: relative;
  overflow: hidden;
  letter-spacing: 0.5px;
}

.hero-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255,255,255,0.18);
  border-radius: 50%;
  transform: translate(-50%,-50%);
  transition: width 0.45s ease, height 0.45s ease;
}

.hero-btn:hover::before {
  width: 300px;
  height: 300px;
}

/* =========================
   SECTION HEADINGS — ANIMATED
========================= */

.top-heading {
  animation: fadeUp 0.6s ease 0.1s both;
}

.top-heading h2 {
  letter-spacing: -1.5px;
  background: linear-gradient(135deg, var(--cocoa) 0%, var(--clay) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* =========================
   MEAL CARDS — ENHANCED
========================= */

.meal-card {
  border: 2px solid transparent;
  background: var(--card);
  overflow: hidden;
  position: relative;
}

.meal-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(201,106,58,0.06), rgba(123,143,120,0.06));
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.meal-card:hover::before { opacity: 1; }

.badge {
  animation: pulseGlow 2.5s ease-in-out infinite;
  letter-spacing: 0.5px;
}

/* =========================
   MENU / CATEGORY CARDS — ENHANCED
========================= */

.menu-card, .chicken-card, .pork-card, .sides-card {
  position: relative;
  overflow: hidden;
}

.menu-card::after,
.chicken-card::after,
.pork-card::after,
.sides-card::after {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  transform: skewX(-15deg);
  transition: left 0.6s ease;
  pointer-events: none;
}

.menu-card:hover::after,
.chicken-card:hover::after,
.pork-card:hover::after,
.sides-card:hover::after {
  left: 150%;
}

/* Meal bottom buttons — upgrade */
.meal-bottom button {
  transition: transform 0.22s ease, background 0.22s ease, box-shadow 0.22s ease !important;
  letter-spacing: 0.3px;
  cursor: pointer;
  border: none;
}

.meal-bottom button:hover {
  box-shadow: 0 4px 14px rgba(102,117,63,0.35) !important;
}

/* =========================
   CART BADGE ENHANCEMENT
========================= */

.cart {
  position: relative;
  transition: transform 0.2s ease;
}

.cart:hover {
  transform: scale(1.08);
}

.cart img {
  transition: transform 0.25s ease;
}

.cart:hover img {
  transform: rotate(-8deg);
}

/* =========================
   ORDER STATUS BADGES
========================= */

.order-status-badge {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: bold;
  margin-bottom: 14px;
  letter-spacing: 0.4px;
}

.order-status-badge.preparing {
  background: linear-gradient(135deg, #FFF3CD, #FFE599);
  color: #7A5C00;
  border: 2px solid #FFD659;
}

.order-status-badge.completed {
  background: linear-gradient(135deg, #D4EDDA, #BEEFCC);
  color: #1E6E34;
  border: 2px solid #86C99A;
}

.order-status-badge.cancelled {
  background: linear-gradient(135deg, #FDECEA, #F5C6C6);
  color: #7B1C1C;
  border: 2px solid #E88A8A;
}

.order-actions {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.complete-order-btn,
.cancel-order-btn {
  flex: 1;
  margin-top: 0 !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease !important;
  letter-spacing: 0.3px;
}

.complete-order-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(102,117,63,0.3);
}

.cancel-order-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(201,106,58,0.3);
}

/* =========================
   ORDER CARD — UPGRADED
========================= */

.order-card {
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  overflow: hidden;
  position: relative;
}

.order-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--clay), var(--sage));
  border-radius: 4px 0 0 4px;
}

.order-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(74,46,31,0.14) !important;
}

/* =========================
   REVIEW CARDS — ENHANCED
========================= */

.review-card {
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease !important;
  position: relative;
  overflow: hidden;
}

.review-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 16px 36px rgba(74,46,31,0.16) !important;
  border-color: var(--clay) !important;
}

.review-card .user-icon {
  transition: transform 0.3s ease;
}

.review-card:hover .user-icon {
  transform: scale(1.1) rotate(3deg);
}

/* Stars hover shimmer */
.review-card .stars img {
  transition: transform 0.2s ease, filter 0.2s ease;
}

.review-card:hover .stars img {
  filter: drop-shadow(0 0 3px rgba(201,106,58,0.5));
}

/* Star rating interactive */
.rating-stars img {
  transition: transform 0.18s ease, opacity 0.18s ease !important;
}

/* =========================
   ABOUT PAGE — ENHANCED
========================= */

.about-section {
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: "";
  position: absolute;
  top: -60px; right: -60px;
  width: 250px; height: 250px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,106,58,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.feature {
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  padding: 14px 10px;
  border-radius: 16px;
  cursor: default;
}

.feature:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 24px rgba(74,46,31,0.1);
  background: rgba(249,243,234,0.9);
}

.feature img {
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
}

.feature:hover img {
  transform: scale(1.2) rotate(-5deg);
}

.tagline {
  position: relative;
  overflow: hidden;
}

.tagline::after {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  animation: shimmer 3s infinite;
}

/* =========================
   CONTACT PAGE — ENHANCED
========================= */

.info-row {
  transition: background 0.22s ease, transform 0.22s ease;
  border-radius: 10px;
  padding: 11px 8px !important;
}

.info-row:hover {
  background: rgba(244,233,216,0.6);
  transform: translateX(4px);
}

.map-box {
  transition: box-shadow 0.28s ease;
  height: 200px !important;
}

.map-box:hover {
  box-shadow: 0 8px 28px rgba(74,46,31,0.16) !important;
}

/* =========================
   CART PAGE — ENHANCED
========================= */

.cart-item {
  transition: background 0.22s ease, transform 0.22s ease;
  border-radius: 12px;
  padding: 10px 6px !important;
}

.cart-item:hover {
  background: rgba(244,233,216,0.5);
  transform: translateX(3px);
}

.trash-icon {
  transition: transform 0.2s ease, filter 0.2s ease;
  cursor: pointer;
}

.trash-icon:hover {
  transform: scale(1.2) rotate(8deg);
  filter: brightness(0.8) sepia(1) saturate(3) hue-rotate(330deg);
}

.empty-cart-msg {
  text-align: center;
  padding: 40px 20px;
  color: var(--cocoa);
  font-size: 18px;
  font-weight: bold;
}

.empty-cart-msg p {
  margin-bottom: 18px;
  font-size: 20px;
}

/* Checkout button shimmer */
.checkout-btn {
  position: relative;
  overflow: hidden;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease !important;
}

.checkout-btn::before {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transform: skewX(-15deg);
  transition: left 0.6s ease;
}

.checkout-btn:hover::before {
  left: 150%;
}

.checkout-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(213,123,44,0.35);
}

/* =========================
   FOOTER — ENHANCED
========================= */

footer {
  animation: fadeUp 0.5s ease 0.2s both;
}

.social-icons a {
  display: inline-block;
  transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1);
}

.social-icons a:hover {
  transform: translateY(-5px) scale(1.15);
}

/* =========================
   PROMO BANNER — ENHANCED
========================= */

.promo {
  transition: box-shadow 0.28s ease;
}

.promo:hover {
  box-shadow: 0 12px 32px rgba(74,46,31,0.18);
}

/* =========================
   SCROLL-REVEAL HELPER
   (set by JS, this ensures
   transitions work cleanly)
========================= */

.meal-card,
.menu-card,
.chicken-card,
.pork-card,
.sides-card,
.review-card,
.feature,
.info-row,
.order-card,
.cart-item {
  will-change: transform, opacity;
}

/* =========================
   CATEGORIES — ENHANCED
========================= */

.categories a {
  transition: background 0.25s ease, color 0.25s ease, transform 0.22s ease, box-shadow 0.22s ease !important;
  position: relative;
  overflow: hidden;
}

.categories a:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 6px 18px rgba(213,123,44,0.25) !important;
}

.active-category {
  box-shadow: 0 4px 14px rgba(213,123,44,0.3) !important;
}

/* =========================
   FORM INPUTS — ENHANCED
========================= */

.message-box input,
.message-box textarea,
.form-group input,
.review-box textarea {
  transition: border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease !important;
}

.message-box input:focus,
.message-box textarea:focus,
.form-group input:focus,
.review-box textarea:focus {
  border-color: var(--clay) !important;
  box-shadow: 0 0 0 3px rgba(201,106,58,0.15) !important;
  outline: none;
}

/* =========================
   WRITE SECTION SUBMIT BTN
========================= */

.submit-btn {
  transition: background 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease !important;
}

.submit-btn:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 18px rgba(102,117,63,0.35) !important;
  background: #556133 !important;
}

/* =========================
   DARK MODE — EXTRA POLISH
========================= */

body.dark-mode .order-status-badge.preparing {
  background: #3A2E0A;
  color: #FFE080;
  border-color: #8A7400;
}

body.dark-mode .order-status-badge.completed {
  background: #0E2E1A;
  color: #80FFAA;
  border-color: #276B3C;
}

body.dark-mode .order-status-badge.cancelled {
  background: #2E0E0E;
  color: #FFAAAA;
  border-color: #7B1C1C;
}

body.dark-mode .feature:hover {
  background: rgba(58,37,27,0.9);
}

body.dark-mode .continue-btn {
  background: #3A2117 !important;
  color: #F4E9D8 !important;
  border-color: #8B5A3C !important;
}

body.dark-mode .cart-item:hover {
  background: rgba(74,40,26,0.5);
}

body.dark-mode .top-heading h2 {
  background: linear-gradient(135deg, #F4E9D8 0%, #D9823B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.voucher-box{
  margin: 18px 0;
  padding: 14px;
  background: #F7EFE3;
  border: 2px dashed #D6BE9B;
  border-radius: 16px;
}

.voucher-box label{
  display: block;
  font-size: 13px;
  font-weight: bold;
  color: #4A2C1F;
  margin-bottom: 8px;
}

.voucher-input-row{
  display: flex;
  gap: 8px;
}

.voucher-input-row input{
  flex: 1;
  height: 38px;
  border: 2px solid #D6BE9B;
  border-radius: 10px;
  padding: 0 12px;
  background: #FFF8ED;
}

.voucher-input-row button{
  background: #66753F;
  color: white;
  border: none;
  border-radius: 10px;
  padding: 0 14px;
  font-weight: bold;
  cursor: pointer;
}

#voucherMessage{
  display: block;
  margin-top: 8px;
  font-size: 12px;
  font-weight: bold;
}

body.dark-mode .voucher-box{
  background: #3A251B !important;
  border-color: #6D4C3D !important;
}

body.dark-mode .voucher-box label{
  color: #F4E9D8 !important;
}

body.dark-mode .voucher-input-row input{
  background: #2B1B14 !important;
  color: #F4E9D8 !important;
  border-color: #6D4C3D !important;
}

/* =========================
   LOGIN / REGISTER PAGE
========================= */

.login-section{
  width: 100%;
  min-height: 520px;
  background: #F7EFE3;
  border-radius: 26px;
  margin-top: 8px;
  padding: 50px 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.login-card{
  width: 100%;
  max-width: 430px;
  background: #FFF8ED;
  border: 3px solid #D6BE9B;
  border-radius: 24px;
  box-shadow: 0 4px 0 #C8AF8C;
  padding: 30px;
  text-align: center;
}

.login-card h1{
  font-size: 36px;
  color: #4A2C1F;
  margin-bottom: 8px;
}

.login-card p{
  font-size: 14px;
  color: #6A4B3A;
  margin-bottom: 20px;
}

.login-card form{
  text-align: left;
}

.login-card label{
  display: block;
  font-size: 13px;
  font-weight: bold;
  color: #4A2C1F;
  margin-bottom: 6px;
}

.login-card input{
  width: 100%;
  height: 42px;
  border: 2px solid #D6BE9B;
  border-radius: 10px;
  background: #F7EFE3;
  padding: 0 14px;
  margin-bottom: 14px;
}

.login-card button{
  width: 100%;
  background: #D1762D;
  color: #F4E9D8;
  border: none;
  border-radius: 24px;
  padding: 14px;
  font-weight: bold;
  cursor: pointer;
}

.login-card button:hover{
  background: #BC6721;
}

.login-switch{
  text-align: center;
  margin-top: 18px;
}

.login-switch a{
  color: #D1762D;
  font-weight: bold;
}

/* DARK MODE */

body.dark-mode .login-section{
  background: #2A160F !important;
}

body.dark-mode .login-card{
  background: #4A281A !important;
  border-color: #A86A3D !important;
  box-shadow: 0 4px 0 #24120C !important;
}

body.dark-mode .login-card h1,
body.dark-mode .login-card p,
body.dark-mode .login-card label,
body.dark-mode .login-switch{
  color: #FFF3E6 !important;
}

body.dark-mode .login-card input{
  background: #3A2117 !important;
  color: #FFF3E6 !important;
  border-color: #A86A3D !important;
}

.payment-proof-box{
  display: none;
  margin-top: 18px;
  padding: 16px;
  background: #F7EFE3;
  border: 2px dashed #D6BE9B;
  border-radius: 16px;
}

.payment-proof-box h3{
  font-size: 18px;
  color: #4A2C1F;
  margin-bottom: 8px;
}

.payment-proof-box p{
  font-size: 12px;
  color: #6A4B3A;
  margin-bottom: 10px;
}

.payment-qr{
  width: 180px;
  height: 180px;
  object-fit: contain;
  display: none;
  margin: 10px auto;
  border-radius: 12px;
  border: 2px solid #D6BE9B;
}

.payment-proof-box label{
  font-size: 13px;
  font-weight: bold;
  color: #4A2C1F;
}

.payment-proof-box input{
  width: 100%;
  margin-top: 8px;
}

body.dark-mode .payment-proof-box{
  background: #3A251B !important;
  border-color: #6D4C3D !important;
}

body.dark-mode .payment-proof-box h3,
body.dark-mode .payment-proof-box p,
body.dark-mode .payment-proof-box label{
  color: #F4E9D8 !important;
}

/* PROFILE ICON NAVBAR */

.profile-link{
  width: 42px;
  height: 42px;

  border-radius: 50%;

  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #C96A3A;

  border: 2px solid #2A160F;

  transition: 0.2s;
}

.profile-link:hover{
  transform: scale(1.05);
}

.profile-link img{
  width: 24px;
  height: 24px;
  object-fit: contain;
}

/* DARK MODE */

body.dark-mode .profile-link{
  background: #C96A3A;
  border: 2px solid #FFF3E6;
}

.verify-payment-btn{
  margin-top: 12px;

  background: #66753F;
  color: #FFF8ED;

  border: none;
  border-radius: 12px;

  padding: 10px 14px;

  font-weight: bold;
  cursor: pointer;
}

/* =========================
   RECEIPT PAGE
========================= */

.receipt-section{
  width: 100%;
  min-height: 650px;
  background: #F7EFE3;
  border-radius: 26px;
  padding: 40px 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.receipt-card{
  width: 100%;
  max-width: 520px;
  background: #FFF8ED;
  border: 3px solid #D6BE9B;
  border-radius: 24px;
  box-shadow: 0 4px 0 #C8AF8C;
  padding: 30px;
}

.receipt-card h1{
  text-align: center;
  color: #4A2C1F;
  margin-bottom: 4px;
}

.receipt-subtitle{
  text-align: center;
  color: #6A4B3A;
  font-size: 13px;
  margin-bottom: 22px;
}

.receipt-row{
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
  font-size: 14px;
  color: #4A2C1F;
}

.receipt-items{
  border-top: 2px dashed #D6BE9B;
  border-bottom: 2px dashed #D6BE9B;
  padding: 14px 0;
  margin: 18px 0;
}

.receipt-total{
  font-size: 20px;
  font-weight: bold;
  color: #D1762D;
}

.print-receipt-btn,
.receipt-back-btn{
  width: 100%;
  display: block;
  text-align: center;
  margin-top: 12px;
  background: #D1762D;
  color: #FFF8ED;
  border: none;
  border-radius: 24px;
  padding: 13px;
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;
}

.receipt-back-btn{
  background: #66753F;
}

body.dark-mode .receipt-section{
  background: #2A160F !important;
}

body.dark-mode .receipt-card{
  background: #4A281A !important;
  border-color: #A86A3D !important;
  box-shadow: 0 4px 0 #24120C !important;
}

body.dark-mode .receipt-card h1,
body.dark-mode .receipt-subtitle,
body.dark-mode .receipt-row{
  color: #FFF3E6 !important;
}

@media print{
  body{
    background: white !important;
  }

  .page-wrapper{
    padding: 0 !important;
  }

  .print-receipt-btn,
  .receipt-back-btn{
    display: none !important;
  }

  .receipt-section{
    background: white !important;
  }

  .receipt-card{
    box-shadow: none !important;
  }
}

/* =========================
   PROFILE MENU
========================= */

.profile-menu{
  position: relative;
}

.profile-dropdown{
  display: none;

  position: absolute;
  top: 54px;
  right: 0;

  width: 180px;

  background: #FFF8ED;
  border: 2px solid #D6BE9B;
  border-radius: 16px;

  padding: 12px;

  box-shadow: 0 6px 18px rgba(0,0,0,0.18);

  z-index: 999999;
}

.profile-dropdown.show{
  display: block;
}

.profile-dropdown p{
  font-weight: bold;
  color: #4A2C1F;
  margin-bottom: 10px;
}

.profile-dropdown a,
.profile-dropdown button{
  display: block;

  width: 100%;

  background: none;
  border: none;

  text-align: left;
  text-decoration: none;

  color: #4A2C1F;

  font-size: 13px;
  font-weight: bold;

  padding: 8px;
  border-radius: 10px;

  cursor: pointer;
}

.profile-dropdown a:hover,
.profile-dropdown button:hover{
  background: #D1762D;
  color: #FFF8ED;
}

/* LOGGED IN PROFILE ICON */

.profile-link.logged-in{
  background: #66753F;
}

body.dark-mode .profile-dropdown{
  background: #4A281A;
  border-color: #A86A3D;
}

body.dark-mode .profile-dropdown p,
body.dark-mode .profile-dropdown a,
body.dark-mode .profile-dropdown button{
  color: #FFF3E6;
}

.inventory-container{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.inventory-card{
  background: #FFF8ED;
  border: 3px solid #D6BE9B;
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 4px 0 #C8AF8C;
}

.inventory-card h3{
  color: #4A2C1F;
  margin-bottom: 8px;
}

.inventory-card p,
.inventory-card label{
  color: #4A2C1F;
  font-size: 14px;
  font-weight: bold;
}

.inventory-card input{
  width: 100%;
  height: 38px;
  margin-top: 8px;
  border: 2px solid #D6BE9B;
  border-radius: 10px;
  padding: 0 12px;
}

body.dark-mode .inventory-card{
  background: #4A281A;
  border-color: #A86A3D;
}

body.dark-mode .inventory-card h3,
body.dark-mode .inventory-card p,
body.dark-mode .inventory-card label{
  color: #FFF3E6;
}

.out-of-stock-btn{
  background: #999 !important;
  color: white !important;
  cursor: not-allowed !important;
  opacity: 0.8;
}

.out-of-stock-btn:hover{
  transform:none !important;
}

.out-of-stock-card{
  opacity: 0.65;
  filter: grayscale(70%);
}



/* =========================
   CLEAN RESPONSIVE NAV
========================= */

.hamburger-btn{
  display: none !important;
}

@media screen and (max-width: 768px){

  header{
    position: relative !important;
    width: 100% !important;
    left: 0 !important;
    top: 0 !important;

    height: auto !important;
    padding: 18px !important;

    flex-direction: column !important;
    gap: 16px !important;

    border-radius: 22px !important;
  }

  .logo{
    justify-content: center !important;
    text-align: center !important;
  }

  nav{
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 8px !important;
    width: 100% !important;
  }

  nav a{
    font-size: 12px !important;
    padding: 8px 12px !important;
  }

  .header-right{
    display: flex !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
    width: 100% !important;
  }

  main{
    padding-top: 20px !important;
  }
}

@media screen and (max-width: 425px){

  nav a{
    font-size: 11px !important;
    padding: 7px 10px !important;
  }

  .cart-icon-wrapper,
  .dark-toggle,
  .profile-link{
    width: 38px !important;
    height: 38px !important;
  }

  .header-right button{
    padding: 9px 14px !important;
    font-size: 11px !important;
  }
}

.hero-video{
  width:100%;
  margin-top:24px;

  border-radius:24px;
  overflow:hidden;

  box-shadow:
    0 10px 35px rgba(0,0,0,0.25);

  position:relative;
}

.hero-video iframe{
  width:100%;
  height:280px;

  border:none;
  display:block;
}

/* tablet */
@media screen and (max-width:768px){

  .hero-video iframe{
    height:220px;
  }

}

/* phone */
@media screen and (max-width:480px){

  .hero-video iframe{
    height:190px;
  }

}


.demo-modal{
  display:none;
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.75);
  z-index:999999;
  justify-content:center;
  align-items:center;
  padding:20px;
}

.demo-modal.show{
  display:flex;
}

.demo-modal-box{
  width:min(900px, 95vw);
  aspect-ratio:16/9;
  background:#1f130e;
  border-radius:24px;
  position:relative;
  overflow:hidden;
  box-shadow:0 20px 60px rgba(0,0,0,0.45);
}

.demo-modal-box iframe{
  width:100%;
  height:100%;
  border:none;
}

.demo-close{
  position:absolute;
  top:12px;
  right:12px;
  z-index:2;
  width:38px;
  height:38px;
  border-radius:50%;
  border:none;
  background:#D1762D;
  color:white;
  font-size:24px;
  font-weight:bold;
  cursor:pointer;
}

/* =========================
   ABOUT EXTRA WORD COUNT SECTION
========================= */

.about-story-section{
  width:100%;
  background:#F5EBDD;
  border-radius:24px;
  margin-top:16px;
  padding:34px 42px;

  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:24px;
}

.story-card{
  background:#FFF4E6;
  border:3px solid #D7C1A2;
  border-radius:24px;
  padding:26px;
  box-shadow:0 4px 0 #C8B090;
}

.story-card h2{
  font-size:26px;
  color:#4A2E1F;
  margin-bottom:16px;
}

.story-card p{
  font-family:Arial, sans-serif;
  font-size:14px;
  line-height:1.7;
  color:#4A2E1F;
  margin-bottom:14px;
}

/* DARK MODE */

body.dark-mode .about-story-section{
  background:#2B1B14 !important;
}

body.dark-mode .story-card{
  background:#3A251B !important;
  border-color:#8B5A3C !important;
  box-shadow:0 4px 0 #1F130E;
}

body.dark-mode .story-card h2,
body.dark-mode .story-card p{
  color:#F4E9D8 !important;
}

/* RESPONSIVE */

@media screen and (max-width:1024px){
  .about-story-section{
    grid-template-columns:1fr;
    padding:28px;
  }
}

@media screen and (max-width:480px){
  .about-story-section{
    padding:20px;
  }

  .story-card{
    padding:20px;
  }

  .story-card h2{
    font-size:22px;
  }

  .story-card p{
    font-size:13px;
  }
}

/* =========================
   HOME STORY SECTION
========================= */

.home-story-section{
  width:100%;

  margin-top:22px;

  background:#F5EBDD;

  border-radius:28px;

  padding:45px;

  display:grid;
  grid-template-columns:1.4fr 1fr;

  gap:30px;
}

.home-story-left h2{
  font-size:42px;
  color:#4A2E1F;
  margin-bottom:22px;
}

.home-story-left p{
  font-family:Arial, sans-serif;
  font-size:15px;
  line-height:1.8;
  color:#4A2E1F;
  margin-bottom:18px;
}

.home-story-right{
  display:flex;
  flex-direction:column;
  gap:20px;
}

.story-highlight{
  background:#FFF4E6;

  border:3px solid #D7C1A2;

  border-radius:24px;

  padding:24px;

  box-shadow:0 4px 0 #C8B090;
}

.story-highlight h3{
  font-size:24px;
  color:#C96A3A;
  margin-bottom:12px;
}

.story-highlight p{
  font-family:Arial, sans-serif;
  font-size:14px;
  line-height:1.6;
  color:#4A2E1F;
}

/* DARK MODE */

body.dark-mode .home-story-section{
  background:#2B1B14 !important;
}

body.dark-mode .home-story-left h2,
body.dark-mode .home-story-left p{
  color:#F4E9D8 !important;
}

body.dark-mode .story-highlight{
  background:#3A251B !important;
  border-color:#8B5A3C !important;
  box-shadow:0 4px 0 #1F130E;
}

body.dark-mode .story-highlight h3,
body.dark-mode .story-highlight p{
  color:#F4E9D8 !important;
}

/* RESPONSIVE */

@media screen and (max-width:768px){

  .home-story-section{
    grid-template-columns:1fr;
    padding:28px;
  }

  .home-story-left h2{
    font-size:34px;
  }

}

@media screen and (max-width:480px){

  .home-story-section{
    padding:20px;
  }

  .home-story-left h2{
    font-size:28px;
  }

  .home-story-left p,
  .story-highlight p{
    font-size:13px;
  }

}

/* =========================
   MENU INFO SECTION
========================= */

.menu-info-section{
  width:100%;

  background:#F5EBDD;

  border-radius:28px;

  padding:40px;

  margin-bottom:24px;
}

.menu-info-section h2{
  font-size:42px;
  color:#4A2E1F;
  margin-bottom:18px;
  text-align:center;
}

.menu-info-section > p{
  font-family:Arial, sans-serif;
  font-size:15px;
  line-height:1.8;
  color:#4A2E1F;
  text-align:center;
  max-width:950px;
  margin:0 auto 18px auto;
}

.menu-info-grid{
  margin-top:30px;

  display:grid;
  grid-template-columns:repeat(3,1fr);

  gap:24px;
}

.menu-info-card{
  background:#FFF4E6;

  border:3px solid #D7C1A2;

  border-radius:24px;

  padding:24px;

  box-shadow:0 4px 0 #C8B090;
}

.menu-info-card h3{
  font-size:24px;
  color:#C96A3A;
  margin-bottom:14px;
}

.menu-info-card p{
  font-family:Arial, sans-serif;
  font-size:14px;
  line-height:1.7;
  color:#4A2E1F;
}

/* DARK MODE */

body.dark-mode .menu-info-section{
  background:#2B1B14 !important;
}

body.dark-mode .menu-info-section h2,
body.dark-mode .menu-info-section > p{
  color:#F4E9D8 !important;
}

body.dark-mode .menu-info-card{
  background:#3A251B !important;
  border-color:#8B5A3C !important;
  box-shadow:0 4px 0 #1F130E;
}

body.dark-mode .menu-info-card h3,
body.dark-mode .menu-info-card p{
  color:#F4E9D8 !important;
}

/* RESPONSIVE */

@media screen and (max-width:768px){

  .menu-info-grid{
    grid-template-columns:1fr;
  }

  .menu-info-section{
    padding:28px;
  }

  .menu-info-section h2{
    font-size:32px;
  }

}

@media screen and (max-width:480px){

  .menu-info-section{
    padding:20px;
  }

  .menu-info-section h2{
    font-size:26px;
  }

  .menu-info-section > p,
  .menu-info-card p{
    font-size:13px;
  }

}

body.dark-mode{
  background:#18100C;
  color:#F7EFE3;
}