/* FreshMart Public E-Commerce Stylesheet */
:root {
  --primary: #008b47;
  --primary-dark: #00733c;
  --primary-light: #e8f7ee;
  --primary-hover: #006e36;
  --secondary: #f59e0b;
  --secondary-light: #fef3c7;
  --dark: #1e293b;
  --gray-700: #334155;
  --gray-600: #475569;
  --gray-500: #64748b;
  --gray-400: #94a3b8;
  --gray-300: #cbd5e1;
  --gray-200: #e2e8f0;
  --gray-100: #f1f5f9;
  --gray-50: #f8fafc;
  --white: #ffffff;
  --danger: #ef4444;
  --danger-light: #fee2e2;
  --success: #10b981;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -1px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.09), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  --font-sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: var(--font-sans);
  color: var(--dark);
  background-color: #fbfcfb;
  line-height: 1.5;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
}

button {
  cursor: pointer;
  background: none;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}


/* =========================================
   TOP ANNOUNCEMENT BAR
   ========================================= */
.top-bar {
  background-color: var(--primary-dark);
  color: #d1fae5;
  font-size: 13px;
  padding: 8px 0;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

.top-bar-left i {
  font-size: 15px;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.top-bar-right a {
  color: #d1fae5;
  display: flex;
  align-items: center;
  gap: 5px;
}

.top-bar-right a:hover {
  color: var(--white);
}

.top-bar-divider {
  width: 1px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.25);
}

/* =========================================
   MAIN HEADER
   ========================================= */
.main-header {
  background-color: var(--white);
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-200);
  position: sticky;
  top: 0;
  z-index: 99;
  box-shadow: var(--shadow-sm);
}

.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-logo-icon {
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 4px 10px rgba(0, 139, 71, 0.25);
}

.brand-logo-text h1 {
  font-size: 24px;
  font-weight: 800;
  color: var(--primary-dark);
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.brand-logo-text span {
  font-size: 11px;
  font-weight: 500;
  color: var(--gray-500);
  letter-spacing: 0.5px;
}

/* SEARCH BAR */
.header-search {
  flex: 1;
  max-width: 600px;
  position: relative;
}

.search-form {
  display: flex;
  align-items: center;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-full);
  background: var(--white);
  overflow: hidden;
  transition: var(--transition);
}

.search-form:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 139, 71, 0.15);
}

.search-input {
  flex: 1;
  padding: 10px 18px;
  font-size: 14px;
  color: var(--dark);
  background: transparent;
}

.search-btn {
  background-color: var(--primary);
  color: var(--white);
  padding: 10px 20px;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.search-btn:hover {
  background-color: var(--primary-dark);
}

/* HEADER ACTIONS */
.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.action-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-700);
  padding: 8px 12px;
  border-radius: var(--radius-full);
  position: relative;
  transition: var(--transition);
}

.action-btn:hover {
  color: var(--primary);
  background-color: var(--primary-light);
}

.action-btn i {
  font-size: 20px;
}

.cart-badge {
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--primary);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--white);
  transform: translate(30%, -20%);
}

/* =========================================
   NAVIGATION BAR
   ========================================= */
.nav-bar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  gap: 30px;
}

.category-dropdown-btn {
  background-color: var(--primary);
  color: var(--white);
  padding: 12px 24px;
  font-weight: 700;
  font-size: 15px;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}

.category-dropdown-btn:hover {
  background-color: var(--primary-dark);
}

.category-menu-wrapper {
  position: relative;
}

.category-dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;
  width: 260px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  box-shadow: var(--shadow-xl);
  display: none;
  z-index: 100;
  padding: 8px 0;
}

.category-menu-wrapper:hover .category-dropdown-content {
  display: block;
}

.category-dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
}

.category-dropdown-item:hover {
  background-color: var(--primary-light);
  color: var(--primary);
  padding-left: 24px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-700);
  padding: 14px 0;
  position: relative;
  display: block;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary);
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero-section {
  padding: 0;
  margin: 0;
  width: 100%;
}

.hero-section .container {
  max-width: 100%;
  width: 100%;
  padding: 0;
  margin: 0;
}

.hero-slider,
.hero-banner {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 5.34;
  min-height: 220px;
  max-height: 520px;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  border: none;
  background: #f1f5f9;
  user-select: none;
  margin: 0;
}

.hero-slider-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.65s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.hero-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  display: block;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  pointer-events: none;
}

.hero-slide:hover img {
  transform: none;
}

/* Slider Arrows */
.hero-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.95);
  color: #1e293b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0.85;
}

.hero-slider:hover .hero-slider-arrow,
.hero-banner:hover .hero-slider-arrow {
  opacity: 1;
}

.hero-slider-arrow:hover {
  background: var(--primary);
  color: #ffffff;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 139, 71, 0.35);
}

.hero-slider-arrow.prev {
  left: 18px;
}

.hero-slider-arrow.next {
  right: 18px;
}

/* Slider Dots */
.hero-slider-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 10;
  background: rgba(15, 23, 42, 0.4);
  padding: 6px 14px;
  border-radius: 9999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-dot:hover {
  background: rgba(255, 255, 255, 0.9);
}

.hero-dot.active {
  width: 28px;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

@media (max-width: 768px) {

  .hero-slider,
  .hero-banner {
    border-radius: 0;
    min-height: 150px;
  }

  .hero-slider-arrow {
    width: 34px;
    height: 34px;
    font-size: 20px;
  }

  .hero-slider-arrow.prev {
    left: 8px;
  }

  .hero-slider-arrow.next {
    right: 8px;
  }

  .hero-slider-dots {
    bottom: 10px;
    padding: 4px 10px;
    gap: 6px;
  }

  .hero-dot {
    width: 8px;
    height: 8px;
  }

  .hero-dot.active {
    width: 20px;
  }
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: var(--primary);
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  padding: 13px 30px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 14px rgba(0, 139, 71, 0.35);
  transition: var(--transition);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 139, 71, 0.45);
}

.hero-media {
  max-width: 480px;
  position: relative;
  z-index: 2;
}

.hero-badge-tag {
  position: absolute;
  top: -15px;
  right: 15px;
  background: var(--secondary);
  color: var(--dark);
  font-size: 13px;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-md);
  animation: float 3s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

/* =========================================
   SECTION HEADERS
   ========================================= */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.section-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.5px;
}

.view-all-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.view-all-link:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

/* =========================================
   SHOP BY CATEGORY
   ========================================= */
.category-section {
  padding: 24px 0 36px 0;
}

.category-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.category-card {
  width: 130px;
  flex: 0 0 auto;
  background: transparent;
  padding: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  box-shadow: none;
}

.category-card-thumb {
  width: 90px;
  height: 80px;
  background: #f3f3f3;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  transition: border-color 0.2s ease;
  overflow: hidden;
  box-sizing: border-box;
}

.category-card:hover .category-card-thumb {
  border-color: var(--primary);
}

.category-card-img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  display: block;
}

.category-card:hover .category-card-img {
  transform: none;
}

.category-card-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.35;
  text-align: center;
  max-width: 120px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* =========================================
   PROMOTIONAL 3-CARD BANNER
   ========================================= */
.promo-section {
  padding: 8px 0 20px 0;
}

.promo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.promo-card-banner {
  display: block;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: none;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #ffffff;
  text-decoration: none;
}

.promo-card-banner:hover {
  transform: none;
  box-shadow: none;
}

.promo-card-banner img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.promo-card-banner:hover img {
  transform: none;
}

.promo-card {
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 200px;
  box-shadow: none;
}

.promo-card:hover {
  transform: none;
  box-shadow: none;
}

.promo-card-green {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: var(--white);
}

.promo-card-yellow {
  background: linear-gradient(135deg, #fde047 0%, #f59e0b 100%);
  color: #451a03;
}

.promo-card-blue {
  background: linear-gradient(135deg, #bae6fd 0%, #38bdf8 100%);
  color: #0c4a6e;
}

.promo-card-content {
  position: relative;
  z-index: 2;
  max-width: 220px;
}

.promo-card-content h3 {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 8px;
}

.promo-card-content p {
  font-size: 13px;
  margin-bottom: 18px;
  opacity: 0.9;
}

.btn-promo {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 700;
  border-radius: var(--radius-full);
  background: var(--white);
  color: var(--dark);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  width: fit-content;
}

.promo-card-green .btn-promo {
  color: var(--primary-dark);
}

.promo-card-yellow .btn-promo {
  color: #78350f;
}

.promo-card-blue .btn-promo {
  color: #0369a1;
}

.btn-promo:hover {
  transform: translateX(4px);
}

.promo-card-img {
  position: absolute;
  right: -10px;
  bottom: -10px;
  width: 150px;
  height: 150px;
  object-fit: contain;
  z-index: 1;
  opacity: 0.95;
}

/* =========================================
   BEST SELLERS / PRODUCTS GRID
   ========================================= */
.products-section {
  padding: 12px 0 48px 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}

.products-section .product-grid {
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: border-color 0.2s ease;
  box-shadow: none;
}

.product-card:hover {
  transform: none;
  border-color: var(--primary);
  box-shadow: none;
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #dcfce7;
  color: #15803d;
  font-size: 11px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  z-index: 2;
}

.product-img-wrapper {
  width: 100%;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  overflow: hidden;
  background-color: var(--gray-50);
  border-radius: var(--radius-md);
}

.product-img-wrapper img {
  max-height: 130px;
  object-fit: contain;
}

.product-card:hover .product-img-wrapper img {
  transform: none;
}

.product-info {
  margin-bottom: 14px;
}

.product-category {
  font-size: 11px;
  font-weight: 600;
  color: var(--gray-500);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.product-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.4;
  margin-bottom: 8px;
  height: 38px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.product-pricing {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.product-price {
  font-size: 17px;
  font-weight: 800;
  color: var(--primary-dark);
}

.product-mrp {
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-400);
  text-decoration: line-through;
}

.btn-add-cart {
  width: 100%;
  background: #10b981;
  color: var(--white);
  padding: 10px;
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: var(--transition);
}

.btn-add-cart:hover {
  background: #059669;
}

.btn-add-cart.added {
  background: var(--dark);
}

/* =========================================
   CATEGORY PRODUCT SECTIONS & SEE MORE
   ========================================= */
.category-products-section {
  padding: 20px 0 44px 0;
  border-top: 1px solid var(--gray-200);
}

.category-see-more-wrap {
  text-align: center;
  margin-top: 28px;
}

.btn-see-more-category {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 32px;
  background-color: var(--white);
  color: var(--primary);
  border: 1.5px solid var(--primary);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.25s ease;
  box-shadow: 0 2px 8px rgba(3, 75, 38, 0.05);
}

.btn-see-more-category:hover {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: 0 4px 14px rgba(3, 75, 38, 0.2);
  transform: translateY(-2px);
}

.btn-see-more-category i {
  font-size: 18px;
  transition: transform 0.2s ease;
}

.btn-see-more-category:hover i {
  transform: translateX(4px);
}

/* =========================================
   VALUE PROPOSITIONS / FEATURES BAR
   ========================================= */
.features-section {
  background-color: #eef8f2;
  border-top: 1px solid #dcf2e4;
  border-bottom: 1px solid #dcf2e4;
  padding: 24px 0;
  margin-top: 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.feature-box {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 6px 22px;
  border-right: 1px solid #d2edd9;
}

.feature-box:last-child {
  border-right: none;
}

.feature-icon-circle {
  width: 58px;
  height: 58px;
  background-color: #DAF0E3;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #047857;
  font-size: 30px;
  flex-shrink: 0;
}

.feature-text h4 {
  font-size: 14px;
  font-weight: 800;
  color: #064e3b;
  margin-bottom: 3px;
  line-height: 1.3;
}

.feature-text p {
  font-size: 12px;
  color: #047857;
  opacity: 0.9;
  line-height: 1.4;
}

/* =========================================
   POPULAR BRANDS SECTION
   ========================================= */
.brand-section {
  padding: 28px 0 44px 0;
  border-top: 1px solid var(--gray-200);
}

/* =========================================
   FOOTER
   ========================================= */
.site-footer {
  background-color: #034b26;
  color: #e2e8f0;
  padding: 56px 0 24px 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-col-about h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-col-about p {
  font-size: 13px;
  line-height: 1.6;
  color: #cbd5e1;
  margin-bottom: 20px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition);
}

.footer-socials a:hover {
  background-color: var(--primary);
}

.footer-heading {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 13px;
  color: #cbd5e1;
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 4px;
}

.newsletter-form {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}

.newsletter-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 13px;
}

.newsletter-input::placeholder {
  color: #94a3b8;
}

.newsletter-btn {
  background: var(--primary);
  color: var(--white);
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 700;
  transition: var(--transition);
}

.newsletter-btn:hover {
  background: #059669;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  color: #94a3b8;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  color: #94a3b8;
}

.footer-bottom-links a:hover {
  color: var(--white);
}

/* =========================================
   CART DRAWER (OFF-CANVAS)
   ========================================= */
.cart-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.cart-drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: -420px;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: var(--white);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-xl);
  transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cart-drawer.active {
  right: 0;
}

.cart-drawer-header {
  padding: 18px 20px;
  border-bottom: 1px solid var(--gray-200);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-drawer-header h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-close-btn {
  font-size: 24px;
  color: var(--gray-500);
  cursor: pointer;
}

.cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-100);
}

.cart-item-img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  background: var(--gray-50);
  border-radius: var(--radius-sm);
  padding: 4px;
}

.cart-item-info {
  flex: 1;
}

.cart-item-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
  line-height: 1.2;
}

.cart-item-price {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
}

.cart-qty-controls {
  display: flex;
  align-items: center;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.cart-qty-btn {
  padding: 4px 8px;
  background: var(--gray-100);
  color: var(--dark);
  font-size: 12px;
  font-weight: 700;
}

.cart-qty-input {
  width: 32px;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
}

.cart-item-remove {
  color: var(--danger);
  font-size: 16px;
  cursor: pointer;
  padding: 4px;
}

.cart-empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--gray-400);
}

.cart-empty-state i {
  font-size: 48px;
  margin-bottom: 12px;
}

.cart-drawer-footer {
  padding: 20px;
  border-top: 1px solid var(--gray-200);
  background: var(--gray-50);
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--gray-600);
  margin-bottom: 8px;
}

.cart-summary-row.total {
  font-size: 17px;
  font-weight: 800;
  color: var(--dark);
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed var(--gray-300);
}

.btn-checkout-drawer {
  width: 100%;
  margin-top: 16px;
  background: #10b981;
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  padding: 14px;
  border-radius: var(--radius-md);
  text-align: center;
  display: block;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25);
  transition: var(--transition);
}

.btn-checkout-drawer:hover {
  background: #059669;
}

/* =========================================
   CHECKOUT PAGE & FORM
   ========================================= */
.checkout-section {
  padding: 36px 0 60px 0;
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 36px;
}

.checkout-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}

.checkout-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-group {
  margin-bottom: 16px;
}

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 6px;
}

.form-label span.req {
  color: var(--danger);
}

.form-control {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-md);
  font-size: 14px;
  color: var(--dark);
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 139, 71, 0.15);
}

/* Checkout Grid Specific - Clean Border Only, No Effects / Shadows */
.checkout-grid .form-control {
  transition: border-color 0.2s ease;
}

.checkout-grid .form-control:focus {
  border-color: var(--primary);
  box-shadow: none !important;
  outline: none !important;
}

.checkout-grid .btn-primary,
#btnSubmitOrder {
  box-shadow: none !important;
  transform: none !important;
  transition: background-color 0.2s ease;
}

.checkout-grid .btn-primary:hover,
#btnSubmitOrder:hover {
  transform: none !important;
  box-shadow: none !important;
  background-color: var(--primary-dark);
}

.checkout-grid .btn-primary:active,
#btnSubmitOrder:active {
  transform: none !important;
  box-shadow: none !important;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.payment-method-box {
  border: 2px solid var(--primary);
  border-radius: var(--radius-md);
  padding: 16px;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 10px;
}

.payment-method-box i {
  font-size: 24px;
  color: var(--primary);
}

.payment-method-box h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
}

.payment-method-box p {
  font-size: 12px;
  color: var(--gray-600);
}

/* =========================================
   ORDER SUCCESS / CONFIRMATION
   ========================================= */
.order-success-card {
  max-width: 680px;
  margin: 50px auto;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 40px;
  text-align: center;
  box-shadow: none;
}

.order-success-card .btn-primary {
  box-shadow: none !important;
  transform: none !important;
  transition: opacity 0.2s ease, background-color 0.2s ease;
}

.order-success-card .btn-primary:hover {
  transform: none !important;
  box-shadow: none !important;
  opacity: 0.92;
}

.order-success-icon {
  width: 76px;
  height: 76px;
  background: #dcfce7;
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 38px;
  margin: 0 auto 20px auto;
}

.order-success-badge {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary-dark);
  font-weight: 800;
  font-size: 15px;
  padding: 6px 18px;
  border-radius: var(--radius-full);
  margin: 12px 0 24px 0;
}

/* TOAST NOTIFICATION */
.toast-notice {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--dark);
  color: var(--white);
  padding: 14px 22px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-xl);
  z-index: 2000;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  pointer-events: none;
}

.toast-notice.show {
  opacity: 1;
  transform: translateY(0);
}

.toast-notice.success {
  background: #0f766e;
}

/* =========================================
   RESPONSIVE LAYOUTS & MEDIA QUERIES
   ========================================= */

/* Shop Page Layouts */
.shop-container {
  padding-top: 24px;
  padding-bottom: 60px;
}

.shop-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 32px;
  align-items: flex-start;
}

.shop-sidebar {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px;
  height: fit-content;
}

.btn-filter-toggle {
  display: none;
}

.active-filter-badge {
  background: var(--primary);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--radius-full);
}

.shop-sort-bar {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 12px;
}

/* Product Detail Page Layouts */
.product-detail-container {
  padding-top: 24px;
  padding-bottom: 60px;
}

.product-detail-layout {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 36px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: center;
}

.product-detail-gallery {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  padding: 24px;
  min-height: 360px;
}

.product-detail-gallery img {
  max-height: 320px;
  max-width: 100%;
  object-fit: contain;
}

.product-detail-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-detail-title {
  font-size: 28px;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.25;
  margin-bottom: 14px;
}

.product-detail-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* =========================================
   ABOUT US PAGE STYLES
   ========================================= */
.about-page-header {
  padding: 30px 0 16px 0;
}

.about-page-title {
  font-size: 26px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 6px;
}

.about-breadcrumb {
  font-size: 13px;
  color: var(--gray-500);
  display: flex;
  align-items: center;
  gap: 6px;
}

.about-breadcrumb a {
  color: var(--primary);
  text-decoration: none;
}

.about-story-section {
  padding: 40px 0;
}

.about-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.about-heading {
  font-size: 32px;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.25;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}

.about-paragraph {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 24px;
}

.about-image-wrapper {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  background: #f8fafc;
}

.about-image-wrapper img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}

/* Stats Counter Grid */
.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--gray-200);
}

.about-stat-number {
  font-size: 28px;
  font-weight: 900;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 6px;
}

.about-stat-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-500);
  line-height: 1.3;
}

/* Features Checkmark List */
.about-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-features-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--gray-700);
}

.check-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #dcfce7;
  color: #15803d;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

/* Services Section */
.about-services-section {
  background: #f8fafc;
  padding: 56px 0 72px 0;
  margin-top: 40px;
}

.services-header {
  margin-bottom: 32px;
}

.services-grid-six {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-box-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border: 1px solid var(--gray-200);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.service-box-card:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.service-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #fdf2f8;
  color: #a855f7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
}

.service-box-card:nth-child(2) .service-icon-wrap {
  background: #eff6ff;
  color: #3b82f6;
}

.service-box-card:nth-child(3) .service-icon-wrap {
  background: #ecfdf5;
  color: #10b981;
}

.service-box-card:nth-child(4) .service-icon-wrap {
  background: #fff7ed;
  color: #f97316;
}

.service-box-card:nth-child(5) .service-icon-wrap {
  background: #fdf4ff;
  color: #d946ef;
}

.service-box-card:nth-child(6) .service-icon-wrap {
  background: #f0fdfa;
  color: #14b8a6;
}

.service-card-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 10px;
}

.service-card-desc {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.6;
}

/* Breakpoint: Desktop Small / Tablet Landscape */
@media (max-width: 1200px) {
  .products-section .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .shop-layout {
    grid-template-columns: 220px 1fr;
    gap: 20px;
  }
}

/* Breakpoint: Tablet Portrait */
@media (max-width: 991px) {
  .hero-banner {
    flex-direction: column;
    text-align: center;
    padding: 36px 24px;
    gap: 30px;
  }

  .hero-content {
    max-width: 100%;
  }

  .promo-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .feature-box {
    border-right: none;
    border-bottom: 1px solid #d2edd9;
    padding: 12px 14px;
  }

  .feature-box:nth-child(3),
  .feature-box:nth-child(4) {
    border-bottom: none;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .checkout-grid {
    grid-template-columns: 1fr;
  }

  /* Shop Page on Tablet */
  .shop-layout {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .btn-filter-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 12px 18px;
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
    cursor: pointer;
    margin-bottom: 16px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  }

  .btn-filter-toggle i:first-child {
    font-size: 18px;
    color: var(--primary);
  }

  .shop-sidebar {
    display: none;
    margin-bottom: 16px;
    padding: 18px;
  }

  .shop-sidebar.active {
    display: block;
    animation: fadeIn 0.25s ease;
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(-6px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .shop-sort-bar {
    padding: 12px 16px;
  }

  /* Product Detail on Tablet */
  .product-detail-layout {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px;
  }

  .product-detail-gallery {
    min-height: 280px;
  }

  /* About Us on Tablet */
  .about-two-col {
    gap: 32px;
  }

  .about-heading {
    font-size: 26px;
  }

  .services-grid-six {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Breakpoint: Mobile Phones */
@media (max-width: 768px) {
  .container {
    padding-left: 12px;
    padding-right: 12px;
  }

  /* Top Bar */
  .top-bar {
    padding: 6px 0;
  }

  .top-bar-right {
    display: none;
  }

  .top-bar-left {
    width: 100%;
    justify-content: center;
    font-size: 11px;
    gap: 6px;
  }

  /* Main Header */
  .main-header {
    padding: 10px 0 8px 0;
  }

  .header-wrapper {
    flex-wrap: wrap;
    gap: 8px;
  }

  .brand-logo {
    gap: 8px;
  }

  .brand-logo-icon {
    width: 36px;
    height: 36px;
    font-size: 19px;
  }

  .brand-logo-text h1 {
    font-size: 17px;
  }

  .brand-logo-text span {
    font-size: 10px;
  }

  .header-actions {
    gap: 6px;
  }

  .action-btn {
    padding: 6px 10px;
    font-size: 11px;
  }

  .action-btn i {
    font-size: 18px;
  }

  .action-btn span {
    display: none;
  }

  .cart-badge {
    transform: translate(15%, -15%);
  }

  .header-search {
    order: 3;
    max-width: 100%;
    width: 100%;
    margin-top: 4px;
  }

  .search-input {
    padding: 9px 38px 9px 12px;
    font-size: 13px;
  }

  .search-btn {
    width: 34px;
    height: 34px;
    font-size: 16px;
  }

  /* Horizontal Navigation Strip on Mobile */
  .nav-bar {
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .nav-bar::-webkit-scrollbar {
    display: none;
  }

  .nav-wrapper {
    gap: 8px;
    padding: 6px 0;
    min-width: max-content;
  }

  .category-menu-wrapper {
    display: none;
  }

  .nav-links {
    display: flex;
    gap: 6px;
    list-style: none;
  }

  .nav-links a {
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 600;
    border-radius: var(--radius-full);
    background: var(--gray-100);
    color: var(--gray-700);
    white-space: nowrap;
    text-decoration: none;
  }

  .nav-links a.active,
  .nav-links a:hover {
    background: var(--primary);
    color: var(--white);
  }

  .nav-links a.active::after {
    display: none;
  }

  /* Hero Slider on Mobile */
  .hero-slider,
  .hero-banner {
    min-height: 140px;
    max-height: 220px;
    aspect-ratio: 16 / 7.5;
  }

  .hero-slider-arrow {
    width: 28px;
    height: 28px;
    font-size: 16px;
  }

  .hero-slider-arrow.prev {
    left: 4px;
  }

  .hero-slider-arrow.next {
    right: 4px;
  }

  .hero-slider-dots {
    bottom: 6px;
    padding: 3px 8px;
    gap: 5px;
  }

  .hero-dot {
    width: 7px;
    height: 7px;
  }

  .hero-dot.active {
    width: 18px;
  }

  /* Category & Brand Section on Mobile */
  .category-section,
  .brand-section {
    padding: 16px 0 24px 0;
  }

  .section-header {
    margin-bottom: 14px;
  }

  .section-title {
    font-size: 17px;
  }

  .view-all-link {
    font-size: 12px;
  }

  .category-grid {
    gap: 8px;
    justify-content: center;
  }

  .category-card {
    width: calc(33.333% - 6px);
    min-width: 86px;
    max-width: 110px;
    padding: 0;
    background: transparent;
  }

  .category-card-thumb {
    width: 86px;
    height: 86px;
    margin-bottom: 6px;
    border-radius: var(--radius-sm);
  }

  .category-card-img {
    width: 52px;
    height: 52px;
  }

  .category-card-name {
    font-size: 11px;
    line-height: 1.25;
    max-width: 86px;
  }

  /* Promo Section on Mobile */
  .promo-section {
    padding: 4px 0 16px 0;
  }

  .promo-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  /* Products Grid on Mobile (Home, Shop & Related) */
  .products-section {
    padding: 10px 0 28px 0;
  }

  .products-section .product-grid,
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .product-card {
    padding: 8px;
    border-radius: var(--radius-md);
  }

  .product-img-wrapper {
    height: 115px;
    margin-bottom: 8px;
  }

  .product-img-wrapper img {
    max-height: 90px;
  }

  .product-badge {
    top: 6px;
    left: 6px;
    font-size: 10px;
    padding: 2px 5px;
  }

  .product-category {
    font-size: 10px;
    margin-bottom: 2px;
  }

  .product-title {
    font-size: 12px;
    line-height: 1.3;
    height: 31px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 4px;
  }

  .product-pricing {
    gap: 6px;
    margin-bottom: 8px;
  }

  .product-price {
    font-size: 14px;
  }

  .product-mrp {
    font-size: 11px;
  }

  .btn-add-cart {
    padding: 7px 8px;
    font-size: 11px;
    gap: 4px;
    border-radius: var(--radius-sm);
  }

  /* Shop Page Mobile Specifics */
  .shop-container {
    padding-top: 14px;
    padding-bottom: 40px;
  }

  .shop-sort-bar {
    padding: 10px 12px;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    margin-bottom: 16px;
  }

  .shop-sort-bar>div {
    font-size: 12px;
  }

  .shop-sort-form {
    width: 100%;
    justify-content: space-between;
  }

  .shop-sort-form label {
    font-size: 12px;
  }

  .shop-sort-form select {
    flex: 1;
    font-size: 12px;
    padding: 5px 8px;
  }

  /* Product Detail Page Mobile Specifics */
  .product-detail-container {
    padding-top: 12px;
    padding-bottom: 36px;
  }

  .product-detail-layout {
    padding: 14px;
    border-radius: var(--radius-lg);
    gap: 16px;
  }

  .product-detail-gallery {
    min-height: 200px;
    padding: 12px;
  }

  .product-detail-gallery img {
    max-height: 180px;
  }

  .product-detail-title {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .product-detail-actions {
    gap: 8px;
    width: 100%;
  }

  .product-detail-actions .cart-qty-controls {
    width: 100%;
    justify-content: center;
    margin-bottom: 4px;
  }

  .product-detail-actions .btn-primary,
  #btnDetailAddToCart,
  #btnDetailBuyNow {
    flex: 1 1 calc(50% - 4px);
    padding: 11px 8px;
    font-size: 12px;
    justify-content: center;
  }

  /* Cart Drawer Fullscreen on Mobile */
  .cart-drawer {
    max-width: 100%;
    width: 100%;
  }

  .cart-drawer-header {
    padding: 14px 16px;
  }

  .cart-drawer-body {
    padding: 14px 16px;
  }

  .cart-drawer-footer {
    padding: 16px;
  }

  /* Footer on Mobile */
  .site-footer {
    padding-top: 32px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .footer-bottom-links {
    justify-content: center;
  }

  /* Features Section hidden on mobile */
  .features-section {
    display: none !important;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  /* About Us Mobile */
  .about-story-section {
    padding: 24px 0;
  }

  .about-two-col {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .about-two-col.reverse {
    display: flex;
    flex-direction: column-reverse;
  }

  .about-heading {
    font-size: 22px;
    margin-bottom: 12px;
  }

  .about-paragraph {
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 18px;
  }

  .about-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    padding-top: 16px;
    margin-top: 16px;
  }

  .about-stat-number {
    font-size: 24px;
  }

  .about-services-section {
    padding: 36px 0 44px 0;
    margin-top: 24px;
  }

  .services-grid-six {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .service-box-card {
    padding: 20px 18px;
  }
}

/* Breakpoint: Extra Small Phones (<= 380px) */
@media (max-width: 380px) {
  .category-card {
    width: calc(50% - 4px);
    max-width: 140px;
  }

  .category-card-thumb {
    width: 95px;
    height: 95px;
  }

  .category-card-img {
    width: 60px;
    height: 60px;
  }

  .category-card-name {
    max-width: 95px;
  }

  .products-section .product-grid,
  .product-grid {
    grid-template-columns: 1fr 1fr;
    gap: 6px;
  }

  .product-card {
    padding: 6px;
  }

  .btn-add-cart span {
    font-size: 10px;
  }
}