:root {
    /* ===============================
       RootsnJuice Brand Colors
       =============================== */

    /* PRIMARY – Light Orange (Action / CTA) */
    --ltn__primary-color: #FF9F1C;
    --ltn__primary-color-2: #E68400; /* Darken */
    --ltn__primary-color-3: #FFF2E0; /* Lighten */

    /* SECONDARY – Green (Fresh / Natural) */
    --ltn__secondary-color: #E68400;
    --ltn__secondary-color-2: #94D225; /* Darken */
    --ltn__secondary-color-3: #EAF6E8; /* Lighten */

    /* TEXT COLORS */
    --ltn__heading-color: #1F1F1F;
    --ltn__paragraph-color: #444444;
	
	--gradient-color-r: linear-gradient(to top, rgba(7, 28, 31, 0) 0%, rgb(7 28 35) 90%);
}

.gradient-color-r, .before-bg-right:before {
    background: var(--gradient-color-r);
}
.ltn__primary-bg-inner {
    background-color: #071c1f;
}
.menu-color-white .ltn__main-menu > ul > li > a, .inner_header-top a {
    color: #fff;
}
.menu-color-white .ltn__main-menu > ul > li > a:hover {
    color: #E68400;
}
.sticky-active.ltn__sticky-bg-black {
    background-color: #071c1f;
}
.bg-imagecat{
		background: linear-gradient(
		  180deg,
		  #afafaf 0%,
		  #000000 100%
		);
	}

.bg-overlay-theme-black-90:before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
    background-color: #071c1f !important;
}
/* Offers */
.offers-section {
  padding: 60px 0;
  background: #f9faf7;
  text-align: center;
}

.section-title {
  font-size: 32px;
  margin-bottom: 8px;
}

.section-subtitle {
  color: #666;
  margin-bottom: 40px;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.offer-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 28px 24px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  transition: transform 0.2s ease;
}

.offer-card:hover {
  transform: translateY(-4px);
}

.offer-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #6a9e1f;
}

.offer-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.offer-highlight {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 18px;
}

.offer-btn {
  display: inline-block;
  padding: 10px 20px;
  background: #6a9e1f;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
}
.site-logo-wrap .site-logo img {
    width: 224px !important;
}
.offer-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 28px 24px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: all 0.25s ease;
  overflow: hidden;
}

/* Accent line */
.offer-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background: linear-gradient(
    90deg,
    #6a9e1f,
    #ffa726
  );
}

/* Hover effect */
.offer-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}
.offer-card.special {
  background: #f6fbef; /* light green */
}

.offer-card.favorite {
  background: #fff7ef; /* soft orange */
}

.offer-card.featured {
  background: #f5f5f5; /* neutral */
}
.offer-card::after {
  content: "🥤";
  position: absolute;
  bottom: -10px;
  right: 10px;
  font-size: 80px;
  opacity: 0.05;
}
.offer-badge {
  font-size: 11px;
  letter-spacing: 1px;
  font-weight: 600;
  color: #6a9e1f;
}

.offer-highlight {
  color: #2e7d32;
}


/* ================================
   OFFERS SECTION – MOBILE POLISH
   ================================ */

@media (max-width: 768px) {

  /* Section spacing */
  .offers-section {
    padding: 40px 0;
  }

  /* Stack cards */
  .offers-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  /* Card sizing */
  .offer-card {
    padding: 22px 20px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  }

  /* Title */
  .offer-card h3 {
    font-size: 18px;
    line-height: 1.3;
    margin-bottom: 6px;
  }

  /* Badge */
  .offer-badge {
    font-size: 10px;
    letter-spacing: 1.2px;
    margin-bottom: 8px;
  }

  /* Highlight text */
  .offer-highlight {
    font-size: 16px;
    margin-bottom: 14px;
  }

  /* CTA button – thumb friendly */
  .offer-btn {
    width: 100%;
    padding: 12px 0;
    font-size: 15px;
    text-align: center;
  }

  /* Touch feedback (mobile instead of hover) */
  .offer-card:active {
    transform: scale(0.98);
  }

  /* Emphasize Today's Special */
  .offer-card.special {
    border: 1px solid rgba(106, 158, 31, 0.25);
  }
}

/* ROW */
.how-it-works-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  
}

/* CARD */
.how-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  border: 2px solid orange;
  /* CONTINUOUS ANIMATION — ALWAYS VISIBLE */
  animation: floatUp 2.8s ease-in-out infinite;
}
.how-item:hover{
	border: 2px solid green;
}

/* ICON */
.how-icon {
  font-size: 32px;
  animation: wiggle 2s ease-in-out infinite;
}

/* TEXT */
.how-text h4 {
  font-size: 16px;
  margin-bottom: 4px;
}

.how-text p {
  font-size: 14px;
  color: #666;
}

/* CONNECTOR */
.step-line {
  width: 36px;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(
    90deg,
    #ff8201,
    #ffd36a,
    #ff8201
  );
  background-size: 200% 100%;
  animation: juiceFlow 1.4s linear infinite;
}

/* ANIMATIONS */
@keyframes floatUp {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}

@keyframes wiggle {
  0%   { transform: rotate(0deg); }
  25%  { transform: rotate(3deg); }
  50%  { transform: rotate(0deg); }
  75%  { transform: rotate(-3deg); }
  100% { transform: rotate(0deg); }
}

@keyframes juiceFlow {
  0%   { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

/* MOBILE */
@media (max-width: 768px) {
  .how-it-works-row {
    flex-direction: column;
  }
  .step-line {
    display: none;
  }
}

.footer-top-area {
    padding-top: 50px;
}
.ltn__copyright-area {
    padding-top: 10px;
    padding-bottom: 10px;
}
.ltn__copyright-design p{
	font-size:14px;
	/*font-family: 'Rajdhani';*/
    font-weight: bold;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left;
}

.footer-logo {
    max-width: 90px;
    margin-bottom: 12px;
}

.footer-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #d1d5db; /* soft gray for dark footer */
    max-width: 280px;
}
.ltn__social-media a:hover{
	color:orange;
}

.footer-address ul li {
    margin-top: 16px;
}

/*
ANIMATIONS
*/

/**** Glass Section ***//

/* Hide items initially */
.ltn__feature-item {
    will-change: transform, opacity; /* Tells the phone's GPU to get ready */
    backface-visibility: hidden;    /* Prevents "jitter" on iPhones */
}
.ltn__feature-item, .feature-banner-img {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

/* Left side slide-in */
.col-lg-4:first-child .ltn__feature-item {
    transform: translateX(-50px);
}

/* Right side slide-in */
.col-lg-4:last-child .ltn__feature-item {
    transform: translateX(50px);
}

/* The "Active" state triggered by JS */
.ltn__feature-area.active-section .ltn__feature-item,
.ltn__feature-area.active-section .feature-banner-img {
    opacity: 1;
    transform: translateX(0);
}

/* Continuous floating for the center image after reveal */
.ltn__feature-area.active-section .feature-banner-img img {
    animation: float 4s ease-in-out infinite 1s; /* Starts after reveal */
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Staggered delays for the list items */
.ltn__feature-area.active-section .col-lg-12:nth-child(1) .ltn__feature-item { transition-delay: 0.2s; }
.ltn__feature-area.active-section .col-lg-12:nth-child(2) .ltn__feature-item { transition-delay: 0.4s; }
.ltn__feature-area.active-section .col-lg-12:nth-child(3) .ltn__feature-item { transition-delay: 0.6s; }

.ltn__feature-icon span {
    display: inline-block;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.ltn__feature-item:hover .ltn__feature-icon span {
    transform: scale(1.2) rotate(10deg);
    filter: drop-shadow(0 5px 15px rgba(255, 123, 0, 0.4));
}

/* Mobile & Tablet Adjustments */
@media (max-width: 991px) {
    /* Reset horizontal offsets to vertical for mobile */
    .col-lg-4:first-child .ltn__feature-item, 
    .col-lg-4:last-child .ltn__feature-item {
        transform: translateY(30px); /* Slide UP instead of SIDEWAYS */
    }

    /* Reduce the floating intensity so it doesn't overlap text on small screens */
    @keyframes float {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-8px); }
    }
    
    /* Center the banner image reveal for mobile */
    .feature-banner-img {
        transform: scale(0.9);
        transition: all 1s ease;
    }
    
    .ltn__feature-area.active-section .feature-banner-img {
        transform: scale(1);
    }
}

/* CATEGORY SLIDER */
/* Initial State: Hidden and scaled down */
.ltn__category-item {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1); /* Custom bounce effect */
}

/* When the section is scrolled into view */
.active-category-section .ltn__category-item {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Staggering the items in the slider visible area */
.active-category-section .slick-active:nth-child(1) .ltn__category-item { transition-delay: 0.1s; }
.active-category-section .slick-active:nth-child(2) .ltn__category-item { transition-delay: 0.2s; }
.active-category-section .slick-active:nth-child(3) .ltn__category-item { transition-delay: 0.3s; }
.active-category-section .slick-active:nth-child(4) .ltn__category-item { transition-delay: 0.4s; }

/* Image Hover Enhancement */
.ltn__category-item-img img {
    transition: transform 0.4s ease;
}

.ltn__category-item:hover .ltn__category-item-img img {
    transform: rotate(10deg) scale(1.1); /* Fun tilt effect for food icons */
}

.bg-imagecat {
    background-attachment: fixed; /* Simple parallax */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}	
/* Container for the image circle */
.ltn__category-item-img {
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

/* Creating the Glow Effect */
.ltn__category-item:hover .ltn__category-item-img {
    transform: translateY(-5px); /* Lift the icon slightly */
}

.ltn__category-item-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%; /* Assumes your icons are circular */
    background: rgba(255, 123, 0, 0.4); /* Your brand orange */
    filter: blur(15px);
    z-index: -1;
    opacity: 0;
    transition: all 0.4s ease;
}

.ltn__category-item:hover .ltn__category-item-img::after {
    opacity: 1;
    transform: scale(1.2); /* Glow expands slightly outward */
}

/* Floating Animation for the Name */
.ltn__category-item-name h5 {
    transition: color 0.3s ease;
}

.ltn__category-item:hover .ltn__category-item-name h5 a {
    color: #ff7b00 !important; /* Changes text to orange on hover */
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(255, 123, 0, 0.2); }
    70% { box-shadow: 0 0 0 15px rgba(255, 123, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 123, 0, 0); }
}

/* This applies a soft ringing pulse only once the section is visible */
.active-category-section .ltn__category-item-img {
    border-radius: 50%;
    animation: pulseGlow 2s infinite;
	
}

/*.slick-list {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
    margin-top: -20px !important;
}
*/
@media (max-width: 767px) {
    /* Reduce movement distance so items don't fly off-screen */
    .ltn__feature-item, .ltn__category-item {
        transform: translateY(15px); 
    }
    
    /* Ensure the glow isn't too heavy on mobile batteries */
    .ltn__category-item-img::after {
        filter: blur(8px);
        background: rgba(255, 123, 0, 0.2);
    }
}
.section-title.white-color {
    overflow: hidden; /* Clips the text for a reveal effect */
}

.section-title.white-color {
    animation: revealText 1.2s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

@keyframes revealText {
    0% { transform: translateY(100%); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

/* Initial hidden states */
.reveal {
    opacity: 0;
    transition: all 1.2s cubic-bezier(0.17, 0.55, 0.55, 1);
    filter: blur(5px); /* Optional: adds a modern soft feel */
}

.slide-left {
    transform: translateX(-50px);
}

.slide-up {
    transform: translateY(50px);
}

/* Active state triggered by JS */
.reveal.active {
    opacity: 1;
    transform: translate(0, 0);
    filter: blur(0);
}

/* Add a slight delay to the text so the image starts first */
.slide-up.active {
    transition-delay: 0.2s;
}

/* Add these to your existing animation CSS */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.5s; }

/* Optional: Add a hover effect for these dark boxes to make them interactive */
.ltn__feature-item-7 {
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.ltn__feature-item-7:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.05); /* Subtle highlight */
}

/* How to order */
.order-flow-wrapper {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding-top: 50px;
}

/* The Connecting Line */
.order-flow-wrapper::before {
    content: '';
    position: absolute;
    top: 110px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: #e0e0e0;
    z-index: 1;
}

.order-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 0 15px;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: #fff;
    border: 2px solid #80b435; /* RootsnJuice Green */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
    color: #80b435;
    position: relative;
    transition: transform 0.3s ease;
}

.order-step:hover .step-icon {
    transform: scale(1.1);
    background-color: #80b435;
    color: #fff;
}

.step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #f3a712; /* Accent Orange */
    color: white;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    font-size: 14px;
    line-height: 25px;
}

.fa-whatsapp {
    color: #25D366;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .order-flow-wrapper {
        flex-direction: column;
        gap: 40px;
    }
    .order-flow-wrapper::before {
        display: none;
    }
}


.fa-whatsapp {
    animation: whatsapp-pulse 2s infinite;
}

@keyframes whatsapp-pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); text-shadow: 0 0 10px rgba(37, 211, 102, 0.5); }
    100% { transform: scale(1); }
}.whatsapp-order-btn {
    display: inline-flex;
    align-items: center;
    background-color: #25D366; /* WhatsApp Official Green */
    color: #fff !important;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    border: none;
}

.whatsapp-order-btn i {
    font-size: 20px;
    margin-right: 10px;
}

.whatsapp-order-btn:hover {
    background-color: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

/* Subtle pulse for the wrapper to draw attention */
.whatsapp-btn-wrapper {
    position: relative;
    display: inline-block;
    margin-top: 15px;
}

.whatsapp-btn-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50px;
    border: 2px solid #25D366;
    animation: btn-ping 2s infinite;
    z-index: -1;
}

@keyframes btn-ping {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.4); opacity: 0; }
}

.order-flow-wrapper {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding-top: 50px;
    z-index: 1; /* Establishes a stacking context */
}

/* The background gray track - Behind steps */
.order-flow-wrapper::before {
    content: '';
    position: absolute;
    top: 90px; /* Aligns with the middle of your 80px icons + padding */
    left: 10%;
    right: 10%;
    height: 4px;
    background: #e0e0e0;
    z-index: 1; 
    border-radius: 10px;
}

/* The active green 'juice' line - Behind steps */
.order-flow-line-active {
    position: absolute;
    top: 90px;
    left: 10%;
    height: 4px;
    background: #80b435;
    z-index: 2; /* Sits on top of the gray line, but behind the icons */
    width: 0%; 
    transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 10px;
}

.order-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 3; /* Sits on top of both lines */
}

.step-icon {
    width: 80px;
    height: 80px;
    background: #ffffff; /* IMPORTANT: Solid background masks the line */
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    transition: all 0.4s ease;
}

/* When the JS triggers 'active' */
.order-step.active .step-icon {
    border-color: #80b435;
    box-shadow: 0 0 15px orange;
}

/* Menu In website */
/* CATEGORY FILTER – FIXED SCROLL STYLE */
/* =====================================================
   SWIGGY-STYLE BOTTOM CATEGORY BAR (DROP-IN)
   ===================================================== */

/* Fixed wrapper – sits above cart bar */
.menu-category-fixed {
  position: fixed;
  bottom: 56px;                 /* cart bar height */
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1100;
  background: #f7ecde;
}

/* Inner wrapper – NO container behavior */
.menu-category-inner {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 8px 0;
  box-sizing: border-box;
}

/* Category row – Swiggy behavior */
.category-filter {
  display: flex;
  flex-wrap: nowrap;            /* ❌ never wrap */
  overflow-x: auto;             /* ✅ horizontal scroll */
  -webkit-overflow-scrolling: touch;

  gap: 10px;
  padding: 0 12px;              /* Swiggy edge spacing */

  justify-content: flex-start;  /* ❌ not centered */
  align-items: center;

  width: 100%;
  box-sizing: border-box;

  scrollbar-width: none;        /* Firefox */
}

.category-filter::-webkit-scrollbar {
  display: none;                /* Chrome / Safari */
}

/* Pills */
.category-filter button {
  flex-shrink: 0;               /* 🔑 required */
  white-space: nowrap;

  padding: 6px 14px;
  border-radius: 18px;

  font-size: 13px;
  font-weight: 600;

  background: #fff;
  color: #000;

  border: 1px solid var(--orange);
  cursor: pointer;

  transition: background 0.2s ease, color 0.2s ease;
}

/* Active pill */
.category-filter button.active {
  background: var(--orange);
  color: #000;
  border-color: var(--orange);
}

/* Hover (desktop only feel) */
.category-filter button:hover {
  background: var(--orange);
  color: #000;
}

/* Divider safety (if you still use |) */
.category-filter .divider {
  flex-shrink: 0;
  opacity: 0.5;
}

/* Tablet safety – behaves like mobile */
@media (min-width: 768px) and (max-width: 1024px) {
  .category-filter {
    flex-wrap: nowrap;
    overflow-x: auto;
  }
}

/* Desktop optional – allow wrapping if you want */
@media (min-width: 1200px) {
  .category-filter {
    overflow-x: visible;
  }
}

/* Mobile & tablet: Swiggy-style (left aligned, scroll) */
.category-filter {
  justify-content: flex-start;
}

/* Desktop: center when items fit */
@media (min-width: 992px) {
  .category-filter {
    justify-content: center;
  }
}

/* ===============================
   SWIGGY-STYLE LANG TOGGLE
   =============================== */

.lang-toggle.swiggy-toggle {
  display: flex;
  align-items: center;

  border: 1.5px solid var(--green);
  border-radius: 18px;

  overflow: hidden;          /* 🔑 creates segmented look */
  flex-shrink: 0;
}

/* buttons inside toggle */
.lang-toggle.swiggy-toggle .lang-btn {
  background: transparent;
  border: none;

  padding: 6px 14px;
  font-size: 13px;
  font-weight: 700;

  color: var(--green);
  cursor: pointer;

  transition: background 0.2s ease, color 0.2s ease;
}

/* active (like Veg on Swiggy) */
.lang-toggle.swiggy-toggle .lang-btn.active {
  background: var(--green);
  color: #fff;
}

/* optional hover (desktop only) */
@media (hover: hover) {
  .lang-toggle.swiggy-toggle .lang-btn:hover:not(.active) {
    background: rgba(0, 128, 0, 0.08);
  }
}


/* Product image wrapper */
.product-img {
  width: 100%;
  /*height: 326px;
  height:290px;
  overflow: hidden;*/
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Actual image */
.product-img img {
  width: 100%;
  /*height: 100%;*/
  /*max-height:333px;*/
  max-height: 160px;   /* 🔥 key control */
  object-fit: contain;
  display: block;
}
.ltn__product-item-3 .product-info {
	padding-top:1px;
}

.preparing{background:#ffc107}
.ready{background:#28a745;color:#fff}
.served{background:#6c757d;color:#fff}



/* =========================
   CART STRUCTURE (NO FIXED / NO STICKY)
   iOS SAFARI SAFE
========================= */


/* Action buttons */
.cart-action-row {
  display: flex;
  gap: 8px;
}

.cart-action-row button {
  flex: 1;
  padding: 12px 10px;
  font-size: 14px;
}

/* NEw Checkout Form UI */

.rj-section {
  background: #fff;
  border-radius: 14px;
  padding: 5px;
  /*margin-bottom: 14px;*/
}

.rj-title {
  font-size: 13px;
  font-weight: bold;
  margin-bottom: 5px; 
  color: #444;
}

.rj-card-group {
  display: flex;
  gap: 10px;
}

.rj-card {
  flex: 1;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 12px;
  display: flex;
  gap: 10px;
  align-items: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.rj-card.active {
  border: 2px solid #ff7a00;
  background: #fff7f0;
}

.rj-card small {
  display: block;
  font-size: 11px;
  color: #777;
}

.rj-field-row {
  display: flex;
  gap: 10px;
}

.rj-field-row input {
  flex: 1;
}

textarea, input {
  border-radius: 10px;
  border: 1px solid #ddd;
}
.rj-section.compact {
  padding: 12px;
}

.rj-pill-group {
  display: flex;
  gap: 8px;
}

.rj-pill {
  flex: 1;
  text-align: center;
  border: 1px solid #ddd;
  border-radius: 999px;
  padding: 8px 10px;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.rj-pill.active {
  border: 2px solid #ff7a00;
  background: #fff7f0;
  font-weight: 600;
}
.rj-pill * {
  pointer-events: none;
}

.rj-pill {
  pointer-events: auto;
}

@media (max-width: 768px) {
  .rj-confirm {
    width: 100vw !important;
    max-width: 100vw !important;
    height: 100vh;
    border-radius: 0;
    margin: 0;
  }
}


/*======================================================*/

.cart-toast {
  position: fixed;

  /* 🔥 CENTER */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -40%) scale(0.95);

  background: rgba(30, 30, 30, 0.95);
  color: #fff;

  padding: 12px 18px;
  border-radius: 12px;

  font-size: 24px;
  font-weight: 500;

  opacity: 0;
  pointer-events: none;
  z-index: 9999;

  transition: all 0.25s ease;

  backdrop-filter: blur(6px);
}

/* visible state */
.cart-toast.show {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.cart-toast.show {
  opacity: 1;
}
@media (max-width: 576px) {
  .cart-toast {
    font-size: 14px;
    padding: 8px 14px;
  }
}

#floating-cart-btn {
  position: fixed;
  left: 16px;
  bottom: 40%;
  /*background: #ff9800;*/
  color: #fff;
  padding: 12px 14px;
  /*border-radius: 50%;*/
  border: 2px solid coral;
  font-size: 18px;
  cursor: pointer;
  display: none;
  z-index: 9999;
  box-shadow: 0 6px 14px rgba(0,0,0,0.2);
}

#floating-cart-btn .cart-count {
  font-size: 16px;
    background: #000;
    color: #fff;
    border-radius: 50%;
    padding: 1px 10px;
    margin-left: 4px;
}
#floating-cart-btn .cartIcn {
  font-size: 28px;   /* 🔼 increase as needed (24–32 works well) */
  line-height: 1;
}

.add-btn {
   background: linear-gradient(135deg, #ff6f00, #ff8f00);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 8px 16px;
  font-weight: 600;
  font-size: 14px;
  min-width:120px
}
/*
.add-btn {
  border: 1.5px solid #ff4d4d;
  background: #fff5f5;
  color: #ff4d4d;
  font-weight: 600;
  font-size: 14px;
  padding: 6px 14px;
  border-radius: 18px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
*/
.add-btn span {
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
}
/*
.add-btn:hover {
  background: #ff4d4d;
  color: #fff;
}
*/
.add-btn:hover {
  transform: translateY(-2px);

  box-shadow: 
    0 8px 18px rgba(255, 111, 0, 0.35),
    0 4px 10px rgba(0, 0, 0, 0.1);

  background: linear-gradient(135deg, #ff7a00, #ffa000);
}
.add-btn:active {
  transform: scale(0.96);
  box-shadow: 0 3px 8px rgba(0,0,0,0.15);
}
.add-btn:hover::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: rgba(255,255,255,0.15);
}

.mini-cart-qty {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
}

.mini-cart-qty button {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid #ddd;
  background: #f9f9f9;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
}

.mini-cart-qty span {
  min-width: 18px;
  text-align: center;
  font-weight: 600;
}

.mini-cart-price {
 display: block;
font-size: 16px;
color: #555;
margin-top: 2px;
font-weight: bold;
}


/* MENU PAGE CATEGORY BAR */
.menu-category-fixed {
  position: fixed;
  bottom: 0;          /* header total height */
  left: 0;
  right: 0;
  top:auto;
  z-index: 1100;
  background: #fff;
  border-bottom: 1px solid #eee;
}

.menu-category-inner {
  /*max-width: 1200px;*/ 
  margin: 0 auto;
  padding: 5px 2px 2px 2px;
  background: #f7ecde;
}

/* push content down */
.menu-page .ltn__product-area {
   margin-top: 0 !important;
}

/* mobile tweak */
@media (max-width: 768px) {
  .menu-category-fixed {
    top: 64px;
  }
}



/* Prevent header overlay blocking clicks below */
header::after,
.ltn__header-area::after {
  pointer-events: none;
}

.menu-page .menu-header-spacer {
  height: 60px; /* category bar height */
}

/* DESKTOP */
.menu-category-fixed {
  position: fixed;
  bottom: 0px; /* header height */
  left: 0;
  right: 0;
  top:auto;
  z-index: 1100;
  background: #fff;
}

.header-ordernow-wrap{
	display:none;
}


.order-toast {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #28a745;
  color: #fff;
  padding: 12px 18px;
  border-radius: 6px;
  font-size: 14px;
  z-index: 9999;
  display: none;
}
.order-toast.show {
  display: block;
}

.qty-control{
	border: 2px solid orange;
    background: #fff5f5;
    color: #ff4d4d;
    font-weight: 600;
    font-size: 14px;
    padding: 6px 14px;
    border-radius: 18px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.pmb{
	color:red;
}

.cart-summary-bar {
  position: fixed;
  bottom: 0px;
  left: 0;
  width: 100%;
  background: #000;
  color: #091D1D;
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 6px 16px;
  z-index: 9998;
}
.page-menu .cart-summary-bar{
  bottom: 45px;
  border-top: 1px solid #fff;
}

.cart-summary-left {
  display: flex;
  flex-direction: column;
  font-size: 14px;
  color:#fff;
}

.cart-summary-left strong {
  font-size: 16px;
}


.err-inline {
  display: none;
  color: #e74c3c;
  font-size: 12px;
  line-height: 1.2;
  margin-top: 2px;
}

.err-inline.show {
  display: block;
}

input.error,
textarea.error {
  border-color: #e74c3c;
}


@keyframes shake {
  0% { transform: translateX(0); }
  20% { transform: translateX(-3px); }
  40% { transform: translateX(3px); }
  60% { transform: translateX(-3px); }
  80% { transform: translateX(3px); }
  100% { transform: translateX(0); }
}

.shake {
  animation: shake 0.35s ease;
}

#scrollUp {
		bottom: 100px !important;
	}
/* MOBILE */
@media (max-width: 768px) {
  
  .wpcheckoutBtn{
		margin-left: 8px;
		margin-top: 10px;
	}

	#scrollUp {
		display: none !important;
	}
	
	#floating-cart-btn {
	  bottom: 50%;
	}
}

@media (max-width: 768px) {
  /*
  .menu-category-fixed {
    top: auto;
    bottom: 0;
    border-top: 1px solid #eee;
    border-bottom: none;
    padding-bottom: env(safe-area-inset-bottom);
  }

  .category-filter {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    white-space: nowrap;
    justify-content: flex-start;

    -webkit-overflow-scrolling: touch;
    touch-action: pan-x !important;
    overscroll-behavior-x: contain;
  }

  .category-filter button {
    flex: 0 0 auto;   
	font-size:12px;
  }

  .category-filter::-webkit-scrollbar {
    display: none;
  }

  .menu-category-fixed,
  .menu-category-inner {
    overflow: visible;
	padding: 3px 12px;
  }
  */

  /* Push products above bottom bar */
  .menu-category-fixed ~ .ltn__product-area {
    padding-bottom: 90px;
  }
  .ltn__language-menu {
	  display:none;
  }
  .header-ordernow-wrap{
	display:block !important;
  }
  .page-menu .header-ordernow-wrap{
	display:none !important;
  }
  .header-ordernow-wrap.special-link{

		margin-left:0px !important;
	}
  .header-ordernow-wrap.special-link a{
		padding: 16px 10px !important;
	}
	.cart-summary-bar {
		bottom: 0px;
		padding:5px 10px;
	}
	.page-menu .cart-summary-bar{
		bottom: 55px;
		padding:5px 10px;
	}
	.lang-toggle {
		display: flex;
		justify-content: center;
		gap: 10px;
		margin-top: 5px;
		font-size: 9px;
	}
}



/* =========================
   GLOBAL LOADER (SAFE)
========================= */

.rj-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rj-loader.hidden {
  display: none;
}

/* Dark backdrop */
.rj-loader-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
}

/* Loader box */
.rj-loader-spinner {
  position: relative;
  z-index: 1;
  background: #fff;
  padding: 18px 22px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.25);
}

.rj-loader-spinner img {
  width: 48px;
  height: 48px;
}

.rj-loader-spinner p {
  margin-top: 8px;
  font-size: 14px;
  color: #333;
}

/* =====================================================
   ORDER CONFIRMATION – MODAL (DESKTOP) / FULLSCREEN (MOBILE)
   ===================================================== */

/* ROOT WRAPPER */
.rj-confirm {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;

  /* 🔥 NEW BACKGROUND */
  background: radial-gradient(circle at top right, #fff3e0, transparent),
              radial-gradient(circle at bottom left, #e8f5e9, transparent),
              linear-gradient(180deg, #fdfdfd, #f7f7f7);
}

/* HIDDEN STATE */
.rj-confirm.hidden {
  display: none;
}

/* BACKDROP (DESKTOP) */
.rj-confirm-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

/* CARD */
.rj-confirm-card {
  position: relative;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(10px);
  border-radius: 18px;
  padding: 26px 20px;
  width: 90%;
  max-width: 340px;
  text-align: center;
  z-index: 2;

  box-shadow: 
    0 20px 40px rgba(0,0,0,0.15),
    0 2px 6px rgba(0,0,0,0.1);

  animation: rjFadeUp 0.35s ease;
}

/* SUCCESS ICON */
.rj-confirm-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 12px;
  background: linear-gradient(135deg, #4caf50, #66bb6a);
  color: #fff;
  border-radius: 50%;
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 6px 16px rgba(76,175,80,0.4);

  animation: rjPop 0.4s ease;
}

/* HEADING */
.rj-confirm-card h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
}

/* SUB TEXT */
.rj-confirm-sub {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
}

/* ORDER ID BOX */
.rj-confirm-box {
  background: #f6f6f6;
  border-radius: 10px;
  padding: 2px;
  margin-bottom: 12px;
}

.rj-confirm-box span {
  display: block;
  font-size: 12px;
  color: #777;
}

.rj-confirm-box strong {
  font-size: 16px;
  letter-spacing: 1px;
}

/* ACTION BUTTONS */
.rj-confirm-actions {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.rj-confirm-actions a,
.rj-confirm-actions button {
  flex: 1;
  padding: 8px 0;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  border: none;
}

/* PRIMARY BUTTON */
.rj-btn-primary {
  background: #ff6f00;
  color: #ffffff;
}

/* SECONDARY BUTTON */
.rj-btn-outline {
  background: #ffffff;
  border: 1px solid #ddd;
  color: #333;
}

/* FOOT NOTE */
.rj-confirm-note {
  font-size: 10px;
  color: #666;
}

.rj-bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.4;
  z-index: 0;
}

.rj-blob-1 {
  width: 180px;
  height: 180px;
  background: #ff9800;
  top: -40px;
  right: -40px;
}

.rj-blob-2 {
  width: 200px;
  height: 200px;
  background: #4caf50;
  bottom: -50px;
  left: -40px;
}

.rj-blob-3 {
  width: 120px;
  height: 120px;
  background: #ffd54f;
  top: 40%;
  right: -30px;
}
.rj-bg-blob {
  animation: floatBlob 8s ease-in-out infinite alternate;
}

@keyframes floatBlob {
  from { transform: translateY(0px); }
  to { transform: translateY(20px); }
}

/* DESKTOP POP ANIMATION */
@keyframes rj-modal-pop {
  from {
    transform: scale(0.92);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}


/* =========================
   DECOR (corner glow)
========================= */
.rj-decor {
  position: absolute;
  width: 140px;
  height: 140px;
  z-index: 1;
  opacity: 0.15;
  pointer-events: none;
}

.rj-decor-top {
  top: -30px;
  right: -30px;
  background: radial-gradient(circle, #ff9800, transparent);
  border-radius: 50%;
}

.rj-decor-bottom {
  bottom: -30px;
  left: -30px;
  background: radial-gradient(circle, #4caf50, transparent);
  border-radius: 50%;
}

.rj-confirm-extra {
  margin-bottom: 16px;
  text-align: left;
}

.rj-extra-title {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #555;
}

.rj-extra-box {
  background: #f6f6f6;
  border-radius: 10px;
  padding: 10px;
  font-size: 14px;
  color: #333;
  line-height: 1.4;
}
.hidden {
  display: none !important;
}

.rj-confirm-extra {
  margin-bottom: 10px;
}

.rj-extra-box {
  padding: 8px;
  font-size: 13px;
}

.rj-confirm-card {
  padding: 20px 16px;
}


/* =====================================================
   MOBILE – PREMIUM MODAL (FIXED)
   ===================================================== */

@media (max-width: 768px) {

  .rj-confirm {
    align-items: center;
    justify-content: center;
    padding: 16px;
  }

  /* KEEP backdrop (important for depth) */
  .rj-confirm-backdrop {
    display: block;
    background: rgba(0,0,0,0.5);
  }

  /* FIX CARD */
  .rj-confirm-card {
    max-width: 360px;
    width: 100%;
    border-radius: 18px;
    height: auto;

    padding: 24px 18px 20px;
    
    /* maintain glass + shadow */
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);

    display: block;
  }

  /* buttons stacked but clean */
  .rj-confirm-actions {
    flex-direction: column;
    gap: 10px;
  }

  .rj-btn-primary,
  .rj-btn-outline {
    width: 100%;
  }
}

/* MOBILE SLIDE ANIMATION */
@keyframes rj-slide-up {
  from {
    transform: translateY(40px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}


/* =====================================================
   CONFETTI – MOBILE ONLY (LIGHTWEIGHT)
   ===================================================== */

#rj-confetti {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 99999;
}

.rj-confetti-piece {
  position: absolute;
  width: 8px;
  height: 14px;
  opacity: 0.9;
  animation: rj-confetti-fall linear forwards;
}

@keyframes rj-confetti-fall {
  from {
    transform: translateY(-10vh) rotate(0deg);
  }
  to {
    transform: translateY(110vh) rotate(720deg);
  }
}

/* MOBILE ONLY */
@media (min-width: 769px) {
  #rj-confetti {
    display: none !important;
  }
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
    /* Your styles here */
}

.page-order .how-to-order-area{display:none;}

/* ===== OUT OF STOCK – SWIGGY STYLE ===== */

.ltn__product-item.out-of-stock {
    opacity: 0.5;
    filter: grayscale(100%);
    pointer-events: none;
	height:346px;
}

.ltn__product-item.out-of-stock img {
    filter: grayscale(100%) brightness(0.85);
}

.ltn__product-item.out-of-stock .product-price span,
.ltn__product-item.out-of-stock .product-price del {
    color: #888;
}

/* Disable hover actions */
.product-hover-action.disabled {
    display: none !important;
}

/* Cart disabled */
.product-cart-control.disabled {
    display: none;
}

/* Out of stock badge */
.product-img {
    position: relative;
}

.oos-badge {
    position: absolute;
    top: 0px;
    right: 0px;
    background: rgba(0,0,0,0.75);
    color: #fff;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    z-index: 5;
	border-radius:15px 0px 15px 0px;
}
.product-img img {
    object-fit: cover;
}

/* Menu scrollable loading */

.skeleton-card {
    background: #fff;
}

.skeleton-box {
    background: linear-gradient(90deg, #eee 25%, #ddd 37%, #eee 63%);
    background-size: 400% 100%;
    animation: shimmer 1.4s infinite;
    border-radius: 6px;
}

@keyframes shimmer {
    0% { background-position: 100% 0; }
    100% { background-position: -100% 0; }
}

/* specific blocks */
.skeleton-img {
    width: 100%;
    height: 180px;
}

.skeleton-text {
    height: 14px;
    margin: 8px 0;
}

.skeleton-price {
    width: 60%;
    height: 14px;
}
.product-img img {
    height: 180px;
    object-fit: cover;
}
.page-menu .ltn__breadcrumb-area{
	margin-bottom:0px !important;
}

#rj-store-status {
  position: fixed;   /* 🔥 important */
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 99999;

  display: flex;
  align-items: center;
  justify-content: center;
}

#rj-store-status.hidden {
  display: none;
}

/* backdrop full screen */
#rj-store-status .rj-confirm-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
}

/* center card properly */
#rj-store-status .rj-confirm-card {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 360px;
}

.order-highlights {
  display: flex;
  gap: 14px;
  margin-top: 22px;
  flex-wrap: wrap;
}


/* MEnu page -header CSS */
/* Base pill */
.highlight-pill {
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  cursor: default;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
}

/* Pickup - lighter orange */
.highlight-pill.pickup {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

/* Delivery - deeper orange */
.highlight-pill.delivery {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

/* Hover effect */
.highlight-pill:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 18px rgba(255, 140, 0, 0.4);
}

/* Optional subtle glow */
.highlight-pill::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  opacity: 0;
  transition: 0.3s;
}

.highlight-pill:hover::after {
  opacity: 1;
}
.highlight-pill:hover {
  transform: translateY(-2px) scale(1.03);
}



/* MEnu - CAtegory BAR CSS */
.rnj-category {
  margin: 20px 0 10px;
}

.rnj-category-row {
  display: flex;
  align-items: center;
  gap: 6px;
}

.rnj-category-icon {
  font-size: 18px;
  line-height: 1;
}

.rnj-category-title {
  all: unset;
  font-size: 20px;
  font-weight: 700;
  color: #1e1e1e;
  font-family: inherit;
}

.rnj-category-underline {
  height: 2px;
  width: 100%;
  margin-top: 8px;
  border-radius: 2px;

  background: linear-gradient(
    90deg,
    #ff6f00 0%,
    #4caf50 20%,
    rgba(0, 0, 0, 0.08) 60%,
    transparent 100%
  );
  margin-left: 26px; /* adjust based on icon width */
  width: calc(100% - 26px);
}
.ltn__product-item{
	box-shadow: 
    0 8px 24px rgba(0, 0, 0, 0.08),
    0 2px 6px rgba(0, 0, 0, 0.04);
}
.ltn__product-item:hover {
  transform: translateY(-4px);

  box-shadow: 
    0 12px 32px rgba(0, 0, 0, 0.10),
    0 4px 12px rgba(255, 111, 0, 0.25); /* orange tint */
}
.ltn__product-item .product-desc{
	font-size:12px !important; 
}
.ltn__product-item .product-title a{
	font-size:22px !important; 
}
.ltn__product-item-3 .product-price {
	font-size:22px !important; 
}

.ltn__product-item-3 .product-badge {
    position: absolute;
    top: 0px;
    right: 7px;
}


/* CART SUMMARY sticky bar */
.cart-summary-btn button {
  border: none;
  border-radius: 999px;
  padding:5px 40px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.25s ease;
  position: relative;
}
.cart-summary-btn .view-cart {
  background: linear-gradient(135deg, #ff6f00, #ff8f00);
  color: #fff;

  box-shadow: 
    0 8px 20px rgba(255, 111, 0, 0.35),
    0 2px 6px rgba(0, 0, 0, 0.2);
}

.cart-summary-btn .view-cart:hover {
  transform: translateY(-2px) scale(1.02);

  box-shadow: 
    0 12px 28px rgba(255, 111, 0, 0.45),
    0 4px 10px rgba(0, 0, 0, 0.25);

  background: linear-gradient(135deg, #ff7a00, #ffa000);
}

.cart-summary-btn .view-cart:active {
  transform: scale(0.96);
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
}
.cart-summary-btn .clear-cart {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.cart-summary-btn .clear-cart:hover {
  background: rgba(255, 0, 0, 0.12);
  border-color: rgba(255, 0, 0, 0.35);

  color: #ff4d4d;

  transform: translateY(-1px);
}

.cart-summary-btn .clear-cart:active {
  transform: scale(0.96);
}
.cart-summary-btn {
  display: flex;
  align-items: center;
  gap: 12px;
}	
.ltn__section-title-2 .section-title{
	font-size:22px;
}
.ltn__shop-options {
    margin-bottom: 10px;
}
@media (max-width: 575px) {
    .ltn__section-title-2 .section-title {
        font-size: 17px;
    }
}
@media (max-width: 767px) {
    .ltn__breadcrumb-area-2 {
        padding-bottom: 20px;
    }
	.cart-summary-btn button{
		padding:5px 15px;
	}
	.order-highlights {
		justify-content: center;   /* centers horizontally */
		align-items: center;
		text-align: center;
	  }
}
.category-filter {
  display: flex;
  overflow-x: auto;
  gap: 10px;
}

.category-filter button {
  flex: 0 0 auto;
}

/* New StoreClose Modal CSS */
.rj-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.rj-modal.hidden {
  display: none;
}

.rj-modal-content {
  background: #fff;
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
  max-width: 340px;
  width: 90%;
  animation: fadeUp 0.25s ease;
}

@keyframes fadeUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.rj-status-icon {
  font-size: 36px;
  margin-bottom: 10px;
}

.rj-status-icon.closed {
  color: #e53935;
}

.rj-status-icon.busy {
  color: #f57c00;
}

.rj-message {
  color: #555;
  margin: 10px 0 12px;
}

.rj-next-open {
  background: #f5f5f5;
  padding: 10px;
  border-radius: 8px;
  font-size: 14px;
  margin-bottom: 16px;
}

.rj-btn-primary {
  background: #ff6f00;
  color: #fff;
  border: none;
  padding: 12px;
  width: 100%;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
}

.rj-btn-primary:hover {
  background: #e65100;
}

.rj-footer {
  font-size: 12px;
  color: #777;
  margin-top: 10px;
}


/* =========================
   ROOTSNJUICE CART (NEW)
   ALL DEVICES SAFE
========================= */


/* HEADER */
.rj-cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  border-bottom: 1px solid #eee;
}

.rj-cart-title {
  font-size: 18px;
  font-weight: 700;
}

.rj-cart-close {
  font-size: 26px;
  background: none;
  border: none;
  cursor: pointer;
  font-weight:bold;
}


/* ITEMS */
.rj-cart-items .mini-cart-item {
  display: flex;
  gap: 12px;
  padding: 10px 0 0 15px;
  border-bottom: 1px solid #f0f0f0;
}

.rj-cart-items .mini-cart-img img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 8px;
}

.rj-cart-items .mini-cart-info h6 {
  font-size: 14px;
  margin-bottom: 4px;
}

/* CHECKOUT */
.rj-cart-checkout {
  margin-top: 14px;
 /* border: 1px solid green;*/
	padding: 5px;
}

.rj-field-row {
  display: flex;
  gap: 8px;
}

.rj-field {
  flex: 1;
}

.rj-field input,
.rj-field textarea {
  width: 100%;
padding: 8px 10px;
font-size: 14px;
border: 1px solid #ddd;
border-radius: 4px;
height: 40px;
margin-bottom: 0;
}

.rj-field textarea {
    min-height: 45px;
	margin-top:4px;
}

/* FOOTER (FIXED VISIBILITY) */
.rj-cart-footer {
  border-top: 1px solid #eee;
  padding: 12px 16px;
  background: #fff;
}

.rj-cart-total {
  /*display: flex;*/
  justify-content: space-between;
  font-size: 18px;
  margin-bottom: 10px;
  font-weight:bold;
}

/* ACTIONS */
.rj-cart-actions {
  display: flex;
  gap: 10px;
}

.rj-btn {
  flex: 1;
  padding: 12px;
  font-size: 14px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  border: none;
}

.rj-btn-outline {
  background: #d9cdcd;
  border: 1px solid #ccc;
}

.rj-btn-primary {
  background: #ff9f1c;
  color: #000;
}
.rj-btn-primary:hover, .rj-btn-outline:hover{
	border:1px solid;
}


#mini-cart-subtotal{
	font-size:19px;
	color: var(--ltn__secondary-color);
}
/* MOBILE FIXES */
@media (max-width: 768px) {
  .rj-field-row {
    flex-direction: column;
  }
	
	.category-filter {
		gap: 3px;
		padding: 4px;
		border:none;
	}
}


/* 🚨 OVERRIDE THEME MINI CART SCROLL */
/* ===== FINAL CART FIX (CLEAN) ===== */

.rj-cart-checkout {
  width: 100%;
}

.rj-section {
  width: 100%;
}

/* 🚨 FIX - theme inner scroll */


#ltn__utilize-cart-menu {
  height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Your actual cart layout */
.rj-cart {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

/* ONLY scrollable area */
.rj-cart-body {
  flex: 1;
  overflow-y: auto;
  min-height: 0;
  -webkit-overflow-scrolling: touch;
}

/* Footer stays fixed via flex */
.rj-cart-footer {
  flex-shrink: 0;
}

body.ltn__utilize-open {
  overflow: hidden;
}

@media (max-width: 768px) {

  /* FULL WIDTH FIX */
  #ltn__utilize-cart-menu {
    width: 100vw !important;
    max-width: 100vw !important;
    left: 0 !important;
    right: 0 !important;
    transform: translateX(100%) !important;
	/*border: 9px solid #e1e1e1;*/
  }

  #ltn__utilize-cart-menu.ltn__utilize-open {
    transform: translateX(0) !important;
  }

  /* 🔥 CRITICAL: FIX SCROLL BLOCK */
  .ltn__utilize {
    overflow: hidden !important;
  }

  .ltn__utilize-menu-inner {
    height: 100% !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
  }

  /* YOUR SCROLL AREA */
  .rj-cart {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
  }

  .rj-cart-body {
    flex: 1;
    overflow-y: auto;
    min-height: 0;
    -webkit-overflow-scrolling: touch;
  }

}

/* Order TRacker UI Polish */
@media (max-width: 768px) {
  .rj-progress-line {
    display: none !important;
  }
}

/* Kitchen Banner */
.kitchen-hero-status {
  font-size: 18px;
  font-weight: 600;
  margin-top: 10px;
}
.kitchen-hero-status.closed {
  color: #f37575;
}
.kitchen-hero-status.normal {
  color: #22c55e; /* green */
}

.kitchen-hero-status.medium {
  color: #f59e0b; /* yellow */
}

.kitchen-hero-status.high {
  color: #ef4444; /* red */
}

/* Cookie Popup */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 99999;

  background: #1f1f1f;
  color: #fff;

  border-radius: 14px;

  padding: 14px 18px;

  box-shadow: 0 8px 30px rgba(0,0,0,.25);

  animation: slideUp .3s ease;
}

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.cookie-content p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color:#fff;
}

.cookie-content a {
  color: #ffcc66;
  text-decoration: underline;
}

.cookie-btn {
  background: #ff9800;
  border: none;
  color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
}

.cookie-banner.hidden {
  display: none;
}

.orderPgTitl {
	font-size: 23px;
	text-align: center;
}
@keyframes slideUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@media(max-width:768px){

  .cookie-content{
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-btn{
    width:100%;
  }
  
	.orderPgTitl {
		font-size: 16px;
		margin-top: 12px;
	}
}

/* Offer Popup */
.offer-popup{
  position:fixed;
  inset:0;
  z-index:99999;
}

.offer-popup.hidden{
  display:none;
}

.offer-popup-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.7);
}

.offer-popup-content{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  width:90%;
  max-width:420px;
}

.offer-popup-image{
  width:100%;
  border-radius:16px;
}

.offer-close{
  position:absolute;
  top:-10px;
  right:-10px;
  width:34px;
  height:34px;
  border:none;
  border-radius:50%;
  background:#fff;
  font-size:22px;
  font-weight:bold;
  z-index:2;
}
.cart-savings{
  font-size:12px;
  color:#28a745;
  font-weight:600;
  margin-top:2px;
}