/* ===== CLEAN MODERN HEADER (MUNYA-STYLE) ===== */
.site-header {
  background: linear-gradient(135deg, #053a2f, #032a22);
  padding: 10px 32px;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.header-container {
  max-width: 1300px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Brand */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  height: 42px;
}

.brand-text h1 {
  font-size: 20px;
  margin: 0;
  color: #ffffff;
  font-weight: 700;
}

.brand-text p {
  margin: 0;
  font-size: 12px;
  color: #b7e4d5;
}

/* Navigation */
.main-nav {
  display: flex;
  gap: 26px;
}

.main-nav a {
  color: #e6f4ef;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  position: relative;
  padding-bottom: 6px;
}

/* Hover + Active */
.main-nav a:hover,
.main-nav a.active {
  color: #facc15;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #facc15;
  transition: width 0.3s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}


img {
  max-width: 100%;
  height: auto;
  display: block;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #f4f4f4;
  color: #333;
}



.hero {
  background:
    linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
    url("quarry-site.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  color: #fff;
  text-align: center;
  padding: 80px 20px;
}


.container {
  max-width: 1100px;
  margin: auto;
  padding: 30px;
}

.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.card,
.product-card {
  background: #fff;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,.1);
}

.product-card img {
  height: 180px;
  object-fit: cover;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  background: #1f1f1f;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
}

.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 25px;
  right: 25px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-footer {
  background: #1f1f1f;
  color: #fff;
  text-align: center;
  padding: 20px;
}

.socials {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.socials img {
  width: 40px;
  height: 40px;
}


/* FOOTER */
.footer {
  background: #0b1f1a;
  color: #e0e0e0;
  padding: 60px 20px 20px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.footer-box h2,
.footer-box h3 {
  color: #25D366;
  margin-bottom: 15px;
}

.footer-logo {
  font-size: 26px;
  margin-bottom: 10px;
}

.footer-box p {
  font-size: 14px;
  line-height: 1.6;
}

.footer-box ul {
  list-style: none;
  padding: 0;
}

.footer-box ul li {
  margin-bottom: 10px;
}

.footer-box ul li a {
  color: #e0e0e0;
  text-decoration: none;
}

.footer-box ul li a:hover {
  color: #25D366;
}

.footer-socials {
  margin-top: 15px;
  display: flex;
  gap: 15px;
}

.footer-socials img {
  width: 30px;
  height: 30px;
}

.footer-bottom {
  border-top: 1px solid #1f3d33;
  margin-top: 40px;
  padding-top: 15px;
  text-align: center;
  font-size: 13px;
  color: #aaa;
}

/* HOME ADDITIONS */
.features, .home-products, .transport-strip {
  background: #fff;
  padding: 70px 20px;
}

.features h2,
.home-products h2,
.transport-strip h2 {
  text-align: center;
  margin-bottom: 40px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.feature {
  background: #0f3d34;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.3);
}

.home-products .card img {
  height: 180px;
  object-fit: cover;
}

.home-products .card:hover {
  transform: translateY(-6px);
  transition: 0.3s ease;
}


.capacity-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.capacity-grid span {
  background: #25D366;
  color: #000;
  padding: 10px 20px;
  border-radius: 20px;
  font-weight: bold;
}

.cta {
  background: linear-gradient(rgba(0,0,0,.7), rgba(0,0,0,.7)),
              url('quarry-site.jpg');
  background-size: cover;
  background-position: center;
  text-align: center;
  color: #fff;
  padding: 80px 20px;
}

.cta .btn {
  margin: 10px;
}

.btn.center-btn {
  display: block;
  width: fit-content;
  margin: 30px auto 0;
}

.btn.outline {
  background: transparent;
  border: 2px solid #25D366;
  color: #25D366;
}


/* ORDER PAGE */
.order-section {
  background: linear-gradient(
      rgba(0, 0, 0, 0.75),
      rgba(0, 0, 0, 0.75)
    ),
    url("quarry-bg.jpg");
  background-size: cover;
  background-position: center;
  padding: 80px 20px;
}

.order-card {
  max-width: 600px;
  margin: auto;
  background: #0f2f2a;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.order-card h2 {
  text-align: center;
  margin-bottom: 30px;
  color: #f4b400;
}

.order-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.order-form input {
  padding: 14px;
  border-radius: 8px;
  border: none;
  font-size: 1rem;
}

.order-form input:focus {
  outline: 2px solid #f4b400;
}

.order-form button {
  margin-top: 10px;
  padding: 14px;
  font-size: 1.1rem;
  background: #f4b400;
  color: #000;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
}

.order-form button:hover {
  background: #ffcc33;
}


/* PRODUCTS PAGE */
.products-hero {
  background: linear-gradient(
      rgba(0, 0, 0, 0.7),
      rgba(0, 0, 0, 0.7)
    ),
    url("quarry-site.jpg");
  background-size: cover;
  background-position: center;
  padding: 70px 20px;
  text-align: center;
}

.products-hero h1 {
  font-size: 2.5rem;
  color: #f4b400;
}

.products-hero p {
  color: #ddd;
  margin-top: 10px;
}

.products-section {
  background: #072b26;
  padding: 60px 20px;
}

.products-section h2 {
  margin: 40px 0 20px;
  color: #f4b400;
  text-align: center;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: auto;
}

.product-card {
  background: #0f3a32;
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s;
}

.product-card:hover {
  transform: translateY(-8px);
}

.product-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
}

.product-card h3 {
  margin: 15px 0 5px;
  color: #fff;
}

.product-card p {
  color: #ccc;
  margin-bottom: 15px;
}

.product-card a {
  display: inline-block;
  padding: 10px 16px;
  background: #f4b400;
  color: #000;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
}

.product-card a:hover {
  background: #ffcc33;
}



.stats {
  background: linear-gradient(135deg, #062e27, #041f1b);
  padding: 70px 20px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.stats-grid div {
  background: #0f3d34;
  padding: 35px 20px;
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  transition: transform 0.3s ease;
}

.stats-grid div:hover {
  transform: translateY(-6px);
}

.stats-grid h3 {
  font-size: 42px;
  color: #fdbb0a;
  margin-bottom: 10px;
}

.stats-grid p {
  font-size: 15px;
  color: #e0e0e0;
  letter-spacing: 0.5px;
}

.features {
  background: linear-gradient(180deg, #003b2f, #00261e);
  padding: 80px 20px;
}


.features h2 {
  text-align: center;
  font-size: 2.3rem;
  margin-bottom: 55px;
  color: #ffffff;
}


.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.feature {
  background: #003b2f;
  color: #ffffff;
  padding: 35px 25px;
  border-radius: 16px;
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 35px rgba(0,0,0,0.25);
}

.feature h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: #ffc400;
}

.feature p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #e6f2ef;
}

.home-products {
  background: linear-gradient(180deg, #003b2f, #00261e);
  padding: 80px 20px;
}

.home-products .products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 30px;
}

.home-products h2 {
  text-align: center;
  font-size: 2.3rem;
  margin-bottom: 55px;
  color: #ffffff;
}

.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.home-products .card {
  background: #004c3a;
  border-radius: 18px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 15px 30px rgba(0,0,0,0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.home-products .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 45px rgba(0,0,0,0.35);
}

.home-products .card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 15px;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card h3 {
  padding: 18px;
  font-size: 1.1rem;
  color: #003b2f;
}
.home-products .card h3 {
  color: #ffffff;
  font-size: 1.2rem;
}


.center-btn {
  display: inline-block;
  margin: 40px auto 0;
  padding: 12px 28px;
  background: #ffb703;
  color: #000;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
}

/* CONTACT HERO */
.contact-hero {
  background: linear-gradient(180deg, #063c33, #022b24);
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
}

.contact-hero h1 {
  font-size: 36px;
  margin-bottom: 15px;
}

.contact-hero p {
  max-width: 700px;
  margin: 0 auto 30px;
  font-size: 16px;
  line-height: 1.6;
  color: #d6f5ec;
}

.btn-primary {
  display: inline-block;
  background: #ffc107;
  color: #000;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
}

.btn-primary:hover {
  background: #e0aa06;
}

/* CONTACT SECTION */
.contact-section {
  background: #022b24;
  padding: 70px 20px;
}

.contact-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

/* CONTACT CARDS */
.contact-card {
  background: #063c33;
  color: #ffffff;
  padding: 35px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

.contact-card h2 {
  color: #ffc107;
  margin-bottom: 20px;
}

.contact-card p {
  margin-bottom: 18px;
  line-height: 1.6;
}

.map-note {
  margin-top: 15px;
  font-size: 14px;
  color: #cdeee4;
}


/* TRANSPORT HERO */
.transport-hero {
  background: linear-gradient(180deg, #063c33, #022b24);
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
}

.transport-hero h1 {
  font-size: 38px;
  margin-bottom: 15px;
}

.transport-hero p {
  max-width: 750px;
  margin: 0 auto 30px;
  font-size: 16px;
  line-height: 1.6;
  color: #d6f5ec;
}

/* TRANSPORT SECTION */
.transport-section {
  background: #022b24;
  padding: 70px 20px;
  text-align: center;
}

.transport-section h2 {
  color: #ffc107;
  margin-bottom: 50px;
  font-size: 30px;
}

/* TRANSPORT GRID */
.transport-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* TRANSPORT CARDS */
.transport-card {
  background: #063c33;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.transport-card:hover {
  transform: translateY(-6px);
}

.transport-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 20px;
}

.transport-card h3 {
  color: #ffc107;
  margin-bottom: 12px;
}

.transport-card p {
  color: #e0f4ef;
  font-size: 14px;
  line-height: 1.6;
}

/* ORDER PAGE STYLES */

.order-hero {
  background: linear-gradient(
      rgba(0, 40, 35, 0.85),
      rgba(0, 40, 35, 0.85)
    ),
    url("quarry-bg.jpg");
  background-size: cover;
  background-position: center;
  padding: 100px 20px;
  text-align: center;
  color: #ffffff;
}

.order-hero h1 {
  font-size: 42px;
  margin-bottom: 15px;
}

.order-hero p {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.9;
}

/* Order Section */
.order-section {
  background-color: #f4f7f6;
  padding: 80px 20px;
  display: flex;
  justify-content: center;
}

.order-card {
  background-color: #022b26;
  width: 100%;
  max-width: 500px;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  text-align: center;
}

.order-card h2 {
  color: #fdb913;
  margin-bottom: 25px;
}

/* Inputs */
.order-card input {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: none;
  font-size: 15px;
}

/* Button */
.order-card button {
  width: 100%;
  padding: 14px;
  background-color: #fdb913;
  color: #000;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.order-card button:hover {
  background-color: #e0a800;
}

/* Note */
.order-note {
  margin-top: 15px;
  font-size: 13px;
  color: #cfd8d6;
}


body {
  background-color: #022b26;
}

.order-section {
  background-color: #022b26;
}

.hero-overlay {
  background: linear-gradient(
    rgba(0, 0, 0, 0.45),
    rgba(0, 0, 0, 0.15)
  );
}

/* =========================
   HERO BUTTONS – SAME YELLOW
========================= */

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 25px;
}

.hero-buttons .btn {
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;

  background-color: #f4b400;   /* Yellow */
  color: #1a1a1a;              /* Dark text */
  border: 2px solid #f4b400;

  transition: all 0.3s ease;
}

.hero-buttons .btn:hover {
  background-color: #d39e00;   /* Darker yellow on hover */
  border-color: #d39e00;
  transform: translateY(-2px);
}


/* =========================
   FAQ SECTION
========================= */

.faq-section {
  background-color: #0f2f28;
  padding: 70px 20px;
  color: #ffffff;
}

.faq-section h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 10px;
}

.faq-subtitle {
  text-align: center;
  color: #cfd8d6;
  margin-bottom: 40px;
}

.faq-item {
  max-width: 800px;
  margin: 0 auto 15px;
  border-radius: 10px;
  overflow: hidden;
  background: #123c32;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 22px;
  color: #ffffff;
  font-size: 17px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question span {
  font-size: 22px;
  color: #f4b400;
}

.faq-answer {
  display: none;
  padding: 0 22px 20px;
  color: #e0e0e0;
  line-height: 1.6;
}

/* =========================
   GALLERY SECTION
========================= */

.gallery-section {
  background: #06352e;
  padding: 80px 20px;
}

.section-title {
  text-align: center;
  font-size: 36px;
  color: #ffc107;
  margin-bottom: 10px;
}

.section-subtitle {
  text-align: center;
  color: #e0e0e0;
  margin-bottom: 50px;
  font-size: 16px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.gallery-item {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-item img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
}

.gallery-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
}


/* =========================
   LIGHTBOX
========================= */

.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.lightbox img {
  max-width: 90%;
  max-height: 85%;
  border-radius: 12px;
  box-shadow: 0 0 40px rgba(255, 193, 7, 0.4);
}

.lightbox.show {
  display: flex;
}

.lightbox-close {
  position: absolute;
  top: 25px;
  right: 35px;
  font-size: 40px;
  color: #ffc107;
  cursor: pointer;
  font-weight: bold;
}


/* ===== UNIVERSAL HERO SECTION ===== */
.page-hero {
  height: 55vh;
  background-image:
    linear-gradient(
      rgba(0, 0, 0, 0.45),
      rgba(0, 0, 0, 0.45)
    ),
    url("quarry-site.jpg"); /* <-- your hero image */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.page-hero h1 {
  color: #ffffff;
  font-size: 42px;
  font-weight: 700;
  margin: 0;
}

.page-hero p {
  color: #e5e7eb;
  font-size: 18px;
  margin-top: 10px;
}


/* ===== GLOBAL HERO (USED ON ALL PAGES) ===== */
.page-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  background: 
    linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
    url("quarry-site.jpg") center/cover no-repeat;
}

/* Hero content */
.page-hero .hero-content {
  max-width: 900px;
  padding: 20px;
}

.page-hero h1 {
  color: #facc15;
  font-size: 48px;
  margin-bottom: 12px;
}

.page-hero p {
  color: #e5e7eb;
  font-size: 18px;
}



/* ===== HAMBURGER MENU ===== */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: #facc15;
  border-radius: 2px;
}

/* MOBILE NAV */
@media (max-width: 900px) {
  .hamburger {
    display: flex;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #041a14;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px 0;

    display: none;
  }

  .main-nav.active {
    display: flex;
  }

  .main-nav a {
    font-size: 18px;
  }
}



.hero-title {
  color: #f4b41a;
}


/* ===== Hero polish enhancements ===== */

.hero h1 {
  font-weight: 800;
}

.hero h1,
.hero p {
  text-shadow: 0 4px 10px rgba(0,0,0,0.4);
}

.hero .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}


.quantity-row {
  display: flex;
  gap: 10px;
}

.quantity-row input,
.quantity-row select {
  flex: 1;
}


/* Order form alignment fix */
.order-card form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.order-card input,
.order-card select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 8px;
  border: none;
  font-size: 15px;
}

/* Quantity + unit row */
.quantity-row {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
}

/* Button consistency */
.order-card button {
  margin-top: 10px;
  padding: 14px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 10px;
}


.product-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 37.5px;
}

.add-product-btn {
  margin-top: 10px;
  background: transparent;
  color: #ffc107;
  border: 1px dashed #ffc107;
  padding: 10px;
  border-radius: 8px;
  cursor: pointer;
}



/* EACH PRODUCT BLOCK */
.product-row {
  margin-bottom: 16px; /* space between products */
}

/* QUANTITY + UNIT ROW */
.quantity-row {
  display: flex;
  gap: 10px;            /* space between quantity & unit */
  margin-top: 8px;
}

/* INPUTS & SELECTS */
.product-row select,
.product-row input {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: none;
  font-size: 14px;
}

/* Quantity input slightly bigger */
.quantity-row input {
  flex: 2;
}

/* Unit dropdown slightly smaller */
.quantity-row select {
  flex: 1;
}



.order-toggle{
  display:flex;
  gap:12px;
  margin-bottom:20px;
}

.order-toggle button{
  flex:1;
  padding:12px;
  border:none;
  border-radius:8px;
  background:#ddd;
  font-weight:600;
  cursor:pointer;
}

.order-toggle button.active{
  background:#f4b41a;
  color:#000;
}


.order-toggle {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.order-toggle button {
  flex: 1;
  padding: 14px;
  border: none;
  border-radius: 10px;
  background: #f4b41a; /* yellow */
  font-weight: bold;
  cursor: pointer;
  opacity: 0.6;
  transition: 0.3s;
}

.order-toggle button.active {
  opacity: 1;
  box-shadow: 0 0 0 2px #fff inset;
}
.order-toggle {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.order-toggle button {
  flex: 1;
  padding: 14px;
  border: none;
  border-radius: 10px;
  background: #f4b41a; /* yellow */
  font-weight: bold;
  cursor: pointer;
  opacity: 0.6;
  transition: 0.3s;
}

.order-toggle button.active {
  opacity: 1;
  box-shadow: 0 0 0 2px #fff inset;
}
