﻿@import url("https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap");

/* ── Page Loader ─────────────────────────────────────── */
#pageLoader {
  position: fixed;
  inset: 0;
  background: #ffffff;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
  transition:
    opacity 0.4s ease,
    visibility 0.4s ease;
}

#pageLoader.loader-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-logo {
  width: 160px;
  animation: loaderPulse 1.6s ease-in-out infinite;
}

.loader-track {
  width: 180px;
  height: 3px;
  background: #e8f5e9;
  border-radius: 100px;
  overflow: hidden;
}

.loader-bar {
  height: 100%;
  width: 40%;
  background: var(--green-color);
  border-radius: 100px;
  animation: loaderSlide 1.1s ease-in-out infinite;
}

@keyframes loaderPulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.75;
    transform: scale(0.96);
  }
}

@keyframes loaderSlide {
  0% {
    transform: translateX(-100%);
  }
  60% {
    transform: translateX(350%);
  }
  100% {
    transform: translateX(350%);
  }
}
/* ── End Page Loader ─────────────────────────────────── */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --red-color: #ed1b24;
  --green-color: #00a652;
}

body {
  background: white;
  font-family: "Work Sans", sans-serif !important;
}
a {
  text-decoration: none;
}
.box {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

.our-services {
  margin-top: 75px;
  padding-bottom: 30px;
  padding: 0 60px;
  min-height: 198px;
  text-align: center;
  border-radius: 10px;
  background-color: #fff;
  transition: all 0.4s ease-in-out;
  box-shadow: 0 0 25px 0 rgba(20, 27, 202, 0.17);
}

.our-services .icon {
  margin-bottom: -21px;
  transform: translateY(-50%);
  text-align: center;
}

.our-services:hover h4,
.our-services:hover p {
  color: #fff;
}

.speedup:hover {
  box-shadow: 0 0 25px 0 rgba(20, 27, 201, 0.05);
  cursor: pointer;
  background-image: linear-gradient(-45deg, #fb0054 0%, #f55b2a 100%);
}

.settings:hover {
  box-shadow: 0 0 25px 0 rgba(20, 27, 201, 0.05);
  cursor: pointer;
  background-image: linear-gradient(-45deg, #34b5bf 0%, #210c59 100%);
}

.privacy:hover {
  box-shadow: 0 0 25px 0 rgba(20, 27, 201, 0.05);
  cursor: pointer;
  background-image: linear-gradient(-45deg, #3615e7 0%, #44a2f6 100%);
}

.backups:hover {
  box-shadow: 0 0 25px 0 rgba(20, 27, 201, 0.05);
  cursor: pointer;
  background-image: linear-gradient(-45deg, #fc6a0e 0%, #fdb642 100%);
}

.ssl:hover {
  box-shadow: 0 0 25px 0 rgba(20, 27, 201, 0.05);
  cursor: pointer;
  background-image: linear-gradient(-45deg, #8d40fb 0%, #5a57fb 100%);
}

.database:hover {
  box-shadow: 0 0 25px 0 rgba(20, 27, 201, 0.05);
  cursor: pointer;
  background-image: linear-gradient(-45deg, #27b88d 0%, #22dd73 100%);
}

/* ── Fixed Navbar Wrapper ─────────────────────────────── */
.navbar-fixed-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1040;
  background: #fff;
}

/* Navbar Styles */
.top-nav {
  background: #ffffff;
  border-bottom: 1px solid #eef0f2;
  padding: 0.5rem 0;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: bold;
  position: relative;
  display: flex;
  align-items: center;
}

.navbar-brand img {
  width: 150px;
  padding-left: 15px;
}

.top-nav .navbar-brand {
  position: static;
  left: auto;
  transform: none;
  top: auto;
  z-index: auto;
  padding: 0;
  display: flex;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .navbar-brand img {
    height: 80px;
    width: 150px;
  }
}

/* Search Container */
.search-container {
  position: relative;
  flex-grow: 1;
  max-width: 100%;
  margin: 0 2rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #e9ecef;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.search-container:focus-within {
  border-color: var(--green-color);
  box-shadow: 0 6px 16px rgba(0, 166, 82, 0.2);
}

.search-container input {
  border-radius: 999px 0 0 999px;
  border: none;
  height: 45px;
  font-size: 1rem;
  padding: 0.5rem 1.25rem;
  background: transparent;
}

.search-container input:focus {
  outline: none;
  box-shadow: none;
}

.search-container input::placeholder {
  color: #9aa0a6;
}

.search-container button {
  border-radius: 0 999px 999px 0;
  border: none;
  width: 50px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-color);
  color: #fff;
}

.search-container button i {
  font-size: 1.1rem;
}

.search-container button:hover {
  background: var(--green-color);
  filter: brightness(0.95);
}

/* Mobile Search Styles */
@media (max-width: 991px) {
  .search-container {
    position: relative;
    margin: 0.5rem 1rem;
    width: 100%;
    max-width: none;
    order: 3;
    flex-basis: 100%;
  }

  .navbar > .container-fluid {
    flex-wrap: wrap;
  }

  .search-container input {
    height: 40px;
    font-size: 0.95rem;
  }

  .search-container button {
    height: 45px;
    width: 45px;
  }
}

/* Nav Items */
.nav-items {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.nav-cta {
  color: var(--green-color) !important;
}
.nav-item {
  margin-right: 10px;
  font-size: 0.85rem !important;
}
.top-nav .nav-items .nav-item {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.4rem 0.65rem;
  color: #2b2b2b;
  text-decoration: none;
  transition:
    background 0.3s ease,
    color 0.3s ease;
}

.top-nav .nav-items .nav-item:hover {
  color: var(--red-color);
  text-decoration: none;
}

.top-nav .nav-items .nav-item:hover .nav-item-label,
.top-nav .nav-items .nav-item:hover .nav-item-value {
  color: var(--red-color);
}

.top-nav .nav-items .nav-item .nav-item-icon {
  position: relative;
  font-size: 1.4rem;
  color: var(--green-color);
  flex-shrink: 0;
}

.top-nav .nav-items .nav-item .nav-item-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.top-nav .nav-items .nav-item .nav-item-label {
  font-size: 0.7rem;
  color: #666;
  font-weight: 400;
  white-space: nowrap;
}

.top-nav .nav-items .nav-item .nav-item-value {
  font-size: 0.85rem;
  color: #2b2b2b;
  font-weight: 700;
  white-space: nowrap;
}

.top-nav .nav-items .nav-item .nav-fav-count {
  position: absolute;
  top: -6px;
  right: -8px;
  background: var(--red-color);
  color: #fff;
  border-radius: 50%;
  font-size: 0.6rem;
  width: 16px;
  height: 16px;
  display: none;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

/* Bottom Navbar */
.bottom-nav {
  background-color: #e3fded;
  padding: 10px 0;
  min-height: 46px;
}

.bottom-nav .nav-link {
  color: #333;
  /* font-weight: 500; */
  font-size: 0.75rem;
}

/* Responsive Design */
@media (max-width: 991px) {
  .search-container {
    display: block;
  }

  .nav-items {
    gap: 1rem;
  }

  .top-nav .nav-items .nav-item span {
    display: none;
  }
}

/* Navbar — medium desktop (992 – 1420px) */
@media (min-width: 992px) and (max-width: 1420px) {
  .search-container {
    margin: 0 1rem;
  }

  .nav-items {
    gap: 0.15rem;
  }

  .top-nav .nav-items .nav-item {
    gap: 0.45rem;
    padding: 0.35rem 0.45rem;
  }

  .top-nav .nav-items .nav-item .nav-item-icon {
    font-size: 1.2rem;
  }

  .top-nav .nav-items .nav-item .nav-item-label {
    font-size: 0.62rem;
  }

  .top-nav .nav-items .nav-item .nav-item-value {
    font-size: 0.78rem;
  }
}

/* Navbar — narrow desktop (992 – 1100px): icon-only, hide text */
@media (min-width: 992px) and (max-width: 1100px) {
  .search-container {
    margin: 0 0.5rem;
  }

  .top-nav .nav-items .nav-item .nav-item-text {
    display: none;
  }

  .top-nav .nav-items .nav-item {
    padding: 0.35rem 0.5rem;
  }

  .top-nav .nav-items .nav-item .nav-item-icon {
    font-size: 1.3rem;
  }
}

/* Hero Section */
.hero-section {
  padding: 2rem 0;
  background-color: #fff;
  margin: 0 2rem;
}

.sales-section {
  padding: 2rem 0.5rem;
}

.promo-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.promo-card:hover {
  transform: translateY(-5px);
}

.promo-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.banner-right {
  height: 320px;
  overflow: hidden;
  /* Ensure overflow is hidden */
}

.long-banner {
  height: auto;
  /* or your desired height */
}

.promo-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: white;
}

.main-banner {
  height: 421px;
}

.main-banner .promo-content {
  padding: 2rem;
}

.main-banner h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.small-banner {
  height: 210px;
  overflow: hidden;
}

.small-banner h3 {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.long-banner {
  height: 230px;
  /* Adjust this to match the remaining space */
  margin-top: -0.5rem;
  /* Adjust if needed to reduce gap */
  overflow: hidden;
  /* Ensure overflow is hidden */
}

.long-banner img {
  width: 100%;
  height: 100%;
  /* Ensure the image takes full height */
  object-fit: cover;
  /* Cover to maintain aspect ratio */
}

.long-banner .promo-content {
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
  text-align: left;
  padding-left: 3rem;
}

#shopNowBtn:hover {
  background-color: var(--green-color);
  color: white;
  border-color: var(--green-color);
}

@media (max-width: 991px) {
  .long-banner {
    height: 150px;
  }
}

.promo-content p {
  margin-bottom: 1rem;
  opacity: 0.9;
}

.promo-content .btn {
  padding: 0.5rem 1.5rem;
  font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .main-banner {
    height: 350px;
  }

  .small-banner {
    height: 175px;
  }

  .main-banner h2 {
    font-size: 2rem;
  }

  .small-banner h3 {
    font-size: 1.25rem;
  }

  /* Stack all banners on mobile */
  .row > [class*="col-"] {
    margin-bottom: 1rem;
  }
}

/* Carousel Styles */
.carousel-indicators {
  margin-bottom: 3rem;
}

.carousel-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin: 0 5px;
}

.carousel-control-prev,
.carousel-control-next {
  width: 5%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.carousel:hover .carousel-control-prev,
.carousel:hover .carousel-control-next {
  opacity: 1;
}

.carousel-item {
  transition: transform 0.6s ease-in-out;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  /* Hide side banners on mobile */
  .hidden-on-mobile {
    display: none;
  }

  .hero-section {
    margin: 0;
  }

  /* Make main banner full width on mobile */
  .col-lg-6 {
    width: 100%;
  }

  .main-banner {
    height: 350px;
  }

  .small-banner {
    height: 175px;
  }

  /* Stack all banners on mobile */
  .row > [class*="col-"] {
    margin-bottom: 1rem;
  }
}

/* Offcanvas Styles */
/* .offcanvas {
  max-width: 500px;
} */

.offcanvas .dropdown-menu {
  position: static !important;
  border: none;
  padding-left: 1.5rem;
  margin-top: 0;
  background: transparent;
}

.offcanvas .nav-link {
  padding: 0.5rem 0;
}

.offcanvas .dropdown-toggle::after {
  float: right;
  margin-top: 0.5rem;
}

.offcanvas-body {
  max-height: calc(100vh - 60px);
  overflow-y: auto;
}

#categoriesSubmenu {
  margin-top: 0.5rem;
}

#categoriesSubmenu .nav-link {
  padding-left: 1rem;
  font-size: 0.95rem;
}

.filter-section {
  margin-bottom: 2rem;
  max-height: 60vh;
  overflow-y: auto;
}

.filter-section h6 {
  margin-bottom: 1rem;
  font-weight: 600;
  position: sticky;
  top: 0;
  background: white;
  padding: 0.5rem 0;
  z-index: 1;
}

.form-check {
  margin-bottom: 0.5rem;
}

.price-inputs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.price-inputs input {
  width: 100px;
}

.price-inputs span {
  color: #666;
}

/* Mobile Navigation Button */
.navbar-toggler {
  border: none;
  padding: 0.5rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* Filter Button */
.btn-outline-primary {
  border-color: var(--green-color);
  color: var(--green-color);
}

.btn-outline-primary:hover {
  background-color: var(--green-color);
  border-color: var(--green-color);
}

/* Main Menu Styles */
.main-menu-section {
  margin-bottom: 1rem;
}

.main-menu-section .nav-item {
  margin-bottom: 0.5rem;
}

.main-link {
  font-size: 1.1rem;
  font-weight: 500;
  color: #333;
  padding: 0.75rem 1rem !important;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.main-link:hover {
  background-color: #f8f9fa;
  color: var(--green-color);
}

.main-link i {
  margin-right: 0.75rem;
  width: 20px;
  text-align: center;
}

.divider {
  height: 1px;
  background-color: #e9ecef;
  margin: 1rem 0;
}

/* Main Navbar Dropdown */
.navbar .dropdown-menu:not(.position-static) {
  position: absolute !important;
  border: 1px solid rgba(0, 0, 0, 0.15);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  background: white;
  margin-top: 0;
  z-index: 1000;
}

/* Only apply position-static to offcanvas dropdowns */
.offcanvas .dropdown-menu.position-static {
  position: static !important;
  border: none;
  box-shadow: none;
  background: transparent;
}

/* Product Section Styles */
.products-section {
  padding: 3rem 0;
  background-color: #fff;
  margin: 0 2rem;
}

.section-title {
  text-align: start;
  color: #333;
  margin-bottom: 0;
}

.section-header {
  display: flex;
  justify-content: space-between;
  /* Space between title and link */
  align-items: center;
  margin-bottom: 2rem;
  /* Vertically align items */
}

.section-header::before {
  content: "";
  position: absolute;
  background-color: var(--green-color);
  width: 7px;
  height: 40px;
  margin-left: -20px;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem;
  z-index: 2;
  position: relative;
}

.view-all {
  background-color: var(--red-color);
  padding: 10px 20px;
  color: white;
  border-radius: 10px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.view-all:hover {
  background-color: var(--green-color);
}

/* Product Card Styles */
.product-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 0.5rem;
  height: auto;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  border-color: var(--green-color);
  box-shadow: 0 4px 15px rgba(0, 166, 82, 0.1);
  transform: translateY(-3px);
}

.product-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  height: 100%;
}

.product-image {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  margin-bottom: 0.5rem;
  display: block;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
  border-radius: 4px;
}

/* Mobile Specific Styles */
@media (max-width: 768px) {
  .product-card {
    padding: 0.75rem;
    margin-bottom: 1rem;
  }

  .product-image {
    margin-bottom: 0.75rem;
  }

  /* Ensure grid columns work on mobile */
  .col-6 {
    width: 50%;
    float: left;
    padding: 0.5rem;
  }

  /* Clear the float every 2 items */
  .col-6:nth-child(2n + 1) {
    clear: left;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }
}

/* Price Styles */
.regular-price {
  text-decoration: line-through;
  color: #999;
  margin-right: 0.5rem;
  font-size: 1.5rem;
}

.sale-price {
  color: var(--green-color);
  font-weight: 300;
  font-size: 1.5rem;
}

/* Category Badge */
.product-category {
  display: inline-block;
  margin-bottom: 0.5rem;
  font-size: 0.75rem;
}

/* Product Badge (Sale) */
.product-badge {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  z-index: 1;
}

.product-actions {
  position: absolute;
  right: 8px;
  top: 8px;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  opacity: 1;
  transform: translateX(0);
  transition: all 0.2s ease;
  z-index: 2;
}

.product-actions button {
  border: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  color: #555;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.14);
}

.product-card:hover .product-actions {
  opacity: 1;
  transform: translateX(0);
}

.btn-quick-view,
.btn-add-cart,
.btn-favorite {
  border: none;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #333;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.btn-quick-view:hover,
.btn-add-cart:hover,
.btn-favorite:hover {
  background: var(--green-color);
  color: #fff;
}

.btn-favorite.is-favorite {
  background: var(--red-color);
  color: #fff;
}

.btn-favorite.is-favorite:hover {
  background: var(--red-color);
}

.product-badge {
  position: absolute;
  left: 10px;
  top: 10px;
  z-index: 1;
}

.product-info {
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.mainNewPromoBanner {
  padding: 3rem 0;
  margin: 0 2rem;
}

@media (max-width: 767.98px) {
  .mainNewPromoBanner {
    display: none;
  }
}

.product-title {
  text-align: center;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-clamp: 2;
  line-height: 1.4;
  overflow: hidden;
  position: relative;
  font-size: 14px;

  height: 2.8em;
  padding-top: 0.7em;
  padding-bottom: 0.7em;
}

.product-title a {
  color: #333;
  text-decoration: none;
  display: -webkit-box;

  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-title a:hover {
  color: var(--green-color);
}

.product-price {
  margin-top: 0;
  /* Reduce space above the price */
  margin-bottom: 0.6rem;
  /* Reduce space below the price */
  font-size: 0.9rem;
  font-size: 14px;
}

.product-cart-controls {
  margin-top: 0.5rem;
}

.btn.btn-warning {
  padding: 0.4rem 0.75rem;
  /* Adjust button padding for better alignment */
  font-size: 0.9rem;
}

.regular-price {
  color: var(--red-color);
  text-decoration: line-through;
  margin-right: 0.5rem;
  font-size: 0.9rem;
  font-size: 14px;
}

.sale-price {
  color: var(--green-color);
  font-weight: 300;
  font-size: 1.1rem;
}

.product-meta {
  font-size: 0.85rem;
  color: #666;
  display: flex;
  justify-content: space-between;
}

.product-rating i {
  color: #ffcc00;
  margin-right: 2px;
}

.product-rating {
  margin: 0.6rem;
}

.total-reviews {
  margin-left: 0.3rem;
  /* Slight space between stars and review count */
  color: #999;
  font-size: 15px;
}

/* Skeleton Styles */
.skeleton {
  animation: skeleton-loading 1s linear infinite alternate;
}

.skeleton-box {
  height: 20px;
  margin-bottom: 0.5rem;
  border-radius: 4px;
  background: #f0f0f0;
}

.skeleton .product-image {
  background: #f0f0f0;
}

.loading-card {
  min-height: 100%;
  padding-bottom: 0.75rem;
}

.loading-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  margin-bottom: 0.8rem;
}

.loading-line {
  height: 14px;
  border-radius: 999px;
}

.loading-button {
  height: 38px;
  border-radius: 10px;
  margin-top: 0.5rem;
}

.pd-content-hidden {
  display: none;
}
.pd-page {
  margin-top: 12rem !important;
}
.pd-page-skeleton {
  padding-bottom: 1rem;
}

.pd-3col-skeleton {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) 340px;
  gap: 1.25rem;
  align-items: start;
}

.pd-skeleton-rail,
.pd-skeleton-main,
.pd-skeleton-panel {
  background: #fff;
  border: 1px solid #e6edf3;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

.pd-skeleton-rail {
  padding: 1rem 0.75rem;
  display: grid;
  gap: 0.75rem;
}

.pd-skeleton-thumb {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  background: #f0f0f0;
}

.pd-skeleton-main {
  padding: 1rem;
}

.pd-skeleton-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 18px;
  background: #f0f0f0;
  margin-bottom: 1rem;
}

.pd-skeleton-line,
.pd-skeleton-paragraph,
.pd-skeleton-chip,
.pd-skeleton-price,
.pd-skeleton-qty,
.pd-skeleton-button {
  background: #f0f0f0;
}

.pd-skeleton-line {
  height: 18px;
  border-radius: 999px;
  margin-bottom: 0.7rem;
}

.pd-skeleton-line-sm {
  height: 14px;
}

.pd-skeleton-line-xs {
  height: 12px;
}

.pd-skeleton-paragraph {
  height: 96px;
  border-radius: 16px;
  margin-bottom: 0.75rem;
}

.pd-skeleton-paragraph.short {
  height: 56px;
}

.pd-skeleton-panel {
  padding: 1rem;
  display: grid;
  gap: 0.85rem;
}

.pd-skeleton-chip {
  height: 34px;
  border-radius: 999px;
}

.pd-skeleton-price {
  height: 60px;
  border-radius: 16px;
}

.pd-skeleton-qty {
  height: 56px;
  border-radius: 16px;
}

.pd-skeleton-button {
  height: 48px;
  border-radius: 14px;
}

.pd-skeleton-button.secondary {
  height: 42px;
}

@media (max-width: 991.98px) {
  .pd-3col-skeleton {
    grid-template-columns: 1fr;
  }

  .pd-skeleton-rail {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 575.98px) {
  .pd-skeleton-rail {
    grid-template-columns: repeat(4, minmax(64px, 1fr));
  }
}

@keyframes skeleton-loading {
  0% {
    opacity: 0.6;
  }

  100% {
    opacity: 1;
  }
}

/* Global button shadow — buttons and CTAs only */
.btn {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.09);
  transition: box-shadow 0.2s ease;
}
.btn:hover {
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.13);
}
.btn:active {
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

/* Add to Cart Button Styles */
.btn-primary {
  background-color: var(--green-color);
  border-color: var(--green-color);
}

.btn-primary:hover {
  background-color: var(--green-color);
  border-color: var(--green-color);
}

.btn-primary:active,
.btn-primary:focus {
  background-color: #078807 !important;
  border-color: #078807 !important;
  box-shadow: 0 0 0 0.25rem rgba(10, 173, 10, 0.25) !important;
}

/* Optional: Add title tooltip using data attribute */
.product-title[data-title]:hover:after {
  content: attr(data-title);
  position: absolute;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 0.5rem;
  border-radius: 4px;
  font-size: 0.9rem;
  z-index: 10;
  width: max-content;
  max-width: 200px;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

body {
  font-family: "Inter", sans-serif;
}

.sale-price {
  font-weight: 300;
  font-size: 1.1rem;
}

.regular-price {
  font-size: 0.9rem;
  font-weight: 400;
}

.section-title {
  font-weight: 700;
  letter-spacing: -0.5px;
  font-size: 1.5rem;
}

/* Add these styles */
.product-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.product-card-link:hover {
  color: inherit;
}

/* Update existing styles */

/* Enhanced Product Details Page Styles */
.product-details-page {
  padding-top: 2rem;
}

.main-image-container {
  position: relative;
  overflow: hidden;
  background: white;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 1rem;
}

.main-image-container img {
  width: 100%;
  height: auto;
  object-fit: contain;
  max-height: 400px;
  transition: transform 0.3s ease;
  cursor: zoom-in;
}

.main-image-container img.zoomed {
  transform: scale(2);
  cursor: zoom-out;
}

/* Ensure zoom container stays above other elements */
.main-image-container.zooming {
  z-index: 1000;
}

/* Remove conflicting styles */
.zoom-image {
  /* Remove this class as we're applying styles directly to img */
  transition: none;
}

.zoom-image.zoomed {
  /* Remove this class as we're applying styles directly to img */
  transform: none;
}

.thumbnail-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 0.5rem;
  margin-top: 1rem;
}

.thumbnail {
  width: 100px;
  height: 100px;
  border: 2px solid #eee;
  border-radius: 8px;
  cursor: pointer;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.thumbnail.active {
  border-color: var(--green-color);
}

.product-info-container {
  background: white;
  border-radius: 12px;
  padding: 1rem;
  height: 100%;
}

.product-title {
  font-size: 1.75rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  color: #666;
  font-size: 0.9rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #eee;
}

.pricing {
  margin: 1.5rem 0;
}

.current-price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.sale-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--red-color);
}

.regular-price {
  font-size: 0.8rem !important;
  color: #666;
}

.short-description {
  color: #444;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.quantity-selector {
  background: #f8f9fa;
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.quantity-selector label {
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.quantity-selector .input-group {
  width: 140px;
  background: white;
  border-radius: 6px;
  overflow: hidden;
}

.quantity-selector .btn {
  background: white;
  border: none;
  color: var(--green-color);
  font-weight: bold;
  width: 32px;
  padding: 0;
}

.quantity-selector .form-control {
  border: none;
  text-align: center;
  font-weight: 500;
}

.add-to-cart-btn {
  font-size: 1.1rem;
  padding: 1rem;
  margin-bottom: 1.5rem;
}

.additional-info {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
  margin-top: 2rem;
}

.additional-info p {
  margin-bottom: 0.75rem;
  display: flex;
  justify-content: space-between;
}

.additional-info strong {
  color: #666;
}

/* Product Tabs */
.nav-tabs {
  border: none;
  margin-bottom: -1px;
}

.nav-tabs .nav-link {
  border: none;
  color: #666;
  font-weight: 500;
  padding: 1rem 1.5rem;
}

.nav-tabs .nav-link.active {
  background: white;
  color: var(--green-color);
  border-radius: 8px 8px 0 0;
  border: 1px solid #dee2e6;
  border-bottom: none;
}

.tab-content {
  background: white;
  border-radius: 0 8px 8px 8px;
  padding: 2rem !important;
}

/* Stock Status Badge */
.stock-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.in-stock {
  background: #e8f5e9;
  color: #2e7d32;
}

.out-of-stock {
  background: #ffebee;
  color: #c62828;
}

/* Delivery Info */
.delivery-info {
  margin-top: 1rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 8px;
}

.delivery-info i {
  color: var(--green-color);
  margin-right: 0.5rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .thumbnail {
    width: 80px;
    height: 80px;
  }
}

/* Image Zoom Styles */
.main-image-container {
  position: relative;
  overflow: hidden;
}

.zoom-image {
  transition: transform 0.3s ease;
  cursor: zoom-in;
}

.zoom-image.zoomed {
  transform: scale(1.5);
  cursor: zoom-out;
}

/* Quantity Selector Styles */
.quantity-wrapper {
  display: inline-flex;
  align-items: center;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  overflow: hidden;
  background: white;
}

.quantity-btn {
  border: none;
  background: white;
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  color: var(--green-color);
  cursor: pointer;
  transition: all 0.2s;
}

.quantity-btn:hover {
  background: #f8f9fa;
}

.quantity-input {
  width: 60px;
  border: none;
  text-align: center;
  font-size: 1rem;
  padding: 0.5rem;
  -moz-appearance: textfield;
}

.quantity-input::-webkit-outer-spin-button,
.quantity-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Product Card Title (in listing) */
.product-card .product-title {
  font-size: 0.8rem;
  font-weight: 300;
  margin-bottom: 0.5rem;
  line-height: 1;
  height: 2.8em;
}

.ratingsHolder {
  background-color: var(--green-color) !important;
}

.heart-icon {
  font-size: 1.5rem;
  transition: color 0.3s ease;
  /* Smooth transition for color */
}

.heart-icon:hover {
  color: red;
  /* Change the color on hover */
  cursor: pointer;
}

.heart-icon::before {
  content: "\f004";
  /* Unicode for the outlined heart */
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
  /* Regular weight for outlined heart */
}

.heart-icon:hover::before {
  content: "\f004";
  /* Unicode for the filled heart */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  /* Solid weight for filled heart */
}

/* Product Details Title (single product page) */
.product-info-container .product-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  height: auto;
  text-align: start;
}

/* Adjust product meta for better visibility */
.product-meta span {
  font-size: 0.95rem;
}

/* Product Card Price (in listing) */
.product-card .sale-price {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--green-color);
}

.gh-label {
  font-size: 0.75rem;
  color: #666;
  margin-top: 0.5rem;
}
/* Product Details Price (single product page) */
.product-info-container .sale-price {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
}

/* Add to Cart Button Styles */
.card-add-to-cart {
  font-size: 0.9rem;
  padding: 0.5rem;
}

.product-details-add-to-cart {
  font-size: 1.1rem;
  padding: 1rem;
  margin-bottom: 1.5rem;
}

/* Product Details Specific Styles */
.product-details-page .product-info-container {
  background: white;
  border-radius: 12px;
  padding: 1rem;
  height: 100%;
}

.product-details-page .short-description {
  color: #444;
  line-height: 1.6;
  margin-bottom: 2rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 8px;
}

.product-details-page .product-details-add-to-cart {
  background-color: var(--green-color);
  border-color: var(--green-color);
  color: white;
  font-weight: 500;
  margin-top: 1rem;
  padding: 1rem 2rem;
}

.product-details-page .product-details-add-to-cart:hover {
  background-color: var(--green-color);
  border-color: var(--green-color);
}

.product-details-page .product-details-add-to-cart:disabled {
  background-color: #6c757d;
  border-color: #6c757d;
  cursor: not-allowed;
}

/* Product Details - Enhanced styling */
.product-details-page .breadcrumb a {
  color: #6c757d;
  text-decoration: none;
  transition: color 0.2s ease;
}
.product-details-page .breadcrumb a:hover {
  color: var(--green-color);
}
.product-details-page .breadcrumb .active {
  color: #333;
  font-weight: 600;
}

.product-info-container {
  padding: 1.5rem 1.75rem;
  box-shadow: 0 8px 30px rgba(8, 24, 48, 0.06);
  border-radius: 12px;
}

.product-details-actions {
  display: flex;
  gap: 0.75rem;
  margin: 1rem 0 1.25rem 0;
}
.product-details-actions .btn {
  flex: 1;
  padding: 0.8rem 1rem;
  border-radius: 10px;
  font-weight: 600;
}

@media (max-width: 768px) {
  .product-details-actions {
    flex-direction: column;
  }
}

.product-details-add-to-cart {
  background: var(--green-color) !important;
  border-color: var(--green-color) !important;
  color: #fff !important;
  box-shadow: 0 8px 20px rgba(10, 173, 10, 0.12);
}

#whatsappOrderbtn {
  background: var(--green-color) !important; /* WhatsApp green */
  border-color: var(--green-color) !important;
  color: #fff !important;
}

.product-info-container .btn-warning {
  background: var(--red-color) !important;
  border-color: var(--red-color) !important;
  color: #fff !important;
}

.product-details-page .current-price .sale-price {
  color: var(--red-color);
  font-size: 2.2rem;
  font-weight: 700;
}
.product-details-page .current-price .regular-price {
  color: #777;
  font-size: 0.95rem;
  margin-left: 0.6rem;
}

.thumbnail {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #eee;
}
.thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stock-badge.in-stock {
  background: #e8f5e9;
  color: #1b5e20;
}
.stock-badge.out-of-stock {
  background: #fff0f0;
  color: #9a1f1f;
}

.short-description p {
  margin-bottom: 0.75rem;
}

/* Make tab content visually consistent */
.tab-content {
  box-shadow: 0 8px 30px rgba(8, 24, 48, 0.04);
}

/* Quill Content Styles */
.short-description,
#description {
  /* Remove Quill editor styles */
  .ql-editor {
    padding: 0;
  }

  /* Style the content */
  p {
    margin-bottom: 1rem;
    line-height: 1.6;
  }

  ul,
  ol {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
  }

  /* Remove any editing-related classes */
  [contenteditable],
  [contenteditable="true"] {
    outline: none !important;
    cursor: text;
  }
}

/* Fix layout structure */
.product-info-container {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.product-actions {
  order: 4;
  /* Adjust this value to control positioning */
}

.short-description {
  order: 5;
}

.delivery-info {
  order: 6;
}

.additional-info {
  order: 7;
}

/* Product Actions Styles */
.product-actions {
  margin-bottom: 2rem;
  padding: 1rem;
  border-radius: 8px;
}

.product-details-add-to-cart {
  background-color: var(--green-color) !important;
  border-color: var(--green-color) !important;
  margin-top: 1rem;
}

.product-details-add-to-cart:hover {
  background-color: var(--green-color) !important;
  border-color: var(--green-color) !important;
}

/* Product Info Container Styles */
.product-info-container {
  background: white;
  border-radius: 12px;
  padding: 1rem;
}

/* Short Description Styles */
.short-description {
  background: #f8f9fa;
  padding: 1rem;
  border-radius: 8px;
  color: #444;
  line-height: 1.6;
}

/* Add to Cart Button Styles */
.product-details-add-to-cart {
  background-color: var(--green-color) !important;
  border-color: var(--green-color) !important;
  padding: 1rem;
  font-size: 1.1rem;
  font-weight: 500;
}

.product-details-add-to-cart:hover {
  background-color: var(--green-color) !important;
  border-color: var(--green-color) !important;
}

/* Quantity Selector Styles */
.quantity-selector {
  background: #f8f9fa;
  padding: 1rem;
  border-radius: 8px;
}

/* Related Products Section */
.related-products-section {
  /* background-color: #f8f9fa; */
  padding: 3rem 0;
  margin-top: 3rem;
}

.related-products-section .section-title {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  text-align: center;
  color: #333;
}

.related-products-section .product-card {
  height: 100%;
  margin-bottom: 0;
}

.related-products-section .product-title {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.related-products-section .product-price {
  font-size: 0.9rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .related-products-section {
    padding: 2rem 0;
  }

  .related-products-section .col-6 {
    padding: 0.5rem;
  }
}

@media (max-width: 500px) {
  .products-section {
    padding: 0;
    margin-left: 0;
    margin-right: 0;
  }
}

/* Cart Badge Styles */
.cart-badge {
  position: absolute;
  top: -5px;
  right: -10px;
  background-color: #ad0a0a;
  color: white;
  border-radius: 50%;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  display: none;
  min-width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

/* Favorites Badge Styles */
.favorites-badge {
  position: absolute;
  top: -5px;
  right: -10px;
  background-color: var(--red-color);
  color: white;
  border-radius: 50%;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  display: none;
  min-width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

/* Quantity Controls Styles */
.quantity-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.5rem;
}

.quantity-controls .quantity {
  font-weight: 500;
  min-width: 2rem;
  text-align: center;
}

/* Toast Container Styles */
#toastContainer {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 1050;
}

.toast {
  margin-bottom: 0.5rem;
}

/* Cart Offcanvas Styles */
.cart-item {
  display: flex;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid #eee;
}

.cart-item-image {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  margin-right: 1rem;
}

.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-details {
  flex: 1;
}

.cart-item-title {
  font-weight: 500;
  margin-bottom: 0.25rem;
  color: #333;
}

.cart-item-price {
  color: var(--green-color);
  font-weight: 600;
}

.cart-item-quantity {
  color: #666;
  font-size: 0.9rem;
}

.cart-summary {
  position: sticky;
  bottom: 0;
  background: white;
  padding: 1rem 0;
  margin-top: auto;
  border-top: 1px solid #eee;
}

#cartItems {
  max-height: calc(100vh - 250px);
  overflow-y: auto;
}

.empty-cart {
  text-align: center;
  padding: 2rem;
  color: #666;
}

.empty-cart i {
  font-size: 3rem;
  color: #ddd;
  margin-bottom: 1rem;
}

/* Cart Page Styles */
.cart-page {
  min-height: 100vh;
}

.cart-item-image {
  width: 100px;
  height: 100px;
}

.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quantity-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.quantity-input {
  text-align: center;
}

.cart-summary {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.recommended-products .card {
  transition: transform 0.2s;
}

.recommended-products .card:hover {
  transform: translateY(-5px);
}

@media (max-width: 768px) {
  .cart-item {
    flex-wrap: wrap;
  }

  .cart-item-price {
    width: 100%;
    text-align: right;
    margin-top: 1rem;
  }
}

/* Cart Items Container Styles */
.cart-items-container,
.cart-summary {
  border-top: 3px solid var(--green-color);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Search Styles */
.search-wrapper {
  width: 100%;
}

.search-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-top: 4px;
  display: none;
  z-index: 1000;
  max-height: 400px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--green-color) #f8f9fa;
}

/* Webkit scrollbar styles (Chrome, Safari, etc.) */
.search-suggestions::-webkit-scrollbar {
  width: 6px;
}

.search-suggestions::-webkit-scrollbar-track {
  background: #f8f9fa;
  border-radius: 3px;
}

.search-suggestions::-webkit-scrollbar-thumb {
  background-color: var(--green-color);
  border-radius: 3px;
}

.suggestion-item {
  padding: 0.75rem;
  cursor: pointer;
  transition: background-color 0.2s;
  border-bottom: 1px solid #f0f0f0;
}

.suggestion-item:last-child {
  border-bottom: none;
}

.suggestion-content {
  gap: 1rem;
}

.suggestion-image {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 4px;
  overflow: hidden;
}

.suggestion-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.suggestion-details {
  flex: 1;
}

.suggestion-title {
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
  color: #333;
}

.suggestion-price {
  font-size: 0.85rem;
  color: var(--green-color);
  font-weight: 600;
}

.suggestion-price .text-muted {
  margin-right: 0.5rem;
}

/* Shop Page Styles */
.shop-banner {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.shop-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.whatsapp-float {
  position: fixed;
  bottom: 150px;
  right: 20px;
  z-index: 1000;
  background-color: var(--green-color);
  border-radius: 50%;
  padding: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float img {
  width: 40px;
  height: 40px;
}

/* Floating Cart */
.floating-cart {
  position: fixed;
  bottom: 220px;
  right: 20px;
  z-index: 1000;
  background-color: var(--green-color);
  color: white;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  text-decoration: none;
}

.floating-cart:hover {
  transform: scale(1.1);
  color: white;
}

.floating-cart .floating-cart-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: var(--red-color);
  color: white;
  border-radius: 50%;
  font-size: 0.8rem;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.banner-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
}

.banner-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.shop-header {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.total-products {
  font-size: 1.1rem;
  color: #666;
}

.total-products span {
  font-weight: 600;
  color: #333;
}

@media (max-width: 768px) {
  .shop-banner {
    height: 200px;
  }

  .long-banner {
    height: 200px;
  }

  .banner-content h1 {
    font-size: 2rem;
  }

  .shop-header .d-flex {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .shop-header select {
    width: 100% !important;
  }
}

/* Category Slider Styles */
.category-slider-section {
  background-color: #fff;

  margin: 0 2rem;
}

@media (max-width: 600px) {
  .category-slider-section {
    margin: 10px 0;
  }
}

.app-banner-section {
  margin-top: 2rem;
  margin: 0 2rem;
}

.category-slider {
  position: relative;
  overflow: hidden;
  padding: 1rem 0;
}

.category-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

/* ── Category slider cards — redesigned ── */
.category-card {
  flex: 0 0 150px;
  margin: 0 13px;
  text-align: center;
  cursor: pointer;
}

.category-card-link {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
}

.category-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #f0f2f5;
  background: #f8f9fb;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
  position: relative;
}

.category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.category-card:hover .category-image {
  border-color: var(--green-color);
  box-shadow: 0 6px 20px rgba(0, 166, 82, 0.2);
  transform: translateY(-4px);
}

.category-card:hover .category-image img {
  transform: scale(1.08);
}

/* Name now sits BELOW the image */
.category-name {
  position: static;
  background: transparent;
  color: #1a1a2e;
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.3;
  padding: 0;
  max-width: 120px;
  margin: 0 auto;
  transition: color 0.2s;
}

.category-card:hover .category-name {
  color: var(--green-color);
}

/* Nav buttons */
.slider-nav-btn {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid #e2e8f0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 2;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #475569;
  font-size: 0.8rem;
  transition:
    background 0.2s,
    color 0.2s,
    box-shadow 0.2s;
}

.slider-nav-btn:hover {
  background: var(--green-color);
  color: #fff;
  border-color: var(--green-color);
  box-shadow: 0 4px 14px rgba(0, 166, 82, 0.25);
}

.slider-nav-btn.prev {
  left: -5px;
}
.slider-nav-btn.next {
  right: -5px;
}

/* Section title polish */
.category-slider-section .section-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .category-card {
    flex: 0 0 110px;
    margin: 0 8px;
  }
  .category-image {
    width: 88px;
    height: 88px;
  }
  .category-name {
    font-size: 0.74rem;
    max-width: 90px;
  }
}

/* Bottom Navbar Right Side Styles */
.social-icons {
  display: flex;
  gap: 1rem;
  margin-right: 1.5rem;
  padding-right: 1.5rem;
  border-right: 1px solid #dee2e6;
}

.social-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-icon:hover {
  color: var(--green-color);
  transform: translateY(-2px);
}

.right-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.upload-btn {
  background-color: #f8f9fa;
  border: 1px solid #dee2e6;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.upload-btn:hover {
  background-color: var(--green-color);
  color: white;
  border-color: var(--green-color);
}

@media (max-width: 991px) {
  .right-nav {
    display: none;
  }
}

.app-banner {
  font-size: 14px;
}

/* App Banner Styles */
.app-banner {
  border-radius: 16px;

  overflow: hidden;
  position: relative;
  background: url("/assets/images/banners/app-banner.jpg") no-repeat center;
  background-size: cover;
  height: 420px;
  /* Fixed height for better control */
}

.app-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.5) 50%,
    rgba(0, 0, 0, 0.1) 100%
  );
}

.app-banner .text-container {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  max-width: 600px;
  padding: 3rem;
}

.app-banner h2 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.app-banner .text-primary {
  color: var(--green-color) !important;
}

.app-banner .lead {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.app-banner .store-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.app-banner .store-buttons img {
  transition: transform 0.3s ease;
}

.app-banner .store-buttons img:hover {
  transform: translateY(-5px);
}

.app-banner h3 {
  color: var(--green-color);
  margin-right: 1rem;
  font-size: 1.5rem;
  align-self: center;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .app-banner {
    margin: 2rem auto;
    height: auto !important;
    min-height: 400px;
  }

  .app-banner .text-container {
    position: relative !important;
    transform: none !important;
    top: 0 !important;
    left: 0 !important;
    padding: 2rem;
    text-align: center;
  }

  .app-banner h2 {
    font-size: 2rem;
    text-align: center;
  }

  .app-banner .lead {
    font-size: 1rem;
    text-align: center;
  }

  .app-banner .store-buttons {
    justify-content: center;
  }

  .app-banner::before {
    background: linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.8) 0%,
      rgba(0, 0, 0, 0.6) 100%
    );
  }
}

/* Footer Styles */
.footer {
  background-color: #f8f9fa;
}

.footer-logo {
  height: 150px;
  max-height: none;
  width: auto;
  object-fit: contain;
}

.btn-light {
  background-color: #ffffff;
  padding: 0.5rem 1rem !important;
  border-radius: 20px;
  transition: all 0.3s ease;
  box-shadow: none;
}

.btn-light:hover {
  background-color: var(--green-color);
  color: white;
  border-color: var(--green-color);
}

.footer-heading {
  color: var(--green-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
  position: relative;
}

.footer-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 40px;
  height: 2px;
  background-color: var(--green-color);
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: #6c757d;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--green-color);
  padding-left: 5px;
}

.footer-contact li {
  display: flex;
  align-items: start;
  gap: 10px;
  color: #6c757d;
  margin-bottom: 1rem;
}

.footer-contact i {
  color: var(--green-color);
  margin-top: 4px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #e9ecef;
  color: var(--green-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background-color: var(--green-color);
  color: white;
  transform: translateY(-3px);
}

.bottom-footer {
  background-color: var(--green-color);
}

.bottom-footer a:hover {
  text-decoration: underline !important;
}

@media (max-width: 768px) {
  .footer-heading {
    margin-top: 1.5rem;
  }

  .footer-contact li {
    justify-content: center;
  }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
  .app-banner .text-dark {
    color: #fff !important;
  }
}

.review {
  border: 1px solid #ddd;
  padding: 10px;
  border-radius: 5px;
  background-color: #f9f9f9;
}

.review .rating {
  color: #ffcc00;
  /* Gold color for stars */
}

.star {
  cursor: pointer;
  font-size: 1.5rem;
  color: #ccc;
}

.star.selected {
  color: #ffcc00;
  /* Gold color for selected stars */
}

.new-promo-cards {
  height: 350px;
  border-radius: 14px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.new-promo-cards .shop-now-btn {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  background-color: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 20px;
  padding: 8px 22px;
  font-size: 0.88rem;
  font-weight: 600;
  white-space: nowrap;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.new-promo-cards:hover .shop-now-btn {
  opacity: 1;
  transform: translate(-50%, -8px);
}

/* Promo banner hero layout variants */
.promo-hero-card {
  height: 600px;
}

.promo-wide-card {
  height: 300px;
}

.promo-sm-card {
  height: 280px;
}

/* Split Promo + Product Carousel Section */
.split-promo-section {
  padding: 1.5rem 0;
}

.split-promo-banner {
  height: 100%;
  min-height: 340px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.45)),
    url("../images/health-and-wellness.webp") no-repeat center;
  border-radius: 14px;
  display: flex;
  align-items: flex-end;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0, 166, 82, 0.2);
}

.split-promo-banner::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 180px;
  height: 180px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.split-promo-banner::after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 140px;
  height: 140px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
}

.split-promo-content {
  position: relative;
  z-index: 1;
}

.split-promo-title {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 0.6rem;
}

.split-promo-sub {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
  margin-bottom: 1.2rem;
}

.split-promo-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #fff;
  color: var(--green-color);
  font-size: 0.83rem;
  font-weight: 700;
  padding: 0.5rem 1.1rem;
  border-radius: 8px;
  text-decoration: none;
  transition:
    background 0.2s,
    color 0.2s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.split-promo-cta:hover {
  background: var(--red-color);
  color: #fff;
}

.split-carousel-wrapper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  height: 100%;
}

.split-carousel-viewport {
  flex: 1;
  overflow: hidden;
  border-radius: 4px;
}

.split-carousel-track {
  display: flex;
  gap: 1rem;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.split-carousel-card {
  flex: 0 0 200px;
  background: #fff;
  border: 1px solid #eef0f2;
  border-radius: 12px;
  overflow: hidden;
  transition:
    box-shadow 0.2s,
    transform 0.2s;
}

.split-carousel-card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}

.split-carousel-card-img {
  width: 100%;
  height: 150px;
  object-fit: contain;
  padding: 0.6rem;
  display: block;
}

.split-carousel-card-body {
  padding: 0.6rem 0.75rem 0.75rem;
}

.split-carousel-card-title {
  font-size: 0.78rem;
  font-weight: 600;
  color: #222;
  line-height: 1.3;
  margin-bottom: 0.35rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.split-carousel-card-price {
  font-size: 0.88rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 0.4rem;
}

.split-card-sale {
  color: var(--red-color);
}

.split-old-price {
  font-size: 0.74rem;
  font-weight: 400;
  color: #999;
  text-decoration: line-through;
  margin-left: 0.25rem;
}

.split-carousel-card-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.4rem;
}

.split-fav-btn {
  background: none;
  border: none;
  color: #bbb;
  font-size: 1rem;
  padding: 0;
  cursor: pointer;
  transition: color 0.2s;
  line-height: 1;
}

.split-fav-btn:hover {
  color: var(--red-color);
}

.split-add-btn {
  background: var(--green-color);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.3rem 0.7rem;
  cursor: pointer;
  transition:
    background 0.2s,
    box-shadow 0.2s;
  box-shadow: 0 2px 6px rgba(0, 166, 82, 0.2);
}

.split-add-btn:hover {
  background: #007a3d;
}

.split-carousel-btn {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid #ddd;
  background: #fff;
  color: #444;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  cursor: pointer;
  transition:
    border-color 0.2s,
    color 0.2s,
    box-shadow 0.2s;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.split-carousel-btn:hover {
  border-color: var(--green-color);
  color: var(--green-color);
  box-shadow: 0 4px 12px rgba(0, 166, 82, 0.15);
}

.split-carousel-btn:disabled {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}

/* Product Slider Styles */
.product-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 0 20px;
}

.product-track {
  display: flex;
  transition: transform 0.3s ease-in-out;
  gap: 20px;
}

.product-track .product-card {
  flex: 0 0 300px;
  /* Fixed width for each product card */
  margin: 0;
}

#prevProduct,
#nextProduct {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

#prevProduct {
  left: 0;
}

#nextProduct {
  right: 0;
}

#prevProduct:hover,
#nextProduct:hover {
  background: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Featured Products Swiper Styles */
.featured-products-swiper {
  padding: 20px 0;
  position: relative;
}

.featured-products-swiper .swiper-slide {
  height: auto;
  display: flex;
  justify-content: center;
}

.featured-products-swiper .product-card {
  width: 100%;
  margin: 0;
}

/* Navigation Buttons */
.featured-products-swiper .swiper-button-next,
.featured-products-swiper .swiper-button-prev {
  color: var(--primary-color);
  background: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.featured-products-swiper .swiper-button-next:after,
.featured-products-swiper .swiper-button-prev:after {
  font-size: 18px;
}

.featured-products-swiper .swiper-button-next {
  right: 10px;
}

.featured-products-swiper .swiper-button-prev {
  left: 10px;
}

/* Pagination */
.featured-products-swiper .swiper-pagination {
  position: relative;
  margin-top: 20px;
}

.pagination .page-item .page-link {
  color: var(--green-color);
  background: white;
  border: 1px solid var(--green-color);
}

.pagination .page-item .page-link:hover {
  background: var(--green-color);
  color: white;
}

.pagination .page-item.active {
  background: var(--green-color) !important;
  color: white;
}
.featured-products-swiper .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #ccc;
  opacity: 1;
}

.featured-products-swiper .swiper-pagination-bullet-active {
  background: var(--primary-color);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .featured-products-swiper .swiper-button-next,
  .featured-products-swiper .swiper-button-prev {
    display: none;
  }
}

/* Cart Offcanvas Styles */
.offcanvas-cart {
  width: 420px;
  width: 480px;
}

@media (max-width: 576px) {
  .offcanvas-cart {
    width: 100%;
  }
}

.offcanvas-cart .offcanvas-header {
  border-bottom: 1px solid #e9ecef;
  padding: 1rem 1.5rem;
}

.offcanvas-cart .offcanvas-title {
  font-weight: 600;
}

.offcanvas-cart .offcanvas-body {
  padding: 0;
  display: flex;
  flex-direction: column;
}

.offcanvas-cart #cartItems {
  flex-grow: 1;
  overflow-y: auto;
  padding: 0 1.5rem;
}

.offcanvas-cart .cart-summary {
  padding: 1.5rem;
  border-top: 1px solid #e9ecef;
  background-color: #fff;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
}

.offcanvas-cart .summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.offcanvas-cart .summary-item span {
  color: #6c757d;
}

.offcanvas-cart .summary-item strong {
  font-size: 1.25rem;
  color: #212529;
}

/* Empty Cart View */
.empty-cart-view {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  text-align: center;
  color: #6c757d;
  padding: 2rem;
}

.empty-cart-view i {
  font-size: 4rem;
  color: #e0e0e0;
  margin-bottom: 1.5rem;
}

.empty-cart-view p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

/* Cart Item Styles */
.cart-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid #f0f0f0;
}

.cart-item:last-child {
  border-bottom: none;
}

.cart-item-image {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #eee;
  flex-shrink: 0;
}

.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-details {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cart-item-title {
  font-weight: 500;
  color: #333;
  text-decoration: none;
  line-height: 1.4;
}

.cart-item-title:hover {
  color: var(--green-color);
}

.cart-item-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.cart-item-price {
  font-weight: 600;
  color: #333;
}

.cart-item .quantity-controls {
  display: flex;
  align-items: center;
  border: 1px solid #dee2e6;
  border-radius: 20px;
  overflow: hidden;
}

.cart-item .quantity-controls .btn {
  border: none;
  background: none;
  font-weight: 500;
  padding: 0.1rem 0.6rem;
  line-height: 1;
}

.cart-item .quantity-controls .quantity {
  padding: 0 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.btn-remove {
  color: #adb5bd;
  background: none;
  border: none;
  padding: 0;
  line-height: 1;
}

.btn-remove:hover {
  color: var(--red-color);
}

/* Cart Page Specific Styles */
.cart-page-container .page-title {
  font-weight: 600;
  border-bottom: 1px solid #eee;
  padding-bottom: 1rem;
}

.cart-items-list {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.cart-item-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  border-bottom: 1px solid #f0f0f0;
  flex-wrap: wrap;
}

.cart-item-card:last-child {
  border-bottom: none;
}

.cart-item-card .item-image {
  width: 100px;
  height: 100px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #eee;
  flex-shrink: 0;
}

.cart-item-card .item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-card .item-title {
  font-weight: 600;
  color: #333;
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
}

.cart-item-card .item-title:hover {
  color: var(--green-color);
}

.cart-item-card .item-price {
  font-size: 1rem;
  color: #6c757d;
}

.cart-item-card .item-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-left: auto;
}

.cart-item-card .quantity-controls {
  display: flex;
  align-items: center;
  border: 1px solid #dee2e6;
  border-radius: 20px;
  overflow: hidden;
}

.cart-item-card .quantity-controls .btn {
  border: none;
  background: none;
  font-weight: 500;
  padding: 0.2rem 0.8rem;
}

.cart-item-card .quantity-controls .quantity {
  padding: 0 0.5rem;
  font-size: 1rem;
  font-weight: 500;
}

.cart-item-card .item-total-price {
  font-weight: 600;
  font-size: 1.1rem;
  width: 100px;
  text-align: right;
}

.cart-item-card .btn-remove:hover {
  color: var(--red-color);
}

/* Summary Card */
.cart-summary-card {
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border: 1px solid #eee;
  position: sticky;
  top: 20px;
}

.cart-summary-card .summary-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.cart-summary-card .total-row strong {
  font-size: 1.25rem;
  color: #212529;
}

/* Empty Cart Card */
.empty-cart-card {
  border-radius: 8px;
  padding: 4rem 2rem;
}

/* Responsive */
@media (max-width: 991px) {
  .cart-item-card .item-actions {
    margin-left: 0;
    width: 100%;
    justify-content: space-between;
    margin-top: 1rem;
  }

  .cart-summary-card {
    position: static;
    margin-top: 2rem;
  }
}

@media (max-width: 576px) {
  .cart-item-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .cart-item-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .cart-item-card .item-actions {
    width: 100%;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .cart-item-card .item-total-price {
    margin-left: auto;
  }
}

.recommended-products .section-title {
  text-align: left;
}

/* Consolidated with .product-image above */

.product-card .product-info {
  padding: 0.5rem;
}

.product-card .product-title {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-card .product-price {
  font-size: 0.9rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: top;
  justify-content: center;
  gap: 0.25rem;
}
.product-card:hover .product-image img {
  transform: scale(1.1);
  /* Slightly increase on hover */
}

.top-nav .search-container {
  display: flex;
  flex-grow: 1;
  margin: 0 1rem;
}

@media (max-width: 991.98px) {
  .top-nav .search-container {
    display: flex;
    position: relative;
    width: 100%;
    margin: 0;
  }

  .top-nav .search-container.show {
    display: flex;
  }
}

.top-nav .nav-items {
  display: flex;
  align-items: center;
}

.p-details-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

/* ===== FOOTER ADDITIONS (back-to-top + payment strip) ===== */

/* Bottom bar payment strip */
.footer-payment-strip {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: #6b7280;
}
.footer-payment-strip .footer-pay-label {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin-right: 0.25rem;
}
.footer-payment-strip i {
  font-size: 1.5rem;
  color: #a0aec0;
  transition: color 0.2s;
}
.footer-payment-strip i:hover {
  color: #fff;
}
.footer-pay-momo,
.footer-pay-cod {
  display: inline-block;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #cbd5e1;
  border-radius: 4px;
  padding: 0.18rem 0.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

/* Back-to-top floating button */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: var(--green-color);
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0, 166, 82, 0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition:
    opacity 0.25s,
    transform 0.25s,
    background 0.2s,
    box-shadow 0.2s;
  z-index: 999;
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: #009149;
  box-shadow: 0 8px 24px rgba(0, 166, 82, 0.5);
}

/* Make sure back-to-top doesn't overlap the WhatsApp floating button */
.whatsapp-float ~ .back-to-top,
.back-to-top {
  bottom: 90px;
}

/* Mobile: stack the bottom bar nicely */
@media (max-width: 767px) {
  .footer-bottom-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.85rem;
  }
  .footer-payment-strip {
    justify-content: center;
    flex-wrap: wrap;
  }
  .footer-legal-links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .back-to-top {
    bottom: 80px;
    right: 18px;
    width: 42px;
    height: 42px;
  }
}

/* ===== CART PAGE — REDESIGNED ===== */

.cart-page-container {
  min-height: 70vh;
}

/* Page header */
.cart-page-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.75rem;
}
.cart-page-title {
  font-size: 1.65rem;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 0.25rem 0;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.cart-page-title i {
  color: var(--green-color);
}
.cart-page-subtitle {
  color: #9aa5b4;
  margin: 0;
  font-size: 0.9rem;
}
.cart-continue-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--green-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.55rem 1rem;
  border: 1.5px solid var(--green-color);
  border-radius: 8px;
  transition:
    background 0.2s,
    color 0.2s;
}
.cart-continue-link:hover {
  background: var(--green-color);
  color: #fff;
}

/* Checkout progress stepper (shared between cart & checkout) */
.checkout-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: #fff;
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
  margin-bottom: 1.5rem;
}
.checkout-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  min-width: 90px;
}
.checkout-step-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #e9ecef;
  color: #adb5bd;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  transition:
    background 0.25s,
    color 0.25s;
}
.checkout-step.active .checkout-step-circle,
.checkout-step.completed .checkout-step-circle {
  background: var(--green-color);
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 166, 82, 0.3);
}
.checkout-step.completed .checkout-step-circle::after {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}
.checkout-step-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #9aa5b4;
}
.checkout-step.active .checkout-step-label,
.checkout-step.completed .checkout-step-label {
  color: #1a1a2e;
}
.checkout-step-line {
  flex: 1;
  max-width: 80px;
  height: 2px;
  background: #e9ecef;
  margin: 0 0.5rem 1.4rem;
}

/* Cart items list */
.cart-items-list {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.cart-item-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid #f0f2f5;
  flex-wrap: wrap;
  transition: background 0.15s;
}
.cart-item-card:hover {
  background: #fafbfc;
}
.cart-item-card:last-child {
  border-bottom: none;
}

.cart-item-card .item-image {
  width: 90px;
  height: 90px;
  border-radius: 10px;
  overflow: hidden;
  background: #f8f9fa;
  border: 1px solid #f0f2f5;
  flex-shrink: 0;
}
.cart-item-card .item-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
}

.cart-item-card .item-details {
  flex: 1;
  min-width: 180px;
}
.cart-item-card .item-title {
  font-weight: 600;
  color: #1a1a2e;
  text-decoration: none;
  display: block;
  font-size: 0.98rem;
  line-height: 1.35;
  margin-bottom: 0.3rem;
}
.cart-item-card .item-title:hover {
  color: var(--green-color);
}
.cart-item-card .item-price {
  font-size: 0.88rem;
  color: #9aa5b4;
}

/* Actions: quantity + total + remove */
.cart-item-card .item-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-left: auto;
}

/* Modern circular quantity stepper */
.cart-item-card .quantity-controls {
  display: inline-flex;
  align-items: center;
  background: #f5f7fa;
  border: 1px solid #e2e8f0;
  border-radius: 30px;
  padding: 3px;
  overflow: hidden;
}
.cart-item-card .quantity-controls .btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #fff;
  border: none;
  color: var(--green-color);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  font-size: 1rem;
  line-height: 1;
  transition:
    background 0.15s,
    color 0.15s;
}
.cart-item-card .quantity-controls .btn:hover {
  background: var(--green-color);
  color: #fff;
}
.cart-item-card .quantity-controls .quantity {
  padding: 0 0.85rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: #1a1a2e;
  min-width: 30px;
  text-align: center;
}

.cart-item-card .item-total-price {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--green-color);
  min-width: 95px;
  text-align: right;
}

.cart-item-card .btn-remove {
  background: transparent;
  border: none;
  color: #cbd5e1;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background 0.15s,
    color 0.15s;
}
.cart-item-card .btn-remove:hover {
  background: #fff0f0;
  color: var(--red-color);
}

/* Summary card */
.cart-summary-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
  border: none;
  position: sticky;
  top: 90px;
  overflow: hidden;
}
.cart-summary-card .card-body {
  padding: 0;
}
.cart-summary-card .card-title {
  background: var(--green-color);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 1.1rem 1.4rem;
  margin: 0 0 0 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.cart-summary-card .card-title::before {
  content: "\f291";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}
.cart-summary-card .summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: #555;
  padding: 0.5rem 1.4rem;
  margin: 0;
}
.cart-summary-card hr {
  margin: 0.5rem 1.4rem;
  border-color: #f0f2f5;
}
.cart-summary-card .total-row {
  padding: 0.85rem 1.4rem 0.5rem;
}
.cart-summary-card .total-row strong {
  font-size: 1.15rem;
  color: #1a1a2e;
  font-weight: 700;
}
.cart-summary-card .total-row strong:last-child {
  color: var(--green-color);
}
.cart-summary-card .d-grid {
  padding: 0.5rem 1.4rem 1.4rem;
}
.cart-summary-card .btn-primary {
  background: var(--green-color);
  border-color: var(--green-color);
  border-radius: 10px;
  padding: 0.85rem;
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 14px rgba(0, 166, 82, 0.28);
  transition:
    background 0.2s,
    box-shadow 0.2s,
    transform 0.15s;
}
.cart-summary-card .btn-primary:hover {
  background: #009149;
  border-color: #009149;
  box-shadow: 0 6px 20px rgba(0, 166, 82, 0.38);
  transform: translateY(-1px);
}

/* Empty cart state */
.empty-cart-card {
  background: #fff;
  border-radius: 14px;
  padding: 4rem 2rem;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
  text-align: center;
  border: none;
}
.empty-cart-card i {
  color: #e2e8f0 !important;
  font-size: 4rem !important;
  margin-bottom: 1.25rem !important;
}
.empty-cart-card h3 {
  font-size: 1.35rem;
  color: #1a1a2e;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.empty-cart-card p {
  color: #9aa5b4;
}
.empty-cart-card .btn-primary {
  background: var(--green-color);
  border-color: var(--green-color);
  border-radius: 10px;
  padding: 0.8rem 2rem;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(0, 166, 82, 0.28);
}
.empty-cart-card .btn-primary:hover {
  background: #009149;
  border-color: #009149;
}

/* Recommended products header */
.recommended-products-header {
  text-align: center;
  margin-bottom: 1.75rem;
}
.recommended-products .section-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 0.3rem 0;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-align: center;
}
.recommended-products .section-title i {
  color: #fbbf24;
  font-size: 1.1rem;
}
.recommended-products .section-subtitle {
  color: #9aa5b4;
  font-size: 0.88rem;
  margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
  .cart-summary-card {
    position: static;
  }
}
@media (max-width: 767px) {
  .checkout-progress {
    padding: 1rem;
  }
  .checkout-step {
    min-width: 70px;
  }
  .checkout-step-circle {
    width: 32px;
    height: 32px;
    font-size: 0.85rem;
  }
  .checkout-step-label {
    font-size: 0.72rem;
  }
  .checkout-step-line {
    max-width: 40px;
    margin: 0 0.25rem 1.3rem;
  }
  .cart-page-header {
    flex-direction: column;
    align-items: stretch;
  }
  .cart-continue-link {
    align-self: flex-start;
  }
  .cart-item-card {
    padding: 1rem;
    gap: 0.85rem;
  }
  .cart-item-card .item-image {
    width: 70px;
    height: 70px;
  }
}
@media (max-width: 576px) {
  .cart-item-card {
    flex-direction: column;
    align-items: flex-start;
  }
  .cart-item-card .item-actions {
    width: 100%;
    margin-left: 0;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .cart-item-card .item-total-price {
    min-width: auto;
  }
}

/* ===== CHECKOUT PAGE — REDESIGNED UI/UX ===== */

.checkout-page {
  min-height: 70vh;
  margin-top: 70px;
}

/* ---- AUTH ALERT ---- */
.co-alert {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: #fff8e1;
  border-left: 4px solid var(--green-color);
  border-radius: 10px;
  padding: 0.85rem 1.1rem;
  color: #5d4037;
  font-size: 0.9rem;
}
.co-alert i {
  color: var(--green-color);
}
.co-alert a {
  color: var(--green-color);
  font-weight: 600;
  text-decoration: underline;
}

/* ---- CHECKOUT OPTIONS (GUEST) ---- */
.co-options-header {
  text-align: center;
  margin-bottom: 2rem;
}
.co-options-header h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 0.3rem;
}
.co-options-header p {
  color: #9aa5b4;
  font-size: 0.9rem;
}

.co-option-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.6rem;
  width: 100%;
  background: #fff;
  border: 2px solid #e9ecef;
  border-radius: 14px;
  padding: 2rem 1.25rem;
  text-decoration: none;
  cursor: pointer;
  color: #1a1a2e;
  transition:
    border-color 0.2s,
    box-shadow 0.2s,
    transform 0.15s;
}
.co-option-card:hover {
  border-color: var(--green-color);
  box-shadow: 0 6px 24px rgba(0, 166, 82, 0.12);
  transform: translateY(-2px);
  color: #1a1a2e;
}
.co-option-icon {
  font-size: 2rem;
  color: var(--green-color);
}
.co-option-whatsapp .co-option-icon {
  color: var(--green-color);
}
.co-option-label {
  font-weight: 700;
  font-size: 1rem;
}
.co-option-sub {
  font-size: 0.8rem;
  color: #9aa5b4;
}

/* ---- SECTION CARDS ---- */
.co-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}
.co-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid #f0f2f5;
}
.co-card-body {
  padding: 1.4rem 1.5rem;
}

.co-step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  background: var(--green-color);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.co-step-wa {
  background: var(--green-color);
}

.co-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 0.15rem 0;
}
.co-card-subtitle {
  font-size: 0.81rem;
  color: #9aa5b4;
  margin: 0;
}

/* ---- SAVED ADDRESS TOGGLE ---- */
.co-saved-address-toggle {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: #f0fdf5;
  border: 1px solid #c8e6c9;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 0.88rem;
  color: #444;
  margin-bottom: 0.5rem;
}
.co-link {
  color: var(--green-color);
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
}

/* ---- LABELS ---- */
.co-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.45rem;
}
.co-label-hint {
  font-weight: 400;
  color: #b0b8c4;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.78rem;
}

/* ---- INPUT GROUPS ---- */
.co-input-group {
  display: flex;
  align-items: center;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.co-input-group:focus-within {
  border-color: var(--green-color);
  box-shadow: 0 0 0 3px rgba(0, 166, 82, 0.12);
}
.co-input-group > i {
  padding: 0 0.9rem;
  color: #cbd5e1;
  font-size: 0.88rem;
  flex-shrink: 0;
  transition: color 0.2s;
}
.co-input-group:focus-within > i {
  color: var(--green-color);
}

.co-input {
  flex: 1;
  border: none;
  outline: none;
  padding: 0.72rem 0.75rem 0.72rem 0;
  font-size: 0.92rem;
  color: #1a1a2e;
  background: transparent;
  width: 100%;
  font-family: inherit;
}
.co-input::placeholder {
  color: #c8d2dc;
}

.co-textarea {
  width: 100%;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  padding: 0.72rem 0.9rem;
  font-size: 0.92rem;
  color: #1a1a2e;
  resize: vertical;
  outline: none;
  font-family: inherit;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.co-textarea:focus {
  border-color: var(--green-color);
  box-shadow: 0 0 0 3px rgba(0, 166, 82, 0.12);
}
.co-textarea::placeholder {
  color: #c8d2dc;
}

/* ---- PAYMENT OPTION CARDS ---- */
.co-payment-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}
.co-payment-option {
  display: block;
  cursor: pointer;
  margin: 0;
}
.co-radio {
  display: none;
}

.co-payment-option-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  padding: 1rem 1.1rem;
  background: #fff;
  transition:
    border-color 0.2s,
    background 0.2s,
    box-shadow 0.2s;
}
.co-payment-option:hover .co-payment-option-inner {
  border-color: var(--green-color);
  background: #f8fff8;
}
.co-radio:checked + .co-payment-option-inner {
  border-color: var(--green-color);
  background: #f0fdf5;
  box-shadow: 0 0 0 3px rgba(0, 166, 82, 0.1);
}
.co-payment-option-inner > i:first-child {
  font-size: 1.35rem;
  color: var(--green-color);
  width: 26px;
  text-align: center;
  flex-shrink: 0;
}
.co-payment-name {
  font-weight: 600;
  font-size: 0.92rem;
  color: #1a1a2e;
}
.co-payment-desc {
  font-size: 0.78rem;
  color: #9aa5b4;
}
.co-payment-check {
  margin-left: auto;
  color: #dde2e8;
  font-size: 1.1rem;
  transition: color 0.2s;
}
.co-radio:checked + .co-payment-option-inner .co-payment-check {
  color: var(--green-color);
}

/* ---- MOMO PANEL ---- */
.co-momo-panel {
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
}
.co-momo-info {
  gap: 0.65rem;
  background: #f0fdf5;
  border: 1px solid #c8e6c9;
  border-radius: 8px;
  padding: 0.8rem 1rem;
  font-size: 0.88rem;
  color: #1a5e34;
}
.co-momo-info i {
  color: var(--green-color);
  flex-shrink: 0;
}
.co-momo-info strong {
  color: var(--green-color);
}

/* ---- CASH ON DELIVERY PANEL ---- */
.co-cod-panel {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: #fff8e1;
  border: 1px solid #ffe082;
  border-radius: 8px;
  padding: 0.8rem 1rem;
  font-size: 0.88rem;
  color: #7c5a00;
  margin-top: 1rem;
}
.co-cod-panel i {
  color: #f59e0b;
  flex-shrink: 0;
}

/* ---- HELP CARD (NEW) ---- */
.co-help-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: linear-gradient(135deg, #f0fdf5 0%, #e7faec 100%);
  border: 1px solid #c8e6c9;
  border-radius: 12px;
  padding: 1.1rem 1.4rem;
  margin-top: 0.5rem;
}
.co-help-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  color: var(--green-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 166, 82, 0.15);
}
.co-help-text {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.co-help-text strong {
  font-size: 0.95rem;
  color: #1a1a2e;
  font-weight: 700;
}
.co-help-text span {
  font-size: 0.82rem;
  color: #6b7280;
}
.co-help-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--green-color);
  color: #fff;
  border-radius: 8px;
  padding: 0.55rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition:
    background 0.2s,
    transform 0.15s;
  white-space: nowrap;
}
.co-help-btn:hover {
  background: #1ebe5d;
  color: #fff;
  transform: translateY(-1px);
}

/* ---- ORDER SUMMARY CARD ---- */
.co-summary-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  position: sticky;
  top: 90px;
}
.co-summary-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1.1rem 1.4rem;
  background: var(--green-color);
  color: #fff;
}
.co-summary-header i {
  font-size: 1rem;
}
.co-summary-header h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
}
.co-summary-body {
  padding: 1.25rem 1.4rem 0.5rem;
}
.co-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 0.7rem;
}
.co-delivery-note {
  font-size: 0.8rem;
  color: #b0b8c4;
}
.co-summary-divider {
  height: 1px;
  background: #f0f2f5;
  margin: 0.5rem 0 0.9rem;
}
.co-summary-total {
  font-weight: 700;
  font-size: 1.05rem;
  color: #1a1a2e;
  padding-bottom: 0.25rem;
}

/* ---- PLACE ORDER BUTTON ---- */
.co-place-order-btn {
  display: block;
  width: calc(100% - 2.8rem);
  margin: 0.5rem 1.4rem 0;
  padding: 0.9rem;
  background: var(--green-color);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition:
    background 0.2s,
    box-shadow 0.2s,
    transform 0.15s;
  box-shadow: 0 4px 14px rgba(0, 166, 82, 0.28);
  font-family: inherit;
}
.co-place-order-btn:hover:not(:disabled) {
  background: #009149;
  box-shadow: 0 6px 20px rgba(0, 166, 82, 0.38);
  transform: translateY(-1px);
}
.co-place-order-btn:disabled {
  background: #d1d5db;
  box-shadow: none;
  cursor: not-allowed;
}

.co-secure-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.4rem 0.5rem;
  font-size: 0.78rem;
  color: #b0b8c4;
}
.co-secure-note i {
  color: var(--green-color);
}

/* ---- SUMMARY TRUST BADGES (NEW) ---- */
.co-summary-trust {
  display: flex;
  justify-content: space-around;
  gap: 0.5rem;
  padding: 0.85rem 1.4rem 1.3rem;
  border-top: 1px solid #f0f2f5;
  margin-top: 0.5rem;
}
.co-summary-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.7rem;
  color: #6b7280;
  text-align: center;
  flex: 1;
}
.co-summary-trust-item i {
  color: var(--green-color);
  font-size: 1rem;
}

/* ---- WHATSAPP SUBMIT BUTTON ---- */
.co-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem;
  background: var(--green-color);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition:
    background 0.2s,
    box-shadow 0.2s;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.28);
  font-family: inherit;
}
.co-whatsapp-btn:hover {
  background: #1ebe5d;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.38);
}

/* ---- EMAIL SUBMIT BUTTON ---- */
.co-email-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem;
  background: var(--green-color);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition:
    background 0.2s,
    box-shadow 0.2s;
  box-shadow: 0 4px 14px rgba(0, 166, 82, 0.28);
  font-family: inherit;
}
.co-email-btn:hover {
  background: #009149;
  box-shadow: 0 6px 20px rgba(0, 166, 82, 0.38);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 991px) {
  .co-summary-card {
    position: static;
  }
}
@media (max-width: 575px) {
  .co-card-header {
    padding: 1rem 1.1rem;
  }
  .co-card-body {
    padding: 1.1rem;
  }
  .co-payment-option-inner {
    padding: 0.85rem 0.9rem;
  }
  .co-help-card {
    flex-direction: column;
    text-align: center;
  }
  .co-help-btn {
    align-self: stretch;
    justify-content: center;
  }
}

/* ===== SITE FOOTER — LIGHT THEME ===== */

.site-footer {
  background: #ffffff;
  color: #0f172a;
  font-size: 0.95rem;
}

/* Main content area */
.footer-main {
  padding: 3.5rem 0 2.5rem;
}

/* Brand column */

.footer-bottom {
  background: transparent;
  padding: 1rem 0 0.75rem;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-legal-links a {
  color: #64748b;
  text-decoration: none;
  margin-left: 1rem;
}

/* WhatsApp pharmacist CTA */
.footer-whatsapp-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--green-color);
  color: #fff;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  width: fit-content;
  transition:
    background 0.15s,
    transform 0.12s,
    box-shadow 0.15s;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.12);
}

.footer-whatsapp-cta:hover {
  background: #1ebe5d;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.16);
}

/* Social icons */
.footer-social-row {
  display: flex;
  gap: 0.55rem;
}

.fsocial-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: #f1f5f9;
  color: #475569;
  text-decoration: none;
  font-size: 0.95rem;
  border: 1px solid #e2e8f0;
  transition:
    background 0.15s,
    color 0.15s,
    border-color 0.15s,
    transform 0.12s;
}

.fsocial-link:hover {
  background: var(--green-color);
  color: #fff;
  border-color: var(--green-color);
  transform: translateY(-2px);
}

/* Column headings */
.footer-col-heading {
  color: #0f172a;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-col-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 34px;
  height: 3px;
  background: var(--green-color);
  border-radius: 3px;
}

/* Vertical divider after brand column on desktop */
@media (min-width: 992px) {
  .footer-brand {
    padding-right: 2.5rem;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
  }
}

/* Navigation lists */
.footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-nav-list a {
  color: #475569;
  text-decoration: none;
  font-size: 0.95rem;
  transition:
    color 0.15s,
    padding-left 0.15s;
  display: inline-block;
}

.footer-nav-list a:hover {
  color: var(--green-color);
  padding-left: 6px;
}

/* Contact list */
.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
}

.footer-contact-list i {
  color: var(--green-color);
  font-size: 0.88rem;
  margin-top: 0.18rem;
  flex-shrink: 0;
  width: 15px;
  text-align: center;
}

.footer-contact-list a,
.footer-contact-list span {
  color: #475569;
  text-decoration: none;
  font-size: 0.95rem;
  line-height: 1.5;
  transition: color 0.15s;
}

.footer-contact-list a:hover {
  color: var(--green-color);
}

/* Trust strip */
.footer-trust-strip {
  background: #f8fafc;
  border-top: 1px solid #e6edf3;
  border-bottom: 1px solid #e6edf3;
  padding: 1.25rem 0;
}

.footer-trust-row {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #475569;
  font-size: 0.9rem;
  font-weight: 600;
}

.footer-trust-item i {
  color: var(--green-color);
  font-size: 1.1rem;
}

/* Bottom bar */
.footer-bottom {
  background: #080c10;
  padding: 1.3rem 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-bottom-inner p {
  margin: 0;
  color: #4a5568;
  font-size: 0.82rem;
}

.footer-legal-links {
  display: flex;
  gap: 1.5rem;
}

.footer-legal-links a {
  color: #4a5568;
  text-decoration: none;
  font-size: 0.82rem;
  transition: color 0.2s;
}

.footer-legal-links a:hover {
  color: var(--green-color);
}

/* Mobile footer adjustments */
@media (max-width: 767px) {
  .footer-main {
    padding: 2.5rem 0 2rem;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-legal-links {
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
  }

  .footer-trust-row {
    gap: 1.25rem;
    justify-content: flex-start;
  }

  .footer-trust-item {
    min-width: calc(50% - 0.625rem);
  }
}

/* Breadcrumb */
.pd-breadcrumb {
  font-size: 0.82rem;
  padding: 0;
  background: transparent;
}
.pd-breadcrumb a {
  color: #64748b;
  text-decoration: none;
  transition: color 0.2s;
}
.pd-breadcrumb a:hover {
  color: var(--green-color);
}
.pd-breadcrumb .active {
  color: #1a1a2e;
  font-weight: 600;
}

/* ── Main card wrapper ── */
.pd-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

/* ── Gallery column ── */
.pd-gallery-col {
  border-right: 1px solid #f0f2f5;
}
.pd-gallery {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
}

/* Main image container — MUST keep class "main-image-container" for zoom JS */
.main-image-container.pd-main-image {
  position: relative;
  width: 100%;
  max-height: 440px;
  aspect-ratio: 4 / 3;
  border-radius: 14px;
  overflow: hidden;
  background: #f8f9fb;
  border: 1px solid #f0f2f5;
  cursor: zoom-in;
  display: flex;
  align-items: center;
  justify-content: center;
}
.main-image-container.pd-main-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
  transition: transform 0.4s ease;
}
.main-image-container.pd-main-image:hover img {
  transform: scale(1.07);
}

/* Zoom tip tooltip */
.pd-zoom-tip {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.42);
  color: #fff;
  font-size: 0.72rem;
  padding: 0.25rem 0.8rem;
  border-radius: 20px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.25s;
  pointer-events: none;
}
.main-image-container.pd-main-image:hover .pd-zoom-tip {
  opacity: 1;
}

/* Thumbnails */
.pd-thumbs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.pd-thumbs .thumbnail {
  width: 64px;
  height: 64px;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid #e9ecef;
  cursor: pointer;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  flex-shrink: 0;
  background: #f8f9fb;
}
.pd-thumbs .thumbnail:hover,
.pd-thumbs .thumbnail.active {
  border-color: var(--green-color);
  box-shadow: 0 0 0 3px rgba(0, 166, 82, 0.18);
}
.pd-thumbs .thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
}

/* ── Product info column ── */
.pd-info {
  padding: 2rem 2rem 2rem 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Badges row */
.pd-badges {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

/* Stock badge — override for this page only */
.pd-page .stock-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.9rem;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 600;
  margin: 0;
}
.pd-page .stock-badge.in-stock {
  background: #e8f5e9;
  color: #2e7d32;
}
.pd-page .stock-badge.out-of-stock {
  background: #fff3e0;
  color: #e65100;
}

/* Product title — override for this page only */
.pd-page .product-title.pd-title {
  font-size: clamp(1.25rem, 2.5vw, 1.7rem);
  font-weight: 700;
  color: #1a1a2e;
  line-height: 1.3;
  margin: 0;
}

/* Meta row */
.pd-meta {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
  font-size: 0.84rem;
  color: #64748b;
}
.pd-brand i {
  color: var(--green-color);
}
.pd-brand .brand-name {
  color: var(--green-color);
  font-weight: 600;
}
.pd-sep {
  color: #cbd5e1;
}
.pd-sku {
  color: #94a3b8;
  font-size: 0.8rem;
}

/* Horizontal rule */
.pd-rule {
  height: 1px;
  background: #f0f2f5;
}

/* Price box */
.pd-price-box.pricing {
  background: linear-gradient(135deg, #f8fff8 0%, #f0fdf4 100%);
  border: 1px solid #c8e6c9;
  border-radius: 12px;
  padding: 1rem 1.25rem;
  margin: 0;
}
.pd-price-row {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  flex-wrap: wrap;
}
/* .sale-price and .regular-price content set by JS */
.pd-page .sale-price.pd-sale {
  font-size: 2.1rem;
  font-weight: 800;
  color: #1b5e20;
  line-height: 1;
}
.pd-page .regular-price.pd-was {
  font-size: 1rem;
  color: #94a3b8;
  font-weight: 400;
  text-decoration: line-through;
}

/* Delivery chips */
.pd-delivery {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.pd-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #f8f9fa;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 0.3rem 0.85rem;
  font-size: 0.82rem;
  color: #475569;
}
.pd-chip i {
  color: var(--green-color);
}

/* Quantity + CTA row */
.pd-purchase {
  display: flex;
  align-items: flex-end;
  gap: 1rem;
  flex-wrap: wrap;
}
.pd-qty {
  flex-shrink: 0;
}
.pd-qty-label {
  display: block;
  font-size: 0.76rem;
  font-weight: 700;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 0.4rem;
}
/* Qty stepper — keep class "quantity-wrapper" for existing CSS compatibility */
.pd-page .quantity-wrapper.pd-qty-ctrl {
  display: inline-flex;
  align-items: center;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}
.pd-page .quantity-btn {
  border: none;
  background: transparent;
  width: 40px;
  height: 42px;
  font-size: 1.2rem;
  color: var(--green-color);
  cursor: pointer;
  transition: background 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pd-page .quantity-btn:hover {
  background: #f0fdf4;
}
.pd-page .quantity-input {
  width: 52px;
  border: none;
  border-left: 1px solid #e2e8f0;
  border-right: 1px solid #e2e8f0;
  text-align: center;
  font-weight: 700;
  font-size: 1rem;
  height: 42px;
  background: #fff;
  -moz-appearance: textfield;
}
.pd-page .quantity-input::-webkit-outer-spin-button,
.pd-page .quantity-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

/* Add to Cart button — keeps class "product-details-add-to-cart" for JS */
.pd-page .product-details-add-to-cart.pd-cta {
  flex: 1;
  min-width: 190px;
  height: 46px;
  background: var(--green-color);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  box-shadow: 0 4px 16px rgba(0, 166, 82, 0.28);
  transition:
    background 0.2s,
    box-shadow 0.2s,
    transform 0.15s;
  font-family: inherit;
  padding: 0 1.5rem;
  letter-spacing: 0.02em;
}
.pd-page .product-details-add-to-cart.pd-cta:hover {
  background: #009149;
  box-shadow: 0 6px 22px rgba(0, 166, 82, 0.38);
  transform: translateY(-1px);
}
.pd-page .product-details-add-to-cart.pd-cta:disabled {
  background: #d1d5db;
  box-shadow: none;
  cursor: not-allowed;
  transform: none;
}

/* Secondary actions row — keeps class "p-details-actions" for existing CSS */
.pd-actions.p-details-actions {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
  align-items: center;
  margin: 0;
}
.pd-btn-wa,
.pd-btn-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 15px 20px;
  border-radius: 10px;
  font-size: 0.87rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  border: none;
  font-family: inherit;
  transition:
    background 0.2s,
    box-shadow 0.2s,
    transform 0.15s;
  flex: 1;
  min-width: 155px;
}
.pd-btn-wa {
  background: var(--green-color);
  color: #fff;
  box-shadow: 0 3px 10px rgba(37, 211, 102, 0.22);
}
.pd-btn-wa:hover {
  background: #1ebe5d;
  color: #fff;
  box-shadow: 0 5px 16px rgba(37, 211, 102, 0.32);
  transform: translateY(-1px);
}
.pd-btn-call {
  background: var(--red-color);
  color: #fff;
  box-shadow: 0 3px 10px rgba(237, 27, 36, 0.18);
}
.pd-btn-call:hover {
  background: #c81018;
  color: #fff;
  box-shadow: 0 5px 16px rgba(237, 27, 36, 0.28);
  transform: translateY(-1px);
}

/* Trust strip */
.pd-trust {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 0.75rem 0;
  border-top: 1px solid #f0f2f5;
  border-bottom: 1px solid #f0f2f5;
}
.pd-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  font-size: 0.78rem;
  color: #64748b;
  font-weight: 500;
}
.pd-trust-item i {
  color: var(--green-color);
  font-size: 0.88rem;
}

/* Short description */
.pd-page .short-description.pd-short {
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.75;
  border-left: 3px solid var(--green-color);
  background: #f8fafc;
  padding: 0.8rem 1rem;
  border-radius: 0 8px 8px 0;
  margin: 0;
  display: flex;
}
.pd-page .short-description.pd-short:empty {
  display: none;
}

/* ── Tabs section ── */
.pd-tabs-wrap {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}
.pd-tabs {
  display: flex;
  border-bottom: 2px solid #f0f2f5;
  background: #fafbfc;
  padding: 0 1rem;
  gap: 0;
}
.pd-tab.nav-link {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.95rem 1.35rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: #64748b;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  background: transparent;
  border-radius: 0;
  transition:
    color 0.2s,
    border-color 0.2s;
  text-decoration: none;
}
.pd-tab.nav-link:hover:not(.active) {
  color: #1a1a2e;
  border-bottom-color: #e2e8f0;
}
.pd-tab.nav-link.active {
  color: var(--green-color);
  border-bottom-color: var(--green-color);
  background: transparent;
}
.pd-tab-body {
  padding: 1.75rem 2rem;
}
.pd-tab-body .tab-pane {
  font-size: 0.93rem;
  color: #475569;
  line-height: 1.75;
}
.pd-tab-body table {
  border-radius: 8px;
  overflow: hidden;
}
.pd-tab-body .table th {
  background: #f8fafc;
  color: #1a1a2e;
  font-weight: 600;
  border-color: #f0f2f5;
}
.pd-tab-body .table td {
  border-color: #f0f2f5;
  color: #475569;
}

/* ── Related products ── */
.pd-related {
  margin-bottom: 1rem;
}
.pd-related-hd {
  margin-bottom: 1.5rem;
}
.pd-related-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 0.25rem 0;
  display: inline-block;
  padding-bottom: 0.45rem;
  border-bottom: 3px solid var(--green-color);
}
.pd-related-sub {
  color: #9aa5b4;
  font-size: 0.85rem;
  margin: 0;
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .pd-gallery-col {
    border-right: none;
    border-bottom: 1px solid #f0f2f5;
  }
  .pd-info {
    padding: 1.5rem;
  }
}
@media (max-width: 767px) {
  .pd-page .product-title.pd-title {
    font-size: 1.25rem;
  }
  .pd-page .sale-price.pd-sale {
    font-size: 1.65rem;
  }
  .pd-purchase {
    flex-direction: column;
    align-items: stretch;
  }
  .pd-page .product-details-add-to-cart.pd-cta {
    min-width: unset;
  }
  .pd-actions.p-details-actions {
    flex-direction: column;
  }
  .pd-btn-wa,
  .pd-btn-call {
    min-width: unset;
  }
  .pd-tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
  }
  .pd-tab-body {
    padding: 1.25rem;
  }
}
@media (max-width: 480px) {
  .pd-info {
    padding: 1.1rem;
  }
  .pd-gallery {
    padding: 1rem;
  }
}

/* ===================================================
   PRODUCT DETAILS — 3-COLUMN WALMART-STYLE LAYOUT
   Left: thumbnails | Centre: image + content | Right: sticky CTA
   =================================================== */

/* Full-width container with controlled side padding */
.pd-container {
  max-width: 1400px;
  margin: 0 auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

/* 3-column grid */
.pd-3col {
  display: grid;
  grid-template-columns: 104px 1fr 310px;
  gap: 1.5rem;
  align-items: start;
}

/* ── COL 1: Thumbnail strip ── */
.pd-col-thumbs {
  position: sticky;
  top: 200px;
  max-height: 440px;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: var(--green-color) #f0f2f5;
}
.pd-col-thumbs::-webkit-scrollbar {
  width: 4px;
}
.pd-col-thumbs::-webkit-scrollbar-thumb {
  background: var(--green-color);
  border-radius: 4px;
}
.pd-col-thumbs::-webkit-scrollbar-track {
  background: #f0f2f5;
}

/* The thumbnailContainer — JS appends .thumbnail divs here */
.pd-thumbstrip {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
/* Each thumbnail added by JS */
.pd-thumbstrip .thumbnail {
  width: 96px;
  height: 96px;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid #e9ecef;
  cursor: pointer;
  flex-shrink: 0;
  background: #f8f9fb;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.pd-thumbstrip .thumbnail:hover,
.pd-thumbstrip .thumbnail.active {
  border-color: var(--green-color);
  box-shadow: 0 0 0 3px rgba(0, 166, 82, 0.18);
}
.pd-thumbstrip .thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
}

/* ── COL 2: Centre content ── */
.pd-col-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  min-width: 0; /* prevent grid blowout */
}

/* Main image — keep .main-image-container for zoom JS */
.main-image-container.pd-main-image {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  overflow: hidden;
  background: #f8f9fb;
  border: 1px solid #eef0f3;
  cursor: zoom-in;
  display: flex;
  align-items: center;
  justify-content: center;
}
.main-image-container.pd-main-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
  transition: transform 0.4s ease;
}
.main-image-container.pd-main-image:hover img {
  transform: scale(1.06);
}

.pd-zoom-tip {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.42);
  color: #fff;
  font-size: 0.72rem;
  padding: 0.25rem 0.85rem;
  border-radius: 20px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.25s;
  pointer-events: none;
}
.main-image-container.pd-main-image:hover .pd-zoom-tip {
  opacity: 1;
}

/* Title + meta below the image */
.pd-centre-meta {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.pd-page .product-title.pd-title {
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  font-weight: 700;
  color: #1a1a2e;
  line-height: 1.3;
  margin: 0;
}
.pd-meta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  font-size: 0.83rem;
  color: #64748b;
}
.pd-brand i {
  color: var(--green-color);
}
.pd-brand .brand-name {
  color: var(--green-color);
  font-weight: 600;
}
.pd-sep {
  color: #cbd5e1;
}
.pd-sku {
  color: #94a3b8;
  font-size: 0.8rem;
}

/* Short description */
.pd-page .short-description.pd-short {
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.75;
  border-left: 3px solid var(--green-color);
  background: #f8fafc;
  padding: 0.8rem 1rem;
  border-radius: 0 8px 8px 0;
}
.pd-page .short-description.pd-short:empty {
  display: none;
}

/* Tabs */
.pd-tabs-wrap {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}
.pd-tabs {
  display: flex;
  border-bottom: 2px solid #f0f2f5;
  background: #fafbfc;
  padding: 0 1rem;
}
.pd-tab.nav-link {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.9rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #64748b;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  background: transparent;
  border-radius: 0;
  transition:
    color 0.2s,
    border-color 0.2s;
  text-decoration: none;
}
.pd-tab.nav-link:hover:not(.active) {
  color: #1a1a2e;
  border-bottom-color: #e2e8f0;
}
.pd-tab.nav-link.active {
  color: var(--green-color);
  border-bottom-color: var(--green-color);
  background: transparent;
}
.pd-tab-body {
  padding: 1.5rem 1.75rem;
}
.pd-tab-body .tab-pane {
  font-size: 0.92rem;
  color: #475569;
  line-height: 1.75;
}
.pd-tab-body .table th {
  background: #f8fafc;
  color: #1a1a2e;
  font-weight: 600;
  border-color: #f0f2f5;
}
.pd-tab-body .table td {
  border-color: #f0f2f5;
  color: #475569;
}

/* Related products */
.pd-related-hd {
  margin-bottom: 1.25rem;
}
.pd-related-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 0.2rem 0;
  display: inline-block;
  padding-bottom: 0.45rem;
  border-bottom: 3px solid var(--green-color);
}
.pd-related-sub {
  color: #9aa5b4;
  font-size: 0.84rem;
  margin: 0;
}

/* ── COL 3: Sticky purchase panel ── */
.pd-col-action {
  position: sticky;
  top: 200px;
  align-self: start;
}
.pd-sticky-panel {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 28px rgba(0, 0, 0, 0.1);
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border: 1px solid #f0f2f5;
}

/* Stock badge in the panel */
.pd-page .stock-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.9rem;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 600;
  align-self: flex-start;
}
.pd-page .stock-badge.in-stock {
  background: #e8f5e9;
  color: #2e7d32;
}
.pd-page .stock-badge.out-of-stock {
  background: #fff3e0;
  color: #e65100;
}

/* Price box */
.pd-price-box.pricing {
  background: linear-gradient(135deg, #f8fff8 0%, #f0fdf4 100%);
  border: 1px solid #c8e6c9;
  border-radius: 12px;
  padding: 0.9rem 1.1rem;
}
.pd-price-row {
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
  flex-wrap: wrap;
}
.pd-page .sale-price.pd-sale {
  font-size: 2rem;
  font-weight: 800;
  color: #1b5e20;
  line-height: 1;
}
.pd-page .regular-price.pd-was {
  font-size: 0.95rem;
  color: #94a3b8;
  text-decoration: line-through;
  font-weight: 400;
}

/* Delivery chips */
.pd-delivery {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.pd-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #f8f9fa;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 0.35rem 0.75rem;
  font-size: 0.82rem;
  color: #475569;
}
.pd-chip i {
  color: var(--green-color);
}

/* Horizontal rule */
.pd-rule {
  height: 1px;
  background: #f0f2f5;
}

/* Quantity stepper */
.pd-qty {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.pd-qty-label {
  font-size: 0.76rem;
  font-weight: 700;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.pd-page .quantity-wrapper.pd-qty-ctrl {
  display: inline-flex;
  align-items: center;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  width: 100%;
}
.pd-page .quantity-btn {
  border: none;
  background: transparent;
  width: 44px;
  height: 44px;
  font-size: 1.2rem;
  color: var(--green-color);
  cursor: pointer;
  transition: background 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pd-page .quantity-btn:hover {
  background: #f0fdf4;
}
.pd-page .quantity-input {
  flex: 1;
  border: none;
  border-left: 1px solid #e2e8f0;
  border-right: 1px solid #e2e8f0;
  text-align: center;
  font-weight: 700;
  font-size: 1rem;
  height: 44px;
  background: #fff;
  -moz-appearance: textfield;
}
.pd-page .quantity-input::-webkit-outer-spin-button,
.pd-page .quantity-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

/* Add to Cart CTA */
.pd-page .product-details-add-to-cart.pd-cta {
  width: 100%;
  padding: 15px 20px;
  background: var(--green-color);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  box-shadow: 0 4px 16px rgba(0, 166, 82, 0.28);
  transition:
    background 0.2s,
    box-shadow 0.2s,
    transform 0.15s;
  font-family: inherit;
  letter-spacing: 0.02em;
}
.pd-page .product-details-add-to-cart.pd-cta:hover {
  background: #009149;
  box-shadow: 0 6px 22px rgba(0, 166, 82, 0.38);
  transform: translateY(-1px);
}
.pd-page .product-details-add-to-cart.pd-cta:disabled {
  background: #d1d5db;
  box-shadow: none;
  cursor: not-allowed;
  transform: none;
}

/* Secondary action buttons */
.pd-actions.p-details-actions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin: 0;
}
.pd-btn-wa,
.pd-btn-call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  height: 44px;
  border-radius: 10px;
  font-size: 0.87rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  border: none;
  font-family: inherit;
  width: 100%;
  transition:
    background 0.2s,
    box-shadow 0.2s,
    transform 0.15s;
}
.pd-btn-wa {
  background: var(--green-color);
  color: #fff;
  box-shadow: 0 3px 10px rgba(37, 211, 102, 0.22);
}
.pd-btn-wa:hover {
  background: #1ebe5d;
  color: #fff;
  transform: translateY(-1px);
}
.pd-btn-call {
  background: var(--red-color);
  color: #fff;
  box-shadow: 0 3px 10px rgba(237, 27, 36, 0.18);
}
.pd-btn-call:hover {
  background: #c81018;
  color: #fff;
  transform: translateY(-1px);
}

/* Trust badges */
.pd-trust {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  padding-top: 0.5rem;
  border-top: 1px solid #f0f2f5;
}
.pd-trust-item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  color: #64748b;
  font-weight: 500;
}
.pd-trust-item i {
  color: var(--green-color);
  font-size: 0.85rem;
}

/* ══ RESPONSIVE ══ */

/* Tablet */
@media (max-width: 1024px) {
  .pd-3col {
    grid-template-columns: 96px 1fr 280px;
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  /* Collapse to single column:
     order 1 = content (image + title + desc + tabs)
     order 2 = thumbnails (horizontal strip)
     order 3 = sticky purchase panel
     Related products are outside the grid — always render last naturally */
  .pd-3col {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .pd-col-content {
    order: 1;
  }

  /* Thumbnails switch to horizontal row below image */
  .pd-col-thumbs {
    order: 2;
    position: static;
    max-height: none;
    overflow-x: auto;
    overflow-y: hidden;
  }
  .pd-thumbstrip {
    flex-direction: row;
    gap: 8px;
    flex-wrap: nowrap;
  }
  .pd-thumbstrip .thumbnail {
    width: 72px;
    height: 72px;
    flex-shrink: 0;
  }

  /* Purchase panel comes after thumbnails */
  .pd-col-action {
    order: 3;
    position: static;
  }

  .pd-page .product-title.pd-title {
    font-size: 1.2rem;
  }
  .pd-page .sale-price.pd-sale {
    font-size: 1.6rem;
  }
  .pd-actions.p-details-actions {
    flex-direction: row;
  }
  .pd-btn-wa,
  .pd-btn-call {
    flex: 1;
  }
  .pd-tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
  }
  .pd-tab-body {
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  .pd-container {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
  .pd-sticky-panel {
    padding: 1rem;
  }
  .pd-actions.p-details-actions {
    flex-direction: column;
  }
}

/* ===== FIXED FAVORITES FLOATING BUTTON ===== */

.favorites-float {
  position: fixed;
  bottom: 210px;
  left: 20px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--red-color);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 16px rgba(237, 27, 36, 0.35);
  z-index: 998;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.favorites-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 22px rgba(237, 27, 36, 0.5);
}

.favorites-float .favorites-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: #fff;
  color: var(--red-color);
  border: 2px solid var(--red-color);
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-size: 0.68rem;
  font-weight: 700;
  display: none;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

@media (max-width: 767px) {
  .favorites-float {
    bottom: 170px;
    left: 16px;
    width: 46px;
    height: 46px;
    font-size: 1.05rem;
  }
}

/* ===================================================
   SHOP FILTER PANEL  —  Professional Redesign
   =================================================== */

/* Panel shell */
.sf-panel {
  max-width: 340px;
  display: flex;
  flex-direction: column;
}
.sf-panel .offcanvas-header {
  display: none;
} /* replaced by .sf-header */

/* ── Header ── */
.sf-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.4rem;
  border-bottom: 1px solid #f0f2f5;
  background: #fff;
  flex-shrink: 0;
}
.sf-hd-left {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.sf-hd-left i {
  color: var(--green-color);
  font-size: 1rem;
}
.sf-hd-left h5 {
  margin: 0;
  font-weight: 700;
  color: #1a1a2e;
  font-size: 1rem;
}
.sf-hd-right {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.sf-reset-link {
  background: none;
  border: none;
  color: var(--green-color);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ── Body ── */
.sf-body {
  padding: 0 !important;
  overflow-y: auto;
  flex: 1;
}

/* ── Section ── */
.sf-section {
  border-bottom: 1px solid #f0f2f5;
  padding: 1.1rem 1.4rem;
}
.sf-section-hd {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: #1a1a2e;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}
.sf-section-hd i {
  color: var(--green-color);
  font-size: 0.9rem;
}

/* ── Category radio pills ── */
.sf-pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.sf-pill {
  display: inline-flex;
  cursor: pointer;
  margin: 0;
}
.sf-pill input[type="radio"],
.sf-pill input[type="checkbox"] {
  display: none;
}
.sf-pill span {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.85rem;
  border: 1.5px solid #e2e8f0;
  border-radius: 20px;
  font-size: 0.79rem;
  color: #475569;
  background: #fff;
  transition: all 0.18s;
  user-select: none;
  white-space: nowrap;
}
.sf-pill:hover span {
  border-color: var(--green-color);
  color: var(--green-color);
}
.sf-pill input:checked + span {
  background: var(--green-color);
  border-color: var(--green-color);
  color: #fff;
  font-weight: 600;
}

/* ── Price display bubbles ── */
.sf-price-display {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.sf-price-bubble {
  flex: 1;
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  padding: 0.45rem 0.75rem;
  font-size: 0.92rem;
  font-weight: 700;
  color: #1a1a2e;
  text-align: center;
}
.sf-price-sep {
  color: #94a3b8;
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* ── Dual range slider ── */
.sf-slider-wrap {
  position: relative;
  height: 40px;
  margin-bottom: 1.1rem;
}
.sf-track {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 5px;
  background: #e2e8f0;
  border-radius: 5px;
  transform: translateY(-50%);
  pointer-events: none;
}
.sf-fill {
  position: absolute;
  height: 100%;
  background: var(--green-color);
  border-radius: 5px;
}
.sf-thumb {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 5px;
  transform: translateY(-50%);
  background: transparent;
  -webkit-appearance: none;
  appearance: none;
  pointer-events: none;
  outline: none;
  z-index: 2;
}
.sf-thumb::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  border: 2.5px solid var(--green-color);
  cursor: pointer;
  pointer-events: all;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition:
    box-shadow 0.15s,
    transform 0.15s;
}
.sf-thumb::-webkit-slider-thumb:hover {
  box-shadow: 0 0 0 7px rgba(0, 166, 82, 0.14);
  transform: scale(1.05);
}
.sf-thumb::-webkit-slider-thumb:active {
  box-shadow: 0 0 0 10px rgba(0, 166, 82, 0.14);
}
.sf-thumb::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  border: 2.5px solid var(--green-color);
  cursor: pointer;
  pointer-events: all;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* ── Preset buttons ── */
.sf-presets {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.sf-preset {
  border: 1.5px solid #e2e8f0;
  background: #fff;
  border-radius: 6px;
  padding: 0.28rem 0.7rem;
  font-size: 0.78rem;
  color: #475569;
  cursor: pointer;
  transition: all 0.18s;
  font-family: inherit;
}
.sf-preset:hover,
.sf-preset.active {
  border-color: var(--green-color);
  color: var(--green-color);
  background: #f0fdf4;
  font-weight: 600;
}

/* ── Footer ── */
.sf-footer {
  padding: 1rem 1.4rem;
  border-top: 1px solid #f0f2f5;
  display: flex;
  gap: 0.75rem;
  background: #fff;
  flex-shrink: 0;
}
.sf-btn-secondary {
  flex: 1;
  height: 46px;
  border: 1.5px solid #e2e8f0;
  background: #fff;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  color: #475569;
  cursor: pointer;
  transition: all 0.18s;
  font-family: inherit;
}
.sf-btn-secondary:hover {
  border-color: var(--red-color);
  color: var(--red-color);
}
.sf-btn-primary {
  flex: 2;
  height: 46px;
  background: var(--green-color);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 166, 82, 0.25);
  transition:
    background 0.2s,
    box-shadow 0.2s,
    transform 0.15s;
  font-family: inherit;
}
.sf-btn-primary:hover {
  background: #009149;
  box-shadow: 0 6px 18px rgba(0, 166, 82, 0.35);
  transform: translateY(-1px);
}

/* ===================================================
   SHOP PAGE HEADER  —  Modern controls bar
   =================================================== */

.sh-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  background: #fff;
  border-radius: 12px;
  padding: 0.85rem 1.25rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  border: 1px solid #f0f2f5;
}

/* Left side */
.sh-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.sh-count {
  margin: 0;
  font-size: 0.88rem;
  color: #64748b;
  white-space: nowrap;
}
.sh-count strong {
  color: #1a1a2e;
}

/* Active filter chips */
.sh-chips {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}
.sh-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: #f0fdf4;
  border: 1.5px solid var(--green-color);
  color: var(--green-color);
  border-radius: 20px;
  padding: 0.2rem 0.7rem;
  font-size: 0.78rem;
  font-weight: 600;
}
.sh-chip-remove {
  background: none;
  border: none;
  color: var(--green-color);
  cursor: pointer;
  padding: 0;
  line-height: 1;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
}

/* Right side */
.sh-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Per-page control */
.sh-perpage {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}
.sh-perpage-label {
  font-size: 0.84rem;
  color: #64748b;
  white-space: nowrap;
}
.sh-select {
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  padding: 0.4rem 0.65rem;
  font-size: 0.84rem;
  color: #1a1a2e;
  background: #fff;
  cursor: pointer;
  outline: none;
  transition: border-color 0.2s;
  font-family: inherit;
}
.sh-select:focus {
  border-color: var(--green-color);
}

/* Filters button */
.sh-filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.1rem;
  background: var(--green-color);
  color: #fff;
  border: none;
  border-radius: 9px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  box-shadow: 0 3px 10px rgba(0, 166, 82, 0.22);
  transition:
    background 0.2s,
    box-shadow 0.2s,
    transform 0.15s;
  position: relative;
}
.sh-filter-btn:hover {
  background: #009149;
  box-shadow: 0 5px 16px rgba(0, 166, 82, 0.32);
  transform: translateY(-1px);
}
.sh-filter-btn i {
  font-size: 0.9rem;
}

/* Active filter count badge on the button */
.sh-filter-badge {
  display: none;
  min-width: 18px;
  height: 18px;
  background: #fff;
  color: var(--green-color);
  border-radius: 20px;
  font-size: 0.68rem;
  font-weight: 700;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}
.sh-filter-badge.visible {
  display: inline-flex;
}

@media (max-width: 575px) {
  .sh-bar {
    padding: 0.75rem 1rem;
  }
  .sh-perpage {
    display: none;
  } /* hide per-page on very small screens */
  .sh-filter-btn {
    width: 100%;
    justify-content: center;
  }
  .sh-left {
    width: 100%;
  }
}

/* ===================================================
   ACCOUNT PAGE  —  Professional Redesign
   =================================================== */

.acct-page {
  min-height: 80vh;
}

/* ── Profile banner ── */
.acct-banner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: linear-gradient(135deg, var(--green-color) 0%, #009149 100%);
  border-radius: 16px;
  padding: 2rem 2.25rem;
  margin-bottom: 1.5rem;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0, 166, 82, 0.28);
}
.acct-banner::after {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
}

.acct-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  border: 3px solid rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  letter-spacing: 0.05em;
}

.acct-banner-info {
  flex: 1;
  min-width: 0;
}
.acct-display-name {
  font-size: 1.45rem;
  font-weight: 700;
  margin: 0 0 0.2rem;
  color: #fff;
}
.acct-display-email {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 0.5rem;
}
.acct-member-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 20px;
  padding: 0.18rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: #fff;
}

.acct-banner-signout {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(255, 255, 255, 0.15);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  border-radius: 9px;
  color: #fff;
  padding: 0.55rem 1.1rem;
  font-size: 0.87rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  font-family: inherit;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.acct-banner-signout:hover {
  background: rgba(255, 255, 255, 0.28);
}

/* ── Two-column layout ── */
.acct-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1.5rem;
  align-items: start;
}

/* ── Sidebar navigation ── */
.acct-sidebar {
  position: sticky;
  top: 200px;
}
.acct-nav {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.acct-nav-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.95rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: #475569;
  background: none;
  border: none;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  transition:
    background 0.15s,
    color 0.15s;
  font-family: inherit;
  border-left: 3px solid transparent;
}
.acct-nav-item i:first-child {
  color: #94a3b8;
  font-size: 0.95rem;
  width: 18px;
  text-align: center;
  transition: color 0.15s;
}
.acct-nav-item:hover {
  background: #f8fafc;
  color: #1a1a2e;
}
.acct-nav-item:hover i:first-child {
  color: var(--green-color);
}
.acct-nav-item.active,
.acct-nav-item.show {
  background: #f0fdf5;
  color: var(--green-color);
  font-weight: 700;
  border-left-color: var(--green-color);
}
.acct-nav-item.active i:first-child {
  color: var(--green-color);
}
.acct-nav-arrow {
  margin-left: auto;
  font-size: 0.7rem;
  color: #cbd5e1;
}
.acct-nav-danger {
  color: var(--red-color) !important;
}
.acct-nav-danger i:first-child {
  color: var(--red-color) !important;
}
.acct-nav-sep {
  height: 1px;
  background: #f0f2f5;
  margin: 0.25rem 0;
}

/* ── Content area ── */
.acct-content {
  min-width: 0;
}

.acct-section-hd {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}
.acct-section-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 0.2rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.acct-section-title i {
  color: var(--green-color);
  font-size: 1rem;
}
.acct-section-sub {
  color: #9aa5b4;
  font-size: 0.84rem;
  margin: 0;
}

/* ── Order cards ── */
.acct-order-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  border: 1px solid #f0f2f5;
  transition:
    box-shadow 0.2s,
    transform 0.2s;
  display: flex;
  flex-direction: column;
}
.acct-order-card:hover {
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}
.acct-order-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem 0.75rem;
  border-bottom: 1px solid #f5f7fa;
}
.acct-order-id {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: #64748b;
  font-weight: 600;
}
.acct-order-id i {
  color: var(--green-color);
}

/* Status chips */
.acct-status {
  display: inline-flex;
  align-items: center;
  padding: 0.22rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: capitalize;
}
.acct-status-success {
  background: #e8f5e9;
  color: #2e7d32;
}
.acct-status-warning {
  background: #fff8e1;
  color: #f57c00;
}
.acct-status-primary {
  background: #e3f2fd;
  color: #1565c0;
}
.acct-status-info {
  background: #e0f7fa;
  color: #006064;
}
.acct-status-danger {
  background: #ffebee;
  color: #c62828;
}
.acct-status-secondary {
  background: #f5f5f5;
  color: #616161;
}

.acct-order-body {
  padding: 1rem 1.25rem;
  flex: 1;
}
.acct-order-amount {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--green-color);
  margin-bottom: 0.4rem;
}
.acct-order-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.82rem;
  color: #9aa5b4;
}
.acct-order-meta i {
  color: #cbd5e1;
}

.acct-order-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem;
  background: #f8fafc;
  border-top: 1px solid #f0f2f5;
  color: var(--green-color);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition:
    background 0.15s,
    color 0.15s;
}
.acct-order-link:hover {
  background: #f0fdf5;
  color: var(--green-color);
}

/* ── Loading skeletons ── */
@keyframes acctSkelShimmer {
  0% {
    background-position: -400px 0;
  }
  100% {
    background-position: 400px 0;
  }
}
.acct-skel {
  border-radius: 6px;
  background: linear-gradient(90deg, #f0f2f5 25%, #e8eaed 50%, #f0f2f5 75%);
  background-size: 800px 100%;
  animation: acctSkelShimmer 1.5s infinite;
}
.acct-skel-sm {
  height: 14px;
}
.acct-skel-md {
  height: 18px;
}
.acct-skel-lg {
  height: 24px;
}
.acct-skel-w40 {
  width: 40%;
}
.acct-skel-w50 {
  width: 50%;
}
.acct-skel-w60 {
  width: 60%;
}
.acct-skel-w80 {
  width: 80%;
}

.acct-skel-card {
  padding: 1.25rem;
  pointer-events: none;
}

/* ── Empty state ── */
.acct-empty-state {
  text-align: center;
  padding: 3.5rem 2rem;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.05);
}
.acct-empty-state i {
  font-size: 3.5rem;
  color: #e2e8f0;
  margin-bottom: 1rem;
  display: block;
}
.acct-empty-state h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 0.5rem;
}
.acct-empty-state p {
  color: #9aa5b4;
  margin-bottom: 1.5rem;
}

/* ── Profile section cards ── */
.acct-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  border: 1px solid #f0f2f5;
}
.acct-card-hd {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 1.1rem 1.5rem;
  border-bottom: 1px solid #f0f2f5;
  background: #fafbfc;
}
.acct-card-hd i {
  color: var(--green-color);
  font-size: 1rem;
}
.acct-card-hd h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0;
}
.acct-card-body {
  padding: 1.5rem;
}

.acct-readonly-tag {
  font-size: 0.68rem;
  font-weight: 600;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-left: 0.4rem;
  vertical-align: middle;
}
.co-input-group-readonly {
  background: #f8fafc;
  cursor: not-allowed;
}
.co-input-group-readonly .co-input {
  color: #94a3b8;
  cursor: not-allowed;
}

.acct-address-hint {
  font-size: 0.88rem;
  color: #64748b;
  margin-bottom: 1rem;
}

.acct-form-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* ── Buttons ── */
.acct-btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 0.65rem 1.4rem;
  background: var(--green-color);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  font-family: inherit;
  transition:
    background 0.2s,
    box-shadow 0.2s,
    transform 0.15s;
  box-shadow: 0 4px 14px rgba(0, 166, 82, 0.25);
}
.acct-btn-primary:hover {
  background: #009149;
  color: #fff;
  box-shadow: 0 6px 18px rgba(0, 166, 82, 0.35);
  transform: translateY(-1px);
}
.acct-btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 0.65rem 1.4rem;
  background: #fff;
  color: #475569;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition:
    border-color 0.2s,
    color 0.2s,
    background 0.2s;
}
.acct-btn-secondary:hover {
  border-color: var(--green-color);
  color: var(--green-color);
  background: #f0fdf5;
}

/* ══════════════════════════════════════
   About Page
══════════════════════════════════════ */
.about-page {
  padding: 0;
}

.about-page-hero {
  height: 400px;
  background-image: url("/assets/images/banners/panacea-about-banner.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* ── Shared eyebrow label ── */
.about-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-color);
  background: rgba(0, 166, 82, 0.1);
  border-radius: 100px;
  padding: 0.25rem 0.9rem;
  margin-bottom: 0.75rem;
}

/* ── Intro ── */
.about-intro {
  padding: 4rem 0 3.5rem;
  text-align: center;
}
.about-intro-title {
  font-size: 2rem;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 1rem;
}
.about-intro-divider {
  width: 48px;
  height: 3px;
  background: var(--green-color);
  border-radius: 2px;
  margin: 0 auto 1.25rem;
}
.about-intro-lead {
  font-size: 0.95rem;
  color: #8b8e93;
  line-height: 1.75;
  max-width: 700px;
  margin: 0 auto;
}
.about-intro-lead a {
  color: var(--green-color);
  font-weight: 600;
}
.about-intro-lead a:hover {
  color: var(--red-color);
}

/* ── Services ── */
.about-services {
  padding: 0 0 4rem;
}
.about-section-hd {
  margin-bottom: 2.25rem;
}
.about-section-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-color);
  margin-bottom: 0.4rem;
}
.about-section-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #1a1a2e;
  margin: 0;
}
.about-service-card {
  background: #fff;
  border: 1px solid #ebebeb;
  border-radius: 10px;
  padding: 2rem 1.5rem 1.75rem;
  height: 100%;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.07);
  transition:
    border-top-color 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
}
.about-service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.11);
}
.about-service-icon {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background: rgba(0, 166, 82, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.35rem;
  color: var(--green-color);
  transition:
    background 0.2s,
    color 0.2s;
}
.about-service-card:hover .about-service-icon {
  background: rgba(237, 27, 36, 0.08);
  color: var(--red-color);
}
.about-service-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 0.55rem;
}
.about-service-card p {
  font-size: 0.875rem;
  color: #8b8e93;
  line-height: 1.65;
  margin: 0;
}

/* ── CTA – Order Now ── */
.about-cta {
  padding: 0 0 4rem;
}
.about-cta-inner {
  border-left: 4px solid var(--green-color);
  padding: 0.25rem 0 0.25rem 2rem;
}
.about-cta-inner h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 0.75rem;
}
.about-cta-lead {
  font-size: 0.9rem;
  color: #8b8e93;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 680px;
}
.about-cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.about-cta-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  padding: 1rem 1.75rem;
  border-radius: 10px;
  font-size: 0.875rem;
  font-weight: 700;
  border: 1.5px solid transparent;
  text-decoration: none;
  min-width: 160px;
  transition:
    background 0.2s,
    color 0.2s,
    border-color 0.2s,
    box-shadow 0.2s,
    transform 0.15s;
}
.about-cta-btn i {
  font-size: 1.4rem;
}
.about-cta-btn-solid {
  background: var(--green-color);
  color: #fff;
  border-color: var(--green-color);
  box-shadow: 0 4px 14px rgba(0, 166, 82, 0.25);
}
.about-cta-btn-solid:hover {
  background: #007a3d;
  color: #fff;
  border-color: #007a3d;
  box-shadow: 0 6px 20px rgba(0, 166, 82, 0.35);
  transform: translateY(-2px);
}
.about-cta-btn-outline {
  background: transparent;
  color: #333;
  border-color: #d0d0d0;
}
.about-cta-btn-outline:hover {
  border-color: var(--green-color);
  color: var(--green-color);
}

/* ── Vision & Mission ── */
.about-vm {
  padding: 0 0 4rem;
}
.about-vm-card {
  background: #fff;
  border: 1px solid #ebebeb;
  border-radius: 10px;
  padding: 2rem 1.75rem;
  height: 100%;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.07);
  transition:
    border-left-color 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
}
.about-vm-card:hover {
  border-left-color: var(--red-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.11);
}
.about-vm-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(0, 166, 82, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--green-color);
  margin-bottom: 1rem;
}
.about-vm-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 0.6rem;
}
.about-vm-card p {
  font-size: 0.875rem;
  color: #8b8e93;
  line-height: 1.65;
  margin: 0;
}

/* ── Contact ── */
.about-contact {
  padding: 3rem 0 4rem;
  text-align: center;
  border-top: 1px solid #ebebeb;
}
.about-contact h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 0.75rem;
}
.about-contact p {
  color: #8b8e93;
  font-size: 0.9rem;
  margin: 0;
}
.about-contact a {
  color: var(--green-color);
  font-weight: 600;
}
.about-contact a:hover {
  color: var(--red-color);
}

@media (max-width: 768px) {
  .about-page-hero {
    height: 220px;
  }
  .about-intro {
    padding: 2.5rem 0 2rem;
  }
  .about-intro-title {
    font-size: 1.5rem;
  }
  .about-cta-btns {
    flex-direction: column;
  }
  .about-cta-btn {
    width: 100%;
    flex-direction: row;
    justify-content: center;
    padding: 0.85rem 1.25rem;
  }
  .about-cta-inner {
    padding-left: 1.25rem;
  }
}

/* ── Address modal ── */
.acct-modal {
  border: none;
  border-radius: 16px;
  overflow: hidden;
}
.acct-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.5rem;
  background: var(--green-color);
  color: #fff;
}
.acct-modal-title {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.acct-modal-title h5 {
  margin: 0;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
}
.acct-modal-title i {
  font-size: 1rem;
}
.acct-modal-footer {
  display: flex;
  gap: 0.65rem;
  padding: 1rem 1.5rem;
  border-top: 1px solid #f0f2f5;
  background: #fafbfc;
}
.acct-modal-cancel {
  background: #fff;
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  padding: 0.55rem 1.1rem;
  color: #475569;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.88rem;
}
.acct-modal-add,
.acct-modal-update {
  background: var(--green-color);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0.55rem 1.25rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.88rem;
  box-shadow: 0 3px 10px rgba(0, 166, 82, 0.22);
  transition: background 0.2s;
}
.acct-modal-add:hover,
.acct-modal-update:hover {
  background: #009149;
}
.acct-modal-update:disabled {
  background: #d1d5db;
  box-shadow: none;
  cursor: not-allowed;
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .acct-layout {
    grid-template-columns: 1fr;
  }
  .acct-sidebar {
    position: static;
  }
  .acct-nav {
    flex-direction: row;
    flex-wrap: wrap;
    border-radius: 12px;
  }
  .acct-nav-item {
    flex: 1;
    justify-content: center;
    border-left: none;
    border-bottom: 3px solid transparent;
    min-width: 120px;
  }
  .acct-nav-item.active {
    border-bottom-color: var(--green-color);
    border-left-color: transparent;
  }
  .acct-nav-arrow {
    display: none;
  }
  .acct-nav-sep {
    width: 100%;
    height: 1px;
    margin: 0;
  }
  .acct-nav-danger {
    border-bottom-color: transparent !important;
    color: var(--red-color);
  }
}
@media (max-width: 575px) {
  .acct-banner {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem 1rem;
  }
  .acct-banner-signout {
    align-self: stretch;
    justify-content: center;
  }
  .acct-display-name {
    font-size: 1.2rem;
  }
  .acct-form-actions {
    flex-direction: column;
  }
  .acct-btn-primary,
  .acct-btn-secondary {
    width: 100%;
    justify-content: center;
  }
}

/* ===================================================
   MOBILE NAV OFFCANVAS  —  Redesigned
   =================================================== */

/* Offcanvas shell */
.mob-nav {
  max-width: 300px;
  display: flex;
  flex-direction: column;
}

/* Header with logo */
.mob-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  background: linear-gradient(135deg, var(--green-color) 0%, #009149 100%);
  flex-shrink: 0;
}
.mob-nav-logo {
  height: 38px;
  width: auto;
  filter: brightness(0) invert(1);
}

/* Body */
.mob-nav-body {
  padding: 0 !important;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  flex: 1;
}

/* Main navigation links */
.mob-nav-links {
  display: flex;
  flex-direction: column;
  padding: 0.5rem 0;
  border-bottom: 1px solid #f0f2f5;
}

.mob-nav-link {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1.25rem;
  text-decoration: none;
  color: #1a1a2e;
  font-size: 0.92rem;
  font-weight: 500;
  transition:
    background 0.15s,
    color 0.15s,
    padding-left 0.2s;
  border-left: 3px solid transparent;
}
.mob-nav-link:hover {
  background: #f8fafc;
  color: var(--green-color);
  padding-left: 1.5rem;
  border-left-color: var(--green-color);
}
.mob-nav-link-green {
  color: var(--green-color);
  font-weight: 600;
}
.mob-nav-link-green .mob-nav-icon {
  background: #f0fdf5;
  color: var(--green-color);
}

.mob-nav-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: #f5f7fa;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: #64748b;
  flex-shrink: 0;
  transition:
    background 0.15s,
    color 0.15s;
}
.mob-nav-link:hover .mob-nav-icon {
  background: #f0fdf5;
  color: var(--green-color);
}

/* Category section header */
.mob-cat-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.25rem 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #94a3b8;
}
.mob-cat-header i {
  color: var(--green-color);
}

/* Category 2-column grid */
.mob-cat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 0 0.75rem 1rem;
}

.mob-cat-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 0.5rem;
  text-decoration: none;
  color: #475569;
  font-size: 0.8rem;
  font-weight: 500;
  border-radius: 8px;
  transition:
    background 0.15s,
    color 0.15s;
  line-height: 1.3;
}
.mob-cat-item i {
  color: var(--green-color);
  font-size: 0.85rem;
  width: 16px;
  text-align: center;
  flex-shrink: 0;
}
.mob-cat-item:hover {
  background: #f0fdf5;
  color: var(--green-color);
}

/* Footer WhatsApp CTA */
.mob-nav-footer {
  padding: 1rem 1.25rem;
  border-top: 1px solid #f0f2f5;
  flex-shrink: 0;
}
.mob-nav-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem;
  background: var(--green-color);
  color: #fff;
  text-decoration: none;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 700;
  transition:
    background 0.2s,
    transform 0.15s;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.28);
}
.mob-nav-wa:hover {
  background: #1ebe5d;
  color: #fff;
  transform: translateY(-1px);
}

/* ===================================================
   DESKTOP "ALL CATEGORIES" DROPDOWN  —  Improved
   =================================================== */

/* Smooth open animation */
.bottom-nav .dropdown-menu {
  border: none;
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  padding: 0.5rem;
  margin-top: 0.5rem !important;
  min-width: 220px;
  animation: dropdownFadeIn 0.2s ease;
  transform-origin: top left;
}

@keyframes dropdownFadeIn {
  from {
    opacity: 0;
    transform: translateY(-6px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.bottom-nav .dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0.85rem;
  border-radius: 8px;
  font-size: 0.87rem;
  color: #475569;
  font-weight: 500;
  transition:
    background 0.15s,
    color 0.15s,
    padding-left 0.15s;
}
.bottom-nav .dropdown-item:hover {
  background: #f0fdf5;
  color: var(--green-color);
  padding-left: 1.1rem;
}
.bottom-nav .dropdown-item::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-color);
  opacity: 0;
  flex-shrink: 0;
  transition: opacity 0.15s;
}
.bottom-nav .dropdown-item:hover::before {
  opacity: 1;
}

/* Dropdown toggle arrow animation */
.bottom-nav #departmentsDropdown {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.2s;
}
.bottom-nav #departmentsDropdown::after {
  transition: transform 0.25s;
}
.bottom-nav #departmentsDropdown.show::after {
  transform: rotate(180deg);
}
.bottom-nav #departmentsDropdown.show,
.bottom-nav #departmentsDropdown:hover {
  color: var(--green-color) !important;
}

/* ── Blog page hero ── */
.blog-page-hero {
  background: linear-gradient(135deg, #f8fffe 0%, #e8f9f0 100%);
  border-bottom: 1px solid #d0eddf;
  padding: 3.5rem 0 3rem;
}
.blog-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-color);
  background: rgba(0, 166, 82, 0.1);
  border-radius: 100px;
  padding: 0.25rem 0.9rem;
  margin-bottom: 0.75rem;
}
.blog-hero-title {
  font-size: 2rem;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 0.5rem;
}
.blog-hero-sub {
  color: #8b8e93;
  font-size: 0.95rem;
  margin: 0 auto;
}

/* ── Blog card ── */
.blog-card {
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition:
    border-top-color 0.2s ease,
    transform 0.2s ease;
  text-decoration: none;
  color: inherit;
}
.blog-card:hover {
  border-top-color: var(--red-color);
  transform: translateY(-4px);
}
.blog-image {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid #ebebeb;
}
.blog-card-body {
  padding: 1.35rem 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-meta {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--green-color);
  margin-bottom: 0.75rem;
}
.blog-meta i {
  font-size: 0.7rem;
}
.blog-title {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a2e;
  line-height: 1.45;
  margin-bottom: 0.6rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.2s;
}
.blog-card:hover .blog-title {
  color: var(--green-color);
}
.blog-excerpt {
  font-size: 0.875rem;
  color: #8b8e93;
  line-height: 1.6;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 1.25rem;
}
.read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--green-color);
  text-decoration: none;
  background: none;
  border: none;
  padding: 0;
  transition:
    color 0.2s,
    gap 0.15s;
}
.read-more::after {
  content: "→";
}
.read-more:hover {
  color: var(--red-color);
  gap: 0.55rem;
}

/* ── Empty / loading state ── */
.blog-empty {
  text-align: center;
  padding: 4rem 1rem;
  color: #8b8e93;
}
.blog-empty i {
  font-size: 2.5rem;
  color: #d0d0d0;
  margin-bottom: 1rem;
  display: block;
}

/* shop categories styles */
.shop-category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0.5rem;
  width: 200px;
  height: 200px;
  /* border: 1px solid #eee; */
  border-radius: 8px;
  transition:
    box-shadow 0.3s ease,
    transform 0.3s ease;
  text-decoration: none;
  color: #333;
  height: 100%;
}

.shop-category-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
  color: #007bff;
}

.shop-category-card img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  margin-bottom: 0.75rem;
}

.shop-category-card h5 {
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0;
}

.shop-category-card h5:hover {
  color: var(--secondary-color);
}
@media screen and (max-width: 768px) {
  .shop-category-card {
    width: 100px;
    height: 100px;
  }

  .shop-category-card img {
    width: 100px;
    height: 100px;
  }

  .shop-category-card h5 {
    font-size: 0.6rem;
    margin-top: -10px;
  }
}

/* Category Capsules Styles */
.category-capsules-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 15px;
  margin: 0 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.category-capsules-container {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: center;
  padding: 10px 0;
}

.category-capsule {
  transition: all 0.3s ease;
}

.category-capsule:hover {
  transform: translateY(-3px);
}

.capsule-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border: 2px solid #e9ecef;
  border-radius: 25px;
  text-decoration: none;
  color: #495057;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
}

.capsule-link:hover {
  background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
  color: white;
  border-color: #dc3545;
  box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
  text-decoration: none;
}

.capsule-icon {
  font-size: 1rem;
  transition: all 0.3s ease;
}

.capsule-link:hover .capsule-icon {
  transform: scale(1.1);
}

/* Responsive design for capsules */
@media screen and (max-width: 768px) {
  .category-capsules-container {
    gap: 8px;
    padding: 8px 0;
  }

  .capsule-link {
    padding: 8px 12px;
    font-size: 0.8rem;
    gap: 6px;
  }

  .capsule-icon {
    font-size: 0.9rem;
  }
}

@media screen and (max-width: 576px) {
  .category-capsules-container {
    gap: 6px;
  }

  .capsule-link {
    padding: 6px 10px;
    font-size: 0.75rem;
    gap: 4px;
  }

  .capsule-icon {
    font-size: 0.8rem;
  }
}

/* Product Image Fix - Ensure all images fit properly in cards */
.product-card .product-image {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px 8px 0 0;
}

.product-card .product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  max-width: 100%;
  max-height: 100%;
  padding: 10px;
  transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

/* Responsive adjustments for product images */
@media (max-width: 768px) {
  .product-card .product-image {
    height: 150px;
  }
}

@media (max-width: 576px) {
  .product-card .product-image {
    height: 120px;
  }

  .product-card .product-image img {
    padding: 5px;
  }
}

/* ── rx Page styles ── */
.rx-hero {
  background: linear-gradient(135deg, #f8fffe 0%, #e8f9f0 100%);
  border-bottom: 1px solid #d0eddf;
  padding: 3rem 0 2.75rem;
}
.rx-hero-title {
  font-size: 2rem;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 0.4rem;
}
.rx-hero-sub {
  color: #8b8e93;
  font-size: 0.95rem;
  margin: 0 auto;
}

/* ── Two-column layout ── */
.rx-page {
  padding: 3.5rem 0 4rem;
}

/* ── Form panel ── */
.rx-form-panel {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 2.25rem 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
}
.rx-panel-heading {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.75rem;
}
.rx-panel-heading i {
  font-size: 1.2rem;
  color: var(--green-color);
}
.rx-panel-heading h2 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0;
}

/* ── Drop zone ── */
.rx-dropzone {
  border: 2px dashed #c2e5d3;
  border-radius: 10px;
  background: rgba(0, 166, 82, 0.03);
  padding: 2.25rem 1rem;
  text-align: center;
  cursor: pointer;
  transition:
    border-color 0.2s,
    background 0.2s;
  position: relative;
  margin-bottom: 1.5rem;
}
.rx-dropzone.drag-over {
  border-color: var(--green-color);
  background: rgba(0, 166, 82, 0.07);
}
.rx-file-input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}
.rx-dz-icon {
  font-size: 2.25rem;
  color: var(--green-color);
  margin-bottom: 0.75rem;
  display: block;
}
.rx-dz-title {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 0.3rem;
}
.rx-dz-sub {
  font-size: 0.8rem;
  color: #aaa;
}
.rx-preview-wrap {
  display: none;
  align-items: center;
  gap: 0.85rem;
  background: rgba(0, 166, 82, 0.05);
  border: 1px solid #c2e5d3;
  border-radius: 8px;
  padding: 0.65rem 0.9rem;
  margin-top: 0.85rem;
}
.rx-preview-img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid #d0eddf;
}
.rx-preview-name {
  font-size: 0.82rem;
  color: #1a1a2e;
  font-weight: 600;
  flex: 1;
  text-align: left;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.rx-remove-btn {
  background: none;
  border: none;
  color: var(--red-color);
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  padding: 0 0.25rem;
  flex-shrink: 0;
}

/* ── Form controls ── */
.rx-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 0.4rem;
  display: block;
}
.rx-input-wrap {
  position: relative;
  margin-bottom: 1.25rem;
}
.rx-input-icon {
  position: absolute;
  top: 50%;
  left: 0.9rem;
  transform: translateY(-50%);
  color: #aaa;
  font-size: 0.85rem;
  pointer-events: none;
}
.rx-textarea-icon {
  position: absolute;
  top: 0.85rem;
  left: 0.9rem;
  color: #aaa;
  font-size: 0.85rem;
  pointer-events: none;
}
.rx-input,
.rx-textarea {
  width: 100%;
  border: 1px solid #d8d8d8;
  border-radius: 8px;
  padding: 0.65rem 0.9rem 0.65rem 2.4rem;
  font-size: 0.9rem;
  color: #1a1a2e;
  background: #fff;
  outline: none;
  transition: border-color 0.2s;
  font-family: inherit;
}
.rx-textarea {
  padding-top: 0.75rem;
  resize: vertical;
  min-height: 110px;
}
.rx-input:focus,
.rx-textarea:focus {
  border-color: var(--green-color);
}

/* ── Submit button ── */
.rx-submit-btn {
  width: 100%;
  padding: 0.8rem;
  background: var(--green-color);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 4px 14px rgba(0, 166, 82, 0.25);
  transition:
    background 0.2s,
    box-shadow 0.2s;
}
.rx-submit-btn:hover {
  background: #007a3d;
  box-shadow: 0 6px 20px rgba(0, 166, 82, 0.35);
}

/* ── Info panel ── */
.rx-info-panel {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.rx-steps-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 1.75rem 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
}
.rx-steps-heading {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.rx-steps-heading i {
  color: var(--green-color);
}
.rx-step {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  margin-bottom: 1rem;
}
.rx-step:last-child {
  margin-bottom: 0;
}
.rx-step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--green-color);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.05rem;
}
.rx-step-text strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 0.15rem;
}
.rx-step-text span {
  font-size: 0.8rem;
  color: #8b8e93;
  line-height: 1.5;
}

.rx-help-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
}
.rx-help-card p {
  font-size: 0.85rem;
  color: #8b8e93;
  margin-bottom: 1rem;
}
.rx-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--green-color);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0.6rem 1.25rem;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(0, 166, 82, 0.25);
  transition:
    background 0.2s,
    box-shadow 0.2s;
}
.rx-wa-btn:hover {
  background: #007a3d;
  color: #fff;
  box-shadow: 0 6px 20px rgba(0, 166, 82, 0.35);
}

.rx-privacy-note {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: #aaa;
  border: 1px solid #ebebeb;
  border-radius: 8px;
  background: #fafafa;
  padding: 0.75rem 1rem;
}
.rx-privacy-note i {
  color: var(--green-color);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.tm-line {
  color: var(--green-color);
}

/* ── Shop Sidebar (desktop only) ──────────────────────── */
.shop-sidebar {
  position: sticky;
  top: var(--navbar-height, 70px);
  max-height: calc(100vh - var(--navbar-height, 70px) - 16px);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #ddd transparent;
}

.shop-sidebar::-webkit-scrollbar {
  width: 4px;
}
.shop-sidebar::-webkit-scrollbar-track {
  background: transparent;
}
.shop-sidebar::-webkit-scrollbar-thumb {
  background: #ddd;
  border-radius: 100px;
}

.sb-section {
  background: #fff;
  border: 1px solid #ebebeb;
  border-radius: 12px;
  padding: 1.1rem 1rem;
  margin-bottom: 1rem;
}

.sb-section-hd {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #999;
  padding-bottom: 0.7rem;
  margin-bottom: 0.75rem;
  border-bottom: 1px solid #f0f0f0;
}

.sb-section-hd i {
  color: var(--green-color);
  font-size: 0.85rem;
}

.sb-cat-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.sb-cat-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.7rem;
  border-radius: 8px;
  color: #444;
  font-size: 0.84rem;
  font-weight: 500;
  text-decoration: none;
  transition:
    background 0.15s,
    color 0.15s;
  cursor: pointer;
}

.sb-cat-item i {
  font-size: 0.8rem;
  width: 16px;
  text-align: center;
  color: #aaa;
  transition: color 0.15s;
  flex-shrink: 0;
}

.sb-cat-item:hover {
  background: rgba(0, 166, 82, 0.07);
  color: var(--green-color);
}

.sb-cat-item:hover i {
  color: var(--green-color);
}

.sb-cat-item.active {
  background: rgba(0, 166, 82, 0.1);
  color: var(--green-color);
  font-weight: 600;
}

.sb-cat-item.active i {
  color: var(--green-color);
}

.sb-footer {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.sb-footer .sf-btn-secondary,
.sb-footer .sf-btn-primary {
  flex: 1;
  font-size: 0.78rem;
  padding: 0.42rem 0.5rem;
  justify-content: center;
}

/* ── End Shop Sidebar ─────────────────────────────────── */

/* ══════════════════════════════════════════════════════════
   CONTACT US PAGE
   ══════════════════════════════════════════════════════════ */

/* Hero */
.contact-hero {
  background: linear-gradient(135deg, #f0faf5 0%, #e8f5ee 100%);
  border-bottom: 1px solid #d4edda;
  padding: 3.5rem 0 2.5rem;
  text-align: center;
}

.contact-hero h1 {
  font-size: 2.4rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 0.75rem;
}

.contact-hero h1 span {
  color: var(--green-color);
}

.contact-hero p {
  color: #5a6472;
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto 1.25rem;
}

.contact-hero .breadcrumb {
  background: transparent;
  margin-bottom: 0;
  font-size: 0.85rem;
}

.contact-hero .breadcrumb-item a {
  color: var(--green-color);
  text-decoration: none;
}

.contact-hero .breadcrumb-item.active {
  color: #6c757d;
}

/* Info Cards */
.contact-info-section {
  padding: 2.5rem 0 1rem;
  background: #fff;
}

.contact-info-card {
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 14px;
  padding: 1.75rem 1.25rem;
  text-align: center;
  height: 100%;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.contact-info-card:hover {
  box-shadow: 0 8px 28px rgba(0, 166, 82, 0.12);
  transform: translateY(-3px);
}

.ci-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #f0faf5;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.4rem;
  color: var(--green-color);
  transition: background 0.25s ease;
}

.contact-info-card:hover .ci-icon {
  background: var(--green-color);
  color: #fff;
}

.contact-info-card h6 {
  font-weight: 700;
  font-size: 0.95rem;
  color: #1a1a1a;
  margin-bottom: 0.4rem;
}

.contact-info-card p {
  font-size: 0.88rem;
  color: #5a6472;
  margin-bottom: 0.85rem;
  line-height: 1.4;
}

.ci-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--green-color);
  text-decoration: none;
  border-bottom: 1.5px solid transparent;
  transition: border-color 0.2s;
}

.ci-link:hover {
  border-color: var(--green-color);
  color: var(--green-color);
}

.ci-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--green-color);
  background: #f0faf5;
  border-radius: 20px;
  padding: 0.2rem 0.75rem;
}

/* Main Section */
.contact-main-section {
  padding: 3rem 0 4rem;
  background: #f8f9fb;
}

/* Form Card */
.contact-form-card {
  background: #fff;
  border-radius: 16px;
  padding: 2.25rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.cf-header {
  margin-bottom: 1.75rem;
}

.cf-header h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 0.4rem;
}

.cf-header p {
  font-size: 0.88rem;
  color: #6c757d;
  margin-bottom: 0;
}

.cf-field label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.4rem;
  display: block;
}

.cf-field .form-control,
.cf-field .form-select {
  border-radius: 8px;
  border: 1.5px solid #e2e8f0;
  font-size: 0.9rem;
  padding: 0.6rem 0.9rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: #fff;
}

.cf-field .form-control:focus,
.cf-field .form-select:focus {
  border-color: var(--green-color);
  box-shadow: 0 0 0 3px rgba(0, 166, 82, 0.12);
  outline: none;
}

.cf-field textarea.form-control {
  resize: none;
}

.cf-submit-btn {
  background: var(--green-color);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  border-radius: 8px;
  padding: 0.75rem 1.5rem;
  transition: background 0.25s ease, transform 0.2s ease;
}

.cf-submit-btn:hover {
  background: #008a45;
  color: #fff;
  transform: translateY(-1px);
}

.cf-submit-btn:active {
  transform: none;
}

/* Map */
.contact-map-wrap {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.contact-map-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a1a;
  padding: 1.25rem 1.5rem 0.75rem;
  border-bottom: 1px solid #f0f0f0;
  margin: 0;
}

.contact-map {
  height: 280px;
  width: 100%;
}

/* WhatsApp CTA */
.contact-wa-card {
  background: #fff;
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.contact-wa-card .wa-icon {
  font-size: 2rem;
  color: var(--green-color);
  flex-shrink: 0;
}

.contact-wa-card .wa-text {
  flex: 1;
}

.contact-wa-card .wa-text strong {
  font-size: 0.9rem;
  color: #1a1a1a;
  display: block;
}

.contact-wa-card .wa-text p {
  font-size: 0.8rem;
  color: #6c757d;
  margin: 0;
}

.contact-wa-card .wa-btn {
  flex-shrink: 0;
  background: var(--green-color);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.5rem 1.1rem;
  border-radius: 20px;
  text-decoration: none;
  transition: background 0.2s;
}

.contact-wa-card .wa-btn:hover {
  background: #1da851;
  color: #fff;
}

/* Responsive */
@media (max-width: 767.98px) {
  .contact-hero h1 {
    font-size: 1.8rem;
  }

  .contact-form-card {
    padding: 1.5rem 1.1rem;
  }

  .contact-wa-card {
    flex-wrap: wrap;
  }

  .contact-wa-card .wa-btn {
    width: 100%;
    text-align: center;
  }
}

/* ══════════════════════════════════════════════════════════
   DARK FOOTER (shared, injected via /footer.html)
   ══════════════════════════════════════════════════════════ */
.site-footer-dark {
  background: #013d1c;
  color: rgba(255, 255, 255, 0.75);
  padding-top: 4rem;
  font-family: inherit;
  position: relative;
  overflow: hidden;
}

/* Large faded brand text behind footer content */
.site-footer-dark::before {
  content: "PANACEA PHARMACY";
  position: absolute;
  bottom: -1.25rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: clamp(3.5rem, 14vw, 13rem);
  font-weight: 900;
  color: rgba(255, 255, 255, 0.05);
  white-space: nowrap;
  letter-spacing: 0.04em;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.footer-dark-top,
.footer-dark-divider,
.footer-dark-bottom {
  position: relative;
  z-index: 1;
}

.footer-dark-top {
  padding-bottom: 3rem;
}

.fd-tagline {
  font-size: 2rem;
  font-weight: 400;
  color: #fff;
  line-height: 1.3;
  margin: 0;
  letter-spacing: -0.01em;
}

.fd-col-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1.5rem;
  letter-spacing: 0.01em;
}

.fd-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.fd-list li {
  margin-bottom: 1rem;
}

.fd-list li:last-child {
  margin-bottom: 0;
}

.fd-list a,
.fd-list span {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

.fd-list a:hover {
  color: #fff;
}

.footer-dark-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-dark-bottom {
  padding: 1.75rem 0;
}

.footer-dark-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.fd-quick-nav,
.fd-social {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.fd-quick-nav a,
.fd-social a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.82rem;
  transition: color 0.2s ease;
}

.fd-quick-nav a:hover,
.fd-social a:hover {
  color: #fff;
}

.fd-copyright {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.78rem;
  white-space: nowrap;
}

/* Responsive */
@media (max-width: 991.98px) {
  .site-footer-dark {
    padding-top: 3rem;
  }
  .fd-tagline {
    font-size: 1.6rem;
  }
}

@media (max-width: 767.98px) {
  .site-footer-dark {
    padding-top: 2.5rem;
  }
  .fd-tagline {
    font-size: 1.4rem;
  }
  .footer-dark-bottom-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .fd-copyright {
    white-space: normal;
  }
}

/* ══════════════════════════════════════════════════════════
   PRESCRIPTION TRACKER
   ══════════════════════════════════════════════════════════ */
.rx-tracker-section {
  max-width: 920px;
  margin: 0 auto;
  padding: 1rem 0 3rem;
}

.rx-tracker-success {
  text-align: center;
  margin-bottom: 2rem;
}

.rx-tracker-success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #e8f5ee;
  color: var(--green-color);
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.rx-tracker-success h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 0.4rem;
}

.rx-tracker-success p {
  color: #6c757d;
  font-size: 0.95rem;
  max-width: 540px;
  margin: 0 auto;
}

.rx-tracker-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.rx-tracker-empty {
  text-align: center;
  padding: 3rem 1rem;
  color: #9aa3ad;
}

.rx-tracker-empty i {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 0.75rem;
}

/* Tracker card */
.rx-tracker-card {
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 14px;
  padding: 1.25rem 1.4rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.rx-tracker-card-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-bottom: 1.25rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid #f0f2f5;
}

.rx-tracker-thumb {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
  background: #f6f7f9;
}

.rx-tracker-thumb-doc {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #ed1b24;
}

.rx-tracker-meta {
  flex: 1;
  min-width: 0;
}

.rx-tracker-ref {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: 0.02em;
}

.rx-tracker-date {
  font-size: 0.78rem;
  color: #6c757d;
  margin-top: 2px;
}

/* Status badge */
.rx-status-badge {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.rx-status-badge.status-submitted   { background: #e7f0ff; color: #2563eb; }
.rx-status-badge.status-reviewing   { background: #fff3cd; color: #92660b; }
.rx-status-badge.status-approved    { background: #e8f5ee; color: #0d8a45; }
.rx-status-badge.status-dispatched  { background: #ede9fe; color: #6d28d9; }
.rx-status-badge.status-completed   { background: #d1fae5; color: #047857; }

/* Timeline */
.rx-tracker-timeline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0;
  margin: 0.25rem 0 0.75rem;
}

.rx-step-track {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 0 0 auto;
  min-width: 70px;
}

.rx-step-track-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #f3f4f6;
  color: #c5cad1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  border: 2px solid transparent;
  transition: all 0.25s ease;
}

.rx-step-track-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: #9aa3ad;
  margin-top: 0.5rem;
  line-height: 1.2;
}

.rx-step-track-line {
  flex: 1 1 auto;
  height: 2px;
  background: #e9ecef;
  margin-top: 19px;
  align-self: flex-start;
}

/* Done state */
.rx-step-track.done .rx-step-track-icon {
  background: var(--green-color);
  color: #fff;
}

.rx-step-track.done .rx-step-track-label {
  color: var(--green-color);
}

/* Current state */
.rx-step-track.current .rx-step-track-icon {
  background: #fff;
  color: var(--green-color);
  border-color: var(--green-color);
  box-shadow: 0 0 0 4px rgba(0, 166, 82, 0.15);
}

.rx-step-track.current .rx-step-track-label {
  color: #1a1a1a;
  font-weight: 700;
}

/* Card footer */
.rx-tracker-card-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #f0f2f5;
  font-size: 0.82rem;
  color: #6c757d;
  gap: 1rem;
}

.rx-tracker-card-foot i {
  color: var(--green-color);
  margin-right: 0.3rem;
}

.rx-tracker-view {
  color: var(--green-color);
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.rx-tracker-view:hover {
  text-decoration: underline;
}

/* Upload another button */
.rx-tracker-actions {
  text-align: center;
  margin-top: 2rem;
}

.rx-upload-another-btn {
  background: var(--green-color);
  color: #fff;
  border: none;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.75rem 1.75rem;
  border-radius: 999px;
  transition: background 0.2s, transform 0.2s;
}

.rx-upload-another-btn:hover {
  background: #008a45;
  transform: translateY(-1px);
}

.rx-upload-another-btn i {
  margin-right: 0.4rem;
}

/* Mobile — stack timeline vertically */
@media (max-width: 575.98px) {
  .rx-tracker-card-head {
    flex-wrap: wrap;
  }
  .rx-status-badge {
    margin-left: auto;
  }
  .rx-tracker-timeline {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
  .rx-step-track {
    flex-direction: row;
    text-align: left;
    gap: 0.75rem;
    min-width: 0;
    width: 100%;
  }
  .rx-step-track-label {
    margin-top: 0;
  }
  .rx-step-track-line {
    width: 2px;
    height: 16px;
    margin: 0 0 0 18px;
    align-self: flex-start;
  }
  .rx-tracker-card-foot {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}
