@charset "UTF-8";
:root {
  --primary-color: #056729;
  --secondary-color: #d60000;
  --light-color: #f8f9fa;
  --dark-color: #343a40;
  --white-color: #ffffff;
  --black-color: #000000;
  --font-family: 'Poppins', sans-serif;
  --font-size: 14px;
  --font-weight: 400;
  --line-height: 1.5;
  --border-radius-4: 4px;
  --border-radius-8: 8px;
  --border-radius-12: 12px;
  --border-radius-16: 16px;
  --border-radius-20: 20px;
  --border-radius-24: 24px;
  --border-radius-28: 28px;
  --border-radius-32: 32px;
  --border-radius-36: 36px;
  --border-radius-40: 40px;
  --box-shadow-5: 0 2px 5px rgba(0, 0, 0, 0.1);
  --box-shadow-10: 0 4px 10px rgba(0, 0, 0, 0.1);
  --box-shadow-15: 0 6px 15px rgba(0, 0, 0, 0.1);
  --box-shadow-20: 0 8px 20px rgba(0, 0, 0, 0.1);
  --box-shadow-25: 0 10px 25px rgba(0, 0, 0, 0.1);
  --box-shadow-30: 0 12px 30px rgba(0, 0, 0, 0.1);
  --box-shadow-35: 0 14px 35px rgba(0, 0, 0, 0.1);
  --box-shadow-40: 0 16px 40px rgba(0, 0, 0, 0.1);
  --box-shadow-45: 0 18px 45px rgba(0, 0, 0, 0.1);
  --box-shadow-50: 0 20px 50px rgba(0, 0, 0, 0.1);
  --font-size-10: 10px;
  --font-size-12: 12px;
  --font-size-14: 14px;
  --font-size-15: 15px;
  --font-size-16: 16px;
  --font-size-18: 18px;
  --font-size-20: 20px;
  --font-size-22: 22px;
  --font-size-24: 24px;
  --font-size-26: 26px;
  --font-size-28: 28px;
  --font-size-30: 30px;
  --font-size-32: 32px;
  --font-size-34: 34px;
  --font-size-36: 36px;
  --font-size-38: 38px;
  --font-size-40: 40px;
  --font-size-42: 42px;
  --font-size-44: 44px;
  --font-size-46: 46px;
  --font-size-48: 48px;
  --font-size-50: 50px;
  --font-weight-100: 100;
  --font-weight-200: 200;
  --font-weight-300: 300;
  --font-weight-400: 400;
  --font-weight-500: 500;
  --font-weight-600: 600;
  --font-weight-700: 700;
  --font-weight-800: 800;
  --font-weight-900: 900;
  --transition-speed: 0.3s;
  --transition-speed-5: 0.5s;
  --transition-speed-10: 1s;
  --transition-speed-15: 1.5s;
  --transition-speed-20: 2s;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

::-moz-selection {
  background-color: var(--secondary-color);
  color: var(--white-color);
}

::selection {
  background-color: var(--secondary-color);
  color: var(--white-color);
}

body {
  font-family: var(--font-family);
  font-size: var(--font-size);
  font-weight: var(--font-weight);
  color: var(--dark-color);
  background-color: var(--white-color);
}

.logo_clr {
  color: var(--primary-color);
}

.logo_sec {
  color: var(--secondary-color);
}

.logo_bgClr {
  background-color: var(--primary-color);
}

.logo_bgSec {
  background-color: var(--secondary-color);
}

.container {
  max-width: 1200px;
}
@media (min-width: 1441px) {
  .container {
    max-width: 1360px;
  }
}

a {
  text-decoration: none;
}

.form-control {
  border: 1px solid #d2d2d2;
  font-size: var(--font-size-14);
  padding: 10px 15px;
}
.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(5, 103, 41, 0.2);
}

.input-group .form-control {
  border-left: 1px solid transparent;
}

.input-group-text {
  border: 1px solid #d2d2d2;
  background-color: transparent;
  border-right: 1px solid transparent;
}

.hero_btn {
  background-color: #f6fffa;
  color: var(--primary-color);
  padding: 8px 20px;
  border-radius: var(--border-radius-4);
  transition: var(--transition-speed);
  border: 1px solid var(--primary-color);
  text-transform: uppercase;
  cursor: pointer;
  font-size: var(--font-size-14);
  font-weight: var(--font-weight-600);
  display: flex;
  gap: 10px;
  align-items: center;
  position: relative;
  z-index: 10;
}
.hero_btn:focus-visible, .hero_btn:active, .hero_btn:focus-within {
  background-color: var(--primary-color);
  color: var(--white-color);
  transform: scale(0.98);
}
.hero_btn:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
}
.hero_btn.primaryBtn {
  background-color: var(--primary-color);
  color: var(--white-color);
  border-color: var(--primary-color);
}
.hero_btn.primaryBtn:focus-visible, .hero_btn.primaryBtn:active, .hero_btn.primaryBtn:focus-within {
  background-color: #04531f;
  border-color: #04531f;
  color: var(--white-color);
  transform: scale(0.98);
}
.hero_btn.primaryBtn:hover {
  background-color: #04531f;
  border-color: #04531f;
  color: var(--white-color);
}
.hero_btn.secBtn {
  background-color: #ebfffd;
  color: var(--secondary-color);
}
.hero_btn.secBtn:focus-visible, .hero_btn.secBtn:active, .hero_btn.secBtn:focus-within {
  background-color: var(--primary-color);
  color: var(--white-color);
  transform: scale(0.98);
}
.hero_btn.secBtn:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
}
.hero_btn.outline {
  background-color: transparent;
  color: var(--secondary-color);
  border: 1px solid var(--secondary-color);
}
.hero_btn.outline:focus-visible, .hero_btn.outline:active, .hero_btn.outline:focus-within {
  background-color: var(--secondary-color);
  color: var(--white-color);
  transform: scale(0.98);
}
.hero_btn.outline:hover {
  background-color: var(--secondary-color);
  color: var(--white-color);
}

header {
  border-bottom: 1px solid #f2f2f2;
  z-index: 1030;
  position: relative;
}
header .navbar .nav_logo {
  width: 100px;
}
header .navbar .navbar-nav {
  gap: 15px;
}
header .navbar .navbar-nav .nav-link {
  background-color: #f2f2f2;
  padding: 0.65rem 1rem;
  border-radius: var(--border-radius-4);
  transition: var(--transition-speed);
  border: none;
  text-transform: capitalize;
  cursor: pointer;
  font-size: var(--font-size-14);
  font-weight: var(--font-weight-500);
  display: flex;
  gap: 10px;
  align-items: center;
}
header .navbar .navbar-nav .nav-link:hover {
  color: var(--secondary-color);
}
header .navbar .navbar-nav .nav-link.active {
  color: var(--secondary-color);
}
/* Category chip — styled as a sibling of the "Deliver to" chip */
header .navbar .navbar-nav #categoryNavMenu .nav-link.cat-chip {
  height: 42px;
  padding: 0 14px;
  gap: 8px;
  background-color: var(--primary-color);
  color: var(--white-color);
  border: 1px solid var(--primary-color);
  border-radius: var(--border-radius-8);
  font-weight: var(--font-weight-600);
  text-transform: none;
  white-space: nowrap;
  transition: background-color var(--transition-speed) ease, border-color var(--transition-speed) ease;
}
header .navbar .navbar-nav #categoryNavMenu .nav-link.cat-chip:hover,
header .navbar .navbar-nav #categoryNavMenu .nav-link.cat-chip.show,
header .navbar .navbar-nav #categoryNavMenu .nav-link.cat-chip[aria-expanded=true] {
  background-color: #04531f;
  border-color: #04531f;
  color: var(--white-color);
}
.cat-chip .cat-chip-ic {
  font-size: 20px;
}
.cat-chip .cat-chip-caret {
  font-size: 18px;
  margin-left: -2px;
  transition: transform var(--transition-speed) ease;
}
.cat-chip.show .cat-chip-caret,
.cat-chip[aria-expanded=true] .cat-chip-caret {
  transform: rotate(180deg);
}

.prod__card {
  position: relative;
  border: 1px solid #e4ece7;
  border-radius: var(--border-radius-8);
  background-color: #ffffff;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.prod__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--box-shadow-15);
}

.prod__img {
  background-color: #ffffff;
  min-height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border-bottom: 1px solid #f1f4f2;
}
.prod__img img {
  width: 100%;
  max-height: 145px;
  -o-object-fit: contain;
     object-fit: contain;
}

.prod__details {
  line-height: 1.4;
  margin-bottom: 3px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.prod__action {
  margin-top: auto;
}

.product-showcase {
  background-color: #ffffff;
}
.product-showcase.bg-light {
  background-color: #f8fbf9 !important;
}

.site-footer {
  background-color: #f5f5f5;
  color: #1f2f44;
  margin-top: 28px;
  border-top: 1px solid #dddddd;
}
.site-footer .footer-main {
  border-bottom: 1px solid #d7d7d7;
}
.site-footer .footer-heading {
  color: var(--primary-color);
  font-size: 1rem;
  font-weight: var(--font-weight-600);
  margin-bottom: 14px;
}
.site-footer .footer-contact-title {
  color: var(--primary-color);
  font-size: 1rem;
  font-weight: var(--font-weight-600);
  margin-bottom: 14px;
}
.site-footer .footer-links li {
  margin-bottom: 10px;
  line-height: 1.45;
}
.site-footer .footer-links a {
  color: #23374d;
  font-size: var(--font-size-15);
  transition: color 0.2s ease;
}
.site-footer .footer-links a:hover {
  color: var(--primary-color);
}
.site-footer .footer-contact-text {
  max-width: 330px;
  color: #23374d;
  font-size: var(--font-size-16);
  line-height: 1.45;
}
.site-footer p {
  color: #23374d;
  font-size: var(--font-size-16);
}
.site-footer .footer-bottom {
  background-color: #efefef;
}
.site-footer .footer-bottom-text {
  color: #26374a;
  font-size: var(--font-size-16);
  line-height: 1.4;
}
.site-footer .footer-lock {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #e10600;
  color: #ffffff;
  font-size: 18px;
}
@media (max-width: 991px) {
  .site-footer .footer-heading {
    font-size: 1.3rem;
  }
  .site-footer .footer-contact-title {
    font-size: 1.6rem;
  }
  .site-footer .footer-bottom-text,
  .site-footer .footer-links a,
  .site-footer p {
    font-size: var(--font-size-14);
  }
}

/* Mega Menu Utility Classes */
.transition-all {
  transition: all var(--transition-speed) ease-in-out;
}

.hover-lift:hover {
  transform: translateY(-3px);
  box-shadow: var(--box-shadow-15) !important;
}

.hover-text-primary:hover {
  color: var(--primary-color) !important;
  padding-left: 5px;
}

.hover-bg-success:hover {
  background-color: var(--primary-color) !important;
  color: var(--white-color) !important;
}

/* Mega Menu Styles */
.mega-menu-wrapper {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: linear-gradient(180deg, #ffffff 0%, #f8fcf9 100%);
  border-top: 1px solid #edf3ee;
  border-bottom: 3px solid var(--primary-color);
  border-radius: 0 0 18px 18px;
  box-shadow: 0 22px 45px rgba(9, 32, 18, 0.12);
  transform-origin: top center;
  z-index: 1030;
  overflow: hidden;
}
.mega-menu-wrapper .container {
  position: relative;
}
.mega-menu-wrapper .row {
  --bs-gutter-x: 1.25rem;
}
.mega-menu-wrapper .col-lg-3.col-md-4 {
  background-color: #f3f8f5;
  border: 1px solid #e4efe7;
  border-radius: 14px;
  padding: 10px;
}
.mega-menu-wrapper #subcategoriesContainer {
  background-color: #ffffff;
  border: 1px solid #ecf3ed;
  border-radius: 14px;
  padding: 18px 20px;
}
.mega-menu-wrapper {
  /* Fade in effect for desktop */
}
@media (min-width: 992px) {
  .mega-menu-wrapper {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    pointer-events: none;
  }
  .mega-menu-wrapper.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
}
.mega-menu-wrapper {
  /* Mobile drawer style */
}
@media (max-width: 991px) {
  .mega-menu-wrapper {
    position: absolute !important;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    height: 85vh;
    max-height: none !important;
    background-color: #fff;
    border-top: 1px solid #f2f2f2 !important;
    border-left: none !important;
    border-bottom: none !important;
    border-radius: 0;
    z-index: 1040;
    padding: 0 !important;
    display: none;
    overflow: hidden;
  }
  .mega-menu-wrapper.show {
    display: block;
    animation: fadeIn 0.3s ease;
  }
  .mega-menu-wrapper .container,
  .mega-menu-wrapper .row {
    margin: 0;
    padding: 0;
    height: 100%;
    max-width: 100%;
  }
  .mega-menu-wrapper .col-lg-3.col-md-4 {
    width: 35%;
    height: 100%;
    padding: 0;
    background-color: #f8f9fa;
    border: none;
    border-right: 1px solid #e0e0e0 !important;
    border-radius: 0;
    overflow-y: auto;
    margin-bottom: 0 !important;
  }
  .mega-menu-wrapper .col-lg-9.col-md-8 {
    width: 65%;
    height: 100%;
    padding: 15px;
    overflow-y: auto;
    margin-bottom: 0 !important;
  }
  .mega-menu-wrapper #subcategoriesContainer {
    background-color: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
  }
  .mega-menu-wrapper .mega-menu-list {
    border: none !important;
    max-height: none !important;
    border-radius: 0;
  }
  .mega-menu-wrapper .mega-menu-list .prod__cat__container {
    padding: 12px 5px !important;
    border-bottom: 1px solid #e0e0e0 !important;
    text-align: center;
    border-left: 3px solid transparent;
    text-decoration: none !important;
    color: var(--dark-color) !important;
    border-radius: 0;
  }
  .mega-menu-wrapper .mega-menu-list .prod__cat__container.active-category {
    background-color: #fff;
    border-left-color: var(--primary-color);
    color: var(--primary-color) !important;
  }
  .mega-menu-wrapper .mega-menu-list .prod__cat__container.active-category .prod__catName,
  .mega-menu-wrapper .mega-menu-list .prod__cat__container.active-category .material-symbols-rounded {
    color: var(--primary-color) !important;
  }
  .mega-menu-wrapper .mega-menu-list .prod__cat__container .d-flex {
    flex-direction: column;
    gap: 4px !important;
    align-items: center !important;
  }
  .mega-menu-wrapper .mega-menu-list .prod__cat__container .material-symbols-rounded {
    font-size: 24px;
    margin-bottom: 2px;
    color: #6c757d;
  }
  .mega-menu-wrapper .mega-menu-list .prod__cat__container .prod__catName {
    font-size: 11px !important;
    line-height: 1.2;
    white-space: normal;
  }
  .mega-menu-wrapper .subcategory-panel {
    padding-bottom: 30px;
  }
  .mega-menu-wrapper .subcategory-panel h6 {
    font-size: 14px !important;
    margin-bottom: 15px !important;
    padding-bottom: 8px;
    border-bottom: 1px solid #f2f2f2;
  }
  .mega-menu-wrapper .subcategory-panel .row > div {
    width: 100%;
    margin-bottom: 10px;
  }
  .mega-menu-wrapper .subcat-list li a {
    font-size: 12px !important;
    padding: 8px 0 !important;
    color: #444 !important;
    border-bottom: 1px solid #f9f9f9;
    text-decoration: none !important;
  }
}
.mega-menu-wrapper .mega-menu-list {
  border-radius: 10px;
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 390px;
  border: 1px solid #e5efe8;
  background-color: #fff;
  padding: 6px;
}
.mega-menu-wrapper .mega-menu-list::-webkit-scrollbar {
  width: 6px;
}
.mega-menu-wrapper .mega-menu-list::-webkit-scrollbar-track {
  background: transparent;
}
.mega-menu-wrapper .mega-menu-list::-webkit-scrollbar-thumb {
  background: #d6e7dc;
  border-radius: 10px;
}
.mega-menu-wrapper .mega-menu-list::-webkit-scrollbar-thumb:hover {
  background: var(--primary-color);
}
.mega-menu-wrapper .mega-menu-list .prod__cat__container {
  background-color: var(--white-color);
  transition: all 0.2s ease;
  border-bottom: 1px solid #f2f5f3;
  padding: 0.75rem 0.85rem;
  border-left: 3px solid transparent;
  border-radius: 8px;
  color: var(--dark-color) !important;
  text-decoration: none !important;
}
.mega-menu-wrapper .mega-menu-list .prod__cat__container:hover, .mega-menu-wrapper .mega-menu-list .prod__cat__container.active-category {
  background-color: rgba(5, 103, 41, 0.07);
  border-left-color: var(--primary-color);
  color: var(--primary-color) !important;
}
.mega-menu-wrapper .mega-menu-list .prod__cat__container:hover .prod__catName,
.mega-menu-wrapper .mega-menu-list .prod__cat__container:hover .material-symbols-rounded, .mega-menu-wrapper .mega-menu-list .prod__cat__container.active-category .prod__catName,
.mega-menu-wrapper .mega-menu-list .prod__cat__container.active-category .material-symbols-rounded {
  color: var(--primary-color) !important;
  font-weight: 600;
}
.mega-menu-wrapper .mega-menu-list .prod__cat__container .material-symbols-rounded {
  color: #6c757d;
  transition: all 0.2s ease;
}
.mega-menu-wrapper .mega-menu-list .prod__cat__container .prod__catName {
  font-size: var(--font-size-14);
  color: var(--dark-color);
  transition: all 0.2s ease;
}
.mega-menu-wrapper .mega-menu-list li:last-child .prod__cat__container {
  border-bottom: none !important;
}
.mega-menu-wrapper .subcategory-panel h6 {
  font-size: var(--font-size-16);
  color: #244132;
  margin-bottom: 0.7rem;
  padding-bottom: 0.45rem;
  border-bottom: 1px solid #edf4ee;
}
.mega-menu-wrapper .subcat-list li {
  margin-bottom: 0.25rem;
}
.mega-menu-wrapper .subcat-list li a {
  font-size: var(--font-size-14);
  color: #435348;
  display: inline-flex;
  align-items: center;
  padding: 0.22rem 0;
  transition: color 0.2s ease, transform 0.2s ease;
}
.mega-menu-wrapper .subcat-list li a:hover {
  color: var(--primary-color);
  transform: translateX(3px);
}

@media (min-width: 992px) {
  header:has(#categoryNavMenu:hover) .mega-menu-wrapper,
  header:has(#categoryNavMenu .nav-link:focus-visible) .mega-menu-wrapper,
  header:has(.mega-menu-wrapper:hover) .mega-menu-wrapper {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
  header:has(#categoryNavMenu:hover) #categoryNavMenu .nav-link,
  header:has(.mega-menu-wrapper:hover) #categoryNavMenu .nav-link {
    background-color: var(--secondary-color);
    color: var(--white-color);
  }
  header:has(#primaryCategoryList .prod__cat__container:hover) #subcategoriesContainer .subcategory-panel,
  header:has(#primaryCategoryList .prod__cat__container:focus-visible) #subcategoriesContainer .subcategory-panel {
    display: none !important;
  }
  header:has(#primaryCategoryList .prod__cat__container[data-target=cat-fruits-veggies]:hover) #cat-fruits-veggies,
  header:has(#primaryCategoryList .prod__cat__container[data-target=cat-fruits-veggies]:focus-visible) #cat-fruits-veggies {
    display: block !important;
  }
  header:has(#primaryCategoryList .prod__cat__container[data-target=cat-dairy-eggs]:hover) #cat-dairy-eggs,
  header:has(#primaryCategoryList .prod__cat__container[data-target=cat-dairy-eggs]:focus-visible) #cat-dairy-eggs {
    display: block !important;
  }
  header:has(#primaryCategoryList .prod__cat__container[data-target=cat-meat-seafood]:hover) #cat-meat-seafood,
  header:has(#primaryCategoryList .prod__cat__container[data-target=cat-meat-seafood]:focus-visible) #cat-meat-seafood {
    display: block !important;
  }
  header:has(#primaryCategoryList .prod__cat__container[data-target=cat-snacks-munchies]:hover) #cat-snacks-munchies,
  header:has(#primaryCategoryList .prod__cat__container[data-target=cat-snacks-munchies]:focus-visible) #cat-snacks-munchies {
    display: block !important;
  }
  header:has(#primaryCategoryList .prod__cat__container[data-target=cat-beverages]:hover) #cat-beverages,
  header:has(#primaryCategoryList .prod__cat__container[data-target=cat-beverages]:focus-visible) #cat-beverages {
    display: block !important;
  }
  header:has(#primaryCategoryList .prod__cat__container[data-target=cat-staples]:hover) #cat-staples,
  header:has(#primaryCategoryList .prod__cat__container[data-target=cat-staples]:focus-visible) #cat-staples {
    display: block !important;
  }
  header:has(#primaryCategoryList .prod__cat__container[data-target=cat-masalas-oils]:hover) #cat-masalas-oils,
  header:has(#primaryCategoryList .prod__cat__container[data-target=cat-masalas-oils]:focus-visible) #cat-masalas-oils {
    display: block !important;
  }
  header:has(#primaryCategoryList .prod__cat__container[data-target=cat-breakfast]:hover) #cat-breakfast,
  header:has(#primaryCategoryList .prod__cat__container[data-target=cat-breakfast]:focus-visible) #cat-breakfast {
    display: block !important;
  }
  header:has(#primaryCategoryList .prod__cat__container[data-target=cat-sweet-tooth]:hover) #cat-sweet-tooth,
  header:has(#primaryCategoryList .prod__cat__container[data-target=cat-sweet-tooth]:focus-visible) #cat-sweet-tooth {
    display: block !important;
  }
  header:has(#primaryCategoryList .prod__cat__container[data-target=cat-frozen-food]:hover) #cat-frozen-food,
  header:has(#primaryCategoryList .prod__cat__container[data-target=cat-frozen-food]:focus-visible) #cat-frozen-food {
    display: block !important;
  }
  header:has(#primaryCategoryList .prod__cat__container[data-target=cat-sauces]:hover) #cat-sauces,
  header:has(#primaryCategoryList .prod__cat__container[data-target=cat-sauces]:focus-visible) #cat-sauces {
    display: block !important;
  }
  header:has(#primaryCategoryList .prod__cat__container[data-target=cat-instant-food]:hover) #cat-instant-food,
  header:has(#primaryCategoryList .prod__cat__container[data-target=cat-instant-food]:focus-visible) #cat-instant-food {
    display: block !important;
  }
  header:has(#primaryCategoryList .prod__cat__container[data-target=cat-tea-coffee]:hover) #cat-tea-coffee,
  header:has(#primaryCategoryList .prod__cat__container[data-target=cat-tea-coffee]:focus-visible) #cat-tea-coffee {
    display: block !important;
  }
  header:has(#primaryCategoryList .prod__cat__container[data-target=cat-cleaning]:hover) #cat-cleaning,
  header:has(#primaryCategoryList .prod__cat__container[data-target=cat-cleaning]:focus-visible) #cat-cleaning {
    display: block !important;
  }
  header:has(#primaryCategoryList .prod__cat__container[data-target=cat-personal-care]:hover) #cat-personal-care,
  header:has(#primaryCategoryList .prod__cat__container[data-target=cat-personal-care]:focus-visible) #cat-personal-care {
    display: block !important;
  }
  header:has(#primaryCategoryList .prod__cat__container[data-target=cat-baby-care]:hover) #cat-baby-care,
  header:has(#primaryCategoryList .prod__cat__container[data-target=cat-baby-care]:focus-visible) #cat-baby-care {
    display: block !important;
  }
  header:has(#primaryCategoryList .prod__cat__container[data-target=cat-home-kitchen]:hover) #cat-home-kitchen,
  header:has(#primaryCategoryList .prod__cat__container[data-target=cat-home-kitchen]:focus-visible) #cat-home-kitchen {
    display: block !important;
  }
  header:has(#primaryCategoryList .prod__cat__container[data-target=cat-pet-care]:hover) #cat-pet-care,
  header:has(#primaryCategoryList .prod__cat__container[data-target=cat-pet-care]:focus-visible) #cat-pet-care {
    display: block !important;
  }
  header:has(#primaryCategoryList .prod__cat__container[data-target=cat-health-wellness]:hover) #cat-health-wellness,
  header:has(#primaryCategoryList .prod__cat__container[data-target=cat-health-wellness]:focus-visible) #cat-health-wellness {
    display: block !important;
  }
  header:has(#primaryCategoryList .prod__cat__container[data-target=cat-stationery]:hover) #cat-stationery,
  header:has(#primaryCategoryList .prod__cat__container[data-target=cat-stationery]:focus-visible) #cat-stationery {
    display: block !important;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.pd-page {
  background-color: var(--white-color);
  min-height: 60vh;
}

.pd-breadcrumb {
  font-size: var(--font-size-12);
}
.pd-breadcrumb .breadcrumb-item a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color var(--transition-speed);
}
.pd-breadcrumb .breadcrumb-item a:hover {
  color: var(--secondary-color);
}
.pd-breadcrumb .breadcrumb-item.active {
  color: #6c757d;
}
.pd-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: #bbb;
}

.pd-gallery .pd-main-img {
  border: 1px solid #e4ece7;
  border-radius: var(--border-radius-12);
  background-color: #fff;
  min-height: 310px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  overflow: hidden;
}
.pd-gallery .pd-main-img img {
  width: 100%;
  max-height: 300px;
  -o-object-fit: contain;
     object-fit: contain;
  transition: opacity 0.15s ease, transform var(--transition-speed) ease;
}
.pd-gallery .pd-main-img img:hover {
  transform: scale(1.04);
}
.pd-gallery .pd-thumbnails {
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: 4px;
}
.pd-gallery .pd-thumbnails::-webkit-scrollbar {
  height: 4px;
}
.pd-gallery .pd-thumbnails::-webkit-scrollbar-thumb {
  background: #d6e7dc;
  border-radius: 10px;
}
.pd-gallery .pd-thumb {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  padding: 4px;
  border: 2px solid #e4ece7;
  border-radius: var(--border-radius-8);
  background-color: #fff;
  cursor: pointer;
  transition: border-color var(--transition-speed);
}
.pd-gallery .pd-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: var(--border-radius-4);
}
.pd-gallery .pd-thumb:hover, .pd-gallery .pd-thumb.active {
  border-color: var(--primary-color);
}

.pd-info .pd-title {
  font-size: var(--font-size-20);
  font-weight: var(--font-weight-700);
  color: var(--dark-color);
  line-height: 1.35;
  margin-bottom: 6px;
}
.pd-info .pd-unit {
  font-size: var(--font-size-14);
  color: #6c757d;
  font-weight: var(--font-weight-500);
  margin-bottom: 0;
}
.pd-info .pd-price {
  font-size: var(--font-size-28);
  font-weight: var(--font-weight-700);
  color: var(--dark-color);
  line-height: 1.1;
}
.pd-info .pd-tax-note {
  font-size: var(--font-size-12);
  color: #999;
  margin-top: 3px;
}
.pd-info .pd-add-btn {
  font-size: var(--font-size-14);
  padding: 11px 32px;
  border-radius: var(--border-radius-8);
  min-width: 164px;
  justify-content: center;
  text-transform: none;
  letter-spacing: 0.2px;
}
.pd-info .pd-add-btn .material-symbols-rounded {
  font-size: 18px;
}
.pd-info .pd-divider {
  border-color: #e8eeea;
  margin: 1.25rem 0;
}

.pd-why-shop .pd-why-title {
  font-size: var(--font-size-16);
  font-weight: var(--font-weight-600);
  color: var(--dark-color);
  margin-bottom: 14px;
}
.pd-why-shop .pd-why-item {
  padding: 12px 0;
  border-bottom: 1px solid #f1f4f2;
}
.pd-why-shop .pd-why-item:last-child {
  border-bottom: none;
}
.pd-why-shop .pd-why-item .pd-why-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background-color: #f0fff6;
  border-radius: var(--border-radius-8);
  display: flex;
  align-items: center;
  justify-content: center;
}
.pd-why-shop .pd-why-item .pd-why-icon .material-symbols-rounded {
  font-size: 22px;
  color: var(--primary-color);
}
.pd-why-shop .pd-why-item .pd-why-label {
  font-size: var(--font-size-14);
  font-weight: var(--font-weight-600);
  color: var(--dark-color);
  margin-bottom: 3px;
}
.pd-why-shop .pd-why-item .pd-why-desc {
  font-size: var(--font-size-12);
  color: #6c757d;
  margin-bottom: 0;
  line-height: 1.55;
}

.pd-details-section {
  border-top: 1px solid #e4ece7;
  border-bottom: 1px solid #e4ece7;
  padding: 20px 0;
}
.pd-details-section .pd-attr-row {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.pd-details-section .pd-attr-key {
  font-size: var(--font-size-12);
  color: var(--primary-color);
  font-weight: var(--font-weight-600);
}
.pd-details-section .pd-attr-val {
  font-size: var(--font-size-14);
  color: var(--dark-color);
}
.pd-details-section .pd-view-more {
  font-size: var(--font-size-14);
  color: var(--primary-color);
  font-weight: var(--font-weight-500);
  transition: color var(--transition-speed);
}
.pd-details-section .pd-view-more:hover {
  color: var(--secondary-color);
}
.pd-details-section .pd-view-more .material-symbols-rounded {
  font-size: 18px;
}

@media (max-width: 767px) {
  .pd-info .pd-title {
    font-size: var(--font-size-18);
  }
  .pd-info .pd-price {
    font-size: var(--font-size-24);
  }
  .pd-info .pd-price-wrap {
    flex-direction: column;
    align-items: flex-start !important;
  }
  .pd-info .pd-add-btn {
    width: 100%;
    justify-content: center;
  }
}
@media (max-width: 575px) {
  .pd-gallery .pd-main-img {
    min-height: 230px;
  }
  .pd-section-title {
    font-size: var(--font-size-16);
  }
}
.plp-page {
  background-color: #fafbf9;
  padding-bottom: 110px;
}
.plp-page .plp-container {
  max-width: 1320px;
  padding: 0 16px;
}
@media (max-width: 575px) {
  .plp-page .plp-container {
    padding: 0 10px;
  }
}

@media (min-width: 992px) {
  .plp-row {
    align-items: flex-start;
  }
}

.plp-breadcrumb {
  font-size: var(--font-size-12);
  padding: 14px 4px 6px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.plp-breadcrumb a {
  color: #6c757d;
  transition: color var(--transition-speed);
}
.plp-breadcrumb a:hover {
  color: var(--primary-color);
}
.plp-breadcrumb .separator {
  color: #c5c5c5;
  margin: 0 6px;
}
.plp-breadcrumb .current {
  color: var(--dark-color);
  font-weight: var(--font-weight-500);
}

@media (min-width: 992px) {
  .plp-sidebar {
    position: sticky;
    top: 12px;
    align-self: flex-start;
    padding: 0;
    max-height: calc(100vh - 24px);
    z-index: 4;
  }
}
.plp-sidebar .plp-sidebar-inner {
  background-color: #fff;
  border: 1px solid #e9efec;
  border-radius: var(--border-radius-12);
  overflow: hidden;
}
@media (min-width: 992px) {
  .plp-sidebar .plp-sidebar-inner {
    max-height: calc(100vh - 24px);
    display: flex;
    flex-direction: column;
  }
}
.plp-sidebar .plp-sidebar-title {
  font-size: var(--font-size-14);
  font-weight: var(--font-weight-700);
  color: var(--dark-color);
  margin: 0;
  padding: 14px 16px;
  border-bottom: 1px solid #eef3ef;
  background-color: #f8fbf9;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.plp-sidebar .plp-sidebar-list {
  margin: 0;
  padding: 6px 0;
  overflow-y: auto;
  flex: 1;
}
.plp-sidebar .plp-sidebar-list::-webkit-scrollbar {
  width: 4px;
}
.plp-sidebar .plp-sidebar-list::-webkit-scrollbar-track {
  background: transparent;
}
.plp-sidebar .plp-sidebar-list::-webkit-scrollbar-thumb {
  background: #d6e7dc;
  border-radius: 10px;
}
.plp-sidebar .plp-sidebar-list::-webkit-scrollbar-thumb:hover {
  background: var(--primary-color);
}
.plp-sidebar .plp-sidebar-list li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  color: var(--dark-color);
  font-size: var(--font-size-12);
  font-weight: var(--font-weight-500);
  border-left: 3px solid transparent;
  transition: all 0.2s ease;
  line-height: 1.3;
}
.plp-sidebar .plp-sidebar-list li a .material-symbols-rounded {
  font-size: 20px;
  color: #6c757d;
  flex-shrink: 0;
  transition: color 0.2s ease;
}
.plp-sidebar .plp-sidebar-list li a:hover {
  background-color: #f3f8f5;
  color: var(--primary-color);
}
.plp-sidebar .plp-sidebar-list li a:hover .material-symbols-rounded {
  color: var(--primary-color);
}
.plp-sidebar .plp-sidebar-list li a.active {
  background-color: #eef7f1;
  border-left-color: var(--primary-color);
  color: var(--primary-color);
  font-weight: var(--font-weight-600);
}
.plp-sidebar .plp-sidebar-list li a.active .material-symbols-rounded {
  color: var(--primary-color);
}

.plp-main {
  padding: 4px 0 24px 18px;
}
@media (max-width: 991px) {
  .plp-main {
    padding: 4px 0 20px;
  }
}

.plp-page-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 14px;
}
.plp-page-header .plp-page-title {
  font-size: var(--font-size-22);
  font-weight: var(--font-weight-700);
  color: var(--dark-color);
  margin: 0 0 4px;
  line-height: 1.2;
}
.plp-page-header .plp-page-title small {
  font-size: var(--font-size-14);
  font-weight: var(--font-weight-400);
  color: #6c757d;
  margin-left: 6px;
}
.plp-page-header .plp-page-sub {
  font-size: var(--font-size-12);
  color: #6c757d;
}
@media (max-width: 575px) {
  .plp-page-header .plp-page-title {
    font-size: var(--font-size-18);
  }
}

.plp-mobile-cat-toggle {
  display: none;
}
@media (max-width: 991px) {
  .plp-mobile-cat-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    background-color: #fff;
    border: 1px solid #e0e6e2;
    border-radius: var(--border-radius-8);
    font-size: var(--font-size-12);
    font-weight: var(--font-weight-600);
    color: var(--dark-color);
    cursor: pointer;
    transition: all 0.2s ease;
  }
  .plp-mobile-cat-toggle .material-symbols-rounded {
    font-size: 18px;
  }
  .plp-mobile-cat-toggle:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
  }
}

.plp-subcat-strip {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 8px;
  margin-bottom: 12px;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}
.plp-subcat-strip::-webkit-scrollbar {
  height: 4px;
}
.plp-subcat-strip::-webkit-scrollbar-track {
  background: transparent;
}
.plp-subcat-strip::-webkit-scrollbar-thumb {
  background: #d6e7dc;
  border-radius: 10px;
}
.plp-subcat-strip .plp-subcat-chip {
  flex-shrink: 0;
  padding: 8px 16px;
  border: 1px solid #e4ece7;
  background-color: #fff;
  border-radius: 999px;
  font-size: var(--font-size-12);
  font-weight: var(--font-weight-500);
  color: var(--dark-color);
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.plp-subcat-strip .plp-subcat-chip:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}
.plp-subcat-strip .plp-subcat-chip.active {
  background-color: var(--primary-color);
  color: var(--white-color);
  border-color: var(--primary-color);
}

.plp-toolbar {
  position: sticky;
  top: 0;
  z-index: 5;
  background-color: #fafbf9;
  padding: 10px 0;
  margin-bottom: 16px;
  border-bottom: 1px solid #ecf1ed;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}
.plp-toolbar .plp-filter-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.plp-toolbar .plp-filter-chips .plp-filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 7px 12px;
  background-color: #fff;
  border: 1px solid #e0e6e2;
  border-radius: var(--border-radius-8);
  font-size: var(--font-size-12);
  font-weight: var(--font-weight-500);
  color: var(--dark-color);
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.plp-toolbar .plp-filter-chips .plp-filter-chip .material-symbols-rounded {
  font-size: 16px;
  color: #6c757d;
  transition: color 0.2s ease;
}
.plp-toolbar .plp-filter-chips .plp-filter-chip:hover, .plp-toolbar .plp-filter-chips .plp-filter-chip.active {
  border-color: var(--primary-color);
  color: var(--primary-color);
  background-color: #f3f8f5;
}
.plp-toolbar .plp-filter-chips .plp-filter-chip:hover .material-symbols-rounded, .plp-toolbar .plp-filter-chips .plp-filter-chip.active .material-symbols-rounded {
  color: var(--primary-color);
}
.plp-toolbar .plp-sort-wrap {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--font-size-12);
  color: #6c757d;
}
.plp-toolbar .plp-sort-wrap .plp-sort {
  border: 1px solid #e0e6e2;
  background-color: #fff;
  border-radius: var(--border-radius-8);
  padding: 7px 30px 7px 12px;
  font-size: var(--font-size-12);
  font-weight: var(--font-weight-500);
  color: var(--dark-color);
  cursor: pointer;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%236c757d' d='M5 6 0 1 1 0l4 4 4-4 1 1z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
}
.plp-toolbar .plp-sort-wrap .plp-sort:focus {
  outline: none;
  border-color: var(--primary-color);
}

.plp-grid .prod__card .prod__badge {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 2;
  background-color: var(--secondary-color);
  color: var(--white-color);
  font-size: 10px;
  font-weight: var(--font-weight-700);
  padding: 3px 7px;
  border-radius: var(--border-radius-4);
  line-height: 1.2;
  letter-spacing: 0.2px;
}
.plp-grid .prod__card .prod__previous-tag {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 2;
  background-color: #f0fff6;
  color: var(--primary-color);
  font-size: 9px;
  font-weight: var(--font-weight-700);
  padding: 3px 7px;
  border-radius: var(--border-radius-4);
  border: 1px solid #cfe9d7;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  line-height: 1.2;
}
.plp-grid .prod__card .prod__delivery {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  background-color: #eaf2ff;
  color: #2853c8;
  font-size: 10px;
  font-weight: var(--font-weight-700);
  padding: 3px 8px;
  border-radius: var(--border-radius-4);
  margin: 8px 12px 0;
  align-self: flex-start;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.plp-grid .prod__card .prod__delivery .material-symbols-rounded {
  font-size: 12px;
}
.plp-grid .prod__card .add-btn {
  padding: 6px 18px;
  min-width: 70px;
  justify-content: center;
}

.qty-stepper {
  display: inline-flex;
  align-items: center;
  background-color: var(--primary-color);
  border-radius: var(--border-radius-4);
  overflow: hidden;
  height: 32px;
  position: relative;
  z-index: 11;
  box-shadow: 0 2px 6px rgba(5, 103, 41, 0.2);
}
.qty-stepper button {
  background: transparent;
  border: none;
  color: var(--white-color);
  width: 26px;
  height: 100%;
  font-size: 16px;
  font-weight: var(--font-weight-700);
  cursor: pointer;
  transition: background 0.15s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding: 0;
}
.qty-stepper button:hover {
  background-color: rgba(0, 0, 0, 0.18);
}
.qty-stepper button:active {
  background-color: rgba(0, 0, 0, 0.28);
}
.qty-stepper .qty-count {
  color: var(--white-color);
  font-size: var(--font-size-14);
  font-weight: var(--font-weight-700);
  min-width: 18px;
  text-align: center;
  padding: 0 2px;
}

.plp-loadmore {
  display: flex;
  justify-content: center;
  padding: 28px 0 8px;
}
.plp-loadmore button {
  padding: 10px 32px;
  border: 1px solid var(--primary-color);
  background-color: transparent;
  color: var(--primary-color);
  font-weight: var(--font-weight-600);
  border-radius: var(--border-radius-4);
  font-size: var(--font-size-14);
  cursor: pointer;
  transition: all 0.2s ease;
}
.plp-loadmore button:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
}

.plp-cart-bar {
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 1020;
  background-color: var(--primary-color);
  color: var(--white-color);
  border-radius: var(--border-radius-12);
  box-shadow: 0 12px 30px rgba(5, 103, 41, 0.32);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 18px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.plp-cart-bar.is-empty {
  transform: translateY(calc(100% + 30px));
  opacity: 0;
  pointer-events: none;
}
.plp-cart-bar .plp-cart-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
  line-height: 1.2;
}
.plp-cart-bar .plp-cart-info .plp-cart-count {
  font-size: var(--font-size-12);
  opacity: 0.85;
}
.plp-cart-bar .plp-cart-info .plp-cart-total {
  font-size: var(--font-size-16);
  font-weight: var(--font-weight-700);
}
.plp-cart-bar .plp-cart-btn {
  background-color: var(--white-color);
  color: var(--primary-color);
  border: none;
  font-weight: var(--font-weight-600);
  padding: 8px 16px;
  border-radius: var(--border-radius-4);
  font-size: var(--font-size-14);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: all 0.2s ease;
}
.plp-cart-bar .plp-cart-btn:hover {
  background-color: #f0fff6;
  transform: translateX(2px);
}
.plp-cart-bar .plp-cart-btn .material-symbols-rounded {
  font-size: 18px;
}
@media (max-width: 575px) {
  .plp-cart-bar {
    left: 12px;
    right: 12px;
    bottom: 12px;
    border-radius: var(--border-radius-8);
    justify-content: space-between;
    padding: 10px 14px;
  }
}

.plp-sidebar-backdrop {
  display: none;
}
@media (max-width: 991px) {
  .plp-sidebar-backdrop {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.45);
    z-index: 1040;
    opacity: 0;
    transition: opacity 0.25s ease;
  }
  .plp-sidebar-backdrop.show {
    display: block;
    opacity: 1;
  }
}

@media (max-width: 991px) {
  .plp-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 280px;
    max-width: 85vw;
    z-index: 1050;
    background-color: #fff;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    box-shadow: var(--box-shadow-30);
    padding: 0;
  }
  .plp-sidebar.show {
    transform: translateX(0);
  }
  .plp-sidebar .plp-sidebar-inner {
    border: none;
    border-radius: 0;
    min-height: 100vh;
    max-height: none;
  }
  .plp-sidebar .plp-sidebar-list {
    max-height: none;
  }
}
.page-header-block {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 12px;
  padding-bottom: 6px;
}
.page-header-block .page-title {
  font-size: var(--font-size-22);
  font-weight: var(--font-weight-700);
  color: var(--dark-color);
  margin: 0 0 4px;
  line-height: 1.2;
}
.page-header-block .page-title small {
  font-size: var(--font-size-14);
  font-weight: var(--font-weight-400);
  color: #6c757d;
  margin-left: 6px;
}
.page-header-block .page-sub {
  font-size: var(--font-size-12);
  color: #6c757d;
}
.page-header-block .page-back-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--primary-color);
  font-size: var(--font-size-14);
  font-weight: var(--font-weight-500);
}
.page-header-block .page-back-link .material-symbols-rounded {
  font-size: 18px;
}
.page-header-block .page-back-link:hover {
  color: var(--secondary-color);
}
@media (max-width: 575px) {
  .page-header-block .page-title {
    font-size: var(--font-size-18);
  }
}

.summary-card {
  background-color: #fff;
  border: 1px solid #e9efec;
  border-radius: var(--border-radius-12);
  padding: 18px 18px 16px;
  transition: opacity 0.3s ease;
}
@media (min-width: 992px) {
  .summary-card.sticky-summary {
    position: sticky;
    top: 12px;
  }
}
.summary-card .summary-title {
  font-size: var(--font-size-14);
  font-weight: var(--font-weight-700);
  color: var(--dark-color);
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.summary-card .summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  font-size: var(--font-size-14);
  color: #495057;
  padding: 5px 0;
}
.summary-card .summary-row .summary-tag {
  display: inline-block;
  margin-left: 6px;
  padding: 1px 6px;
  background-color: #eef7f1;
  color: var(--primary-color);
  font-size: 10px;
  font-weight: var(--font-weight-600);
  border-radius: var(--border-radius-4);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.summary-card .summary-total {
  font-size: var(--font-size-16);
  font-weight: var(--font-weight-700);
  color: var(--dark-color);
  padding: 8px 0 4px;
}
.summary-card .summary-divider {
  border-top: 1px dashed #d6dfd9;
  margin: 12px 0;
}
.summary-card .summary-savings {
  background-color: #f0fff6;
  color: var(--primary-color);
  font-size: var(--font-size-12);
  font-weight: var(--font-weight-500);
  padding: 8px 12px;
  border-radius: var(--border-radius-8);
  margin-top: 6px;
}
.summary-card .summary-cta {
  display: flex;
  width: 100%;
  justify-content: center;
  margin-top: 14px;
  padding: 11px 18px;
  background-color: var(--primary-color);
  color: var(--white-color);
  font-size: var(--font-size-14);
}
.summary-card .summary-cta .material-symbols-rounded {
  font-size: 18px;
}
.summary-card .summary-cta:hover {
  background-color: #044d20;
  color: var(--white-color);
}
.summary-card .summary-coupon {
  margin-top: 14px;
  display: flex;
  align-items: center;
  background-color: #f6fbf8;
  border: 1px dashed #b8d6c2;
  border-radius: var(--border-radius-8);
  padding: 4px 4px 4px 12px;
}
.summary-card .summary-coupon .material-symbols-rounded {
  font-size: 18px;
  color: var(--primary-color);
}
.summary-card .summary-coupon input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 8px;
  font-size: var(--font-size-12);
  color: var(--dark-color);
}
.summary-card .summary-coupon input:focus {
  outline: none;
}
.summary-card .summary-coupon button {
  background: var(--primary-color);
  color: var(--white-color);
  border: none;
  border-radius: var(--border-radius-4);
  padding: 7px 14px;
  font-size: var(--font-size-12);
  font-weight: var(--font-weight-700);
  cursor: pointer;
  transition: background 0.2s ease;
}
.summary-card .summary-coupon button:hover {
  background: #044d20;
}
.summary-card .summary-coupon-hint {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: var(--font-size-12);
  color: #6c757d;
  margin-top: 8px;
}
.summary-card .summary-coupon-hint .material-symbols-rounded {
  font-size: 14px;
  color: var(--primary-color);
}
.summary-card .summary-coupon-hint a {
  color: var(--primary-color);
  font-weight: var(--font-weight-600);
  margin-left: auto;
}
.summary-card .summary-coupon-hint a:hover {
  color: var(--secondary-color);
}
.summary-card .summary-policy {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  margin-top: 12px;
  padding: 8px 10px;
  background-color: #f8fbf9;
  border-radius: var(--border-radius-8);
}
.summary-card .summary-policy .material-symbols-rounded {
  font-size: 16px;
  color: var(--primary-color);
  margin-top: 1px;
}
.summary-card .summary-policy p {
  font-size: 11px;
  color: #6c757d;
  line-height: 1.4;
}

.cart-page {
  background-color: #fafbf9;
  min-height: 60vh;
}
.cart-page .cart-deliver-banner {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #f0fff6;
  border: 1px solid #cfe9d7;
  border-radius: var(--border-radius-8);
  padding: 10px 14px;
  color: var(--primary-color);
}
.cart-page .cart-deliver-banner .material-symbols-rounded {
  font-size: 22px;
  background: var(--primary-color);
  color: #fff;
  border-radius: 50%;
  padding: 4px;
}
.cart-page .cart-deliver-banner strong {
  display: block;
  font-size: var(--font-size-14);
  font-weight: var(--font-weight-700);
  line-height: 1.2;
}
.cart-page .cart-deliver-banner .cart-deliver-sub {
  display: block;
  font-size: var(--font-size-12);
  color: #4a5e51;
}
.cart-page .cart-items {
  background-color: #fff;
  border: 1px solid #e9efec;
  border-radius: var(--border-radius-12);
  overflow: hidden;
}
.cart-page .cart-item-row {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 16px 18px;
  border-bottom: 1px solid #eff3f0;
}
.cart-page .cart-item-row:last-child {
  border-bottom: none;
}
@media (max-width: 575px) {
  .cart-page .cart-item-row {
    grid-template-columns: 64px 1fr;
    grid-template-rows: auto auto;
    gap: 10px 12px;
  }
}
.cart-page .cart-item-img {
  width: 80px;
  height: 80px;
  border-radius: var(--border-radius-8);
  background-color: #f8fbf9;
  border: 1px solid #f1f4f2;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart-page .cart-item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 575px) {
  .cart-page .cart-item-img {
    width: 64px;
    height: 64px;
  }
}
.cart-page .cart-item-info {
  min-width: 0;
}
.cart-page .cart-item-info .cart-item-name {
  font-size: var(--font-size-14);
  font-weight: var(--font-weight-600);
  color: var(--dark-color);
  line-height: 1.3;
  margin-bottom: 2px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.cart-page .cart-item-info .cart-item-meta {
  font-size: var(--font-size-12);
  color: #6c757d;
  margin-bottom: 6px;
}
.cart-page .cart-item-info .cart-item-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
}
.cart-page .cart-item-info .cart-item-price .cart-item-offer {
  font-size: var(--font-size-14);
  font-weight: var(--font-weight-700);
  color: var(--dark-color);
}
.cart-page .cart-item-info .cart-item-price .cart-item-mrp {
  font-size: var(--font-size-12);
  color: #9ca3a0;
  text-decoration: line-through;
}
.cart-page .cart-item-info .cart-item-price .cart-item-save {
  font-size: 10px;
  font-weight: var(--font-weight-700);
  color: var(--primary-color);
  background-color: #eef7f1;
  padding: 1px 6px;
  border-radius: var(--border-radius-4);
}
.cart-page .cart-item-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}
@media (max-width: 575px) {
  .cart-page .cart-item-actions {
    grid-column: 1/-1;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.cart-page .cart-remove-btn {
  background: transparent;
  border: none;
  color: var(--secondary-color);
  font-size: var(--font-size-12);
  font-weight: var(--font-weight-500);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 0;
  transition: color 0.2s ease;
}
.cart-page .cart-remove-btn .material-symbols-rounded {
  font-size: 14px;
}
.cart-page .cart-remove-btn:hover {
  color: #b30000;
}
.cart-page .cart-empty {
  text-align: center;
  padding: 60px 20px;
  background-color: #fff;
  border: 1px solid #e9efec;
  border-radius: var(--border-radius-12);
}
.cart-page .cart-empty .material-symbols-rounded {
  font-size: 56px;
  color: #c7d3cb;
  margin-bottom: 12px;
}
.cart-page .cart-empty h5 {
  font-size: var(--font-size-18);
  font-weight: var(--font-weight-600);
  color: var(--dark-color);
  margin-bottom: 6px;
}
.cart-page .cart-empty p {
  font-size: var(--font-size-14);
  color: #6c757d;
  margin-bottom: 18px;
}
.cart-page .cart-empty .hero_btn {
  display: inline-flex;
}
.cart-page .cart-suggest-title {
  font-size: var(--font-size-16);
  font-weight: var(--font-weight-700);
  color: var(--dark-color);
  margin-bottom: 12px;
}
.cart-page .cart-suggest-card {
  background-color: #fff;
  border: 1px solid #e9efec;
  border-radius: var(--border-radius-8);
  padding: 12px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.cart-page .cart-suggest-card img {
  width: 100%;
  height: 90px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 8px;
}
.cart-page .cart-suggest-card .cart-suggest-name {
  font-size: var(--font-size-12);
  font-weight: var(--font-weight-600);
  color: var(--dark-color);
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 32px;
}
.cart-page .cart-suggest-card .cart-suggest-meta {
  font-size: 11px;
  color: #6c757d;
}
.cart-page .cart-suggest-card .cart-suggest-price {
  font-size: var(--font-size-14);
  font-weight: var(--font-weight-700);
  color: var(--dark-color);
}
.cart-page .cart-suggest-card .cart-suggest-add {
  padding: 4px 12px;
  font-size: 11px;
  min-width: auto;
}

.checkout-page {
  background-color: #fafbf9;
  min-height: 60vh;
}
.checkout-page .checkout-stepper {
  display: flex;
  list-style: none;
  margin: 14px 0 4px;
  padding: 0;
  gap: 6px;
  flex-wrap: wrap;
}
.checkout-page .checkout-stepper li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background-color: #fff;
  border: 1px solid #e9efec;
  border-radius: 999px;
  font-size: var(--font-size-12);
  font-weight: var(--font-weight-500);
  color: #6c757d;
}
.checkout-page .checkout-stepper li span {
  width: 18px;
  height: 18px;
  background-color: #e0e6e2;
  color: #6c757d;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: var(--font-weight-700);
}
.checkout-page .checkout-stepper li.active {
  background-color: #eef7f1;
  border-color: #cfe9d7;
  color: var(--primary-color);
  font-weight: var(--font-weight-600);
}
.checkout-page .checkout-stepper li.active span {
  background-color: var(--primary-color);
  color: var(--white-color);
}
.checkout-page .checkout-section {
  background-color: #fff;
  border: 1px solid #e9efec;
  border-radius: var(--border-radius-12);
  padding: 18px;
  margin-bottom: 16px;
}
.checkout-page .checkout-section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}
.checkout-page .checkout-section-head h6 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--font-size-16);
  font-weight: var(--font-weight-700);
  color: var(--dark-color);
  margin: 0;
}
.checkout-page .checkout-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background-color: var(--primary-color);
  color: var(--white-color);
  border-radius: 50%;
  font-size: var(--font-size-12);
  font-weight: var(--font-weight-700);
}
.checkout-page .checkout-link-btn {
  background: transparent;
  border: none;
  color: var(--primary-color);
  font-size: var(--font-size-12);
  font-weight: var(--font-weight-600);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 3px;
}
.checkout-page .checkout-link-btn .material-symbols-rounded {
  font-size: 16px;
}
.checkout-page .checkout-link-btn:hover {
  color: var(--secondary-color);
}
.checkout-page .address-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.checkout-page .address-card {
  position: relative;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px;
  border: 1px solid #e0e6e2;
  border-radius: var(--border-radius-8);
  cursor: pointer;
  transition: all 0.2s ease;
  margin: 0;
}
.checkout-page .address-card input[type=radio] {
  margin-top: 2px;
  accent-color: var(--primary-color);
  cursor: pointer;
}
.checkout-page .address-card .address-card-body {
  flex: 1;
  min-width: 0;
}
.checkout-page .address-card .address-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--font-size-14);
  font-weight: var(--font-weight-700);
  color: var(--dark-color);
  margin-bottom: 6px;
}
.checkout-page .address-card .address-tag .material-symbols-rounded {
  font-size: 18px;
  color: var(--primary-color);
}
.checkout-page .address-card .address-default-badge {
  font-size: 10px;
  background-color: #eef7f1;
  color: var(--primary-color);
  padding: 1px 6px;
  border-radius: var(--border-radius-4);
  font-weight: var(--font-weight-700);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.checkout-page .address-card .address-line {
  font-size: var(--font-size-12);
  color: #495057;
  line-height: 1.4;
}
.checkout-page .address-card .address-phone {
  font-size: var(--font-size-12);
  color: #6c757d;
  margin-top: 4px;
}
.checkout-page .address-card .address-actions button {
  background: transparent;
  border: none;
  color: var(--primary-color);
  font-size: var(--font-size-12);
  font-weight: var(--font-weight-600);
  cursor: pointer;
}
.checkout-page .address-card .address-actions button:hover {
  color: var(--secondary-color);
}
.checkout-page .address-card:hover {
  border-color: #b8d6c2;
  background-color: #fafdfb;
}
.checkout-page .address-card.selected {
  border-color: var(--primary-color);
  background-color: #f4faf6;
  box-shadow: 0 0 0 1px var(--primary-color) inset;
}
.checkout-page .slot-day-tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 12px;
  border-bottom: 1px solid #eef3ef;
  padding-bottom: 8px;
}
.checkout-page .slot-day-tabs .slot-day {
  background: transparent;
  border: none;
  padding: 6px 14px;
  font-size: var(--font-size-12);
  font-weight: var(--font-weight-600);
  color: #6c757d;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.checkout-page .slot-day-tabs .slot-day.active {
  background-color: var(--primary-color);
  color: var(--white-color);
}
.checkout-page .slot-day-tabs .slot-day:hover:not(.active) {
  color: var(--primary-color);
}
.checkout-page .slot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 10px;
}
.checkout-page .slot-grid .slot-chip {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  padding: 10px 12px;
  background-color: #fff;
  border: 1px solid #e0e6e2;
  border-radius: var(--border-radius-8);
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: left;
  position: relative;
}
.checkout-page .slot-grid .slot-chip .material-symbols-rounded {
  position: absolute;
  top: 8px;
  right: 8px;
  font-size: 14px;
  color: var(--primary-color);
}
.checkout-page .slot-grid .slot-chip strong {
  font-size: var(--font-size-14);
  color: var(--dark-color);
  font-weight: var(--font-weight-700);
}
.checkout-page .slot-grid .slot-chip small {
  font-size: 11px;
  color: #6c757d;
}
.checkout-page .slot-grid .slot-chip:hover {
  border-color: #b8d6c2;
}
.checkout-page .slot-grid .slot-chip.selected {
  border-color: var(--primary-color);
  background-color: #f4faf6;
  box-shadow: 0 0 0 1px var(--primary-color) inset;
}
.checkout-page .payment-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.checkout-page .payment-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border: 1px solid #e0e6e2;
  border-radius: var(--border-radius-8);
  cursor: pointer;
  transition: all 0.2s ease;
  margin: 0;
}
.checkout-page .payment-card input[type=radio] {
  accent-color: var(--primary-color);
  cursor: pointer;
}
.checkout-page .payment-card .payment-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f0fff6;
  border-radius: var(--border-radius-8);
  flex-shrink: 0;
}
.checkout-page .payment-card .payment-icon .material-symbols-rounded {
  font-size: 22px;
  color: var(--primary-color);
}
.checkout-page .payment-card .payment-info {
  flex: 1;
  min-width: 0;
}
.checkout-page .payment-card .payment-title {
  font-size: var(--font-size-14);
  font-weight: var(--font-weight-700);
  color: var(--dark-color);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.checkout-page .payment-card .payment-tag {
  font-size: 10px;
  background-color: #eaf2ff;
  color: #2853c8;
  padding: 1px 6px;
  border-radius: var(--border-radius-4);
  font-weight: var(--font-weight-700);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.checkout-page .payment-card .payment-tag.payment-tag-success {
  background-color: #eef7f1;
  color: var(--primary-color);
}
.checkout-page .payment-card .payment-desc {
  font-size: var(--font-size-12);
  color: #6c757d;
  margin-top: 2px;
}
.checkout-page .payment-card:hover {
  border-color: #b8d6c2;
  background-color: #fafdfb;
}
.checkout-page .payment-card.selected {
  border-color: var(--primary-color);
  background-color: #f4faf6;
  box-shadow: 0 0 0 1px var(--primary-color) inset;
}
.checkout-page .summary-items {
  margin: 0 0 6px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.checkout-page .summary-items li {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 8px;
  align-items: center;
  font-size: var(--font-size-12);
}
.checkout-page .summary-items li .summary-item-name {
  color: var(--dark-color);
  font-weight: var(--font-weight-500);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.checkout-page .summary-items li .summary-item-name small {
  color: #6c757d;
  font-size: 11px;
}
.checkout-page .summary-items li .summary-item-qty {
  color: #6c757d;
  font-weight: var(--font-weight-500);
}
.checkout-page .summary-items li .summary-item-price {
  color: var(--dark-color);
  font-weight: var(--font-weight-700);
  min-width: 50px;
  text-align: right;
}

.profile-page {
  background-color: #fafbf9;
  min-height: 60vh;
}
.profile-page .profile-mobile-toggle {
  display: none;
}
@media (max-width: 991px) {
  .profile-page .profile-mobile-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    background-color: #fff;
    border: 1px solid #e0e6e2;
    border-radius: var(--border-radius-8);
    font-size: var(--font-size-12);
    font-weight: var(--font-weight-600);
    color: var(--dark-color);
    cursor: pointer;
  }
  .profile-page .profile-mobile-toggle .material-symbols-rounded {
    font-size: 18px;
  }
}

.profile-sidebar {
  background-color: #fff;
  border: 1px solid #e9efec;
  border-radius: var(--border-radius-12);
  overflow: hidden;
  position: sticky;
  top: 12px;
}
.profile-sidebar .profile-user-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 16px;
  background: linear-gradient(135deg, #056729 0%, #0a7e36 100%);
  color: #fff;
}
.profile-sidebar .profile-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-18);
  font-weight: var(--font-weight-700);
  flex-shrink: 0;
  border: 2px solid rgba(255, 255, 255, 0.4);
}
.profile-sidebar .profile-user-meta {
  min-width: 0;
  line-height: 1.2;
}
.profile-sidebar .profile-user-name {
  font-size: var(--font-size-14);
  font-weight: var(--font-weight-700);
  margin-bottom: 2px;
}
.profile-sidebar .profile-user-phone {
  font-size: var(--font-size-12);
  opacity: 0.85;
}
.profile-sidebar .profile-nav {
  padding: 6px 0;
}
.profile-sidebar .profile-nav li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  color: var(--dark-color);
  font-size: var(--font-size-14);
  font-weight: var(--font-weight-500);
  border-left: 3px solid transparent;
  transition: all 0.2s ease;
}
.profile-sidebar .profile-nav li a .material-symbols-rounded {
  font-size: 20px;
  color: #6c757d;
}
.profile-sidebar .profile-nav li a:hover {
  background-color: #f3f8f5;
  color: var(--primary-color);
}
.profile-sidebar .profile-nav li a:hover .material-symbols-rounded {
  color: var(--primary-color);
}
.profile-sidebar .profile-nav li a.active {
  background-color: #eef7f1;
  border-left-color: var(--primary-color);
  color: var(--primary-color);
  font-weight: var(--font-weight-600);
}
.profile-sidebar .profile-nav li a.active .material-symbols-rounded {
  color: var(--primary-color);
}
.profile-sidebar .profile-nav li a.profile-nav-logout {
  color: var(--secondary-color);
  border-top: 1px solid #eef3ef;
  margin-top: 4px;
}
.profile-sidebar .profile-nav li a.profile-nav-logout .material-symbols-rounded {
  color: var(--secondary-color);
}
.profile-sidebar .profile-nav li a.profile-nav-logout:hover {
  background-color: #fff5f5;
  color: var(--secondary-color);
}
.profile-sidebar .profile-nav li a.profile-nav-logout:hover .material-symbols-rounded {
  color: var(--secondary-color);
}

.profile-sidebar-backdrop {
  display: none;
}
@media (max-width: 991px) {
  .profile-sidebar-backdrop {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.45);
    z-index: 1040;
    opacity: 0;
    transition: opacity 0.25s ease;
  }
  .profile-sidebar-backdrop.show {
    display: block;
    opacity: 1;
  }
}

@media (max-width: 991px) {
  #profileSidebar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 280px;
    max-width: 85vw;
    z-index: 1050;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    margin: 0;
    padding: 0;
  }
  #profileSidebar.show {
    transform: translateX(0);
  }
  #profileSidebar .profile-sidebar {
    position: static;
    border-radius: 0;
    border: none;
    box-shadow: var(--box-shadow-30);
    min-height: 100vh;
  }
}
.profile-panel {
  background-color: #fff;
  border: 1px solid #e9efec;
  border-radius: var(--border-radius-12);
  padding: 22px 22px 26px;
}
.profile-panel .profile-panel-head {
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid #eef3ef;
}
.profile-panel .profile-panel-head h5 {
  font-size: var(--font-size-18);
  font-weight: var(--font-weight-700);
  color: var(--dark-color);
  margin-bottom: 2px;
}
.profile-panel .form-label {
  font-size: var(--font-size-12);
  font-weight: var(--font-weight-600);
  color: var(--dark-color);
  margin-bottom: 4px;
}
.profile-panel .form-select {
  font-size: var(--font-size-14);
  padding: 10px 30px 10px 15px;
}
@media (max-width: 575px) {
  .profile-panel {
    padding: 18px;
  }
}

.order-card {
  border: 1px solid #e9efec;
  border-radius: var(--border-radius-8);
  padding: 14px 16px;
  margin-bottom: 12px;
  transition: border-color 0.2s ease;
}
.order-card:hover {
  border-color: #cfe9d7;
}
.order-card .order-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  flex-wrap: wrap;
  gap: 6px;
}
.order-card .order-status {
  display: inline-block;
  padding: 2px 8px;
  font-size: 10px;
  font-weight: var(--font-weight-700);
  border-radius: var(--border-radius-4);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-right: 8px;
}
.order-card .order-status.delivered {
  background-color: #eef7f1;
  color: var(--primary-color);
}
.order-card .order-status.pending {
  background-color: #fff5e6;
  color: #c47d00;
}
.order-card .order-status.cancelled {
  background-color: #fff0f0;
  color: var(--secondary-color);
}
.order-card .order-id {
  font-size: var(--font-size-12);
  font-weight: var(--font-weight-600);
  color: #6c757d;
}
.order-card .order-date {
  font-size: var(--font-size-12);
  color: #6c757d;
}
.order-card .order-items-strip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
}
.order-card .order-items-strip img {
  width: 44px;
  height: 44px;
  -o-object-fit: contain;
     object-fit: contain;
  border: 1px solid #f1f4f2;
  border-radius: var(--border-radius-4);
  background-color: #fff;
  padding: 3px;
}
.order-card .order-items-strip .order-items-more {
  width: 44px;
  height: 44px;
  border: 1px dashed #cfe9d7;
  border-radius: var(--border-radius-4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-12);
  font-weight: var(--font-weight-700);
  color: var(--primary-color);
  background-color: #f4faf6;
}
.order-card .order-card-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  border-top: 1px dashed #eef3ef;
  gap: 10px;
  flex-wrap: wrap;
}
.order-card .order-summary-text {
  font-size: var(--font-size-14);
  font-weight: var(--font-weight-700);
  color: var(--dark-color);
}
.order-card .hero_btn {
  padding: 6px 14px;
  font-size: var(--font-size-12);
}

.address-saved-card {
  border: 1px solid #e9efec;
  border-radius: var(--border-radius-8);
  padding: 14px 16px;
  height: 100%;
  transition: border-color 0.2s ease;
}
.address-saved-card:hover {
  border-color: #cfe9d7;
}
.address-saved-card .address-saved-head {
  margin-bottom: 6px;
}
.address-saved-card .address-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--font-size-14);
  font-weight: var(--font-weight-700);
  color: var(--dark-color);
}
.address-saved-card .address-tag .material-symbols-rounded {
  font-size: 18px;
  color: var(--primary-color);
}
.address-saved-card .address-default-badge {
  font-size: 10px;
  background-color: #eef7f1;
  color: var(--primary-color);
  padding: 1px 6px;
  border-radius: var(--border-radius-4);
  font-weight: var(--font-weight-700);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-left: 4px;
}
.address-saved-card .address-line {
  font-size: var(--font-size-12);
  color: #495057;
  line-height: 1.5;
}
.address-saved-card .address-phone {
  font-size: var(--font-size-12);
  color: #6c757d;
  margin-top: 4px;
}
.address-saved-card .address-saved-actions {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed #eef3ef;
}
.address-saved-card .address-saved-actions .hero_btn {
  padding: 5px 14px;
  font-size: 11px;
}
.address-saved-card .address-saved-actions .hero_btn.danger {
  color: var(--secondary-color);
  border-color: var(--secondary-color);
  background-color: transparent;
}
.address-saved-card .address-saved-actions .hero_btn.danger:hover {
  background-color: var(--secondary-color);
  color: var(--white-color);
}

.wallet-balance-card {
  background: linear-gradient(135deg, #056729 0%, #0a7e36 100%);
  color: #fff;
  border-radius: var(--border-radius-12);
  padding: 22px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 12px;
}
.wallet-balance-card .wallet-label {
  font-size: var(--font-size-12);
  opacity: 0.85;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.wallet-balance-card .wallet-amount {
  font-size: var(--font-size-30);
  font-weight: var(--font-weight-700);
  line-height: 1.1;
  margin-top: 4px;
}
.wallet-balance-card .hero_btn {
  background-color: #fff;
  color: var(--primary-color);
  border-color: #fff;
}
.wallet-balance-card .hero_btn:hover {
  background-color: #f0fff6;
  color: var(--primary-color);
}

.wallet-section-title {
  font-size: var(--font-size-14);
  font-weight: var(--font-weight-700);
  color: var(--dark-color);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.wallet-txn-list {
  margin: 0;
}
.wallet-txn-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #eef3ef;
}
.wallet-txn-list li:last-child {
  border-bottom: none;
}
.wallet-txn-list .wallet-txn-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.wallet-txn-list .wallet-txn-icon .material-symbols-rounded {
  font-size: 18px;
}
.wallet-txn-list .wallet-txn-icon.credit {
  background-color: #eef7f1;
  color: var(--primary-color);
}
.wallet-txn-list .wallet-txn-icon.debit {
  background-color: #fff0f0;
  color: var(--secondary-color);
}
.wallet-txn-list .wallet-txn-info {
  flex: 1;
  min-width: 0;
}
.wallet-txn-list .wallet-txn-title {
  font-size: var(--font-size-14);
  font-weight: var(--font-weight-600);
  color: var(--dark-color);
}
.wallet-txn-list .wallet-txn-date {
  font-size: 11px;
  color: #6c757d;
}
.wallet-txn-list .wallet-txn-amount {
  font-size: var(--font-size-14);
  font-weight: var(--font-weight-700);
}
.wallet-txn-list .wallet-txn-amount.credit {
  color: var(--primary-color);
}
.wallet-txn-list .wallet-txn-amount.debit {
  color: var(--secondary-color);
}

.prod__wishlist-remove {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 5;
  width: 28px;
  height: 28px;
  background-color: #fff;
  border: 1px solid #e9efec;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}
.prod__wishlist-remove .material-symbols-rounded {
  font-size: 16px;
  color: var(--dark-color);
}
.prod__wishlist-remove:hover {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}
.prod__wishlist-remove:hover .material-symbols-rounded {
  color: #fff;
}

.notif-list {
  margin: 0;
}
.notif-list .notif-item {
  display: flex;
  gap: 12px;
  padding: 14px;
  border: 1px solid #eef3ef;
  border-radius: var(--border-radius-8);
  margin-bottom: 8px;
  transition: border-color 0.2s ease;
  position: relative;
}
.notif-list .notif-item.unread {
  background-color: #fafdfb;
  border-color: #cfe9d7;
}
.notif-list .notif-item.unread::before {
  content: "";
  position: absolute;
  top: 16px;
  right: 16px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--secondary-color);
}
.notif-list .notif-item:hover {
  border-color: #b8d6c2;
}
.notif-list .notif-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.notif-list .notif-icon .material-symbols-rounded {
  font-size: 20px;
}
.notif-list .notif-icon.order {
  background-color: #eaf2ff;
  color: #2853c8;
}
.notif-list .notif-icon.promo {
  background-color: #fff5e6;
  color: #c47d00;
}
.notif-list .notif-icon.wallet {
  background-color: #eef7f1;
  color: var(--primary-color);
}
.notif-list .notif-title {
  font-size: var(--font-size-14);
  font-weight: var(--font-weight-600);
  color: var(--dark-color);
  margin-bottom: 2px;
}
.notif-list .notif-meta {
  font-size: 11px;
  color: #6c757d;
}

.order-result-page {
  background-color: #fafbf9;
  min-height: 60vh;
  padding-bottom: 32px;
}
.order-result-page > .container > .row > [class*=col-] > *:last-child {
  margin-bottom: 0;
}

.order-result-mini-row {
  margin-bottom: 16px;
}

.order-result-hero {
  text-align: center;
  padding: 32px 22px 26px;
  background-color: #fff;
  border-radius: var(--border-radius-12);
  border: 1px solid #e9efec;
  margin-bottom: 16px;
}
.order-result-hero h2 {
  font-size: var(--font-size-22);
  font-weight: var(--font-weight-700);
  color: var(--dark-color);
  margin: 18px 0 6px;
  line-height: 1.2;
}
.order-result-hero p {
  font-size: var(--font-size-14);
  color: #6c757d;
  max-width: 460px;
  margin: 0 auto 16px;
  line-height: 1.5;
}
.order-result-hero .order-result-meta {
  font-size: var(--font-size-12);
  color: #6c757d;
  display: inline-flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
  background-color: #f8fbf9;
  padding: 6px 14px;
  border-radius: 999px;
}
.order-result-hero .order-result-meta strong {
  color: var(--dark-color);
  font-weight: var(--font-weight-700);
}
.order-result-hero .order-result-meta .dot {
  color: #c5c5c5;
}
@media (max-width: 575px) {
  .order-result-hero h2 {
    font-size: var(--font-size-18);
  }
}

.order-result-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 84px;
  height: 84px;
  background-color: #eef7f1;
  border-radius: 50%;
  border: 4px solid #cfe9d7;
  animation: order-pop 0.55s cubic-bezier(0.18, 0.89, 0.32, 1.28);
}
.order-result-icon-wrap .material-symbols-rounded {
  font-size: 48px;
  color: var(--primary-color);
  font-weight: 700;
}
.order-result-icon-wrap.failure {
  background-color: #fff0f0;
  border-color: #ffcfcf;
  animation: order-shake 0.6s cubic-bezier(0.36, 0.07, 0.19, 0.97);
}
.order-result-icon-wrap.failure .material-symbols-rounded {
  color: var(--secondary-color);
}

@keyframes order-pop {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  60% {
    transform: scale(1.1);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes order-shake {
  0%, 100% {
    transform: translateX(0) scale(1);
  }
  20% {
    transform: translateX(-6px) scale(1);
  }
  40% {
    transform: translateX(6px) scale(1);
  }
  60% {
    transform: translateX(-4px) scale(1);
  }
  80% {
    transform: translateX(4px) scale(1);
  }
}
.order-track-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(135deg, #f0fff6 0%, #ffffff 100%);
  border: 1px solid #cfe9d7;
  border-radius: var(--border-radius-12);
  padding: 14px 18px;
  margin-bottom: 16px;
  gap: 12px;
  flex-wrap: wrap;
}
.order-track-card .eta-block {
  display: flex;
  align-items: center;
  gap: 12px;
}
.order-track-card .eta-block .material-symbols-rounded {
  font-size: 28px;
  color: var(--primary-color);
  background-color: #fff;
  border-radius: 50%;
  padding: 8px;
  border: 2px solid #cfe9d7;
}
.order-track-card .eta-block small {
  display: block;
  font-size: var(--font-size-12);
  color: #6c757d;
  line-height: 1.2;
}
.order-track-card .eta-block strong {
  display: block;
  font-size: var(--font-size-16);
  color: var(--dark-color);
  font-weight: var(--font-weight-700);
  line-height: 1.2;
  margin-top: 2px;
}
.order-track-card .hero_btn {
  background-color: var(--primary-color);
  color: var(--white-color);
}
.order-track-card .hero_btn:hover {
  background-color: #044d20;
  color: var(--white-color);
}
.order-track-card .hero_btn .material-symbols-rounded {
  font-size: 16px;
}

.order-result-card {
  background-color: #fff;
  border: 1px solid #e9efec;
  border-radius: var(--border-radius-12);
  padding: 18px;
  margin-bottom: 16px;
}
.order-result-card h6 {
  font-size: var(--font-size-12);
  font-weight: var(--font-weight-700);
  color: var(--dark-color);
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin: 0 0 12px;
}
.order-result-card.mini {
  height: 100%;
  margin-bottom: 0;
}
.order-result-card.mini h6 {
  margin-bottom: 8px;
}
.order-result-card .order-items-list {
  margin: 0 0 12px;
  list-style: none;
  padding: 0;
}
.order-result-card .order-items-list li {
  display: grid;
  grid-template-columns: 44px 1fr auto auto;
  gap: 10px;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #f1f4f2;
}
.order-result-card .order-items-list li:last-child {
  border-bottom: none;
}
.order-result-card .order-items-list li img {
  width: 44px;
  height: 44px;
  -o-object-fit: contain;
     object-fit: contain;
  background-color: #f8fbf9;
  border: 1px solid #f1f4f2;
  border-radius: var(--border-radius-4);
  padding: 3px;
}
.order-result-card .order-items-list li .item-name {
  font-size: var(--font-size-14);
  font-weight: var(--font-weight-600);
  color: var(--dark-color);
  line-height: 1.3;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.order-result-card .order-items-list li .item-name small {
  display: block;
  color: #6c757d;
  font-size: 11px;
  font-weight: var(--font-weight-400);
}
.order-result-card .order-items-list li .item-qty {
  font-size: var(--font-size-12);
  color: #6c757d;
  margin-right: 6px;
}
.order-result-card .order-items-list li .item-price {
  font-size: var(--font-size-14);
  font-weight: var(--font-weight-700);
  color: var(--dark-color);
}
.order-result-card .bill-row {
  display: flex;
  justify-content: space-between;
  font-size: var(--font-size-12);
  color: #495057;
  padding: 4px 0;
}
.order-result-card .bill-row.bill-total {
  font-size: var(--font-size-14);
  font-weight: var(--font-weight-700);
  color: var(--dark-color);
  padding-top: 10px;
  border-top: 1px dashed #d6dfd9;
  margin-top: 6px;
}
.order-result-card .info-line {
  font-size: var(--font-size-12);
  color: #495057;
  line-height: 1.6;
  margin: 0;
}
.order-result-card .info-line strong {
  color: var(--dark-color);
  display: block;
  font-size: var(--font-size-14);
  font-weight: var(--font-weight-700);
  margin-bottom: 4px;
}
.order-result-card .payment-paid {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  background-color: #eef7f1;
  color: var(--primary-color);
  padding: 3px 8px;
  border-radius: var(--border-radius-4);
  font-weight: var(--font-weight-700);
  margin-top: 8px;
}
.order-result-card .payment-paid .material-symbols-rounded {
  font-size: 14px;
}
.order-result-card .payment-failed-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  background-color: #fff0f0;
  color: var(--secondary-color);
  padding: 4px 10px;
  border-radius: var(--border-radius-4);
  font-weight: var(--font-weight-700);
  margin-top: 10px;
}
.order-result-card .payment-failed-tag .material-symbols-rounded {
  font-size: 14px;
}

.order-result-cta {
  display: flex;
  gap: 12px;
  margin: 18px 0;
  flex-wrap: wrap;
}
.order-result-cta .hero_btn {
  flex: 1;
  justify-content: center;
  padding: 11px 20px;
  min-width: 160px;
}
.order-result-cta .hero_btn .material-symbols-rounded {
  font-size: 18px;
}

.next-steps {
  background-color: #fff;
  border: 1px solid #e9efec;
  border-radius: var(--border-radius-12);
  padding: 20px;
  margin-bottom: 16px;
}
.next-steps h6 {
  font-size: var(--font-size-14);
  font-weight: var(--font-weight-700);
  color: var(--dark-color);
  margin: 0 0 16px;
}
.next-steps .step-card {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.next-steps .step-card .step-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background-color: #f0fff6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.next-steps .step-card .step-icon .material-symbols-rounded {
  font-size: 20px;
  color: var(--primary-color);
}
.next-steps .step-card .step-title {
  font-size: var(--font-size-12);
  font-weight: var(--font-weight-700);
  color: var(--dark-color);
  margin-bottom: 2px;
}
.next-steps .step-card .step-desc {
  font-size: 11px;
  color: #6c757d;
  line-height: 1.4;
}

.failure-reason-card {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background-color: #fff5f5;
  border: 1px solid #ffd6d6;
  border-radius: var(--border-radius-12);
  padding: 14px 18px;
  margin-bottom: 16px;
}
.failure-reason-card .material-symbols-rounded {
  font-size: 24px;
  color: var(--secondary-color);
  flex-shrink: 0;
  background-color: #fff;
  border-radius: 50%;
  padding: 4px;
}
.failure-reason-card strong {
  display: block;
  font-size: var(--font-size-14);
  font-weight: var(--font-weight-700);
  color: var(--secondary-color);
  margin-bottom: 4px;
}
.failure-reason-card p {
  font-size: var(--font-size-12);
  color: #74575a;
  margin: 0;
  line-height: 1.5;
}

.failure-reasons-block {
  background-color: #fff;
  border: 1px solid #e9efec;
  border-radius: var(--border-radius-12);
  padding: 18px;
  margin-bottom: 16px;
}
.failure-reasons-block h6 {
  font-size: var(--font-size-14);
  font-weight: var(--font-weight-700);
  color: var(--dark-color);
  margin: 0 0 12px;
}
.failure-reasons-block ul {
  margin: 0;
  padding-left: 20px;
}
.failure-reasons-block ul li {
  font-size: var(--font-size-12);
  color: #495057;
  padding: 4px 0;
  line-height: 1.6;
}
.failure-reasons-block ul li strong {
  color: var(--dark-color);
  font-weight: var(--font-weight-600);
}

.alt-payments-card {
  background-color: #fff;
  border: 1px solid #e9efec;
  border-radius: var(--border-radius-12);
  padding: 18px;
  margin-bottom: 16px;
}
.alt-payments-card h6 {
  font-size: var(--font-size-14);
  font-weight: var(--font-weight-700);
  color: var(--dark-color);
  margin: 0 0 12px;
}
.alt-payments-card .alt-payments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 10px;
}
.alt-payments-card .alt-payment-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid #e0e6e2;
  border-radius: var(--border-radius-8);
  background-color: #fafdfb;
  color: var(--dark-color);
  font-size: var(--font-size-12);
  font-weight: var(--font-weight-600);
  transition: all 0.2s ease;
}
.alt-payments-card .alt-payment-chip .material-symbols-rounded {
  font-size: 22px;
  color: var(--primary-color);
  background-color: #f0fff6;
  border-radius: 50%;
  padding: 6px;
}
.alt-payments-card .alt-payment-chip:hover {
  border-color: var(--primary-color);
  background-color: #f4faf6;
  transform: translateY(-1px);
  box-shadow: var(--box-shadow-5);
}

.help-card {
  display: flex;
  gap: 14px;
  align-items: center;
  background: linear-gradient(135deg, #056729 0%, #0a7e36 100%);
  color: #fff;
  border-radius: var(--border-radius-12);
  padding: 16px 20px;
}
.help-card .material-symbols-rounded {
  font-size: 24px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  padding: 8px;
  flex-shrink: 0;
}
.help-card strong {
  display: block;
  font-size: var(--font-size-14);
  font-weight: var(--font-weight-700);
  margin-bottom: 2px;
}
.help-card p {
  font-size: var(--font-size-12);
  opacity: 0.9;
  margin: 0;
  line-height: 1.4;
}

:root {
  --auth-primary: var(--primary-color);
  --auth-secondary: var(--secondary-color);
  --auth-gray-text: #6c757d;
  --auth-border: #d2d2d2;
  --auth-divider: #edf3ee;
  --auth-muted-bg: #f8fbf9;
  --auth-primary-hover: #044d20;
}

#loginModal .modal-dialog {
  max-width: 420px;
}
#loginModal .modal-content {
  border: none;
  border-radius: var(--border-radius-16);
  box-shadow: var(--box-shadow-50);
  overflow: hidden;
}
#loginModal .modal-header {
  padding: 16px 20px;
  border-bottom: 1px solid var(--auth-divider);
  background-color: var(--white-color);
}
#loginModal .modal-title {
  font-size: var(--font-size-16);
  font-weight: var(--font-weight-600);
  color: var(--dark-color);
}
#loginModal .btn-close {
  transition: var(--transition-speed);
}
#loginModal .btn-close:focus {
  box-shadow: 0 0 0 0.2rem rgba(5, 103, 41, 0.25);
}
#loginModal .modal-body {
  padding: 0;
}

.auth-panel .auth-mobile-header {
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-bottom: 1px solid var(--auth-divider);
}
.auth-panel .auth-mobile-header img {
  width: 120px;
}
.auth-panel .auth-mobile-close {
  display: none;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  color: var(--dark-color);
  border-radius: var(--border-radius-8);
  cursor: pointer;
  transition: var(--transition-speed);
}
.auth-panel .auth-mobile-close:hover {
  background-color: #f2f2f2;
  color: var(--secondary-color);
}
.auth-panel .auth-container {
  padding: 24px 24px 20px;
}

.auth-lockout-banner {
  display: none;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  margin-bottom: 18px;
  background-color: #fff5f5;
  border: 1px solid #f3c9c9;
  border-radius: var(--border-radius-8);
  color: var(--secondary-color);
  font-size: var(--font-size-12);
  line-height: 1.45;
}
.auth-lockout-banner.is-active {
  display: flex;
}
.auth-lockout-banner .material-symbols-rounded {
  font-size: 18px;
  flex-shrink: 0;
}

.auth-state {
  display: none;
}
.auth-state.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

.auth-heading-block {
  margin-bottom: 20px;
}

.auth-modal-title {
  font-size: var(--font-size-22);
  font-weight: var(--font-weight-700);
  color: var(--dark-color);
  line-height: 1.25;
  margin: 0 0 6px;
}

.auth-modal-subtitle {
  font-size: var(--font-size-14);
  color: var(--auth-gray-text);
  line-height: 1.5;
  margin: 0;
}

.auth-form-group {
  margin-bottom: 16px;
}
.auth-form-group.has-error .auth-error-msg {
  display: flex;
}
.auth-form-group.has-error input,
.auth-form-group.has-error select,
.auth-form-group.has-error .auth-otp-input {
  border-color: var(--secondary-color);
}

.auth-label {
  display: block;
  font-size: var(--font-size-12);
  font-weight: var(--font-weight-600);
  color: var(--dark-color);
  margin-bottom: 6px;
}

.auth-phone-row {
  display: flex;
  gap: 8px;
}

.auth-country-wrapper select, .auth-input-wrapper input {
  width: 100%;
  border: 1px solid var(--auth-border);
  border-radius: var(--border-radius-8);
  padding: 10px 14px;
  font-family: var(--font-family);
  font-size: var(--font-size-14);
  color: var(--dark-color);
  background-color: var(--white-color);
  transition: border-color var(--transition-speed);
}
.auth-country-wrapper select::-moz-placeholder, .auth-input-wrapper input::-moz-placeholder {
  color: #9aa0a6;
}
.auth-country-wrapper select::placeholder, .auth-input-wrapper input::placeholder {
  color: #9aa0a6;
}
.auth-country-wrapper select:focus, .auth-input-wrapper input:focus {
  outline: none;
  border-color: var(--primary-color);
}

.auth-input-wrapper {
  flex: 1;
}
.auth-country-wrapper select {
  width: auto;
  padding-right: 30px;
  font-weight: var(--font-weight-500);
  cursor: pointer;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%236c757d' d='M5 6 0 1 1 0l4 4 4-4 1 1z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
}

.auth-error-msg {
  display: none;
  align-items: center;
  gap: 5px;
  margin-top: 6px;
  font-size: var(--font-size-12);
  color: var(--secondary-color);
}
.auth-error-msg .material-symbols-rounded {
  flex-shrink: 0;
}

.auth-btn-submit {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 18px;
  margin-top: 4px;
  border: 1px solid var(--primary-color);
  border-radius: var(--border-radius-8);
  background-color: var(--primary-color);
  color: var(--white-color);
  font-size: var(--font-size-14);
  font-weight: var(--font-weight-600);
  cursor: pointer;
  transition: var(--transition-speed);
}
.auth-btn-submit:hover {
  background-color: var(--auth-primary-hover);
  border-color: var(--auth-primary-hover);
}
.auth-btn-submit:focus-visible {
  outline: none;
  box-shadow: 0 0 0 0.2rem rgba(5, 103, 41, 0.3);
}
.auth-btn-submit:active {
  transform: scale(0.99);
}
.auth-btn-submit:disabled, .auth-btn-submit.is-loading {
  opacity: 0.7;
  cursor: not-allowed;
}
.auth-btn-submit.is-loading .auth-btn-text {
  visibility: hidden;
}
.auth-btn-submit.is-loading .auth-spinner {
  display: block;
}

.auth-spinner {
  display: none;
  position: absolute;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-top-color: var(--white-color);
  border-radius: 50%;
  animation: authSpin 0.6s linear infinite;
}

@keyframes authSpin {
  to {
    transform: rotate(360deg);
  }
}
.auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0;
  font-size: var(--font-size-12);
  font-weight: var(--font-weight-500);
  color: var(--auth-gray-text);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.auth-divider::before, .auth-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background-color: var(--auth-divider);
}

.auth-social-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.auth-btn-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 11px 18px;
  border: 1px solid var(--auth-border);
  border-radius: var(--border-radius-8);
  background-color: var(--white-color);
  color: var(--dark-color);
  font-size: var(--font-size-14);
  font-weight: var(--font-weight-500);
  cursor: pointer;
  transition: var(--transition-speed);
}
.auth-btn-social img {
  width: 18px;
  height: 18px;
  -o-object-fit: contain;
     object-fit: contain;
}
.auth-btn-social .material-symbols-rounded {
  font-size: 20px;
}
.auth-btn-social:hover {
  border-color: var(--primary-color);
  background-color: var(--auth-muted-bg);
  color: var(--primary-color);
}
.auth-btn-social:focus-visible {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(5, 103, 41, 0.2);
}

.auth-toggle-container {
  text-align: center;
  margin-top: 18px;
}

.auth-toggle-link {
  font-size: var(--font-size-14);
  font-weight: var(--font-weight-600);
  color: var(--primary-color);
  transition: color var(--transition-speed);
}
.auth-toggle-link:hover {
  color: var(--secondary-color);
}

.auth-badge-edit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  padding: 6px 12px;
  background-color: var(--auth-muted-bg);
  border: 1px solid #e4efe7;
  border-radius: 999px;
  font-size: var(--font-size-14);
  font-weight: var(--font-weight-600);
  color: var(--dark-color);
}
.auth-badge-edit button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  color: var(--primary-color);
  cursor: pointer;
  padding: 2px;
  line-height: 1;
}
.auth-badge-edit button:hover {
  color: var(--secondary-color);
}

.auth-otp-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}

.auth-otp-input {
  width: 100%;
  aspect-ratio: 1/1;
  text-align: center;
  border: 1px solid var(--auth-border);
  border-radius: var(--border-radius-8);
  font-family: var(--font-family);
  font-size: var(--font-size-18);
  font-weight: var(--font-weight-600);
  color: var(--dark-color);
  transition: border-color var(--transition-speed);
}
.auth-otp-input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(5, 103, 41, 0.12);
}
.auth-otp-input.is-filled {
  border-color: var(--primary-color);
}

.auth-resend-wrap {
  text-align: center;
  margin-top: 16px;
  font-size: var(--font-size-12);
  color: var(--auth-gray-text);
}

.auth-resend-btn {
  display: none;
  margin: 4px auto 0;
  border: none;
  background: transparent;
  color: var(--primary-color);
  font-size: var(--font-size-12);
  font-weight: var(--font-weight-600);
  cursor: pointer;
}
.auth-resend-btn.is-active {
  display: inline-block;
}
.auth-resend-btn:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

.auth-guest-container {
  text-align: center;
  margin-top: 12px;
}

.auth-guest-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--font-size-14);
  font-weight: var(--font-weight-500);
  color: var(--auth-gray-text);
  transition: color var(--transition-speed);
}
.auth-guest-link:hover {
  color: var(--primary-color);
}

.auth-returning-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 18px;
  margin-bottom: 18px;
  background-color: var(--auth-muted-bg);
  border: 1px solid #e9efec;
  border-radius: var(--border-radius-12);
}

.auth-avatar {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: var(--white-color);
  font-size: var(--font-size-22);
  font-weight: var(--font-weight-700);
  text-transform: uppercase;
}

.auth-returning-name {
  font-size: var(--font-size-16);
  font-weight: var(--font-weight-700);
  color: var(--dark-color);
  line-height: 1.3;
}

.auth-returning-phone {
  font-size: var(--font-size-12);
  color: var(--auth-gray-text);
}

.auth-modal-footer {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--auth-divider);
  text-align: center;
  font-size: 11px;
  line-height: 1.6;
  color: var(--auth-gray-text);
}
.auth-modal-footer a {
  color: var(--primary-color);
  font-weight: var(--font-weight-500);
}
.auth-modal-footer a:hover {
  color: var(--secondary-color);
}

@media (max-width: 575px) {
  #loginModal .modal-dialog {
    max-width: 100%;
    margin: 0;
    min-height: 100%;
  }
  #loginModal .modal-content {
    min-height: 100vh;
    border-radius: 0;
  }
  #loginModal .modal-header {
    display: none;
  }
  .auth-panel .auth-mobile-header,
  .auth-panel .auth-mobile-close {
    display: flex;
  }
  .auth-modal-title {
    font-size: var(--font-size-20);
  }
}
.auth-social-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.auth-meta-link {
  font-size: 12.5px;
  font-weight: var(--font-weight-500);
  color: var(--auth-gray-text);
}
.auth-meta-link:hover {
  color: var(--secondary-color);
}

.auth-countdown {
  color: var(--secondary-color);
}

.auth-link-row {
  display: flex;
  justify-content: flex-end;
  margin: -4px 0 16px;
}

.auth-input-wrapper.has-toggle {
  position: relative;
}
.auth-input-wrapper.has-toggle input {
  padding-right: 44px;
}

.auth-pw-toggle {
  position: absolute;
  top: 50%;
  right: 6px;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  color: var(--auth-gray-text);
  border-radius: var(--border-radius-8);
  cursor: pointer;
  transition: var(--transition-speed);
}
.auth-pw-toggle .material-symbols-rounded {
  font-size: 20px;
}
.auth-pw-toggle:hover {
  color: var(--primary-color);
}
.auth-pw-toggle:focus-visible {
  outline: none;
  color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(5, 103, 41, 0.2);
}

.auth-feedback {
  text-align: center;
  padding: 8px 0 20px;
}
.auth-feedback .auth-modal-title {
  margin-top: 16px;
}
.auth-feedback .auth-modal-subtitle {
  max-width: 320px;
  margin-inline: auto;
}

.auth-feedback-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: #eef7f1;
  color: var(--primary-color);
}
.auth-feedback-icon .material-symbols-rounded {
  font-size: 34px;
}
.auth-feedback-icon.is-success {
  background-color: #f0fff6;
}

@media (max-width: 991px) {
  header {
    position: sticky;
    top: 0;
  }
}
.mobile-header {
  border-bottom: 1px solid #edf3ee;
}

.mh-topbar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 10px;
}

.mh-brand {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
}
.mh-brand img {
  width: 118px;
}

.mh-actions {
  display: flex;
  align-items: center;
  gap: 2px;
}

.mh-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  color: var(--dark-color);
  border-radius: var(--border-radius-8);
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition-speed);
}
.mh-icon-btn .material-symbols-rounded {
  font-size: 26px;
}
.mh-icon-btn:hover, .mh-icon-btn:focus-visible {
  background: #f3f8f5;
  color: var(--primary-color);
  outline: none;
}

.mh-cart-badge {
  position: absolute;
  top: 3px;
  right: 3px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  background: var(--secondary-color);
  color: var(--white-color);
  font-size: 10px;
  font-weight: var(--font-weight-700);
  line-height: 16px;
  text-align: center;
  border-radius: 999px;
}

.mh-search {
  padding: 2px 10px 8px;
}
.mh-search .input-group-text,
.mh-search .form-control {
  border-color: #d2d2d2;
}
.mh-search .form-control {
  font-size: var(--font-size-14);
}

.mh-catstrip {
  display: flex;
  gap: 2px;
  overflow-x: auto;
  padding: 6px 8px 8px;
  border-top: 1px solid #f1f4f2;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.mh-catstrip::-webkit-scrollbar {
  display: none;
}

.mh-cat {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  width: 70px;
  padding: 4px;
  text-decoration: none;
  color: var(--dark-color);
  border-radius: var(--border-radius-8);
  transition: var(--transition-speed);
}
.mh-cat:hover, .mh-cat:focus-visible {
  background: #f3f8f5;
  outline: none;
}

.mh-cat-ic {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #f0fff6;
  color: var(--primary-color);
}
.mh-cat-ic .material-symbols-rounded {
  font-size: 24px;
}

.mh-cat-lb {
  font-size: 11px;
  line-height: 1.2;
  text-align: center;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.mobile-drawer {
  width: 300px;
  max-width: 85vw;
}

.md-profile {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 20px 16px 16px;
  background: var(--primary-color);
  color: var(--white-color);
}

.md-close {
  position: absolute;
  top: 8px;
  right: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: none;
  background: transparent;
  color: var(--white-color);
  border-radius: var(--border-radius-8);
  cursor: pointer;
}
.md-close:hover {
  background: rgba(255, 255, 255, 0.18);
}

.md-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.md-avatar .material-symbols-rounded {
  font-size: 28px;
  color: var(--white-color);
}

.md-profile-text {
  flex: 1;
  min-width: 0;
}

.md-profile-name {
  font-size: var(--font-size-16);
  font-weight: var(--font-weight-700);
  line-height: 1.3;
}

.md-profile-sub {
  font-size: var(--font-size-12);
  opacity: 0.9;
}

.md-login-btn {
  flex: 0 0 100%;
  margin-top: 4px;
  background: var(--white-color);
  color: var(--primary-color);
  border: none;
  border-radius: var(--border-radius-8);
  padding: 9px;
  font-size: var(--font-size-14);
  font-weight: var(--font-weight-600);
  cursor: pointer;
  transition: var(--transition-speed);
}
.md-login-btn:hover {
  background: #f0fff6;
}

.md-menu .md-item {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 14px 16px;
  border: none;
  background: transparent;
  color: var(--dark-color);
  font-size: var(--font-size-14);
  font-weight: var(--font-weight-500);
  text-align: left;
  text-decoration: none;
  border-bottom: 1px solid #f1f4f2;
  cursor: pointer;
  transition: var(--transition-speed);
}
.md-menu .md-item .material-symbols-rounded:first-child {
  font-size: 22px;
  color: var(--primary-color);
}
.md-menu .md-item .md-chev {
  margin-left: auto;
  font-size: 20px;
  color: #9aa0a6;
}
.md-menu .md-item:hover, .md-menu .md-item:focus-visible {
  background: #f3f8f5;
  color: var(--primary-color);
  outline: none;
}

.md-subcat {
  background: #fafdfb;
}
.md-subcat .md-subcat-link {
  display: block;
  padding: 11px 16px 11px 52px;
  font-size: var(--font-size-12);
  color: #435348;
  text-decoration: none;
  border-bottom: 1px solid #f1f4f2;
}
.md-subcat .md-subcat-link:hover, .md-subcat .md-subcat-link:focus-visible {
  color: var(--primary-color);
  background: #f0fff6;
  outline: none;
}

.mobile-header {
  background: var(--white-color);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}
.mobile-header.is-scrolled {
  box-shadow: var(--box-shadow-10);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
}

.mh-brand {
  padding: 0;
}
.mh-brand img {
  display: block;
  height: 36px;
  width: auto;
  max-width: 150px;
  -o-object-fit: contain;
     object-fit: contain;
}

.mh-search-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
}
.mh-search-panel.is-open {
  max-height: 96px;
}

.mh-search-inner .input-group {
  padding: 0px 1rem;
}

.mh-search-inner .input-group-text,
.mh-search-inner .form-control {
  border-color: #d2d2d2;
}

.mh-search-inner .form-control {
  font-size: var(--font-size-14);
}

.mh-search-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  border: 1px solid #d2d2d2;
  border-left: 0;
  background: var(--white-color);
  color: var(--auth-gray-text);
  cursor: pointer;
  border-radius: 0 var(--border-radius-4) var(--border-radius-4) 0;
  transition: color var(--transition-speed);
}
.mh-search-close:hover, .mh-search-close:focus-visible {
  color: var(--secondary-color);
  outline: none;
}

.mh-catstrip {
  padding: 6px 8px;
  scroll-behavior: smooth;
}

.mh-cat {
  width: 62px;
  gap: 4px;
}

.mh-cat-ic {
  width: 40px;
  height: 40px;
}
.mh-cat-ic .material-symbols-rounded {
  font-size: 22px;
}

.mh-cat-lb {
  font-size: 10.5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 60px;
  display: block;
}

@media (max-width: 360px) {
  .mh-icon-btn {
    width: 40px;
    height: 40px;
  }
  .mh-brand img {
    height: 32px;
  }
}
/* ============================================================
   PLP Mobile Optimization (lg-down) -- bottom sheets, sticky band
   ============================================================ */
.plp-sticky-band {
  display: contents;
}

@media (max-width: 991px) {
  /* Compact heading: hide breadcrumb + description, single line title */
  .plp-page-header {
    margin-bottom: 8px;
  }
  .plp-page-title {
    font-size: var(--font-size-18);
  }
  /* Sticky band stacks category chips + filter row under the condensed header */
  .plp-sticky-band {
    display: block;
    position: sticky;
    top: 0;
    z-index: 1019;
    background: #ffffff;
    margin: 0 -10px 12px;
    padding: 6px 10px 2px;
    box-shadow: 0 6px 6px -6px rgba(0, 0, 0, 0.12);
  }
  .plp-subcat-strip {
    position: static;
    margin: 0 0 8px;
    scroll-snap-type: x proximity;
  }
  .plp-subcat-strip .plp-subcat-chip {
    scroll-snap-align: start;
  }
  .plp-toolbar {
    position: static;
    padding: 0 0 6px;
    margin: 0;
    border-bottom: 0;
  }
  .plp-toolbar-mobile {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .plp-toolbar-mobile::-webkit-scrollbar {
    display: none;
  }
  .plp-toolbar-mobile .plp-filter-chip,
  .plp-toolbar-mobile .plp-subcat-chip {
    flex: 0 0 auto;
  }
  /* Compress the mobile header once the user scrolls */
  .mobile-header.is-condensed .mh-catstrip {
    display: none;
  }
  .mobile-header.is-condensed .mh-brand img {
    height: 30px;
  }
  /* Product card: trim secondary clutter, keep Add prominent */
  .plp-grid .prod__previous-tag {
    display: none;
  }
  .plp-grid .prod__card .add-btn {
    min-width: 66px;
    padding: 7px 16px;
  }
}
/* Filter count badge on the Filters chip */
.plp-chip-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 16px;
  height: 16px;
  margin-left: 2px;
  padding: 0 4px;
  background: var(--secondary-color);
  color: var(--white-color);
  font-size: 10px;
  font-weight: var(--font-weight-700);
  border-radius: 999px;
}

/* ---- Bottom sheets (Filter + Sort) ---- */
.plp-sheet {
  height: auto;
  max-height: 82vh;
  border-radius: var(--border-radius-16) var(--border-radius-16) 0 0;
}

.plp-sheet .plp-sheet-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1px solid #eef3ef;
}

.plp-sheet .plp-sheet-header h5 {
  margin: 0;
  font-size: var(--font-size-16);
  font-weight: var(--font-weight-700);
  color: var(--dark-color);
}

.plp-sheet .plp-sheet-grabber {
  width: 38px;
  height: 4px;
  border-radius: 999px;
  background: #d6dfd9;
  margin: 8px auto 0;
}

.plp-sheet-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  color: var(--dark-color);
  border-radius: var(--border-radius-8);
  cursor: pointer;
}

.plp-sheet-close:hover {
  color: var(--secondary-color);
}

.plp-sheet-body {
  padding: 14px 18px;
  overflow-y: auto;
}

.plp-filter-section {
  margin-bottom: 18px;
}

.plp-filter-section h6 {
  font-size: var(--font-size-12);
  font-weight: var(--font-weight-700);
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: #6c757d;
  margin: 0 0 10px;
}

.plp-filter-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.plp-opt {
  padding: 8px 14px;
  border: 1px solid #e4ece7;
  background: var(--white-color);
  border-radius: 999px;
  font-size: var(--font-size-12);
  font-weight: var(--font-weight-500);
  color: var(--dark-color);
  cursor: pointer;
  transition: all 0.2s ease;
}

.plp-opt:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.plp-opt.active {
  background: var(--primary-color);
  color: var(--white-color);
  border-color: var(--primary-color);
}

.plp-sheet-footer {
  display: flex;
  gap: 10px;
  padding: 12px 18px;
  border-top: 1px solid #eef3ef;
}

.plp-sheet-footer button {
  flex: 1;
  padding: 11px;
  border-radius: var(--border-radius-8);
  font-size: var(--font-size-14);
  font-weight: var(--font-weight-600);
  cursor: pointer;
  transition: all 0.2s ease;
}

.plp-sheet-clear {
  background: var(--white-color);
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
}

.plp-sheet-apply {
  background: var(--primary-color);
  border: 1px solid var(--primary-color);
  color: var(--white-color);
}

.plp-sheet-apply:hover {
  background: #044d20;
}

.plp-sort-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.plp-sort-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 18px;
  border: none;
  background: transparent;
  font-size: var(--font-size-14);
  color: var(--dark-color);
  border-bottom: 1px solid #f1f4f2;
  cursor: pointer;
  text-align: left;
}

.plp-sort-option .material-symbols-rounded {
  color: var(--primary-color);
  opacity: 0;
}

.plp-sort-option.active {
  color: var(--primary-color);
  font-weight: var(--font-weight-600);
}

.plp-sort-option.active .material-symbols-rounded {
  opacity: 1;
}

/* ============================================================
   PLP Mobile v2 -- density + product-first emphasis (lg-down)
   CSS-only tuning; no markup/JS change. Preserves design system.
   ============================================================ */
@media (max-width: 991px) {
  /* Denser global category strip => more categories per viewport */
  .mh-catstrip {
    padding: 6px 8px 4px;
    gap: 0;
  }
  .mh-cat {
    width: 56px;
    gap: 3px;
    padding: 2px;
  }
  .mh-cat-ic {
    width: 38px;
    height: 38px;
  }
  .mh-cat-ic .material-symbols-rounded {
    font-size: 21px;
  }
  .mh-cat-lb {
    font-size: 10px;
    max-width: 54px;
  }
  .mh-cat.is-active .mh-cat-ic {
    background: var(--primary-color);
    color: var(--white-color);
  }
  /* Compact single-row title */
  .plp-page-header {
    margin-bottom: 6px;
    align-items: center;
  }
  .plp-page-title {
    font-size: var(--font-size-16);
  }
  .plp-page-title small {
    font-size: var(--font-size-12);
  }
  .plp-mobile-cat-toggle {
    padding: 5px 10px;
    font-size: 11px;
  }
  /* Shorter sub-category chips, single line */
  .plp-subcat-strip {
    gap: 6px;
    padding-bottom: 6px;
    margin: 0 0 6px;
  }
  .plp-subcat-strip .plp-subcat-chip {
    padding: 5px 12px;
    font-size: 11.5px;
  }
  /* Uniform, evenly-spaced filter/sort row */
  .plp-toolbar-mobile {
    gap: 8px;
  }
  .plp-toolbar-mobile .plp-filter-chip,
  .plp-toolbar-mobile .plp-subcat-chip {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    font-size: var(--font-size-12);
    font-weight: var(--font-weight-500);
    white-space: nowrap;
  }
  .plp-toolbar-mobile .plp-filter-chip .material-symbols-rounded {
    font-size: 16px;
  }
}
/* Product cards: large square image, trimmed whitespace, prominent ADD.
   Scoped to the 2-column phone range so desktop/tablet stay intact. */
@media (max-width: 767px) {
  .plp-grid {
    --bs-gutter-x: 10px;
    --bs-gutter-y: 10px;
  }
  .plp-grid .prod__card {
    border-radius: var(--border-radius-12);
  }
  /* 1. Image — significantly larger, square, fills card width */
  .plp-grid .prod__img {
    min-height: 0;
    aspect-ratio: 1/1;
    padding: 6px;
    border-bottom: 0;
  }
  .plp-grid .prod__img img {
    max-height: none;
    width: 100%;
    height: 100%;
  }
  /* Secondary badges: smaller, less dominant */
  .plp-grid .prod__badge {
    top: 6px;
    left: 6px;
    font-size: 9px;
    padding: 2px 6px;
  }
  .plp-grid .prod__delivery {
    margin: 6px 10px 0;
    padding: 2px 7px;
    font-size: 9px;
  }
  .plp-grid .prod__delivery .material-symbols-rounded {
    font-size: 11px;
  }
  /* 2-3. Name + weight, tight */
  .plp-grid .prod__details {
    font-size: 13px;
    padding: 0 10px;
    margin: 4px 0 0;
  }
  .plp-grid .prod__qty {
    font-size: 11px;
    padding: 0 10px;
    margin: 2px 0 8px !important;
  }
  /* 4. Price — easy to scan */
  .plp-grid .prod__action {
    margin-bottom: 10px;
  }
  .plp-grid .prod__action .offer__price {
    font-size: 14px;
    padding: 0 10px;
  }
  .plp-grid .prod__action .actual__price {
    font-size: 11px;
    padding: 0 10px;
  }
  /* 5. ADD — prominent, touch-friendly, fills its column */
  .plp-grid .prod__action .col-7 {
    padding-right: 10px !important;
  }
  .plp-grid .prod__card .add-btn {
    width: 100%;
    min-width: 0;
    padding: 8px 0;
    font-size: 13px;
    justify-content: center;
  }
  .plp-grid .prod__card .qty-stepper {
    width: 100%;
    height: 36px;
    justify-content: space-between;
  }
}

/* =====================================================================
 * AUDIT FIXES — accessibility, homepage components, cart, location, toasts
 * (appended; compiled CSS edited directly)
 * =================================================================== */

/* --- Skip link (WCAG 2.4.1) --- */
.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 2000;
  background: var(--primary-color);
  color: #fff;
  padding: 10px 16px;
  border-radius: var(--border-radius-8);
  font-weight: var(--font-weight-600);
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 12px;
  outline: 3px solid #fff;
  outline-offset: 2px;
}

/* --- Global visible focus (WCAG 2.4.7 / 2.4.13) --- */
a:focus-visible,
button:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid rgba(5, 103, 41, 0.55);
  outline-offset: 2px;
  border-radius: var(--border-radius-4);
}
.mh-icon-btn:focus-visible,
.mh-cat:focus-visible {
  outline: 3px solid rgba(5, 103, 41, 0.55);
  outline-offset: 2px;
}
/* Mega-menu category keyboard focus */
.mega-menu-wrapper .mega-menu-list .prod__cat__container:focus-visible {
  outline: 3px solid rgba(5, 103, 41, 0.55);
  outline-offset: -2px;
  background-color: rgba(5, 103, 41, 0.07);
  color: var(--primary-color) !important;
}

/* --- Contrast fix: struck-through MRP (WCAG 1.4.3) --- */
.actual__price {
  color: #6b6b6b;
}

/* --- Touch targets ≥44px (WCAG 2.5.8) --- */
@media (max-width: 991px) {
  .mega-menu-wrapper .subcat-list li a,
  .site-footer .footer-links a {
    min-height: 44px;
    display: flex !important;
    align-items: center;
  }
}

/* --- Trust band --- */
.trust-band {
  border-bottom: 1px solid #edf3ee;
  background: #fff;
  padding: 12px 0;
}
.trust-band-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--font-size-13, 13px);
}
.trust-item .material-symbols-rounded {
  color: var(--primary-color);
  background: #f0fff6;
  border-radius: 50%;
  padding: 6px;
  font-size: 22px;
}
.trust-item strong {
  display: block;
  line-height: 1.2;
}
.trust-item small {
  color: #6b6b6b;
}
@media (max-width: 767px) {
  .trust-band-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-item {
    font-size: 12px;
  }
}

/* --- Location chip (desktop + mobile) --- */
.loc-chip {
  align-items: center;
  gap: 8px;
  height: 42px;
  border: 1px solid #d9e6dd;
  background: #f6fffa;
  border-radius: var(--border-radius-8);
  padding: 0 12px;
  cursor: pointer;
  flex: 0 0 auto;
  max-width: 200px;
}
.loc-chip:hover {
  border-color: var(--primary-color);
}

/* Compact, height-aligned desktop nav search */
.navbar [role=search] .input-group {
  height: 42px;
}
.navbar [role=search] .form-control,
.navbar [role=search] .input-group-text {
  height: 42px;
  padding-top: 0;
  padding-bottom: 0;
}
.navbar [role=search] .input-group-text {
  padding-left: 14px;
}
.navbar .hero_btn {
  height: 42px;
}
.navbar.navbar {
  align-items: center;
}
.loc-chip-pin {
  color: var(--primary-color);
  font-size: 22px;
}
.loc-chip-text {
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1.15;
  overflow: hidden;
}
.loc-chip-label {
  font-size: 10px;
  color: #6b6b6b;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.loc-chip-value {
  font-size: var(--font-size-13, 13px);
  font-weight: var(--font-weight-600);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.loc-chip-caret {
  font-size: 18px;
  color: #6b6b6b;
}
.mh-loc {
  display: flex;
  align-items: center;
  gap: 6px;
  width: 100%;
  border: none;
  border-top: 1px solid #f1f4f2;
  background: #f6fffa;
  padding: 8px 12px;
  font-size: var(--font-size-13, 13px);
  color: var(--dark-color);
  cursor: pointer;
}
.mh-loc .loc-chip-pin {
  font-size: 20px;
}
.mh-loc-text {
  flex: 1;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* --- Location modal --- */
.loc-input-row {
  display: flex;
  gap: 8px;
  margin-top: 6px;
}
.loc-input-row .form-control {
  flex: 1;
}
.loc-apply {
  white-space: nowrap;
}
.loc-error {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--secondary-color);
  font-size: var(--font-size-13, 13px);
  margin-top: 8px;
}
.loc-error .material-symbols-rounded {
  font-size: 16px;
}
.loc-saved {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.loc-saved-title {
  width: 100%;
  font-size: 12px;
  color: #6b6b6b;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.loc-saved-chip {
  border: 1px solid #d9e6dd;
  background: #fff;
  border-radius: 999px;
  padding: 6px 14px;
  font-size: var(--font-size-13, 13px);
  cursor: pointer;
}
.loc-saved-chip:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

/* --- Cart trigger (header) --- */
.cart-trigger {
  border: none;
  background: transparent;
  cursor: pointer;
  color: var(--dark-color);
  padding: 4px;
  display: inline-flex;
}
.cart-trigger .material-symbols-rounded {
  font-size: 26px;
}
.cart-count {
  line-height: 1;
  font-size: 10px;
  min-width: 18px;
}
#cartTriggerDesktop .cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
}

/* --- Homepage product card extras --- */
.prod__badge {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 2;
  background-color: var(--secondary-color);
  color: #fff;
  font-size: 10px;
  font-weight: var(--font-weight-700);
  padding: 3px 7px;
  border-radius: var(--border-radius-4);
  line-height: 1.2;
}
.prod__card.is-oos {
  opacity: 0.75;
}
.prod__oos-tag {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 2;
  background: #6b6b6b;
  color: #fff;
  font-size: 9px;
  font-weight: var(--font-weight-700);
  padding: 3px 7px;
  border-radius: var(--border-radius-4);
  text-transform: uppercase;
}
.prod__action .qty-val {
  color: #fff;
  font-size: var(--font-size-14);
  font-weight: var(--font-weight-700);
  min-width: 22px;
  text-align: center;
}
.prod__action .add-btn {
  min-width: 64px;
  justify-content: center;
}

/* --- Skeleton loaders --- */
.prod__skeleton {
  padding: 12px;
  gap: 10px;
}
.sk {
  background: linear-gradient(90deg, #eef2ef 25%, #f7faf8 37%, #eef2ef 63%);
  background-size: 400% 100%;
  animation: skshimmer 1.4s ease infinite;
  border-radius: var(--border-radius-4);
}
.sk-img {
  height: 120px;
  margin-bottom: 10px;
}
.sk-line {
  height: 12px;
  margin-top: 8px;
}
.sk-short {
  width: 55%;
}
.sk-btn {
  height: 30px;
  width: 70px;
  margin-top: 14px;
}
@keyframes skshimmer {
  0% { background-position: 100% 0; }
  100% { background-position: 0 0; }
}
.rail-empty {
  text-align: center;
  color: #6b6b6b;
  padding: 32px 16px;
  border: 1px dashed #d9e6dd;
  border-radius: var(--border-radius-12);
}

/* --- Cart drawer --- */
.cart-drawer {
  width: 400px;
  max-width: 92vw;
}
.cart-empty {
  text-align: center;
  padding: 56px 24px;
}
.cart-empty .material-symbols-rounded {
  font-size: 56px;
  color: #cfd9d2;
}
.cart-items {
  padding: 8px 0;
}
.cart-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid #f1f4f2;
}
.cart-item img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border: 1px solid #f1f4f2;
  border-radius: var(--border-radius-8);
  flex: 0 0 auto;
}
.cart-item-info {
  flex: 1;
  min-width: 0;
}
.cart-item-name {
  font-weight: var(--font-weight-600);
  font-size: var(--font-size-13, 13px);
  line-height: 1.3;
}
.cart-footer {
  border-top: 1px solid #e6ece8;
  padding: 16px;
  background: #fff;
}
.cart-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: var(--font-size-16);
  margin-bottom: 4px;
}
.cart-checkout {
  text-transform: uppercase;
}

/* --- Toasts (4.1.3 status messages) --- */
.toast-stack {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  gap: 8px;
  pointer-events: none;
}
.app-toast {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #1f2f24;
  color: #fff;
  padding: 10px 18px;
  border-radius: var(--border-radius-8);
  font-size: var(--font-size-14);
  box-shadow: var(--box-shadow-20);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.app-toast.is-in {
  opacity: 1;
  transform: translateY(0);
}
.app-toast .material-symbols-rounded {
  color: #6fe39b;
  font-size: 20px;
}

/* --- Large-screen grid: allow denser rows ≥1441px --- */
@media (min-width: 1441px) {
  .product-showcase .row-cols-lg-6 > .col {
    flex: 0 0 auto;
    width: 16.6666%;
  }
}

/* --- Offers & Deals --- */
.offers-section {
  background-color: #fff;
}
.offers-sub {
  font-size: var(--font-size-13, 13px);
  color: #6b6b6b;
  margin-top: 2px;
}
.offers-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(240px, 1fr);
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 6px;
  scrollbar-width: thin;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.offers-rail::-webkit-scrollbar {
  height: 6px;
}
.offers-rail::-webkit-scrollbar-thumb {
  background: #d6e7dc;
  border-radius: 10px;
}
.offer-card {
  position: relative;
  scroll-snap-align: start;
  border-radius: var(--border-radius-16);
  padding: 18px 18px 16px;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
  min-height: 196px;
  display: flex;
  flex-direction: column;
}
.offer-card::after {
  /* perforated coupon notch separating the code strip */
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 56px;
  border-top: 2px dashed rgba(255, 255, 255, 0.45);
  z-index: 0;
}
.offer-tag {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.22);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  font-size: 10px;
  font-weight: var(--font-weight-700);
  text-transform: uppercase;
  letter-spacing: 0.4px;
  padding: 4px 9px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.offer-ic {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}
.offer-ic .material-symbols-rounded {
  font-size: 22px;
}
.offer-title {
  font-size: var(--font-size-22);
  font-weight: var(--font-weight-700);
  line-height: 1.15;
  margin: 0 0 4px;
}
.offer-desc {
  font-size: var(--font-size-13, 13px);
  margin: 0 0 2px;
  opacity: 0.95;
}
.offer-min {
  font-size: 11px;
  opacity: 0.8;
  margin: 0 0 auto;
}
.offer-code {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 14px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--border-radius-8);
  padding: 7px 8px 7px 12px;
}
.offer-code-text {
  font-size: var(--font-size-13, 13px);
  color: #333;
  letter-spacing: 0.3px;
}
.offer-code-text strong {
  color: #111;
}
.offer-copy {
  border: none;
  background: var(--primary-color);
  color: #fff;
  font-size: 12px;
  font-weight: var(--font-weight-700);
  text-transform: uppercase;
  letter-spacing: 0.4px;
  padding: 6px 14px;
  border-radius: var(--border-radius-4);
  cursor: pointer;
  transition: background 0.2s ease;
  flex: 0 0 auto;
}
.offer-copy:hover {
  background: #04531f;
}
.offer-copy.is-copied {
  background: #0a7d35;
}
/* Offer themes (gradients) */
.offer-green  { background: linear-gradient(135deg, #0b8a3c 0%, #056729 100%); }
.offer-red    { background: linear-gradient(135deg, #f0413e 0%, #c40d0d 100%); }
.offer-amber  { background: linear-gradient(135deg, #f7972b 0%, #e06d00 100%); }
.offer-purple { background: linear-gradient(135deg, #8a5cf6 0%, #5b34c9 100%); }
.offer-teal   { background: linear-gradient(135deg, #1bb6a0 0%, #0c7d77 100%); }
@media (max-width: 575px) {
  .offers-rail {
    grid-auto-columns: 78%;
  }
  .offer-title {
    font-size: var(--font-size-20);
  }
}

/* --- Reduced motion --- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}
/*# sourceMappingURL=style.css.map */