/*==============================
Topbar
==============================*/

.topbar {
  background: #1b5e20;
  color: #fff;
  font-size: 14px;
  height: 46px;
  display: flex;
  align-items: center;
}

.topbar a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.topbar a:hover {
  color: #ffd54f;
}

.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 22px;
}

.topbar-right {
  justify-content: flex-end;
}

.topbar i {
  margin-right: 6px;
  color: #ffd54f;
}

.top-link {
  font-weight: 500;
}

.franchise-btn {
  background: #d4af37;
  color: #fff !important;
  padding: 8px 18px;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.35s;
}

.franchise-btn:hover {
  background: #f4c542;
  transform: translateY(-2px);
}

@media (max-width: 991px) {
  .topbar {
    display: none;
  }
}

/*==================================
Navbar
==================================*/

:root {
  --primary: #2e7d32;
  --primary-dark: #064d0a;
  --primary-light: #5faf63;
  --secondary: #d4af37;
  --accent: #8bc34a;
  --dark: #1b1f23;
  --text: #5f6368;
  --white: #ffffff;
  --bg: #fffdf8;
  --border: #e8ece7;
  --shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  --radius: 24px;
  --transition: 0.4s ease;
}
#mainNavbar {
  position: fixed !important;
  top: 46px !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  z-index: 9999 !important;
  padding: 5px 0 !important;
  background: #fff !important;
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
  transform: none !important;
  transition: top .25s ease, box-shadow .25s ease !important;
}

#mainNavbar.scrolled {
  top: 0 !important;
  transform: none !important;
  padding: 5px 0 !important;
  background: #fff !important;
  box-shadow: 0 8px 25px rgba(0,0,0,.1);
}


.navbar-brand img {
  width: 200px;
}

#mainNavbar.scrolled .navbar-brand img {
  width: 200px;
}

.nav-link {
  color: var(--dark);
  font-weight: 600;
  margin: 0 14px;
  position: relative;
  transition: 0.3s;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: 0.35s;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.icon-btn,
.profile-btn {
  width: 46px;
  height: 46px;
  border: none;
  background: #fff;
  color: #000;
  border-radius: 50%;
  position: relative;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.icon-btn i {
  position: relative;
  top: 12px;
  left: 15px;
}

.icon-btn:hover,
.profile-btn:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-3px);
}

.icon-btn span {
  position: absolute;
  top: -4px;
  right: -2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #e53935;
  color: #fff;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar-toggler i {
  font-size: 32px;
  color: var(--primary);
}

@media (max-width: 1199px) {
  #mainNavbar {
    top: 0;
  }

  .navbar-collapse {
    background: #fff;
    padding: 25px;
    margin-top: 20px;
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  }

  .nav-link {
    margin: 10px 0;
  }

  .nav-actions {
    margin-top: 20px;
  }
}

/*=================================
Hero Section
=================================*/

.hero-section {
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.heroSwiper {
  width: 100%;
  height: 400px;
}

.swiper-slide {
  width: 100%;
}

.heroSwiper .swiper-slide {
  overflow: hidden;
}

.heroSwiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform 7s linear;
}

.heroSwiper .swiper-slide-active img {
  transform: scale(1.08);
}

/* Gradient Overlay */

.heroSwiper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.15),
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, 0.08)
  );
  z-index: 1;
  pointer-events: none;
}

/* Navigation */

.heroSwiper .swiper-button-next,
.heroSwiper .swiper-button-prev {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  color: #fff;
  transition: 0.35s;
}

.heroSwiper .swiper-button-next:hover,
.heroSwiper .swiper-button-prev:hover {
  background: #2e7d32;
}

.heroSwiper .swiper-button-next::after,
.heroSwiper .swiper-button-prev::after {
  font-size: 20px;
  font-weight: 700;
}

/* Pagination */

.heroSwiper .swiper-pagination {
  bottom: 30px;
}

.heroSwiper .swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  background: #ffffff;
  opacity: 0.5;
  transition: 0.35s;
}

.heroSwiper .swiper-pagination-bullet-active {
  width: 40px;
  border-radius: 20px;
  background: #2e7d32;
  opacity: 1;
}

/*==================================================
Our Products
==================================================*/

.featured-products {
  padding: 100px 0;
  background: #e7ffe8;
}

.productSwiper {
  padding: 10px 5px 60px;
}

.product-card {
  display: block;
  background: #fff;
  border: 1px solid #edf2ed;
  border-radius: 22px;
  overflow: hidden;
  text-decoration: none;
  transition: all 0.35s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(46, 125, 50, 0.12);
}

.product-thumb {
  position: relative;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #fbfdfb;
}

.product-bg {
  position: absolute;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: linear-gradient(135deg, #edf8ef, #d8efd9);
  transition: 0.4s;
}

.product-img {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: 0.4s;
}

.product-card:hover .product-img {
  transform: scale(1.06);
}

.product-card:hover .product-bg {
  transform: scale(1.1);
}

.product-info {
  padding: 14px;
}
.product-info h5 {
  color: #162417;
}

.product-category {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.product-info h3 {
  font-size: 22px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 14px;
  line-height: 1.35;
}

.product-price {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0px;
}

.product-price strong {
  font-size: 28px;
  color: var(--primary);
}

.product-price del {
  color: #9ca3af;
  font-size: 18px;
}

.discount {
  padding: 4px 10px;
  border-radius: 30px;
  background: #edf8ef;
  color: var(--primary);
  font-size: 11px;
  font-weight: 600;
}

.product-actions {
  padding: 0 22px 22px;
}

.product-actions .cart-btn {
  width: 100%;
  height: 48px;
  border: none;
  border-radius: 14px;
  background: var(--primary);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  transition: 0.35s;
}

.product-actions .cart-btn:hover {
  background: #162417;
}

.section-link {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #1f2937;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.circle-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: 0.35s;
}

.section-link:hover {
  color: var(--primary);
}

.section-link:hover .circle-arrow {
  transform: rotate(45deg);
  background: var(--secondary);
}
.product-description {
  margin: 8px 0 0px;
  color: #6b7280;
  font-size: 14px;
  line-height: 1.5;

  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
/* Swiper Pagination */

.product-pagination {
  margin-top: 40px;
  text-align: center;
}

.product-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #d5dfd5;
  opacity: 1;
  transition: 0.3s;
}

.product-pagination .swiper-pagination-bullet-active {
  width: 36px;
  border-radius: 20px;
  background: var(--primary);
}

/* about us */

.about-section {
  padding: 80px 0;
  background: #fffdf8;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: 32px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.08);
}

.experience-card {
  position: absolute;
  bottom: 4px;
  right: 4px;
  width: 120px;
  height: 120px;
  background: #2e7d32;
  color: #fff;
  border-radius: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 20px 45px rgba(46, 125, 50, 0.25);
}

.experience-card h3 {
  font-size: 42px;
  margin: 0;
  font-weight: 700;
}

.company-name {
  display: inline-block;
  color: #2e7d32;
  font-weight: 600;
  margin: 0px 0 10px;
}

.about-content p {
  color: #666;
  line-height: 1.5;
  margin-bottom: 4px;
}

.about-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 15px 0;
}

.feature-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background: #fff;
  border-radius: 50px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  font-weight: 500;
}

.feature-pill i {
  color: #2e7d32;
}

/*======================================
Gallery
======================================*/

.gallery-section {
  padding: 80px 0;
  background: #d7efda;
}

.gallery-card {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  height: 420px;
  text-decoration: none;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: 0.4s ease;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.8s ease;
}

.gallery-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 30px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.72));
  color: #fff;
  opacity: 0;
  transition: 0.35s;
}

.gallery-overlay h5 {
  font-size: 26px;
  font-family: "Cormorant Garamond", serif;
  margin-bottom: 10px;
}

.gallery-overlay span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  transition: 0.35s;
}

.gallery-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.gallery-card:hover img {
  transform: scale(1.08);
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
}

.gallery-card:hover .gallery-overlay span {
  gap: 18px;
}

@media (max-width: 991px) {
  .gallery-card {
    height: 340px;
  }

  .gallery-overlay {
    opacity: 1;
  }
}

/*=========================================
Contact
=========================================*/

.contact-section {
  padding: 80px 0;
  background: rgb(231, 255, 232);
}

.contact-card {
  height: 100%;
  padding: 45px 26px;
  background: linear-gradient(135deg, #223625, #223625);
  border-radius: 30px;
  color: #fff;
  box-shadow: 0 25px 60px rgba(46, 125, 50, 0.18);
}

.contact-card h3 {
  font-size: 34px;
  margin-bottom: 15px;
}

.contact-card p {
  opacity: 0.9;
  line-height: 1.8;
}

.contact-item {
  display: flex;
  gap: 18px;
  margin-top: 30px;
}

.contact-item .icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  flex-shrink: 0;
}

.contact-item h6 {
  margin-bottom: 6px;
  font-weight: 600;
}

.social-links {
  display: flex;
  gap: 14px;
  margin-top: 40px;
}

.social-links a {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-decoration: none;
  transition: 0.35s;
}

.social-links a:hover {
  background: #d4af37;
  transform: translateY(-4px);
}

.contact-form {
  padding: 30px 30px;
  margin-bottom: 10px;
  background: #fff;
  border-radius: 30px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.form-control {
  height: 58px;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  padding: 16px 20px;
  box-shadow: none;
  font-size: 15px;
}

textarea.form-control {
  height: auto;
  resize: none;
}

.form-control:focus {
  border-color: #2e7d32;
  box-shadow: none;
}

.submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 34px;
  border: none;
  border-radius: 50px;
  background: #2e7d32;
  color: #fff;
  font-weight: 600;
  transition: 0.35s;
}

.submit-btn:hover {
  background: #d4af37;
  transform: translateY(-3px);
}

.map-section iframe {
  width: 100%;
  height: 300px;
  border: 0;
  display: block;
}

@media (max-width: 991px) {
  .contact-section {
    padding: 40px 0;
  }

  .contact-card,
  .contact-form {
    padding: 30px;
  }
  .contact-item {
    margin-top: 10px;
  }
  .social-links {
    margin-top: 0px;
  }
}

@media (max-width: 576px) {
  .contact-card,
  .contact-form {
    padding: 22px;
    border-radius: 20px;
  }

  .submit-btn {
    width: 100%;
    justify-content: center;
  }

  .map-section iframe {
    height: 300px;
  }
}

.footer {
  background: #162417;
  color: #d7e5d8;
  margin-top: 90px;
}

.footer-newsletter {
  margin-top: -90px;
}

.newsletter-box {
  background: linear-gradient(135deg, #2e7d32, #4caf50);
  padding: 45px 50px;
  border-radius: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  box-shadow: 0 25px 60px rgba(46, 125, 50, 0.25);
}

.newsletter-box h2 {
  color: #fff;
  font-size: 38px;
  margin-bottom: 12px;
  font-family: "Cormorant Garamond", serif;
}

.newsletter-box p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.newsletter-form {
  display: flex;
  background: #fff;
  padding: 8px;
  border-radius: 60px;
  min-width: 500px;
}

.newsletter-form input {
  flex: 1;
  border: none;
  outline: none;
  padding: 0 24px;
  background: none;
}

.newsletter-form button {
  border: none;
  padding: 16px 28px;
  border-radius: 50px;
  background: #d4af37;
  color: #fff;
  font-weight: 600;
}

.footer-main {
  padding: 20px 0 34px;
}

.footer-logo img {
  height: 70px;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 12px;
  padding: 6px 8px;
}

.footer-about {
  line-height: 1.9;
  color: #b8c5b9;
}

.footer h5 {
  color: #fff;
  margin-bottom: 25px;
  font-size: 20px;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer ul li {
  margin-bottom: 14px;
}

.footer a {
  color: #b8c5b9;
  text-decoration: none;
  transition: 0.3s;
}

.footer a:hover {
  color: #ffffff;
  padding-left: 6px;
}

.footer-contact i {
  color: #d4af37;
  margin-right: 10px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 25px;
}

.footer-social a {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #223625;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.footer-social a:hover {
  background: #d4af37;
  padding: 0;
}

.footer-features {
  margin-top: 50px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  text-align: center;
}

.footer-features div {
  padding: 18px;
  background: #223625;
  border-radius: 16px;
  font-weight: 500;
}

.footer-features i {
  color: #d4af37;
  margin-right: 8px;
}

.footer-bottom {
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 14px;
}

.footer-bottom p {
  margin: 0;
  color: #9eb09f;
}

@media (max-width: 576px) {
  .newsletter-form {
    flex-direction: column;
    background: none;
    padding: 0;
    gap: 12px;
  }

  .newsletter-form input {
    background: #fff;
    height: 56px;
    border-radius: 50px;
  }

  .newsletter-form button {
    width: 100%;
  }

  .footer-features {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    text-align: center;
  }
}

/*==================================
Products Banner
==================================*/

.products-banner {
  position: relative;
  height: 260px;
  background: url("../images/products-banner.jpg") center center/cover no-repeat;
  overflow: hidden;
  margin-top: 80px;
}

.banner-overlay {
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(15, 40, 18, 0.65), rgba(15, 40, 18, 0.65));
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-content {
  text-align: center;
  color: #fff;
}

.banner-subtitle {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #d4af37;
  margin-bottom: 12px;
}

.banner-title {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.banner-description {
  max-width: 650px;
  margin: 0 auto 20px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
}

.banner-breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 15px;
}

.banner-breadcrumb a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.banner-breadcrumb a:hover {
  color: #d4af37;
}

.banner-breadcrumb span {
  color: #fff;
}

/*==================================
Products Page
==================================*/

.products-page {
  padding: 90px 0;
  background: #e7ffe8;
}

.section-heading {
  max-width: 700px;
  margin: auto;
}

.section-heading .sub-title {
  display: inline-block;
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-heading h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #1f2937;
}

.section-heading p {
  color: #6b7280;
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 0;
}

.products-page .product-card {
  height: 100%;
}

/*==================================
Product Details
==================================*/

.product-details {
  padding: 90px 0;
  margin-top: 65px;
}

.breadcrumb-nav {
  display: flex;
  gap: 12px;
  font-size: 15px;
}

.breadcrumb-nav a {
  color: #666;
  text-decoration: none;
}

.breadcrumb-nav span {
  color: #999;
}

.product-main-image {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 20px;
  padding: 40px;
  text-align: center;
}

.product-main-image img {
  max-height: 450px;
  object-fit: contain;
}

.product-thumbs {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.product-thumbs img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  border: 1px solid #eee;
  border-radius: 12px;
  cursor: pointer;
}

.product-title {
  font-size: 42px;
  font-weight: 700;
  margin: 15px 0;
}

.product-rating {
  color: #ffb400;
  margin-bottom: 20px;
}

.product-rating span {
  color: #666;
  margin-left: 8px;
}

.product-short-desc {
  color: #666;
  line-height: 30px;
}

.quantity-box {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 30px 0;
}

.quantity-box button {
  width: 45px;
  height: 45px;
  border: none;
  background: #f5f5f5;
  border-radius: 10px;
}

.quantity-box input {
  width: 60px;
  text-align: center;
  border: 1px solid #ddd;
  border-radius: 10px;
  height: 45px;
}

.product-buttons {
  display: flex;
  gap: 15px;
}

.buy-btn {
  padding: 15px 35px;
  border: none;
  border-radius: 12px;
  background: #d4af37;
  color: #fff;
  font-weight: 600;
}

/*==================================
Cart Page
==================================*/

.cart-section {
  padding: 80px 0;
  background: #f8faf8;
}

.cart-items {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.cart-item {
  background: #fff;
  border-radius: 22px;
  padding: 25px;
  display: flex;
  align-items: center;
  gap: 25px;
  border: 1px solid #edf2ed;
  transition: 0.35s;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
}

.cart-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.cart-image {
  width: 150px;
  height: 150px;
  background: #fbfdfb;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cart-image img {
  max-width: 110px;
  max-height: 120px;
  object-fit: contain;
  transition: 0.35s;
}

.cart-item:hover .cart-image img {
  transform: scale(1.08);
}

.cart-content {
  flex: 1;
}

.cart-category {
  display: inline-block;
  color: var(--primary);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.cart-content h3 {
  font-size: 26px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 12px;
}

.cart-price {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
}

.quantity-box {
  display: flex;
  align-items: center;
  gap: 12px;
}

.quantity-box button {
  width: 42px;
  height: 42px;
  border: none;
  background: #eef6ef;
  color: var(--primary);
  font-size: 20px;
  font-weight: 700;
  border-radius: 12px;
  transition: 0.3s;
}

.quantity-box button:hover {
  background: var(--primary);
  color: #fff;
}

.quantity-box input {
  width: 60px;
  height: 42px;
  border: 1px solid #dde5dd;
  border-radius: 12px;
  text-align: center;
  font-weight: 600;
  outline: none;
}

.cart-total {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
  min-width: 120px;
  font-size: 30px;
  font-weight: 700;
  color: #1f2937;
}

.remove-item {
  border-radius: 8%;
  padding: 4px;
  background: #fff3f3;
  color: #dc3545;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: 0.3s;
}

.remove-item:hover {
  background: #dc3545;
  color: #fff;
}

.cart-summary {
  background: #fff;
  border-radius: 24px;
  padding: 35px;
  border: 1px solid #edf2ed;
  position: sticky;
  top: 110px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.05);
}

.cart-summary h3 {
  font-size: 30px;
  margin-bottom: 30px;
  color: #1f2937;
}
.cart-section {
  padding: 70px 0;
  background: #f7faf7;
  min-height: 60vh;
}

.cart-item {
  background: #fff;
  border: 1px solid #e5ebe5;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 15px;
}

.cart-image {
  width: 110px;
  height: 110px;
  border-radius: 14px;
  background: #f5f7f5;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.cart-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cart-content {
  flex: 1;
  min-width: 0;
}

.cart-category {
  font-size: 11px;
  color: #7f8981;
}

.cart-content h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 25px;
  margin: 5px 0;
}

.cart-price {
  font-size: 14px;
  font-weight: 600;
  color: #2e7d32;
}

.quantity-box {
  display: flex;
  align-items: center;
  width: max-content;
  margin-top: 12px;
  border: 1px solid #dfe6df;
  border-radius: 9px;
  overflow: hidden;
}

.quantity-box button {
  border: 0;
  background: #f7faf7;
  width: 34px;
  height: 34px;
  font-size: 18px;
  cursor: pointer;
}

.quantity-box button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.quantity-box input {
  width: 40px;
  height: 34px;
  border: 0;
  text-align: center;
  background: #fff;
  outline: 0;
}

.cart-total {
  font-size: 16px;
  font-weight: 700;
  text-align: right;
  min-width: 110px;
}

.remove-item {
  display: inline-block;
  margin-top: 10px;
  color: #9b4b4b;
  font-size: 12px;
  text-decoration: none;
  cursor: pointer;
}

.cart-summary {
  background: #fff;
  border: 1px solid #e5ebe5;
  border-radius: 20px;
  padding: 28px;
  position: sticky;
  top: 20px;
}

.cart-summary h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 29px;
  margin-bottom: 22px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  font-size: 14px;
  color: #68716a;
}

.summary-row.total {
  border-top: 1px solid #e5ebe5;
  margin-top: 8px;
  padding-top: 20px;
  color: #172119;
  font-size: 19px;
}

.checkout-btn,
.shop-btn {
  display: block;
  text-align: center;
  text-decoration: none;
  background: #2e7d32;
  color: #fff;
  padding: 14px;
  border-radius: 10px;
  margin-top: 20px;
  font-size: 13px;
  font-weight: 600;
}

.continue-shopping {
  display: block;
  text-align: center;
  text-decoration: none;
  color: #2e7d32;
  margin-top: 15px;
  font-size: 13px;
}

.empty-cart {
  background: #fff;
  border: 1px solid #e5ebe5;
  border-radius: 20px;
  text-align: center;
  padding: 70px 20px;
}

.empty-cart i {
  font-size: 55px;
  color: #b5c5b7;
}

.empty-cart h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 34px;
  margin: 15px 0 8px;
}

.empty-cart p {
  color: #818a83;
}

.stock-warning {
  color: #a34b3d;
  font-size: 11px;
  margin-top: 6px;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid #eef2ef;
  font-size: 16px;
}

.summary-row:last-of-type {
  border-bottom: none;
}

.summary-row.total {
  font-size: 20px;
  font-weight: 700;
  margin-top: 10px;
}

.checkout-btn {
  width: 100%;
  height: 55px;
  border-radius: 14px;
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  margin-top: 30px;
  transition: 0.35s;
}

.checkout-btn:hover {
  background: var(--primary-dark);
  color: #fff;
}

.continue-shopping {
  display: block;
  text-align: center;
  margin-top: 18px;
  color: #666;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.continue-shopping:hover {
  color: var(--primary);
}

/*==================================
Checkout
==================================*/

.checkout-section {
  padding: 80px 0;
  background: #f8faf8;
}

.checkout-card,
.checkout-summary {
  background: #fff;
  border-radius: 20px;
  padding: 35px;
  border: 1px solid #edf2ed;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.checkout-card h3,
.checkout-summary h3 {
  margin-bottom: 30px;
  font-size: 28px;
  font-weight: 700;
}

.checkout-card label {
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
}

.checkout-card .form-control {
  height: 52px;
  border-radius: 12px;
  border: 1px solid #dce5dc;
  box-shadow: none;
}

.checkout-card textarea.form-control {
  height: auto;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  font-size: 16px;
}

.summary-item.total {
  font-size: 20px;
  font-weight: 700;
}

.place-order-btn {
  width: 100%;
  height: 55px;
  border: none;
  border-radius: 14px;
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  margin-top: 25px;
  transition: 0.35s;
}

.place-order-btn:hover {
  background: var(--primary-dark);
}

/*==================================
About Page
==================================*/

.section-space {
  padding: 100px 0;
}

/*==============================
Our Story
==============================*/

.about-story {
  background: #fff;
}

.about-image {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.about-image img {
  width: 100%;
  display: block;
  transition: 0.5s;
}

.about-image:hover img {
  transform: scale(1.05);
}

.about-story .sub-title {
  display: inline-block;
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.about-story h2 {
  font-size: 42px;
  font-weight: 700;
  color: #1f2937;
  line-height: 1.3;
  margin-bottom: 25px;
}

.about-story p {
  color: #6b7280;
  font-size: 16px;
  line-height: 30px;
  margin-bottom: 18px;
}

/*==============================
Mission & Vision
==============================*/

.mission-section {
  padding: 100px 0;
  background: #f8faf8;
}

.mission-card {
  background: #fff;
  border-radius: 24px;
  padding: 45px 35px;
  text-align: center;
  border: 1px solid #edf2ed;
  transition: 0.35s;
  height: 100%;
}

.mission-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(46, 125, 50, 0.12);
}

.mission-card i {
  width: 80px;
  height: 80px;
  margin: auto;
  border-radius: 50%;
  background: #edf8ef;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  margin-bottom: 25px;
}

.mission-card h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #1f2937;
}

.mission-card p {
  color: #6b7280;
  line-height: 28px;
  margin: 0;
}

/*==============================
Why Choose
==============================*/

.why-choose {
  background: #fff;
}

.feature-card {
  background: #fff;
  border: 1px solid #edf2ed;
  border-radius: 20px;
  padding: 40px 25px;
  text-align: center;
  transition: 0.35s;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: 0 20px 45px rgba(46, 125, 50, 0.1);
}

.feature-card i {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background: #edf8ef;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  font-size: 32px;
  margin-bottom: 22px;
  transition: 0.35s;
}

.feature-card:hover i {
  background: var(--primary);
  color: #fff;
}

.feature-card h4 {
  font-size: 22px;
  font-weight: 600;
  color: #1f2937;
  margin: 0;
}

/*==============================
CTA
==============================*/

.about-cta {
  padding: 100px 0;
  background: #f8faf8;
}

.cta-box {
  background: linear-gradient(135deg, #1f6d34, #2e7d32);
  border-radius: 28px;
  padding: 80px 50px;
  text-align: center;
  color: #fff;
}

.cta-box h2 {
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta-box p {
  max-width: 650px;
  margin: 0 auto 35px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 17px;
  line-height: 30px;
}

.theme-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  height: 56px;
  border-radius: 50px;
  background: #fff;
  color: var(--primary);
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: 0.35s;
}

.theme-btn:hover {
  background: #d4af37;
  color: #fff;
}

/*==============================
Responsive
==============================*/

@media (max-width: 991px) {
  .section-space,
  .mission-section,
  .about-cta {
    padding: 70px 0;
  }

  .about-story h2 {
    font-size: 34px;
  }

  .cta-box {
    padding: 60px 35px;
  }

  .cta-box h2 {
    font-size: 34px;
  }
}

@media (max-width: 767px) {
  .about-story h2 {
    font-size: 28px;
  }

  .mission-card,
  .feature-card {
    padding: 10px 20px;
  }

  .cta-box {
    padding: 50px 25px;
  }

  .cta-box h2 {
    font-size: 28px;
  }

  .cta-box p {
    font-size: 15px;
  }
}

@media (max-width: 575px) {
  .section-space,
  .mission-section,
  .about-cta {
    padding: 40px 0;
  }

  .about-story h2 {
    font-size: 24px;
  }

  .mission-card h3 {
    font-size: 24px;
  }

  .feature-card h4 {
    font-size: 20px;
  }

  .theme-btn {
    width: 100%;
  }
}

/*==================================
Gallery
==================================*/

.gallery-section {
  padding: 100px 0;
  background: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.gallery-item {
  display: block;
  text-decoration: none;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
  transition: all 0.35s ease;
}

.gallery-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: 0.45s;
}

.gallery-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  opacity: 0;
  transition: 0.35s;
  z-index: 2;
}

.gallery-item::after {
  content: "+";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #fff;
  color: var(--primary);
  font-size: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.35s;
  z-index: 3;
}
.gallery-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f5f7f4;
}
.gallery-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover .gallery-image img {
  transform: scale(1.06);
}
.gallery-title {
  padding: 16px 18px 18px;
  font-size: 17px;
  font-weight: 600;
  color: #1f2937;
  line-height: 1.4;
}
.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(46, 125, 50, 0.14);
}

.gallery-item:hover::before,
.gallery-item:hover::after {
  opacity: 1;
}

@media (max-width: 991px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .gallery-item img {
    height: 220px;
  }
}

@media (max-width: 575px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item img {
    height: 280px;
  }
}

/* =========================================
   GK VEDA AUTHENTICATION
========================================= */

.auth-section {
  min-height: calc(100vh - 120px);
  padding: 80px 0;
  margin-top: 60px;
  background:
    radial-gradient(
      circle at 10% 20%,
      rgba(46, 125, 50, 0.08),
      transparent 35%
    ),
    #f7faf7;
}

.auth-wrapper {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.08);
}

.auth-intro {
  padding: 70px 55px;
  background: linear-gradient(145deg, #174d2a, #2e7d32);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.auth-eyebrow {
  font-size: 13px;
  letter-spacing: 3px;
  font-weight: 700;
}

.auth-intro h1 {
  margin: 25px 0 20px;
  font-size: clamp(38px, 4vw, 56px);
  line-height: 1.08;
  font-weight: 700;
}

.auth-intro h1 span {
  display: block;
  color: #d4af37;
}

.auth-intro > p {
  max-width: 440px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.8;
}

.auth-benefits {
  margin-top: 45px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.auth-benefits div {
  display: flex;
  align-items: center;
  gap: 14px;
}

.auth-benefits i {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  color: #d4af37;
}

.auth-card {
  padding: 60px 55px;
}

.auth-card-header span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #2e7d32;
}

.auth-card-header h2 {
  margin: 8px 0;
  font-size: 34px;
  color: #17221a;
}

.auth-card-header p {
  color: #6b7280;
  margin-bottom: 30px;
}

.auth-card label {
  display: block;
  margin-bottom: 7px;
  font-size: 14px;
  font-weight: 600;
  color: #27332a;
}

.auth-input {
  width: 100%;
  height: 52px;
  padding: 0 16px;
  border: 1px solid #dfe6df;
  border-radius: 12px;
  outline: none;
  transition: 0.25s;
  font-size: 14px;
}

.auth-input:focus {
  border-color: #2e7d32;
  box-shadow: 0 0 0 4px rgba(46, 125, 50, 0.08);
}

.auth-checkbox {
  display: flex !important;
  align-items: flex-start;
  gap: 9px;
  font-weight: 400 !important;
  color: #6b7280 !important;
  line-height: 1.5;
}

.auth-checkbox input {
  margin-top: 4px;
  accent-color: #2e7d32;
}

.auth-submit {
  width: 100%;
  height: 54px;
  border: none;
  border-radius: 13px;
  background: #2e7d32;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  transition: 0.3s;
}

.auth-submit:hover {
  background: #1f6425;
  transform: translateY(-2px);
}

.auth-footer {
  text-align: center;
  margin-top: 25px;
  color: #6b7280;
  font-size: 14px;
}

.auth-footer a {
  color: #2e7d32;
  font-weight: 600;
  text-decoration: none;
}

@media (max-width: 991px) {
  .auth-wrapper {
    grid-template-columns: 1fr;
    max-width: 650px;
  }

  .auth-intro {
    padding: 45px 40px;
  }

  .auth-intro h1 {
    font-size: 42px;
  }

  .auth-card {
    padding: 45px 40px;
  }
}

@media (max-width: 575px) {
  .auth-section {
    padding: 35px 15px;
  }

  .auth-intro {
    padding: 40px 25px;
  }

  .auth-intro h1 {
    font-size: 36px;
  }

  .auth-card {
    padding: 35px 22px;
  }
}

.auth-alert {
  padding: 13px 16px;
  border-radius: 10px;
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 1.5;
}
.auth-alert.success {
  background: #edf8ef;
  color: #23652a;
  border: 1px solid #cce8d0;
}
.auth-alert.error {
  background: #fff1f1;
  color: #a52828;
  border: 1px solid #f0cccc;
}
.password-field {
  position: relative;
}
.password-field .auth-input {
  padding-right: 50px;
}
.password-toggle {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  color: #68746b;
  font-size: 18px;
  cursor: pointer;
}
.account-banner {
  padding: 70px 0;
  background: linear-gradient(135deg, #173d21, #2e7d32);
  color: #fff;
}
.account-banner span,
.account-heading > span {
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 700;
}
.account-banner h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: 52px;
  margin: 10px 0;
}
.account-banner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
}
.account-section {
  padding: 70px 0;
  background: #f7faf7;
}
.account-menu {
  background: #fff;
  border: 1px solid #e7ece7;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.05);
}
.account-user {
  text-align: center;
  padding: 30px 20px;
  border-bottom: 1px solid #edf0ed;
}
.account-avatar {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: #edf6ee;
  color: #2e7d32;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 27px;
}
.account-user h4 {
  margin: 0;
  font-size: 17px;
}
.account-user span {
  display: block;
  margin-top: 5px;
  color: #7a847c;
  font-size: 13px;
}
.account-menu > a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 20px;
  color: #4b554d;
  text-decoration: none;
  border-bottom: 1px solid #f0f2f0;
  transition: 0.25s;
}
.account-menu > a:hover,
.account-menu > a.active {
  background: #f1f8f2;
  color: #2e7d32;
}
.account-menu > a i {
  font-size: 17px;
}
.account-menu .logout-link {
  color: #a33b3b;
}
.account-content {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.05);
}
.account-heading h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 38px;
  margin: 5px 0;
}
.account-heading p {
  color: #788078;
}
.account-card {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 25px;
  border: 1px solid #e6ece6;
  border-radius: 16px;
  text-decoration: none;
  color: #1d281f;
  transition: 0.3s;
}
.account-card:hover {
  transform: translateY(-4px);
  border-color: #2e7d32;
  box-shadow: 0 12px 25px rgba(46, 125, 50, 0.08);
}
.account-card i {
  font-size: 25px;
  color: #2e7d32;
  margin-bottom: 8px;
}
.account-card span {
  font-size: 13px;
  color: #7b847d;
}
.profile-summary {
  margin-top: 35px;
  padding-top: 30px;
  border-top: 1px solid #e9ede9;
}
.profile-summary-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}
.profile-summary-header h3 {
  font-size: 21px;
  margin: 0;
}
.profile-summary-header a {
  color: #2e7d32;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}
.profile-summary span {
  display: block;
  color: #8a938b;
  font-size: 12px;
  margin-bottom: 5px;
}
.profile-summary strong {
  font-size: 15px;
  font-weight: 600;
  color: #263029;
}
@media (max-width: 767px) {
  .account-banner {
    padding: 50px 0;
  }
  .account-banner h1 {
    font-size: 40px;
  }
  .account-content {
    padding: 25px;
  }
  .account-section {
    padding: 40px 0;
  }
}
.profile-section {
  padding: 70px 0;
  background: #f7faf7;
}
.profile-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.05);
}
.profile-card-header {
  margin-bottom: 30px;
}
.profile-card-header span {
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 700;
  color: #2e7d32;
}
.profile-card-header h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 38px;
  margin: 6px 0;
}
.profile-card label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #27332a;
  margin-bottom: 8px;
}
.profile-input {
  width: 100%;
  border: 1px solid #dfe6df;
  border-radius: 11px;
  padding: 13px 15px;
  outline: none;
  font-size: 14px;
  transition: 0.25s;
  background: #fff;
}
.profile-input:focus {
  border-color: #2e7d32;
  box-shadow: 0 0 0 4px rgba(46, 125, 50, 0.07);
}
.profile-input[readonly] {
  background: #f5f7f5;
  color: #7b847d;
  cursor: not-allowed;
}
.profile-textarea {
  resize: vertical;
  min-height: 100px;
}
.profile-card small {
  display: block;
  color: #89918b;
  font-size: 12px;
  margin-top: 6px;
}
.profile-save-btn {
  border: 0;
  background: #2e7d32;
  color: #fff;
  padding: 14px 25px;
  border-radius: 11px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: 0.25s;
}
.profile-save-btn:hover {
  background: #1f6425;
  transform: translateY(-2px);
}
@media (max-width: 767px) {
  .profile-card {
    padding: 25px;
  }
  .profile-section {
    padding: 40px 0;
  }
}
.checkout-section {
  padding: 70px 0;
  background: #f7faf7;
}
.checkout-card,
.checkout-summary {
  background: #fff;
  border: 1px solid #e8ede8;
  border-radius: 20px;
  padding: 35px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.04);
}
.checkout-card + .checkout-card {
  margin-top: 25px;
}
.checkout-summary {
  position: sticky;
  top: 30px;
}
.checkout-heading {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 30px;
}
.checkout-heading > span {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #edf6ee;
  color: #2e7d32;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}
.checkout-heading h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
  margin: 0;
}
.checkout-heading p {
  margin: 4px 0 0;
  color: #7d867f;
  font-size: 13px;
}
.checkout-card label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #29342b;
}
.checkout-card input:not([type="radio"]),
.checkout-card textarea {
  width: 100%;
  border: 1px solid #dfe6df;
  border-radius: 11px;
  padding: 13px 15px;
  outline: 0;
  font-size: 14px;
}
.checkout-card input:focus,
.checkout-card textarea:focus {
  border-color: #2e7d32;
  box-shadow: 0 0 0 4px rgba(46, 125, 50, 0.06);
}
.checkout-card textarea {
  resize: vertical;
}
.payment-option {
  border: 1px solid #dfe6df;
  border-radius: 14px;
  padding: 15px;
}
.payment-option label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0;
  cursor: pointer;
}
.payment-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: #edf6ee;
  color: #2e7d32;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.payment-option label > span:last-child {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.payment-option small {
  font-weight: 400;
  color: #818a83;
}
.checkout-products {
  margin-bottom: 25px;
}
.checkout-product {
  display: grid;
  grid-template-columns: 55px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #edf0ed;
}
.checkout-product img {
  width: 55px;
  height: 55px;
  object-fit: contain;
  border-radius: 9px;
  background: #f5f7f5;
}
.checkout-product div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.checkout-product div strong {
  font-size: 14px;
}
.checkout-product div span {
  font-size: 12px;
  color: #858d87;
}
.checkout-product > strong {
  font-size: 14px;
}
.checkout-summary .summary-row {
  display: flex;
  justify-content: space-between;
  padding: 13px 0;
  color: #657067;
}
.checkout-summary .summary-row.total {
  border-top: 1px solid #e4e9e4;
  margin-top: 8px;
  padding-top: 20px;
  color: #172119;
  font-size: 18px;
}
.checkout-submit {
  width: 100%;
  border: 0;
  background: #2e7d32;
  color: #fff;
  padding: 16px;
  border-radius: 12px;
  font-weight: 600;
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.checkout-submit:hover {
  background: #1f6425;
}
.checkout-note {
  text-align: center;
  color: #879087;
  font-size: 12px;
  margin: 15px 0 0;
}
.checkout-note i {
  color: #2e7d32;
}
@media (max-width: 991px) {
  .checkout-summary {
    position: static;
  }
}
@media (max-width: 767px) {
  .checkout-card,
  .checkout-summary {
    padding: 25px;
  }
  .checkout-section {
    padding: 40px 0;
  }
}

@media (max-width: 576px) {
  .gallery-section {
    padding: 40px 0;
  }

  .gallery-card {
    height: 260px;
  }

  .gallery-overlay {
    padding: 20px;
  }

  .gallery-overlay h5 {
    font-size: 22px;
  }
}

@media (max-width: 991px) {
  .newsletter-box {
    flex-direction: column;
    text-align: center;
    padding: 24px;
  }

  .newsletter-form {
    min-width: 100%;
  }

  .footer-features {
    grid-template-columns: repeat(2, 1fr);
  }
  .newsletter-box {
    gap: 10px;
  }
  .footer-features {
    margin-top: 10px;
  }
  .products-banner {
    margin-top: 64px;
  }
}

/* checkout.php css */

.checkout-field {
  position: relative;
}

.checkout-field .field-error {
  display: none;
  margin-top: 6px;
  color: #b42318;
  font-size: 11px;
  line-height: 1.4;
}

.checkout-field.has-error input,
.checkout-field.has-error textarea {
  border-color: #d66b6b;
  background: #fffafa;
  box-shadow: 0 0 0 3px rgba(198, 40, 40, 0.06);
}

.checkout-field.has-error .field-error {
  display: block;
}

.checkout-field.is-valid input,
.checkout-field.is-valid textarea {
  border-color: #8db492;
}

.checkout-field.is-valid .field-error {
  display: none;
}

.checkout-section {
  padding: 70px 0;
  background: #f7faf7;
  min-height: 60vh;
}

.checkout-submit.is-processing {
  cursor: wait;
  opacity: 0.8;
}

.checkout-submit-content {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.checkout-submit-spinner {
  width: 15px;
  height: 15px;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-top-color: #fff;
  border-radius: 50%;
  animation: checkoutSpinner 0.7s linear infinite;
}

@keyframes checkoutSpinner {
  to {
    transform: rotate(360deg);
  }
}

.checkout-card,
.checkout-summary {
  background: #fff;
  border: 1px solid #e5ebe5;
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 25px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.03);
}

.checkout-summary {
  position: sticky;
  top: 20px;
}

.checkout-heading {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  margin-bottom: 28px;
}

.checkout-heading > span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #edf7ee;
  color: #2e7d32;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

.checkout-heading h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 29px;
  margin: 0 0 3px;
}

.checkout-heading p {
  margin: 0;
  color: #858d87;
  font-size: 12px;
}

.checkout-card label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #4b554e;
  margin-bottom: 8px;
}

.checkout-card input,
.checkout-card textarea {
  width: 100%;
  border: 1px solid #dfe6df;
  border-radius: 9px;
  padding: 12px 14px;
  font-size: 13px;
  outline: none;
  background: #fff;
}

.checkout-card input:focus,
.checkout-card textarea:focus {
  border-color: #6b9570;
  box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.08);
}

.checkout-card input[readonly] {
  background: #f7f9f7;
  color: #788078;
}

.payment-option input {
  display: none;
}

.payment-option label {
  border: 1px solid #dfe6df;
  border-radius: 13px;
  padding: 17px;
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  margin: 0;
}

.payment-option input:checked + label {
  border-color: #2e7d32;
  background: #f5faf5;
}

.payment-icon {
  width: 43px;
  height: 43px;
  border-radius: 10px;
  background: #edf7ee;
  color: #2e7d32;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.payment-option strong {
  display: block;
  font-size: 13px;
  color: #29332c;
}

.payment-option small {
  display: block;
  font-size: 11px;
  color: #858d87;
  margin-top: 4px;
}

.checkout-products {
  border-top: 1px solid #edf0ed;
  border-bottom: 1px solid #edf0ed;
  margin-bottom: 15px;
}

.checkout-product {
  display: grid;
  grid-template-columns: 55px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid #edf0ed;
}

.checkout-product:last-child {
  border-bottom: 0;
}

.checkout-product img {
  width: 55px;
  height: 55px;
  object-fit: contain;
  border-radius: 9px;
  background: #f5f7f5;
}

.checkout-product strong {
  display: block;
  font-size: 12px;
}

.checkout-product span {
  display: block;
  font-size: 11px;
  color: #858d87;
  margin-top: 4px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 11px 0;
  color: #68716a;
  font-size: 13px;
}

.summary-row.total {
  border-top: 1px solid #e5ebe5;
  margin-top: 7px;
  padding-top: 18px;
  color: #172119;
  font-size: 19px;
}

.checkout-submit {
  width: 100%;
  border: 0;
  background: #2e7d32;
  color: #fff;
  padding: 15px;
  border-radius: 10px;
  margin-top: 20px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.checkout-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.checkout-note {
  text-align: center;
  color: #858d87;
  font-size: 11px;
  margin: 15px 0 0;
}

.checkout-error {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #fff8f7;
  color: #5f2b27;
  border: 1px solid #f0d8d4;
  border-left: 4px solid #c95b4d;
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 22px;
  font-size: 13px;
  line-height: 1.55;
  box-shadow: 0 5px 18px rgba(120, 50, 40, 0.04);
}

.checkout-error::before {
  content: "\f33a";
  font-family: "bootstrap-icons";
  flex: 0 0 auto;
  font-size: 18px;
  line-height: 1;
  color: #c95b4d;
  margin-top: 1px;
}

.login-gate {
  max-width: 620px;
  margin: 20px auto;
  background: #fff;
  border: 1px solid #e5ebe5;
  border-radius: 24px;
  padding: 45px 35px;
  text-align: center;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.04);
}

.gate-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin: 0 auto 18px;
  background: #edf7ee;
  color: #2e7d32;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.login-gate h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 34px;
  margin: 0 0 10px;
}

.login-gate p {
  color: #788078;
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 25px;
}

.gate-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.gate-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  padding: 13px 20px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
}

.gate-login {
  background: #2e7d32;
  color: #fff;
}

.gate-register {
  border: 1px solid #2e7d32;
  color: #2e7d32;
  background: #fff;
}

#checkoutApp {
  display: none;
}

.saved-addresses {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 10px;
}

#newAddressForm {
  margin-top: 18px;
  padding: 20px;
  border: 1px solid #e3e9e4;
  border-radius: 12px;
  background: #fafcfb;
}

#saveNewAddressBtn {
  background: #2e7d32;
  color: #fff;
  margin-top: 8px;
}

#saveNewAddressBtn:hover {
  background: #256b29;
}

.add-address-btn {
  margin-top: 12px;
  background: #fff;
  border: 1px solid #2e7d32;
  color: #2e7d32;
  border-radius: 8px;
  padding: 11px 18px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.address-type-options {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

.add-address-btn span {
  font-size: 18px;
  margin-right: 5px;
}

.add-address-btn:hover {
  background: #2e7d32;
  color: #fff;
}

.saved-address-card {
  position: relative;
  border: 1px solid #e1e6e2;
  border-radius: 12px;
  padding: 16px;
  background: #fff;
  transition: all 0.2s ease;
}

.saved-address-card.selected {
  border: 2px solid #2e7d32;
  background: #f7fbf7;
  box-shadow: 0 3px 10px rgba(46, 125, 50, 0.08);
}
.saved-address-card.selected::after {
  content: "✓ Selected";
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 12px;
  font-weight: 600;
  color: #2e7d32;
}

.saved-address-card:hover {
  border-color: #2e7d32;
}

.saved-address-header {
  padding-right: 80px;
  margin-bottom: 8px;
}
.saved-address-body {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
  word-break: break-word;
}

.use-address-btn {
  margin-top: 12px;
  border: 1px solid #2e7d32;
  border-radius: 7px;
  padding: 8px 14px;
  background: #fff;
  color: #2e7d32;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.address-type-btn:hover {
  border-color: #2e7d32;
  color: #2e7d32;
}

.address-type-btn.selected {
  background: #2e7d32;
  border-color: #2e7d32;
  color: #fff;
  box-shadow: 0 2px 6px rgba(46, 125, 50, 0.15);
}

.saved-address-card.selected .use-address-btn {
  background: #2e7d32;
  color: #fff;
}
.address-type-btn {
  min-width: 82px;
  padding: 9px 18px;

  border: 1px solid #cfd8d1;
  border-radius: 7px;

  background: #fff;
  color: #333;

  font-size: 14px;
  font-weight: 500;

  cursor: pointer;
  transition: all 0.2s ease;
}

.new-address-heading {
  margin-bottom: 18px;
}

.new-address-heading strong {
  display: block;
  font-size: 17px;
  color: #202820;
  margin-bottom: 4px;
}

.new-address-heading span {
  display: block;
  font-size: 13px;
  color: #777;
}

@media (max-width: 991px) {
  .checkout-summary {
    position: static;
  }
}

@media (max-width: 600px) {
  .checkout-section {
    padding: 45px 0;
  }

  .checkout-card,
  .checkout-summary {
    padding: 22px;
  }

  .login-gate {
    padding: 35px 20px;
  }

  .checkout-product {
    grid-template-columns: 48px 1fr;
  }

  .checkout-product > strong {
    grid-column: 2;
  }

  .checkout-product img {
    width: 48px;
    height: 48px;
  }
}

@media (max-width: 576px) {
  .address-type-options {
    gap: 8px;
  }

  .address-type-btn {
    flex: 1;
    min-width: 0;
    padding: 9px 10px;
  }

  #newAddressForm {
    padding: 15px;
  }
}

/* checkout.php css */

/* =========================================================
   CHECKOUT - SAVED ADDRESS
   ========================================================= */

.saved-addresses {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 12px;
}

.saved-address-card {
  position: relative;
  padding: 18px 18px 16px;
  border: 1px solid #e1e7e3;
  border-radius: 12px;
  background: #ffffff;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.saved-address-card:hover {
  border-color: #2f8f3a;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.05);
}

.saved-address-card.selected {
  border-color: #2f8f3a;
  background: #fbfffc;
  box-shadow: 0 0 0 1px rgba(47, 143, 58, 0.08);
}

/* Address type */

.saved-address-top {
  display: flex;
  align-items: center;
  margin-bottom: 9px;
}

.saved-address-type {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 20px;
  background: #edf7ef;
  color: #287c32;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

/* Customer */

.saved-address-customer {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
  color: #202522;
  font-size: 14px;
}

.saved-address-customer strong {
  font-weight: 600;
}

.saved-address-mobile {
  color: #68716c;
  font-size: 13px;
}

/* Address */

.saved-address-text {
  color: #3d4541;
  font-size: 14px;
  line-height: 1.55;
}

.saved-address-location {
  margin-top: 3px;
  color: #68716c;
  font-size: 13px;
  line-height: 1.5;
}

/* Full address */

.saved-address-full {
  display: none;
  margin-top: 12px;
  padding: 11px 12px;
  border-radius: 8px;
  background: #f7f9f8;
  color: #3d4541;
  font-size: 13px;
  line-height: 1.6;
}

.saved-address-card.address-expanded .saved-address-full {
  display: block;
}

/* Actions */

.saved-address-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 13px;
}

.saved-address-link,
.saved-address-use {
  border: 0;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.saved-address-link {
  padding: 0;
  color: #287c32;
}

.saved-address-link:hover {
  color: #1e6427;
  text-decoration: underline;
}

.saved-address-use {
  padding: 7px 13px;
  border: 1px solid #2f8f3a;
  border-radius: 7px;
  background: #ffffff;
  color: #287c32;
}

.saved-address-use:hover {
  background: #2f8f3a;
  color: #ffffff;
}

.saved-address-card.selected .saved-address-use {
  background: #2f8f3a;
  color: #ffffff;
}

/* Add new address */

#addNewAddressBtn {
  margin-top: 4px;
}

/* order_detail */
.order-details-section {
  padding: 70px 0;
  background: #f7faf7;
}

.order-details-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 35px;
  gap: 20px;
}

.order-details-header span {
  font-size: 11px;
  letter-spacing: 2px;
  color: #2e7d32;
  font-weight: 600;
}

.order-details-header h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: 44px;
  margin: 7px 0;
}

.order-details-header p {
  margin: 0;
  color: #818981;
  font-size: 13px;
}

.back-orders {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #2e7d32;
  font-size: 13px;
  font-weight: 600;
}

.details-card {
  background: #fff;
  border: 1px solid #e5ebe5;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.035);
  margin-bottom: 25px;
}

.details-card h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 29px;
  margin: 0 0 25px;
}

.status-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.status-box {
  padding: 13px 18px;
  background: #f7faf7;
  border-radius: 12px;
  min-width: 150px;
}

.status-box span {
  display: block;
  font-size: 11px;
  color: #858d87;
  margin-bottom: 5px;
}

.status-box strong {
  font-size: 14px;
  color: #273128;
  text-transform: capitalize;
}

.status-badge {
  color: #2e7d32 !important;
}

.order-detail-item {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  gap: 15px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid #edf0ed;
}

.order-detail-item:last-child {
  border-bottom: 0;
}

.order-detail-image {
  width: 70px;
  height: 70px;
  border-radius: 12px;
  background: #f5f7f5;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.order-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.order-detail-info strong {
  display: block;
  font-size: 15px;
  margin-bottom: 5px;
}

.order-detail-info span {
  font-size: 12px;
  color: #858d87;
  display: block;
  line-height: 1.6;
}

.order-detail-price {
  text-align: right;
}

.order-detail-price strong {
  font-size: 15px;
}

.order-detail-price span {
  display: block;
  font-size: 11px;
  color: #8a928b;
  margin-top: 5px;
}

.detail-summary {
  max-width: 420px;
  margin-left: auto;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  color: #68716a;
  font-size: 14px;
}

.summary-line.total {
  border-top: 1px solid #e4e9e4;
  margin-top: 8px;
  padding-top: 20px;
  color: #172119;
  font-size: 19px;
}

.address-content {
  line-height: 1.8;
  color: #68716a;
  font-size: 14px;
}

.address-content strong {
  color: #263128;
  font-size: 15px;
}

.order-actions {
  display: flex;
  gap: 12px;
  margin-top: 25px;
}

.order-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
}

.primary-action {
  background: #2e7d32;
  color: #fff;
}

.secondary-action {
  border: 1px solid #dce4dc;
  color: #29342b;
  background: #fff;
}

/* ==============================
            ORDER TRACKING TIMELINE
            ============================== */

.order-timeline {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  margin: 5px 0 35px;
  padding: 0 10px;
}

.order-timeline::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: #e4e9e4;
  z-index: 0;
}

.timeline-step {
  position: relative;
  z-index: 1;
  flex: 1;
  text-align: center;
  min-width: 0;
}

.timeline-icon {
  width: 46px;
  height: 46px;
  margin: 0 auto 10px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #dfe6df;
  color: #a1aaa2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
}

.timeline-step.active .timeline-icon {
  background: #2e7d32;
  border-color: #2e7d32;
  color: #fff;
}

.timeline-step.current .timeline-icon {
  box-shadow: 0 0 0 5px #edf7ee;
}

.timeline-step.cancelled .timeline-icon {
  background: #cb0e08;
  border-color: #cb0e08;
  color: #fff;
}

.timeline-step strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #29342b;
  white-space: nowrap;
}

.timeline-step span {
  display: block;
  margin-top: 4px;
  font-size: 10px;
  color: #8a928b;
}

/* order  */
.orders-section {
  padding: 70px 0;
  background: #f7faf7;
  min-height: 65vh;
}

.orders-heading {
  margin-bottom: 35px;
}

.orders-heading span {
  font-size: 11px;
  letter-spacing: 2px;
  color: #2e7d32;
  font-weight: 600;
}

.orders-heading h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: 46px;
  margin: 7px 0;
}

.orders-heading p {
  color: #7e8780;
  margin: 0;
}

/*
        |--------------------------------------------------------------------------
        | ORDERS CARD
        |--------------------------------------------------------------------------
        */

.orders-card {
  background: #fff;
  border: 1px solid #e5ebe5;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.03);
}

/*
        |--------------------------------------------------------------------------
        | ORDER ROW
        |--------------------------------------------------------------------------
        */

.order-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 24px 28px;
  border-bottom: 1px solid #edf0ed;
}

.order-row:last-child {
  border-bottom: 0;
}

/*
        |--------------------------------------------------------------------------
        | ORDER INFORMATION
        |--------------------------------------------------------------------------
        */

.order-info {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 240px;
}

.order-icon {
  width: 48px;
  height: 48px;
  border-radius: 13px;
  background: #edf7ee;
  color: #2e7d32;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 21px;
  flex-shrink: 0;
}

.order-number {
  font-weight: 600;
  color: #29332c;
  font-size: 14px;
}

.order-date {
  font-size: 12px;
  color: #858d87;
  margin-top: 5px;
}

/*
        |--------------------------------------------------------------------------
        | ORDER DETAILS
        |--------------------------------------------------------------------------
        */

.order-middle {
  display: flex;
  align-items: center;
  gap: 25px;
  flex: 1;
}

.order-meta {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.order-meta-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #9aa29c;
  font-weight: 600;
}

.order-meta-value {
  font-size: 12px;
  color: #39433c;
  font-weight: 600;
}

/*
        |--------------------------------------------------------------------------
        | ORDER RIGHT
        |--------------------------------------------------------------------------
        */

.order-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.order-total {
  font-weight: 700;
  color: #29332c;
  white-space: nowrap;
}

/*
        |--------------------------------------------------------------------------
        | STATUS BADGES
        |--------------------------------------------------------------------------
        */

.order-status,
.payment-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  font-size: 10px;
  font-weight: 700;

  text-transform: capitalize;

  padding: 7px 12px;

  border-radius: 30px;

  white-space: nowrap;
}

.status-placed,
.status-confirmed,
.status-processing {
  background: #edf7ee;
  color: #2e7d32;
}

.status-shipped {
  background: #eef5ff;
  color: #2463a6;
}

.status-delivered {
  background: #e9f8f0;
  color: #147a4b;
}

.status-cancelled {
  background: #fff0f0;
  color: #b42318;
}

.status-default {
  background: #f1f3f1;
  color: #69736b;
}

.payment-paid {
  background: #e9f8f0;
  color: #147a4b;
}

.payment-pending {
  background: #fff8e7;
  color: #9a6700;
}

.payment-failed {
  background: #fff0f0;
  color: #b42318;
}

.payment-refunded {
  background: #eef2ff;
  color: #4b55a2;
}

.payment-default {
  background: #f1f3f1;
  color: #69736b;
}

/*
        |--------------------------------------------------------------------------
        | VIEW BUTTON
        |--------------------------------------------------------------------------
        */

.order-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  background: #1d2b20;
  color: #fff;

  text-decoration: none;

  padding: 10px 16px;

  border-radius: 9px;

  font-size: 12px;

  transition: 0.25s;

  white-space: nowrap;
}

.order-btn:hover {
  background: #2e7d32;
  color: #fff;
}

/*
        |--------------------------------------------------------------------------
        | EMPTY ORDERS
        |--------------------------------------------------------------------------
        */

.empty-orders {
  text-align: center;
  padding: 70px 30px;
}

.empty-orders i {
  font-size: 50px;
  color: #aeb9b0;
}

.empty-orders h3 {
  font-family: "Cormorant Garamond", serif;

  font-size: 30px;

  margin: 15px 0 8px;
}

.empty-orders p {
  color: #858d87;

  font-size: 13px;

  margin-bottom: 22px;
}

.shop-btn {
  display: inline-block;

  background: #1d2b20;

  color: #fff;

  text-decoration: none;

  padding: 12px 22px;

  border-radius: 10px;

  font-size: 13px;
}

.shop-btn:hover {
  background: #2e7d32;
  color: #fff;
}
.out-of-stock-btn {
    background: #f5f5f5 !important;
    border-color: #ddd !important;
    color: #777 !important;
    cursor: not-allowed !important;
    opacity: 1 !important;
}
.out-of-stock-cart-item {
    opacity: 0.75;
}

.out-of-stock-cart-item .stock-warning {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    padding: 6px 10px;
    border-radius: 6px;
    background: #f5f5f5;
    color: #777;
    font-size: 13px;
    font-weight: 600;
}

.out-of-stock-cart-item .remove-item {
    cursor: pointer;
}