/* ==================== Root Variables ==================== */
:root {
  --primary:#113d56;
  --secondary: white;
  --hover: #101318;
  --shadow: 0 2px 8px rgba(0,0,0,0.08);
  --white: #fff;
  --namkeen-card: #fff;
  --text-dark: #333;
  --text-muted: #777;
}

/* ==================== Global Styles ==================== */
body {
  font-family: 'Open Sans', sans-serif;
  background-color: var(--white);
  color: var(--text-dark);
  margin: 0;
  padding: 0;
  line-height: 1.7;
}
h1, h2, h3, h4 {
  color: var(--primary);
  margin-bottom: 12px;
  font-weight: 600;
}

section {
  padding: 60px 20px;
  margin: 0;
  background-color: var(--secondary);

  color: var(--text-dark);
}

/* ==================== Header / Navbar ==================== */
.navbar-nav .nav-item {
  margin-right: 25px;
}

.brand-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.5px;
}

.header_sticky.shrink .brand-name {
  font-size: 18px;
}


.navbar-nav .nav-item:last
.header_sticky {
  background: #fff;
  padding: 0px 0;
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 999;
}

@media (min-width: 992px) {
  .navbar-nav {
    gap: 30px;
  }
}


.header_sticky.shrink {
  padding: 10px 0;
}

.logo-img {
  height: 80px;
  transition: all 0.3s ease;
}

.header_sticky.shrink .logo-img {
  height: 55px;
}

/* Navbar Links */
.navbar-nav .nav-link {
  font-weight: 600;
  font-size: 18px;
  color: var(--primary);
  text-decoration: none;
  padding: 10px 15px;
  transition: color 0.3s ease, transform 0.2s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus,
.navbar-nav .nav-link.active {
  color: var(--secondary);
  background-color: var(--primary);
  border-radius: 5px;
  transform: translateY(-2px);
}

/* Dropdown */
.navbar-nav .dropdown-menu {
  border: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  padding: 0;
  border-radius: 6px;
}

.navbar-nav .dropdown-menu li a {
  display: block;
  padding: 10px 15px;
  color: var(--primary);
  font-size: 15px;
  transition: all 0.2s ease;
}

.navbar-nav .dropdown-menu li a:hover {
  background-color: var(--primary);
  color: var(--secondary);
}

/* Hover trigger on desktop only */
@media (min-width: 992px) {
  .navbar-nav .dropdown:hover > .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}

/* Login / Button Style */
/* .btn-primary {
  background-color: var(--primary);
  border: none;
  color: #fff;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--secondary);
  color: #fff;
  transform: translateY(-2px);
} */

/* Mobile Navbar */
.navbar-toggler {
  border: none;
  background: transparent;
  outline: none;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  background-image: none;
  display: inline-block;
  width: 25px;
  height: 3px;
  background-color: var(--primary);
  border-radius: 3px;
  position: relative;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: '';
  position: absolute;
  left: 0;
  width: 25px;
  height: 3px;
  background-color: var(--primary);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler-icon::after {
  top: 8px;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .logo-img {
    height: 60px;
  }

  .navbar-nav .nav-link {
    font-size: 16px;
    padding: 10px;
  }

  .navbar-nav {
    text-align: center;
  }

  .navbar-collapse {
    background: #fff;
    padding: 10px 0;
  }
}

/* ==================== Namkeen Categories ==================== */
.namkeen-section { padding: 80px 0 50px; }

.section-title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--primary);
}
.section-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 45px;
}
.namkeen-marquee { overflow: hidden; padding-bottom: 15px; }
.marquee-track {
  display: flex;
  gap: 30px;
  animation: scrollLeft 25s linear infinite;
}
@keyframes scrollLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.marquee-text {
  background-color: var(--secondary)3e0;
  color: var(--primary);
  font-size: 18px;
  padding: 10px 0;
  /* border-top: 1px solid var(--primary); */
  border-bottom: 1px solid var(--primary);
  font-weight: bold;
}
.marquee-text b { color: var(--primary); }
@keyframes marquee {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

/* ==================== Interactive Cards ==================== */
.interactive-card {
  background: var(--namkeen-card);
  border-radius: 15px;
  overflow: hidden;
  width: 240px;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  margin: 0 auto;
}
.interactive-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}
.card-image-container { width: 100%; height: 220px; overflow: hidden; }
.card-image-container img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.interactive-card:hover .card-image-container img { transform: scale(1.1); }
.card-details h3 { font-size: 18px; color: var(--primary); margin: 15px 0; }

/* ==================== Buttons ==================== */
.btn-read, .btn-search, .btn-clear, .download-btn {
  display: inline-block;
  padding: 12px 28px;
  font-weight: 600;
  border-radius: 25px;
  text-align: center;
  text-decoration: none;
  transition: 0.3s;
  white-space: nowrap;
  color: var(--primary);
  background-color: var(--secondary);
  border: 1px solid var(--primary);
}
.btn-search, .btn-clear { padding: 8px 20px; font-size: 14px; }
.download-btn { padding: 10px 18px; font-size: 14px; }
.btn-read:hover { background: var(--primary); }
.btn-search:hover { background-color: var(--primary); }
.btn-clear:hover { background-color: var(--primary); }

/* ==================== Welcome Section ==================== */
/* ===============================
   WELCOME SECTION
================================= */
.welcome-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 80px 20px;
  background: linear-gradient(180deg, var(--white), #fff);
  color: var(--text-dark);
  overflow: hidden;
}

.welcome-section .container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

/* ===============================
   Circle & Logo
================================= */
.circle {
  position: relative;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  border: 3px dashed var(--primary);
  display: flex;
  justify-content: center;
  align-items: center;
  background: radial-gradient(circle at center, var(--primary) 70%, #fff 100%);
  overflow: visible;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.5s ease, box-shadow 0.4s ease;
}
.circle:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.circle .logo {
  width: 180px;
  height: auto;
  z-index: 2;
  border-radius: 50%;
}

/* ===============================
   Snacks Around Circle
================================= */
.snack {
  position: absolute;
  width: 120px;
  height: auto;
  object-fit: contain;
  z-index: 1;
  transition: transform 0.5s ease;
}
.circle:hover .snack {
  transform: rotate(10deg) scale(1.05);
}

.snack-top { top: -60px; left: 50%; transform: translateX(-50%); }
.snack-right { right: -60px; top: 50%; transform: translateY(-50%); }
.snack-bottom { bottom: -60px; left: 50%; transform: translateX(-50%); }
.snack-left { left: -60px; top: 50%; transform: translateY(-50%); }

/* ===============================
   Text Area
================================= */
.welcome-right {
  flex: 1 1 400px;
  max-width: 550px;
}

.welcome-right h1{
  font-size: 25px;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 20px;
  position: relative;
  letter-spacing: 1px;
  text-transform: capitalize;
}
.welcome-right h1::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--hover));
  bottom: -10px;
  left: 0;
  border-radius: 3px;
}
.welcome-right p {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 15px;
}

/* ===============================
   Animations (Slide-in)
================================= */
.slide-left,
.slide-right {
  opacity: 0;
  transition: all 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}
.slide-left {
  transform: translateX(-100px);
}
.slide-right {
  transform: translateX(100px);
}
.slide-left.show,
.slide-right.show {
  opacity: 1;
  transform: translateX(0);
}

/* ===============================
   Responsive Design
================================= */
@media (max-width: 992px) {
  .welcome-section .container {
    flex-direction: column;
    text-align: center;
  }
  .welcome-right h2::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .circle {
    width: 300px;
    height: 300px;
  }
  .snack {
    width: 90px;
  }
}

@media (max-width: 600px) {
  .circle {
    width: 230px;
    height: 230px;
  }
  .circle .logo {
    width: 100px;
  }
  .snack {
    width: 60px;
  }
  .welcome-right h2 {
    font-size: 20px;
  }
  .welcome-right p {
    font-size: 14px;
  }
}


/* ==================== Why Choose Us ==================== */
.choose-card {
  background: var(--secondary);
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 4px 10px var(--text-dark);
  opacity: 0;
  transition: all 0.8s ease-out;
}

/* Directional starting positions */
.animate-left { transform: translateX(-80px); }
.animate-right { transform: translateX(80px); }
.animate-up { transform: translateY(-80px); }
.animate-down { transform: translateY(80px); }

/* Final visible state */
.choose-card.show {
  opacity: 1;
  transform: translateX(0) translateY(0);
}

.icon-box {
  font-size: 40px;
  color: var(--primary);
  margin-bottom: 15px;
}
.process-img {
  max-width: 80px; /* size of the image */
  height: auto;
  display: block;
  margin: 0 auto 15px; /* center the image and space below */
}
/* ==================== Product Cards ==================== */
.product-card { border: 1px solid var(--secondary); border-radius: 8px; background: var(--secondary); padding: 12px; transition: 0.3s; }
.product-card:hover { transform: translateY(-5px); box-shadow: 0 4px 12px rgba(0,0,0,0.15); }
.product-img { max-height: 200px; width: 100%; object-fit: cover; border-radius: 6px; }

/* Category Filter */
.category-filter { margin-bottom: 30px; text-align: center; }
.category-filter a { display: inline-block; margin: 0 10px 10px 0; padding: 6px 15px; border-radius: 20px; background: var(--secondary); color: #333; text-decoration: none; transition: 0.2s; }
.category-filter a.active, .category-filter a:hover { background: var(--primary); color: var(--secondary); }

/* ==================== Thank You Page ==================== */
.thankyou-wrapper { display: flex; flex-wrap: wrap; gap: 30px; padding: 20px; }
.thankyou-left { flex: 1; min-width: 300px; }
.order-summary { flex: 1; min-width: 300px; background:var(--secondary); padding:20px; border-radius:8px; }
.order-item { display: flex; align-items: center; margin-bottom: 10px; }
.order-item img { width: 100px; border:1px solid var(--secondary); border-radius:5px; margin-right: 10px; }
.item-price { margin-left:auto; font-weight:bold; }
.download-btn { margin-top:20px; padding:10px 15px; background:var(--primary); color:var(--secondary); border:none; cursor:pointer; border-radius:5px; }

/* Print View */
@media print { body * { visibility: hidden; } .thankyou-wrapper, .thankyou-wrapper * { visibility: visible; } .thankyou-wrapper { position: absolute; top: 0; left: 0; width: 100%; margin: 0; padding: 20px; } }

/* ==================== Media Queries ==================== */
@media (max-width: 992px) {
  .welcome-section .container { flex-direction: column; text-align: center; }
  .welcome-right h2::after { left: 50%; transform: translateX(-50%); }
  .btn-read, .btn-search, .btn-clear, .download-btn { padding: 10px 20px; font-size: 15px; }
}
@media (max-width: 768px) {
  .circle { width: 200px; height: 200px; }
  .circle .logo { width: 100px; }
  .snack { width: 50px; }
  .snack-top { top: -35px; }
  .snack-right { right: -35px; }
  .snack-bottom { bottom: -35px; }
  .snack-left { left: -35px; }
  .welcome-right h2 { font-size: 24px; }
  .welcome-right p { font-size: 14px; }
  .icon-circle { width: 70px; height: 70px; font-size: 2rem; }
}
@media (max-width: 576px) {
  .icon-circle { width: 60px; height: 60px; font-size: 1.7rem; }
  .process-step h4 { font-size: 1rem; }
  .process-step p { font-size: 0.85rem; }
  .btn-read, .btn-search, .btn-clear, .download-btn { display: block; width: 100%; margin-bottom: 10px; padding: 12px 0; font-size: 14px; }
  .interactive-card { width: 90%; }
  .product-card { width: 100%; }
  .thankyou-wrapper { flex-direction: column; }
}
/* Search Button */
.btn-search {
    background-color: var(--primary); /* red/pink */
    color: var(--secondary);
    border: none;
    padding: 10px 15px;
    border-radius: 6px;
    font-weight: 500;
    transition: 0.3s;
}

.btn-search:hover {
    background-color: var(--primary); /* darker red on hover */
    color: var(--secondary);
}

/* Clear Button */
.btn-clear {
    background-color: var(--primary); /* light gray */
    color: var(--secondary);
    border: 1px solid var(--secondary);
    padding: 10px 15px;
    border-radius: 6px;
    font-weight: 500;
    transition: 0.3s;
}
.btn-clear:hover {
    background-color: var(--primary); /* darker red on hover */
    color: var(--secondary);
}

/* Optional: Make both buttons side by side with some spacing */
.btn-search, .btn-clear {
 
    width: 48%;
}
/* history  */
/* === About Section === */
.about-section {
  background: var(--secondary);
  padding: 60px 0;
}

.about-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

/* Text side */
.about-text {
  flex: 1 1 55%;
  color: #333;
}

.about-text h2 {
  color: var(--primary);
  font-weight: 400;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
  text-align: justify;
  margin-bottom: 15px;
}

/* Logo side */
.about-logo {
  flex: 1 1 35%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-logo img {
  width: 260px;
  height: 260px;
  object-fit: contain;
  animation: bounce 2.5s infinite cubic-bezier(.28, .84, .42, 1);
  filter: drop-shadow(0 15px 18px var(--text-dark)); /* shadow under logo */
}

/* Bounce animation */
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  20% { transform: translateY(-15px); }
  40% { transform: translateY(0); }
  60% { transform: translateY(-8px); }
  80% { transform: translateY(0); }
}

/* Responsive */
@media (max-width: 992px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }
  .about-text {
    flex: 1 1 100%;
  }
  .about-logo img {
    width: 200px;
    height: 200px;
  }
}


/* === Snack Section === */
.snack-section {
  background: var(--white);
  padding: 60px 20px;
}
.snack-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1200px;
  margin: auto;
}
.snack-text h2 {
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 16px;
}
.snack-text p {
  color: var(--text-dark);
  font-size: 16px;
  line-height: 1.8;
}
.snack-img img {
  width: 100%;
  max-width: 400px;
  display: block;
  margin: auto;
}

/* === Responsive === */
@media (max-width: 900px) {
  .about-container,
  .snack-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .about-logo img {
    margin-top: 20px;
  }
  .snack-img img {
    margin-top: 20px;
  }
}


/* ================================
   Process Steps
   ================================ */
.process-step-wrapper {
  position: relative;
}
.process-step {
  background: var(--secondary);
  border-radius: 12px;
  padding: 25px 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  height: 100%;
}
.process-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}
.icon {
  font-size: 24px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  margin: 0 auto 15px;
  background: var(--primary);
  border-radius: 50%;
  color: var(--secondary);
  font-weight: bold;
}
.arrow {
  font-size: 30px;
  color: var(--primary);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.arrow-right { left: 94%; margin-left: 10px; }
.arrow-left { right: 94%; margin-right: 10px; }
@media (max-width: 767px) {
  .arrow { display: none !important; }
}
   
/* ===== Form Container ===== */
.form-container {
    max-width: 450px;
    margin: 80px auto;
    padding: 40px 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);

}

/* Form Heading */
.form-container h2 {
    text-align: center;
    margin-bottom: 25px;
    font-size: 28px;
    color: var(--primary);
}

/* Error Message */
.form-container .error {
    color: #e74c3c;
    background: var(--white);
    border-left: 4px solid #e74c3c;
    padding: 10px 15px;
    margin-bottom: 20px;
    border-radius: 5px;
    font-size: 14px;
}

/* Input Fields */
.form-container input[type="text"],
.form-container input[type="email"],
.form-container input[type="password"] {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 15px;
    transition: 0.3s;
}

/* Input Focus */
.form-container input:focus {
    border-color: #3498db;
    box-shadow: 0 0 5px rgba(52, 152, 219, 0.3);
    outline: none;
}

/* Submit Button */
.form-container input[type="submit"] {
    width: 100%;
    padding: 12px;
    background: var(--primary);
    color: #fff;
    font-size: 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

.form-container input[type="submit"]:hover {
    background: var(--primary);
}

/* Footer Text */
.form-container p {
    text-align: center;
    font-size: 14px;
    color: #555;
}

.form-container p a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.form-container p a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 500px) {
    .form-container {
        margin: 50px 15px;
        padding: 30px 20px;
    }
    .form-container h2 {
        font-size: 24px;
    }
}
.about-image .image-wrapper {
  position: relative;
  width: 100%;
  height: 400px; /* adjust height as needed */
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.about-image .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* ensures full coverage without stretching */
}

/* Color overlay */
.about-image .image-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(211, 150, 36, 0.4), rgba(201, 153, 100, 0.521)); /* dark overlay */
  /* You can also use a solid color like: background: rgba(255, 0, 0, 0.3); */
  z-index: 1;
}

/* Optional: text on top of image */
.about-image .image-wrapper .overlay-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  z-index: 2;
}

/* Container for sizes */
.size-section .sizes {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 5px;
}

/* Individual size box */
.size-box {
    padding: 8px 14px;
    border: 1px solid #ccc;
    border-radius: 6px;
    cursor: pointer;
    user-select: none;
    font-weight: 500;
    transition: all 0.2s ease;
    background-color: #f8f8f8;
    color: #333;
}

/* Active / Selected size */
.size-box.active {
    background-color: #dc3545; /* Bootstrap danger red */
    border-color: #dc3545;
    color: #fff;
}

/* Hover effect for multi-size boxes */
.size-box:not(.active):hover {
    background-color: #f1f1f1;
    border-color: #999;
}

.process-grid h4 { font-weight: 600; margin-bottom: 10px; }
.process-grid p { font-size: 16px; line-height: 1.6; }
.process-grid img { max-width: 100%; height: auto; }
@media(max-width:991px){
    .process-grid .order-lg-1, .process-grid .order-lg-2 { order: unset !important; }
}
.process-grid img {
    width: 200px;   
    height: 200px;  
    object-fit: contain; 
}
#shareDropdown {
    /* color: var(--primary);  */
    border-color: var(--primary); 
}

/* #shareDropdown:hover, */
#shareDropdown:focus {
    color: #fff; 
    background-color: #113d56; 
    border-color: #113d56;
} 
/* ✅ 3 cards visible on desktop */
.product-item {
  scroll-snap-align: start;
  flex: 0 0 calc(33.333% - 1rem);
  box-sizing: border-box;
}

/* ✅ Responsive Adjustments */
@media (max-width: 992px) {
  .product-item {
    flex: 0 0 calc(50% - 0.8rem); /* 2 per view */
  }
}

@media (max-width: 576px) {
  .product-item {
    flex: 0 0 90%; /* 1 per view */
  }
}

/* ==== Arrows ==== */
.scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: rgba(0,0,0,0.4);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
}
.scroll-btn.left { left: -15px; }
.scroll-btn.right { right: -15px; }

/* ==== Product Card ==== */
.product-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
/* ==== Scroll Buttons ==== */
.scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: rgba(0,0,0,0.4);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
}
.scroll-btn.left { left: -15px; }
.scroll-btn.right { right: -15px; }

.product-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.product-scroll {
  overflow-x: auto;           
  overflow-y: hidden;         
  -ms-overflow-style: none;   
}
.product-scroll::-webkit-scrollbar {
  display: none;             
}

.product-item {
  width: 250px;               
  margin-right: 20px;
}

@media print {

  #downloadReceiptBtn,
  #payBtn,
  .btn-success,
  .contact-options,
  label[for="downloadReceiptBtn"],
  label[for="whatsappShare"],
  .row.mb-2.mt-3,
  nav,
  #breadcrumb,
  footer {
    display: none !important;
  }

}

.status-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 600;
    text-transform: capitalize;
    font-size: 14px;
    color: #fff;
}
.status-paid {
    background-color: #28a745; /* Green */
}
.status-pending {
    background-color: #ffc107; /* Orange */
    color: #000;
}
.status-failed {
    background-color: #dc3545; /* Red */
}

#loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.97);
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;
}
.loader-box {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.spinner-border {
    border-width: 5px;
    animation: spin 1s linear infinite;
}
#loader-text {
    margin-top: 15px;
    font-size: 1.1rem;
    color: #113d56;
    font-weight: 600;
}
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}
