/* Laxmi Ayurvedic - Modern Responsive Design System */

:root {
  --primary: #166534;
  --primary-hover: #14532d;
  --primary-light: #f0fdf4;
  --primary-border: #bbf7d0;
  
  --secondary: #0f172a;
  --secondary-light: #1e293b;
  
  --accent-orange: #f97316;
  --accent-orange-light: #fff7ed;
  --accent-orange-hover: #ea580c;
  
  --accent-blue: #0284c7;
  --accent-blue-light: #f0f9ff;
  
  --whatsapp: #25d366;
  --whatsapp-hover: #1da851;
  
  --rx-red: #ef4444;
  --rx-red-light: #fef2f2;
  --otc-green: #10b981;
  --otc-green-light: #ecfdf5;
  
  --text-main: #1e293b;
  --text-muted: #64748b;
  --text-white: #ffffff;
  
  --bg-page: #f8fafc;
  --bg-card: #ffffff;
  --bg-subtle: #f1f5f9;
  
  --border-color: #e2e8f0;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 25px rgba(0,0,0,0.12);
  --shadow-glow: 0 0 20px rgba(22, 101, 52, 0.25);
  
  --font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

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

body {
  font-family: var(--font-family);
  background-color: var(--bg-page);
  color: var(--text-main);
  line-height: 1.5;
  padding-bottom: 75px; /* Space for mobile sticky bottom navbar */
}

@media (min-width: 768px) {
  body {
    padding-bottom: 0;
  }
}

a {
  color: inherit;
  text-decoration: none;
}

/* Header & Top Navigation */
.header-top-bar {
  background-color: var(--secondary);
  color: #94a3b8;
  font-size: 0.85rem;
  padding: 6px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  
  
}

.header-top-bar a {
  color: #38bdf8;
  font-weight: 500;
}

.main-header {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);

}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.header-brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--secondary);
  flex-shrink: 0;
  white-space: nowrap;
}

.logo-badge {
  background: linear-gradient(135deg, var(--primary), var(--accent-orange));
  color: white;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 900;
  box-shadow: var(--shadow-sm);
}

.brand-text span {
  color: var(--primary);
}

.search-box-wrapper {
  flex: 1;
  max-width: 500px;
  position: relative;
}

.search-input {
  width: 100%;
  padding: 10px 45px 10px 16px;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  transition: all 0.2s ease;
  background: var(--bg-subtle);
}

.search-input:focus {
  outline: none;
  border-color: var(--primary);
  background: #ffffff;
  box-shadow: var(--shadow-glow);
}

.search-btn {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--primary);
  border: none;
  color: white;
  width: 34px;
  height: 34px;
  border-radius: var(--radius-full);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-header-action {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-upload-head {
  background: var(--primary-light);
  color: var(--primary);
  border: 1px solid var(--primary-border);
}

.btn-upload-head:hover {
  background: var(--primary);
  color: white;
}

.btn-whatsapp-head {
  background: #dcfce7;
  color: #15803d;
  border: 1px solid #86efac;
}

.btn-whatsapp-head:hover {
  background: var(--whatsapp);
  color: white;
}

.cart-icon-btn {
  position: relative;
  background: var(--bg-subtle);
  border: 1px solid var(--border-color);
  width: 42px;
  height: 42px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
}

.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--rx-red);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mobile Menu Button */
.mobile-menu-btn {
  background: none;
  border: none;
  color: #374151;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  margin-left: 8px;
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

/* Nav Bar Links */
.main-nav-bar {
  background: var(--secondary);
  color: white;
  display: none;
  width: 100%;
}

.main-nav-bar.mobile-menu-active {
  display: block;
  position: absolute;
  top: 100%; /* Below header */
  left: 0;
  z-index: 1000;
  box-shadow: var(--shadow-lg);
}

@media (min-width: 768px) {
  .main-nav-bar {
    display: block;
    position: static;
  }
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 8px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

@media (min-width: 768px) {
  .nav-container {
    flex-direction: row;
    padding: 0 16px;
    gap: 24px;
    overflow-x: auto;
  }
}

.nav-link {
  padding: 12px 16px;
  color: #cbd5e1;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: all 0.2s;
  display: block;
}

.nav-link:hover, .nav-link.active {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

@media (min-width: 768px) {
  .nav-link {
    padding: 12px 0;
    border-radius: 0;
    border-bottom: 2px solid transparent;
    white-space: nowrap;
    display: inline-block;
  }
  .nav-link:hover, .nav-link.active {
    background: transparent;
    border-bottom: 2px solid var(--accent-orange);
  }
}


/* Hero Section */
.hero-section {
  background: var(--bg-subtle);
  color: var(--secondary);
  padding: 32px 16px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border-color);
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
}

@media (min-width: 768px) {
  .hero-section {
    padding: 48px 16px;
  }
  .hero-container {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

.hero-content h1 {
  font-size: 1.8rem;
  line-height: 1.2;
  margin-bottom: 12px;
  font-weight: 800;
}

@media (min-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  color: var(--primary);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.hero-content p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 24px;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn-primary {
  background: var(--primary);
  color: white;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
  box-shadow: 0 4px 14px rgba(5, 150, 105, 0.4);
}

.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
}

.btn-secondary {
  background: rgba(255,255,255,0.15);
  color: white;
  padding: 12px 20px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 1rem;
  border: 1px solid rgba(255,255,255,0.3);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(5px);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.25);
}

.hero-card-box {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 24px;
  color: white;
}

.rx-upload-quick-card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.upload-dropzone {
  border: 2px dashed rgba(52, 211, 153, 0.5);
  background: rgba(5, 150, 105, 0.1);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  margin: 16px 0;
  cursor: pointer;
  transition: all 0.2s;
}

.upload-dropzone:hover {
  border-color: #34d399;
  background: rgba(5, 150, 105, 0.2);
}

/* Hero Slider Styles */
.hero-slider-container {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  border-radius: 0;
  box-shadow: none;
  background: none;
}

.slider-wrapper {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
  height: auto;
}

.slide {
  min-width: 100%;
  height: auto;
}

.slide img {
  width: 100%;
  height: auto;
  display: block;
}

.slider-btn {
  position: absolute;
  bottom: 12px;
  top: auto;
  transform: none;
  background: white;
  color: #1e293b;
  border: 1px solid #e5e7eb;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  font-size: 0.85rem;
}

.slider-btn:hover {
  background: #f8fafc;
  transform: scale(1.05);
}

.slider-btn.prev {
  left: auto;
  right: 54px;
}

.slider-btn.next {
  right: 12px;
}

@media (min-width: 768px) {
  .slider-btn {
    bottom: 24px;
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }
  .slider-btn.prev {
    right: 80px;
  }
  .slider-btn.next {
    right: 24px;
  }
}

@media (max-width: 400px) {
  .slider-btn {
    width: 26px;
    height: 26px;
    bottom: 8px;
    font-size: 0.7rem;
  }
  .slider-btn.next {
    right: 8px;
  }
  .slider-btn.prev {
    right: 40px;
  }
}

.slider-nav {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dot.active {
  background: var(--accent-orange);
  transform: scale(1.2);
}

/* Featured Brands Styles */
.brand-title {
    position: relative;
    display: inline-block;
    padding-bottom: 8px;
    margin-bottom: 20px;
}

.brand-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #f97316 0%, rgba(249,115,22,0) 100%);
}

.brands-scroll-container {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 12px;
    scrollbar-width: thin;
}

.brands-scroll-container::-webkit-scrollbar {
    height: 6px;
}
.brands-scroll-container::-webkit-scrollbar-track {
    background: #f1f5f9; 
    border-radius: 4px;
}
.brands-scroll-container::-webkit-scrollbar-thumb {
    background: #cbd5e1; 
    border-radius: 4px;
}

.brand-card {
    flex: 0 0 auto;
    width: 120px;
    height: 120px;
    background: white;
    border: 1px solid #f1f5f9;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.brand-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.brand-logo {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Category Section */
.section-container {
  max-width: 1200px;
  margin: 32px auto;
  padding: 0 16px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.section-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--secondary);
}

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

@media (min-width: 640px) {
  .category-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .category-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.category-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 16px;
  text-align: center;
  transition: all 0.2s;
  cursor: pointer;
}

.category-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.cat-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-full);
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  font-size: 1.4rem;
}

.cat-title {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--secondary);
}

/* Product Cards Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

@media (min-width: 480px) {
  .product-grid {
    gap: 16px;
  }
}

@media (min-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 12px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.2s;
}

@media (min-width: 480px) {
  .product-card {
    padding: 16px;
  }
}

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

.badge-rx {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--rx-red-light);
  color: var(--rx-red);
  border: 1px solid #fca5a5;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: var(--radius-full);
}

.badge-otc {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--otc-green-light);
  color: var(--otc-green);
  border: 1px solid #a7f3d0;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: var(--radius-full);
}

.product-img {
  width: 100%;
  height: 140px;
  object-fit: contain;
  margin-bottom: 12px;
}

.product-brand {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.5px;
}

.product-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--secondary);
  margin: 4px 0;
  line-height: 1.3;
}

.product-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.product-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
  padding-top: 10px;
  border-top: 1px solid var(--bg-subtle);
}

.price-box {
  display: flex;
  flex-direction: column;
}

.current-price {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--secondary);
}

.mrp-price {
  font-size: 0.8rem;
  text-decoration: line-through;
  color: var(--text-muted);
}

.btn-add-cart {
  background: var(--primary);
  color: white;
  border: none;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-add-cart:hover {
  background: var(--primary-hover);
}

/* Trust Banner */
.trust-banner {
  background: #ffffff;
  border-y: 1px solid var(--border-color);
  padding: 24px 16px;
  margin: 32px 0;
}

.trust-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
}

@media (min-width: 640px) {
  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.trust-icon {
  background: var(--primary-light);
  color: var(--primary);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.trust-text h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--secondary);
}

.trust-text p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Mobile Bottom Navigation Bar */
.mobile-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  border-top: 1px solid var(--border-color);
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 62px;
  z-index: 1000;
  box-shadow: 0 -4px 15px rgba(0,0,0,0.06);
}

@media (min-width: 768px) {
  .mobile-bottom-nav {
    display: none;
  }
}

.mob-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.7rem;
  font-weight: 600;
  gap: 3px;
}

.mob-nav-item i {
  font-size: 1.25rem;
}

.mob-nav-item.active {
  color: var(--primary);
}

.mob-nav-rx-btn {
  background: linear-gradient(135deg, var(--primary), var(--accent-orange));
  color: white !important;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-glow);
  transform: translateY(-8px);
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 80px;
  right: 20px;
  background: var(--whatsapp);
  color: white;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: transform 0.2s ease;
}

@media (min-width: 768px) {
  .whatsapp-float {
    bottom: 24px;
  }
}

.whatsapp-float:hover {
  transform: scale(1.08);
}

/* Footer */
footer {
  background: var(--secondary);
  color: #94a3b8;
  padding: 40px 16px 20px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 30px;
}

@media (min-width: 768px) {
  .footer-container {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

.footer-col h3 {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 8px;
}

.footer-col a:hover {
  color: white;
}

.copyright-bar {
  text-align: center;
  padding-top: 20px;
  margin-top: 30px;
  border-top: 1px solid #334155;
  font-size: 0.85rem;
}

/* Modal / Drawer */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.modal-backdrop.active {
  display: flex;
}

.modal-box {
  background: #ffffff;
  border-radius: var(--radius-lg);
  max-width: 500px;
  width: 100%;
  padding: 24px;
  box-shadow: var(--shadow-lg);
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--bg-subtle);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
}

/* Mobile Header Wrap (Up to 576px) */
@media (max-width: 576px) {
  .header-container {
    flex-wrap: wrap;
    padding: 10px 12px;
    gap: 12px;
  }
  .header-brand-logo {
    order: 1;
  }
  .header-actions {
    order: 2;
  }
  .search-box-wrapper {
    order: 3;
    flex: 1 1 100%;
    max-width: 100%;
  }
  .search-input {
    padding: 12px 45px 12px 16px;
  }
}

/* Small Mobile Adjustments (up to 360px width, targeting ~300px) */
@media (max-width: 360px) {
  /* Global/Containers */
  .section-container {
    padding: 0 8px;
  }
  .header-container {
    padding: 8px;
    gap: 8px;
  }

  /* Header scaling */
  .header-brand-logo {
    font-size: 1.1rem;
    gap: 6px;
  }
  .logo-badge {
    width: 30px;
    height: 30px;
    font-size: 1rem;
  }
  .cart-icon-btn {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }
  .mobile-menu-btn {
    font-size: 1.3rem;
    margin-left: 4px;
  }
  .search-input {
    padding: 10px 40px 10px 12px;
    font-size: 0.85rem;
  }
  .search-btn {
    width: 30px;
    height: 30px;
  }

  /* Hero Section */
  .hero-content h1 {
    font-size: 1.4rem;
  }
  .btn-primary, .btn-secondary {
    padding: 8px 16px;
    font-size: 0.85rem;
  }

  /* Ensure 2-column Product Grid fits on small screens */
  .product-grid {
    gap: 8px;
  }
  .product-card {
    padding: 8px;
  }
  .product-img {
    height: 100px;
    margin-bottom: 8px;
  }
  .badge-rx, .badge-otc {
    font-size: 0.6rem;
    padding: 2px 4px;
    top: 6px;
    left: 6px;
  }
  .product-title {
    font-size: 0.85rem;
  }
  .product-desc {
    font-size: 0.7rem;
    margin-bottom: 8px;
  }
  .current-price {
    font-size: 0.95rem;
  }
  .mrp-price {
    font-size: 0.7rem;
  }
  .btn-add-cart {
    padding: 6px 10px;
    font-size: 0.75rem;
  }

  /* Categories */
  .category-grid {
    gap: 8px;
  }
  .category-card {
    padding: 10px 6px;
  }
  .cat-icon {
    width: 38px;
    height: 38px;
    font-size: 1.1rem;
    margin-bottom: 6px;
  }
  .cat-title {
    font-size: 0.8rem;
  }
  
  /* Trust Banner */
  .trust-banner {
    padding: 16px 8px;
  }
  .trust-item {
    gap: 12px;
  }
  .trust-icon {
    width: 44px;
    height: 44px;
    font-size: 1.3rem;
  }
}
