                                                                                                                                                                        *{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Arial}
  /* 📱 Mobile Responsive */
@media (max-width: 480px) {

    .qty-popup {
        padding: 20px;
        max-width: 95%;
        border-radius: 10px;
    }

    .qty-popup h3 {
        font-size: 16px;
    }

    .qty-popup .qty-controls {
        gap: 10px;
        margin: 15px 0;
    }

    .qty-popup .qty-btn {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    .qty-popup .qty-input {
        width: 50px;
        height: 35px;
        font-size: 14px;
    }

    .qty-popup .popup-buttons {
        flex-direction: column; /* 👈 buttons stack ho jayenge */
        gap: 8px;
    }

    .qty-popup .confirm-btn,
    .qty-popup .cancel-btn {
        padding: 12px;
        font-size: 14px;
    }
}
a {
  text-decoration: none;
  color: inherit;
}

/* Quantity Popup Styles */
        .qty-popup-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
            z-index: 1000;
            justify-content: center;
            align-items: center;
        }
        .qty-popup {
            background: white;
            padding: 30px;
            border-radius: 12px;
            text-align: center;
            max-width: 300px;
            width: 90%;
            box-shadow: 0 10px 40px rgba(0,0,0,0.2);
        }
        .qty-popup h3 {
            margin: 0 0 15px 0;
            color: #1f2937;
        }
        .qty-popup .qty-controls {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            margin: 20px 0;
        }
        .qty-popup .qty-btn {
            width: 40px;
            height: 40px;
            border: 1px solid #d1d5db;
            background: #f9fafb;
            font-size: 18px;
            cursor: pointer;
            border-radius: 6px;
        }
        .qty-popup .qty-input {
            width: 60px;
            height: 40px;
            text-align: center;
            font-size: 16px;
            border: 1px solid #d1d5db;
            border-radius: 6px;
        }
        .qty-popup .popup-buttons {
            display: flex;
            gap: 10px;
            margin-top: 20px;
        }
        .qty-popup .confirm-btn {
            flex: 1;
            background: #2563eb;
            color: white;
            padding: 10px;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            font-weight: 600;
        }
        .qty-popup .cancel-btn {
            flex: 1;
            background: #f3f4f6;
            color: #374151;
            padding: 10px;
            border: 1px solid #d1d5db;
            border-radius: 6px;
            cursor: pointer;
            font-weight: 600;
        }


/* ============================================
   MEDICAL WEBSITE LUXURY TOPBAR CSS
   Healthcare Theme + Medical Colors + WORKING Blink Effects
   For LifesavingMeds / ED Cure Meds
   ============================================ */

/* ===== LUXURY TOPBAR CONTAINER ===== */
.luxury-topbar {
    width: 100%;
    background: linear-gradient(135deg, #0a2b1e 0%, #0c3b2a 50%, #0a2b1e 100%);
    border-bottom: 1px solid rgba(0, 255, 170, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1001;
}

/* Animated gradient overlay */
.luxury-topbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(0, 255, 170, 0.08), 
        rgba(0, 255, 170, 0.15),
        rgba(0, 255, 170, 0.08), 
        transparent);
    animation: luxuryShimmer 3s ease-in-out infinite;
    z-index: 0;
}

@keyframes luxuryShimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.luxury-topbar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 10px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.luxury-topbar-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* ===== LUXURY TOPBAR ITEMS ===== */
.luxury-topbar-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 40px;
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(5px);
    letter-spacing: 0.3px;
    font-family: 'Poppins', 'Segoe UI', sans-serif;
}

.luxury-topbar-item i {
    font-size: 14px;
    transition: all 0.3s ease;
}

/* Hover Effects */
.luxury-topbar-item:hover {
    transform: translateY(-2px);
    background: rgba(0, 255, 170, 0.12);
    color: #00ffaa;
}

.luxury-topbar-item:hover i {
    transform: scale(1.1) rotate(5deg);
    color: #00ffaa;
}

/* ===== WORKING BLINK EFFECTS ===== */

/* Teal Blink - For Phone */
.luxury-blink-teal {
    animation: tealBlink 1s ease-in-out infinite;
    position: relative;
}

@keyframes tealBlink {
    0% {
        background: rgba(0, 150, 136, 0.1);
        border-color: rgba(0, 150, 136, 0.3);
        color: rgba(255, 255, 255, 0.9);
    }
    50% {
        background: rgba(0, 150, 136, 0.4);
        border-color: rgba(0, 150, 136, 0.8);
        color: #00ffcc;
        box-shadow: 0 0 12px rgba(0, 150, 136, 0.5);
    }
    100% {
        background: rgba(0, 150, 136, 0.1);
        border-color: rgba(0, 150, 136, 0.3);
        color: rgba(255, 255, 255, 0.9);
    }
}

/* Medical Blue Blink - For Email */
.luxury-blink-medblue {
    animation: medblueBlink 1.2s ease-in-out infinite;
    position: relative;
}

@keyframes medblueBlink {
    0% {
        background: rgba(41, 128, 185, 0.1);
        border-color: rgba(41, 128, 185, 0.3);
        color: rgba(255, 255, 255, 0.9);
    }
    50% {
        background: rgba(41, 128, 185, 0.4);
        border-color: rgba(41, 128, 185, 0.8);
        color: #5dade2;
        box-shadow: 0 0 12px rgba(41, 128, 185, 0.5);
    }
    100% {
        background: rgba(41, 128, 185, 0.1);
        border-color: rgba(41, 128, 185, 0.3);
        color: rgba(255, 255, 255, 0.9);
    }
}

/* Medical Green Blink - For Shipping */
.luxury-blink-medgreen {
    animation: medgreenBlink 1.1s ease-in-out infinite;
    position: relative;
}

@keyframes medgreenBlink {
    0% {
        background: rgba(46, 204, 113, 0.1);
        border-color: rgba(46, 204, 113, 0.3);
        color: rgba(255, 255, 255, 0.9);
    }
    50% {
        background: rgba(46, 204, 113, 0.4);
        border-color: rgba(46, 204, 113, 0.8);
        color: #2ecc71;
        box-shadow: 0 0 12px rgba(46, 204, 113, 0.5);
    }
    100% {
        background: rgba(46, 204, 113, 0.1);
        border-color: rgba(46, 204, 113, 0.3);
        color: rgba(255, 255, 255, 0.9);
    }
}

/* Medical Red Blink - For Emergency Support */
.luxury-blink-medred {
    animation: medredBlink 0.9s ease-in-out infinite;
    position: relative;
}

@keyframes medredBlink {
    0% {
        background: rgba(231, 76, 60, 0.1);
        border-color: rgba(231, 76, 60, 0.3);
        color: rgba(255, 255, 255, 0.9);
    }
    50% {
        background: rgba(231, 76, 60, 0.5);
        border-color: rgba(231, 76, 60, 0.9);
        color: #ff6b5c;
        box-shadow: 0 0 15px rgba(231, 76, 60, 0.6);
    }
    100% {
        background: rgba(231, 76, 60, 0.1);
        border-color: rgba(231, 76, 60, 0.3);
        color: rgba(255, 255, 255, 0.9);
    }
}

/* Add border to all blink items */
.luxury-blink-teal,
.luxury-blink-medblue,
.luxury-blink-medgreen,
.luxury-blink-medred {
    border: 1px solid;
    border-radius: 40px;
    padding: 8px 16px;
}

/* Glow Effect - Hover only */
.luxury-glow {
    transition: all 0.3s ease;
    position: relative;
}

.luxury-glow:hover {
    text-shadow: 0 0 12px rgba(0, 255, 170, 0.9);
    background: rgba(0, 255, 170, 0.12);
    box-shadow: 0 0 20px rgba(0, 255, 170, 0.3);
}

/* Border Slide Effect */
.luxury-border-slide {
    position: relative;
    overflow: hidden;
}

.luxury-border-slide::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #00ffaa, #00bcd4, #00ffaa);
    transition: left 0.4s ease;
}

.luxury-border-slide:hover::before {
    left: 0;
}

/* ===== BADGE COUNT ===== */
.badge-count {
    display: inline-block;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 30px;
    margin-left: 8px;
    animation: badgePulse 1s infinite;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

@keyframes badgePulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
        background: linear-gradient(135deg, #ff6b5c, #e74c3c);
    }
    100% {
        transform: scale(1);
        opacity: 0.8;
    }
}

/* Emergency Badge */
.badge-emergency {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    animation: emergencyPulse 0.8s infinite;
}

@keyframes emergencyPulse {
    0%, 100% { opacity: 0.8; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

/* ===== SEPARATOR VERTICAL ===== */
.luxury-separator-vertical {
    width: 1px;
    height: 20px;
    background: linear-gradient(180deg, transparent, rgba(0, 255, 170, 0.5), transparent);
    display: inline-block;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
    .luxury-topbar-container {
        justify-content: center;
        padding: 8px 20px;
    }
    
    .luxury-topbar-left {
        justify-content: center;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .luxury-topbar-container {
        padding: 8px 16px;
    }
    
    .luxury-topbar-left {
        flex-direction: column;
        align-items: center;
        gap: 8px;
        width: 100%;
    }
    
    .luxury-topbar-row-1 {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
        flex-wrap: wrap;
        width: 100%;
    }
    
    .luxury-topbar-row-2 {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
        flex-wrap: wrap;
        width: 100%;
    }
    
    .luxury-separator-vertical {
        display: none;
    }
    
    .luxury-topbar-item {
        padding: 5px 12px;
        font-size: 11px;
    }
    
    .luxury-topbar-item i {
        font-size: 12px;
    }
    
    .badge-count {
        font-size: 9px;
        padding: 2px 6px;
        margin-left: 6px;
    }
}

@media (max-width: 580px) {
    .luxury-topbar-container {
        padding: 6px 12px;
    }
    
    .luxury-topbar-item {
        padding: 4px 10px;
        font-size: 10px;
    }
    
    .luxury-topbar-item i {
        font-size: 10px;
    }
    
    .badge-count {
        font-size: 8px;
        padding: 1px 5px;
    }
}

@media (max-width: 480px) {
    .luxury-topbar-container {
        padding: 5px 10px;
    }
    
    .luxury-topbar-item {
        padding: 4px 8px;
        font-size: 9px;
        gap: 5px;
    }
    
    .luxury-topbar-item i {
        font-size: 9px;
    }
    
    .badge-count {
        font-size: 7px;
        padding: 1px 4px;
        margin-left: 4px;
    }
}

/* ===== EXTRA TOUCHES ===== */

/* Subtle pattern overlay */
.luxury-topbar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 10% 20%, rgba(0, 255, 170, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* Active/Pressed Effect */
.luxury-topbar-item:active {
    transform: scale(0.97);
}

/* Focus Accessibility */
.luxury-topbar-item:focus-visible {
    outline: 2px solid #00ffaa;
    outline-offset: 2px;
    border-radius: 40px;
}

/* Reduced Motion Preference */
@media (prefers-reduced-motion: reduce) {
    .luxury-topbar::before,
    .luxury-blink-teal,
    .luxury-blink-medblue,
    .luxury-blink-medgreen,
    .luxury-blink-medred,
    .badge-count {
        animation: none;
    }
}

/* Print Styles */
@media print {
    .luxury-topbar {
        display: none;
    }
}



.main-header {
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 9999;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 5%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  width: 273px;
  height: auto;
  object-fit: contain;
  display: block;
}

.search-box {
  flex: 1;
  max-width: 500px;
  display: flex;
  border: 1px solid #ddd;
  border-radius: 30px; /* 👈 more modern */
  overflow: hidden;
  margin-left: 20px;
  background: #fff;
  transition: 0.3s ease;
}

/* Focus glow */
.search-box:focus-within {
  border-color: #007bff;
  box-shadow: 0 0 8px rgba(0,123,255,0.2);
}

/* Input */
.search-box input {
  flex: 1;
  padding: 12px 18px;
  border: none;
  outline: none;
  font-size: 14px;
}

/* Button */
.search-box button {
  background: #007bff;
  color: #fff;
  border: none;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
  cursor: pointer; /* 👈 cursor added */
}

/* Icon */
.search-box button i {
  font-size: 16px;
  cursor: pointer; /* 👈 icon bhi clickable feel */
}

/* Hover */
.search-box button:hover {
  background: #0056b3;
}

/* Click effect */
.search-box button:active {
  transform: scale(0.95);
}
.search-box button svg {
  fill: #fff;          /* icon color */
  cursor: pointer;     /* 👈 cursor */
}
/* =====================
   BURGER MENU - MOBILE
   ===================== */
.burger {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

/* Mobile view */
@media (max-width: 768px) {

  .burger {
    display: block;
  }

  /* Hide navbar by default */
  .nav-bar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 20px;
    gap: 18px;
    box-shadow: -5px 0 20px rgba(0,0,0,.15);
    transition: .4s ease;
    z-index: 10000;
  }

  /* Show menu */
  .nav-bar.active {
    right: 0;
  }

  .nav-bar a {
    margin-left: 0;
    font-size: 16px;
    width: 100%;
  }

  /* Category dropdown */
  .category-dropdown {
    width: 100%;
    margin-bottom: 10px;
  }

  .category-dropdown select {
    width: 100%;
    margin-left: 0;
  }

  /* Search full width */
  .search-box {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    order: 3;
  }

  .logo img {
    width: 180px;
  }
}
/* =====================
   MOBILE SEARCH FIX
   ===================== */
@media (max-width: 768px) {

  .header-inner {
    flex-wrap: wrap;
    align-items: center;
  }

  /* Logo full row */
  .logo {
    width: 100%;
    justify-content: flex-start;
  }

  .logo img {
    width: 170px;
  }

  /* Icons row (wishlist, cart, burger) */
  .header-icons {
    position: absolute;
    top: 18px;
    right: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  /* Search just below logo */
  .search-box {
    width: 100%;
    max-width: 100%;
    margin: 10px 0 0;
    order: 2;
  }

  .search-box input {
    padding: 10px 12px;
    font-size: 14px;
  }

  .search-box button {
    padding: 0 14px;
  }
}

.header-icons span {
  font-size: 22px;
  margin-left: 15px;
  cursor: pointer;
}

.login-register {
  font-size: 16px;
  color: #1a4cff;
  margin-left: 15px;
  text-decoration: none;
}

.nav-bar {
   gap:10px;
  padding: 10px 23%;   /* 5% → 3% (left shift ho jayega) */
  border-top: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}


.nav-bar a {
  margin-left: 43px;  /* Adjusting space between links */
  text-decoration: none;
  color: #111;
  font-weight: 500;
  position: relative;
  padding-bottom: 6px;
 
}

.nav-bar a.active {
  color: #1a4cff;
}

.nav-bar a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #1a4cff;
}

/* Adjust dropdown positioning */
.category-dropdown { 
  margin-right: auto;
  margin-left: 0;
}

.category-dropdown select {
  margin-left: -227px;
  padding: 12px 14px;
  font-size: 14px;
  border: 1px solid #009dff;
  border-radius: 10px;
  background: linear-gradient(135deg, #f4f7ff, #ffffff); /* soft blue bg */
  outline: none;
  cursor: pointer;
  width: 270px;
  transition: .3s;
}

/* hover effect */
.category-dropdown select:hover {
  border-color: #1a4cff;
  background: #f0f4ff;
}

/* focus */
.category-dropdown select:focus {
  border-color: #1a4cff;
  box-shadow: 0 0 0 3px rgba(26,76,255,.15);
  background: #fff;
}


select {
    cursor: pointer;
}

option {
    cursor: pointer;
}

.social{
  display:flex;
  gap:12px;
}

.social a{
  width:38px;
  height:38px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#1f2937;
  color:#fff;
  border-radius:50%;
  font-size:16px;
  transition:0.3s ease;
}

.social a:hover{
  background:#4da3ff;
  transform:translateY(-3px);
}

.footer-col p{
  display:flex;
  align-items:center;
  gap:10px;
  color:#ccc;
  margin:8px 0;
}

.footer-col i{
  color:#4da3ff; /* icon color */
  font-size:16px;
}

.site-footer{
  background:#1f3f5b;
  color:#fff;
}

.footer-top{
  padding:60px 5%;
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:40px;
}

.footer-logo img{
  width:60px;
}

.footer-logo h3{
  margin:5px 0;
}

.social a{
  display:inline-flex;
  width:36px;
  height:36px;
  border:1px solid #fff;
  border-radius:50%;
  align-items:center;
  justify-content:center;
  margin-right:8px;
  color:#fff;
  text-decoration:none;
}

.footer-col h4{
  margin-bottom:15px;
}

.footer-col ul{
  list-style:none;
}

.footer-col ul li{
  margin-bottom:10px;
  color:#dbe6f3;
}

.footer-col ul li a{
  color:#dbe6f3;
  text-decoration:none;
}

.footer-bottom{
  border-top:1px solid rgba(255,255,255,.3);
  padding:20px 5%;
  display:flex;
  justify-content:space-between;
}

.footer-bottom a{
  color:#fff;
  margin-left:20px;
  text-decoration:none;
}

/* MOBILE */
@media(max-width:900px){
.footer-top{
 grid-template-columns:1fr;
}
.footer-bottom{
 flex-direction:column;
 gap:10px;
}
}


.hero-section{
  background:#eaf8ff;
  padding:80px 5%;
  font-family:'Poppins',sans-serif;
  
}

.hero-inner{
   height: 360px;
   display:flex; 
   align-items:center; 
   justify-content:space-between; }


.hero-content h1{
  font-size:52px;
  line-height:1.2;
  margin-bottom:35px;
  color:#12243a;
  font-weight:700;
}

/* FEATURES GRID */

.hero-features{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:25px 40px;
  margin-bottom:40px;
}

.feature{
  display:flex;
  gap:12px;
}

.feature i{
  font-size:26px;
  color:#007bff;
}

.feature h4{
  font-size:15px;
  margin:0;
  color:#12243a;
  font-weight:600;
}

.feature p{
  margin:0;
  font-size:13px;
  color:#6c7a89;
}

/* BUTTON */

.hero-btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:14px 26px;
  background:#fff;
  color:#1a4cff;
  border-radius:10px;
  text-decoration:none;
  font-weight:600;
  box-shadow:0 8px 20px rgba(0,0,0,.1);
}

.hero-btn i{
  font-size:14px;
}

/* IMAGE */

.hero-img img{
  max-width:420px;
}
/* Hide hero image on mobile */
@media (max-width: 768px) {
  .hero-img{
    display: none;
  }
}

/* MOBILE */

@media(max-width:900px){
.features-inner{
 grid-template-columns:1fr 1fr;
}

.feature-item{
 justify-content:center;
}
}

@media(max-width:500px){
.features-inner{
 grid-template-columns:1fr;
}
}
.features-bar{
  padding:50px 5%;
}

.features-inner{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:40px;
}

.feature-item{
  display:flex;
  align-items:center;
  gap:15px;
}

.feature-item img{
  width:42px;
}

.feature-item h4{
  margin:0;
  font-size:20px;
  font-weight:600;
}

.feature-item p{
  margin:5px 0 0;
  color:#777;
}

/* MOBILE */

@media(max-width:900px){
.features-inner{
 grid-template-columns:1fr 1fr;
}

.feature-item{
 justify-content:center;
}
}

@media(max-width:500px){
.features-inner{
 grid-template-columns:1fr;
}
}
.feature-item i{
  font-size:38px;
  color:#0094ff;
}

  .products{
  padding:70px 5%;
}

.product-head{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:40px;
}

.product-head h2{
  font-size:32px;
  color:#0b2c4d;
  text-align:center;
  width:100%;
}

.view-all {
  color: #009dff;
  text-decoration: none;
  font-weight: 300;
  font-size: 14px;
  border: 1.5px solid #009dff;
  padding: 5px 12px;
  border-radius: 5px;
  transition: .3s;
  white-space: nowrap; /* Prevent text from wrapping */
  min-width: 80px; /* Ensure the button has enough width */
  text-align: center; /* Center text inside the button */
}

.view-all:hover {
  background: #009dff;
  color: #fff;
  text-decoration: none;
}


/* GRID */

.product-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
}

@media(max-width:992px){
  .product-grid{grid-template-columns:repeat(2,1fr);}
}

@media(max-width:576px){
  .product-grid{grid-template-columns:1fr;}
}

/* CARD */

.products {
    padding: 30px 15px;
    max-width: 1200px;
    margin: 0 auto;
}

.product-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.product-head h2 {
    font-size: 24px;
    color: #003366;
    margin: 0;
}



.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

.product-card {
    background: #fff;
    border-radius: 12px;
    padding: 15px;
    transition: 0.3s;
    border: 1px solid #009dff;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 320px;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.product-image {
    overflow: hidden;
    border-radius: 8px;
    flex-shrink: 0;
    margin-bottom: 10px;
}

.product-image a {
    display: block;
    text-decoration: none;
    height: 140px; /* Reduced height */
}

.product-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
    display: block;
}

.product-card:hover img {
    transform: scale(1.05);
}

.product-card h4 {
    margin: 8px 0 -16px;
    font-size: 15px;
    line-height: 1.3;
    flex-grow: 1;
    min-height: 38px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.price {
    color: #003366;
    font-weight: 600;
    font-size: 16px;
    margin: 6px 0;
}

.stars {
    color: #ffc107;
    margin: 5px 0;
    letter-spacing: 1px;
    font-size: 13px;
}

.btn-row {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}

.cart-btn {
    flex: 1;
    background: #14d1c4;
    color: #fff;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    display: inline-block;
    font-weight: 600;
    font-size: 13px;
    transition: all .3s ease;
}

/* Hover */

.cart-btn:hover {
    background: #0fb4a8;   /* darker teal */
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(20,209,196,.35);
}


.buy-btn { 
    flex: 1;
    background: #003b6f;
    color: #fff;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    display: inline-block;
    font-weight: 600;
    font-size: 13px;
    transition: all .3s ease;
}

/* Hover Effect */

.buy-btn:hover {
    background: #005aa6;   /* same family ka lighter blue */
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,59,111,.35);
}



/* Responsive adjustments */
@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 15px;
    }
    
    .product-card {
        padding: 12px;
        min-height: 280px;
    }
    
    .product-image a {
        height: 120px;
    }
    
    .product-card h4 {
        font-size: 14px;
        min-height: 34px;
    }
    
    .price {
        font-size: 14px;
    }
    
    .cart-btn,
    .buy-btn {
        padding: 8px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .products {
        padding: 20px 10px;
    }
    
    .product-head h2 {
        font-size: 20px;
    }
    
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .product-card {
        min-height: 260px;
    }
    
    .product-image a {
        height: 100px;
    }
}

.health-hero {
  width: 93%;
  max-width: 1440px;   /* large screens ke liye clean limit */
  height: 375px;
  margin: 0 auto;     /* center me rakhega */
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 8%;
  background: #f8fbfd;
  font-family: "Inter", sans-serif;
}

.hero-content {
  max-width: 520px;
}

.tagline {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 12px;
  display: inline-block;
}

.hero-content h1 {
  font-size: 44px;
  font-weight: 700;
  line-height: 1.2;
  color: #0f172a;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 16px;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 28px;
}

.cta-btn {
  background: #2563eb;
  color: #fff;
  border: none;
  padding: 14px 26px;
  font-size: 15px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s ease;
}

.cta-btn:hover {
  background: #1e40af;
}

.hero-visual img {
  width: 420px;
  max-width: 100%;
}
.subtitle {
  max-width: 600px;
  margin: 10px auto 40px;
  color: #64748b;
  font-size: 15px;
}


.blog-related-image {
  display: block;
}

.blog-related-image img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
  cursor: pointer;
}

/* Title link */
.blog-title-link {
  color: #1d2d50;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-title-link:hover {
  color: #22c55e;
}

/* Related Blogs Section */
.blog-related-section {
  padding: 30px 5%;
  background-color: #ffffff;
}

.blog-related-container {
  max-width: 1300px;
  margin: auto;
  text-align: center;
}

.blog-related-title {
  font-size: 30px;
  font-weight: 600;
  color: #1d2d50;
  margin-bottom: 45px;
}

/* GRID – 4 columns */
.blog-related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* CARD */
.blog-related-card {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.blog-related-card:hover {
  transform: translateY(-6px);
  border-color: #22c55e;
  box-shadow: 0 14px 32px rgba(34, 197, 94, 0.18);
}

/* IMAGE */
.blog-related-image img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
}

/* CONTENT */
.blog-related-content {
  padding: 20px;
  text-align: left;
}

.blog-related-content h4 {
  font-size: 16px;
  color: #1d2d50;
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-related-content p {
  font-size: 13.5px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 14px;
}

/* READ MORE */
.blog-related-link {
  display: inline-block;
  padding: 6px 14px;
  font-size: 13.5px;
  color: #22c55e;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid #22c55e;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.blog-related-link:hover {
  background-color: #22c55e;
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(34, 197, 94, 0.25);
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .blog-related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .blog-related-grid {
    grid-template-columns: 1fr;
  }
}


.health-banner{
  
  position: relative;
  height: 150px;
  width: 100%;
  background: url("images/20.jpg") center/cover no-repeat;
  border-radius: 4px;
  overflow: hidden;
}

.health-overlay{
  position:absolute;
  inset:0;
  background: linear-gradient(90deg,#2bb0e6 0%, #1f3bd4 100%);
  opacity:.9;
}

.health-content{
  position: relative;
  z-index: 2;
  height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
}

.health-content h1{
  color:#fff;
  font-size:38px;
  font-weight:600;
  line-height:1.3;
}


.about-edcure{
  padding:70px 6%;
  background:#fff;
}

.about-wrap{
  display:flex;
  align-items:center;
  gap:60px;
}

/* Images */

.about-images{
  position:relative;
  width:40%;
}

.about-main{
  width:100%;
  border-radius:18px;
}

.about-small{
  position:absolute;
  right:30px;      /* andar le aaye */
  bottom:50px;
  width:50%;
  border-radius:18px;
  box-shadow:0 12px 30px rgba(0,0,0,.18);
  background:#fff;
}



/* Content */

.about-info{
  width:55%;
}

.about-info h2{
  font-size:32px;
  margin-bottom:20px;
  color:#163b63;
}

.about-info p{
  font-size:15px;
  line-height:1.8;
  color:#555;
  margin-bottom:15px;
}

/* Button */

.about-btn{
  display:inline-block;
  margin-top:15px;
  padding:10px 26px;
  background:#0d99ff;
  color:#fff;
  border-radius:6px;
  text-decoration:none;
  font-size:14px;
}

.about-btn:hover{
  background:#067ed4;
}


.offer-section{
  margin:30px 4%;
  padding:50px;
  background:#f7f7f7;
  border-radius:6px;
}

/* Heading */

.offer-head{
  display:flex;
  justify-content:space-between;
  gap:40px;
  margin-bottom:40px;
}

.offer-head h2{
  font-size:28px;
  color:#163b63;
}

.offer-head p{
  max-width:520px;
  color:#5b6c7a;
  font-size:14px;
  line-height:1.7;
  border-left:2px solid #3aa0ff;
  padding-left:20px;
}

/* Cards */

.offer-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:25px;
}

.offer-card{
  background:#fff;
  border:1.5px solid #3aa0ff;
  border-radius:10px;
  padding:30px 20px;
  text-align:center;
}

.offer-card span{
  display:inline-flex;
  width:70px;
  height:70px;
  border-radius:50%;
  background:#fff3ef;
  align-items:center;
  justify-content:center;
  font-size:28px;
  margin-bottom:15px;
}

.offer-card h4{
  font-size:16px;
  color:#163b63;
  margin-bottom:10px;
}

.offer-card p{
  font-size:13px;
  color:#666;
  line-height:1.6;
}

.commit-section{
  padding:12px 6%;
  background:#fff;
}

.commit-wrap{
  display:flex;
  align-items:center;
  gap:70px;
}

/* Left */

.commit-left{
  position:relative;
  width:40%;
}

.commit-image{
  border-radius:50% / 60%;
  padding:15px;
}

.commit-image img{
  width:80%;
  border-radius:50% / 60%;
  display:block;
}

/* Experience Card */

.commit-badge{
  position:absolute;
  right:-30px;
  bottom:60px;
  background:#dff3ff;
  padding:25px 22px;
  border-radius:10px;
  text-align:center;
  width:150px;
}

.badge-icon{
  font-size:26px;
  color:#0d99ff;
  margin-bottom:8px;
}

.commit-badge h3{
  font-size:32px;
  margin:0;
  color:#163b63;
}

.commit-badge p{
  font-size:13px;
  color:#0d99ff;
  margin-top:4px;
}

/* Right */

.commit-right{
  width:60%;
}

.commit-right h2{
  font-size:30px;
  margin-bottom:15px;
  color:#163b63;
}

.commit-right p{
  color:#555;
  font-size:14px;
  line-height:1.8;
}

.commit-intro{
  margin-bottom:15px;
}

.commit-right ul{
  padding-left:18px;
  margin:15px 0;
}

.commit-right li{
  font-size:14px;
  color:#555;
  line-height:1.8;
  margin-bottom:8px;
}

.exp-hero{
  background:#f6fbff;
  padding:25px 6%;
  
}

.exp-wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
}

/* Left */

.exp-left{
  width:50%;
}

.exp-left h1{
  font-size:34px;
  line-height:1.3;
  color:#163b63;
  margin-bottom:15px;
}

.exp-left p{
  font-size:14px;
  color:#5b6c7a;
  line-height:1.8;
  max-width:480px;
  margin-bottom:25px;
}

/* Button */

.exp-btn{
  background:#0d99ff;
  color:#fff;
  padding:10px 22px;
  border-radius:6px;
  text-decoration:none;
  font-size:14px;
  display:inline-block;
}

.exp-btn:hover{
  background:#067ed4;
}

/* Right */

.exp-right{
  width:45%;
  text-align:right;
}

.exp-right img{
  max-width:100%;
}

.blog-hero {
  width: 100%;
  height: 150px;
  display: flex;
  align-items: center;
  padding: 40px 60px;
  background: linear-gradient(135deg, #1e3ccf 0%, #1bb3e9 100%);
  position: relative;
  overflow: hidden;
}

.blog-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("images/25.jpg"); /* optional subtle texture */
  opacity: 0.08;
}

.blog-hero-content { 
  position: relative;
  max-width: 800px;
  color: #ffffff;
  margin: 0 auto;       /* container center */
}

.blog-hero-content h1 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 12px;
  text-align: center;   /* text center */
}




.blog-grid {
  padding: 60px 0;
  background: #fff;
}

.container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.blog-grid {
  padding: 40px 5%;
  background: #f9fafc;
}

.blog-grid .container {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.blog-heading {
  text-align: center;
  margin-bottom: 55px;
  position: relative;
}

.blog-heading h2 {
  font-size: 36px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
  position: relative;
  display: inline-block;
}

/* underline accent */
.blog-heading h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, #22c55e, #16a34a);
}

.blog-heading p {
  max-width: 640px;
  margin: 28px auto 0;
  font-size: 15.5px;
  color: #64748b;
  line-height: 1.7;
}

/* CARD */
.blog-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  border: 1px solid #e5e7eb;
  transition: all 0.35s ease;
  font-family: Inter, Arial, sans-serif;
}

.blog-card:hover {
  transform: translateY(-6px);
  border-color: #22c55e;
  box-shadow: 0 18px 40px rgba(34, 197, 94, 0.18);
}

/* IMAGE */
.blog-image {
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 14px;
}

.blog-image img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

/* TEXT */
.blog-card h3 {
  font-size: 16px;
  margin: 12px 0 8px;
  color: #0f172a;
  line-height: 1.4;
}

.blog-card p {
  font-size: 13.5px;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 14px;
}

/* BUTTON */
.blog-card a {
  display: inline-block;
  font-size: 13.5px;
  color: #22c55e;
  text-decoration: none;
  font-weight: 500;
  padding: 6px 16px;
  border: 1px solid #22c55e;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.blog-card a:hover {
  background: #22c55e;
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(34, 197, 94, 0.25);
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .blog-grid .container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .blog-grid .container {
    grid-template-columns: 1fr;
  }
}


/* Responsive */
@media (max-width: 992px) {
  .container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .container {
    grid-template-columns: 1fr;
  }
}

.faq-section {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 20px;
}

.faq-section h3 {
  text-align: center;
  font-size: 26px;
  color: #0099ff;
  margin-bottom: 30px;
}

.faq-item {
  border-bottom: 1px solid #e5eef7;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px;
  cursor: pointer;
  font-size: 15px;
  color: #2c3e50;
}

.faq-question span {
  width: 28px;
  height: 28px;
  border: 1px solid #0099ff;
  border-radius: 4px;
  color: #0099ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.faq-answer {
  display: none;
  background: #eaf4ff;
  padding: 18px;
  font-size: 14px;
  color: #444;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-question span {
  background: #0099ff;
  color: #fff;
}
.faq-hero {
  padding: 55px 20px;
  text-align: center;
  position: relative;
  border: 3px solid #1da1f2;

  /* Background image + gradient overlay */
  background:
    linear-gradient(135deg, rgba(30,63,207,0.9), rgba(25,181,241,0.9)),
    url("images/35.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.faq-hero::before {
  content: "FAQ";
  position: absolute;
  inset: 0;
  font-size: 140px;
  font-weight: 700;
  color: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.faq-hero h2 {
  position: relative;
  z-index: 2;
  color: #fff;
  font-size: 28px;
  font-weight: 600;
}



/* BANNER */
.contact-banner {
    padding: 40px 20px;
    text-align: center;
    color: #fff;
    background: 
        linear-gradient(135deg, rgba(13,110,253,0.7), rgba(107,134,255,0.7)),
        url('images/20.jpg') center/cover no-repeat;
}

.contact-banner h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

.contact-banner p {
    opacity: 0.9;
}


.deal-section{
  padding:40px 5%;
}

.deal-grid{
  display:grid;
  grid-template-columns:2fr 1fr;
  gap:20px;
}

/* Common Card */
.deal-card{
  position:relative;
  border-radius:14px;
  padding:25px;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.badge{
  position:absolute;
  top:15px;
  left:15px;
  background:#00a3ff;
  color:#fff;
  font-size:12px;
  padding:4px 10px;
  border-radius:6px;
}

.price del{
  color:#999;
  font-size:14px;
}

.price strong{
  display:block;
  font-size:22px;
  margin:4px 0;
}

.price small{
  font-size:12px;
  color:#666;
}

/* Big Card */
.big{
  background:#eef8fb;
}

.big img{
  max-width:500px;
}

/* Right cards */
.right-deals{
  display:flex;
  flex-direction:column;
  gap:20px;
}

.small{
  min-height:170px;
}

.small img{
  max-width:210px;
}

/* Colors */
.cream{
  background:#fff5e6;
}

.green{
  background:#ecfaec;
}

/* Responsive */
@media(max-width:900px){
  .deal-grid{
    grid-template-columns:1fr;
  }
}

.category-info{
  padding:50px 5%;
}

.category-wrap{
  display:grid;
  grid-template-columns:300px 1fr;
  gap:30px;
}

/* LEFT BOX */

.category-box{
  background:#eaf7ff;
  padding:25px;
  border-radius:14px;
}

.category-box h3{
  margin-bottom:20px;
}

.category-box ul{
  list-style:none;
  padding:0;
}

.category-box li{
  padding:12px 15px;
  border-radius:6px;
  margin-bottom:10px;
  cursor:pointer;
  transition: background-color 0.3s, color 0.3s;
}

/* Default non-active state */
.category-box li {
  background: transparent;
  color: black;
}

/* Active state */
.category-box li.active{
  
  color:white;
}

/* Link styles */
.category-box li a {
  display: block;
  text-decoration: none;
  color: inherit;
  width: 100%;
  height: 100%;
}

/* Active link color */
.category-box li.active a {
  color: black;
}/* RIGHT BOX */

.info-box1{
  background-color:lightblue;
  border-radius:16px;
  padding:30px;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.info-text ul{
  padding-left:18px;
}

.info-text li{
  margin-bottom:12px;
  font-size:16px;
}

/* IMAGE */

.info-img img{
  max-width:260px;
}

/* Responsive */

@media(max-width:900px){
  .category-wrap{
    grid-template-columns:1fr;
  }

  .info-box{
    flex-direction:column;
    text-align:center;
  }
}

.read-more-btn{
  margin:40px auto;
  display:block;
  padding:12px 30px;
  background:#00a3ff;
  color:#fff;
  border:none;
  border-radius:6px;
  cursor:pointer;
}

.safety-info{
  width:1150px;
  margin:15px 65px 60px;   /* upar aa jayega */
  padding:0 5%;
  color:#1f3a5f;
  margin-right: 10px;
}
.safety-info h2{
  font-size:28px;
  margin-bottom:15px;
}

.safety-info h3{
  font-size:22px;
  margin:35px 0 15px;
}

.safety-info p{
  margin-bottom:10px;
  line-height:1.6;
}

.safety-info ul{
  padding-left:20px;
  margin-bottom:25px;
}

.safety-info li{
  margin-bottom:10px;
  line-height:1.7;
}

.safety-info strong{
  color:#0b2c55;
}

.cialis-info{
  width:1150px;
  margin:15px 65px 60px;
  padding:0 5%;
  color:#1f3a5f;
}

.cialis-info h2{
  font-size:26px;
  margin:35px 0 15px;
}

.cialis-info p{
  line-height:1.7;
  margin-bottom:15px;
}

.cialis-info ul{
  padding-left:20px;
  margin-bottom:20px;
}

.cialis-info li{
  margin-bottom:8px;
  line-height:1.6;
}

.cialis-info strong{
  color:#0b2c55;
}


.levitra-info{ 
  width:1150px;
  margin:15px 65px 60px;
  padding:0 5%;
  color:#1f3a5f;
  line-height:1.8;
  font-family:Arial, sans-serif;
}

.levitra-info h2{
  font-size:26px;
  margin-bottom:12px;
}

.levitra-info h3{
  font-size:22px;
  margin:25px 0 10px;
}

.levitra-info p{
  font-size:14px;
  margin-bottom:10px;
}

.levitra-info ul{
  padding-left:18px;
  margin:10px 0 20px;
}

.levitra-info li{
  font-size:14px;
  margin-bottom:6px;
}
/* Professional Product Detail Styles - EdcareMeds */
.product-detail {
    max-width: 1200px;
    margin: 30px auto 50px;
    font-family: 'Segoe UI', 'Roboto', Arial, sans-serif;
    color: #333;
}

.product-wrap {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.pd-left {
    width: 45%;
    flex-shrink: 0;
}

.pd-right {
    width: 55%;
}

/* Product Image */
.pd-main-img {
    background: #f9f9f9;
    border-radius: 8px;
    padding: 20px;
    border: 1px solid #eaeaea;
    margin-bottom: 20px;
    text-align: center;
}

.pd-main-img img {
    max-width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
}

.pd-thumbs {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 10px 0;
}

.pd-thumbs img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    transition: border-color 0.2s;
}

.pd-thumbs img:hover {
    border-color: #0066cc;
}

.pd-thumbs img.active {
    border-color: #0066cc;
    border-width: 2px;
}

/* Product Info */
.pd-right h1 {
    font-size: 28px;
    font-weight: 600;
    color: #222;
    margin-bottom: 10px;
    line-height: 1.3;
}

.pd-rating {
    margin: 15px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
}

.pd-rating .stars {
    color: #ffb400;
}

.pd-price {
    font-size: 32px;
    color: #0066cc;
    font-weight: 700;
    margin: 20px 0;
}

.pd-right > p {
    color: #555;
    line-height: 1.6;
    font-size: 16px;
    margin: 20px 0;
    padding-right: 20px;
}

/* Quantity & Add to Cart */
.pd-row {
    display: flex;
    gap: 20px;
    align-items: center;
    margin: 30px 0;
    flex-wrap: wrap;
}

.pd-qty {
    border: 1px solid #ccc;
    border-radius: 4px;
    display: flex;
    overflow: hidden;
    background: white;
}

.pd-qty button {
    border: none;
    padding: 12px 16px;
    background: #f5f5f5;
    color: #333;
    font-size: 18px;
    cursor: pointer;
    min-width: 45px;
    transition: background 0.2s;
}

.pd-qty button:hover {
    background: #e0e0e0;
}

.pd-qty input {
    width: 50px;
    border: none;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    background: white;
    outline: none;
}

.pd-cart {
    background: #0066cc;
    color: white;
    padding: 14px 40px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: inline-block;
    transition: background 0.3s;
    border: none;
    cursor: pointer;
}

.pd-cart:hover {
    background: #0052a3;
}

.pd-extra {
    color: #666;
    font-size: 14px;
    display: flex;
    gap: 25px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

/* Tabs */
.pd-tabs {
    margin-top: 50px;
    border-top: 1px solid #eee;
    padding-top: 30px;
}

.tab-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    border-bottom: 1px solid #ddd;
}

.pd-tabs button {
    padding: 12px 30px;
    border: 1px solid #ddd;
    background: white;
    color: #555;
    border-radius: 4px 4px 0 0;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.2s;
    position: relative;
    bottom: -1px;
}

.pd-tabs button:hover {
    background: #f8f8f8;
    color: #0066cc;
}

.pd-tabs button.active {
    background: white;
    color: #0066cc;
    border-color: #ddd;
    border-bottom-color: white;
    font-weight: 600;
}

.pd-content {
    display: none;
    padding: 25px;
    background: white;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 4px 4px;
    line-height: 1.7;
    color: #555;
}

.pd-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Product Features/Specs */
.product-specs {
    margin-top: 30px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 6px;
    border: 1px solid #eee;
}

.product-specs h3 {
    margin-bottom: 15px;
    color: #333;
    font-size: 18px;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px dashed #eee;
}

.spec-label {
    color: #666;
    font-weight: 500;
}

.spec-value {
    color: #333;
    font-weight: 500;
}

/* Stock Status */
.stock-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: #e8f5e9;
    border-radius: 4px;
    color: #2e7d32;
    font-size: 14px;
    margin: 10px 0;
}

.stock-status.out-of-stock {
    background: #ffebee;
    color: #c62828;
}

/* Delivery Info */
.delivery-info {
    background: #f5f5f5;
    padding: 15px;
    border-radius: 6px;
    margin: 20px 0;
    font-size: 14px;
}

.delivery-info h4 {
    margin-bottom: 10px;
    color: #333;
}

.delivery-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.delivery-info li {
    padding: 5px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .product-wrap {
        flex-direction: column;
        gap: 30px;
    }
    
    .pd-left, .pd-right {
        width: 100%;
    }
    
    .pd-main-img {
        max-width: 500px;
        margin: 0 auto 20px;
    }
    
    .pd-right h1 {
        margin-top:10px;
        font-size: 24px;
    }
    
    .pd-price {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .product-detail {
        padding: 0 15px;
        margin: 20px auto;
    }
    
    .pd-row {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .pd-cart {
        margin-left:40px;
        width: 100%;
        text-align: center;
    }
    
    .tab-buttons {
        flex-direction: column;
    }
    
    .pd-tabs button {
        width: 100%;
        border-radius: 4px;
        margin-bottom: 5px;
    }
    
    .pd-tabs button.active {
        border-bottom-color: #ddd;
    }
    
    .specs-grid {
        grid-template-columns: 1fr;
    }
}

/* Additional Information */
.pd-meta {
    margin: 20px 0;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 6px;
    font-size: 14px;
}

.pd-meta-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.pd-meta-item:last-child {
    border-bottom: none;
}

/* Warning/Important Notice */
.pd-notice {
    background: #fff8e1;
    border-left: 4px solid #ffc107;
    padding: 15px;
    margin: 20px 0;
    border-radius: 4px;
    font-size: 14px;
    color: #5d4037;
}

.pd-notice strong {
    display: block;
    margin-bottom: 5px;
    color: #e65100;
}

/* Prescription Required */
.prescription-required {
    background: #e3f2fd;
    border: 1px solid #bbdefb;
    padding: 10px 15px;
    border-radius: 4px;
    margin: 15px 0;
    font-size: 14px;
    color: #1565c0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-section {
  padding: 40px 4%;
  background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
  min-height: 70vh;
}

.cart-container {
  max-width: 1300px;
  margin: auto;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: flex-start;
}

/* LEFT SIDE STYLES */
.cart-left {
  flex: 2.2;
  min-width: 300px;
  background: white;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 6px 20px rgba(26, 76, 255, 0.08);
  border: 1px solid rgba(26, 76, 255, 0.1);
}

.cart-left h2 {
  font-size: 28px;
  color: #1d2d50;
  margin-bottom: 8px;
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
}

.cart-left h2:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #1a4cff, #4CAF50);
  border-radius: 2px;
}

.cart-subtitle {
  color: #1a4cff;
  font-weight: 600;
  margin-bottom: 25px;
  font-size: 14px;
  letter-spacing: 0.5px;
}

.cart-item {
  display: flex;
  align-items: center;
  padding: 24px 0;
  border-bottom: 2px solid rgba(238, 238, 238, 0.7);
  gap: 25px;
  flex-wrap: wrap;
  transition: all 0.3s ease;
  position: relative;
}

.cart-item:hover {
  background: rgba(248, 249, 255, 0.5);
  border-radius: 12px;
  padding: 24px 15px;
  margin: 0 -15px;
}

.cart-item:last-child {
  border-bottom: none;
}

.remove-link {
  padding: 8px 16px;
  color: #d9534f;
  font-size: 13px;
  font-weight: 600;
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  border: 2px solid #ffebee;
  border-radius: 8px;
  background-color: #fff5f5;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  letter-spacing: 0.3px;
}

.remove-link:hover {
  color: #fff;
  background: linear-gradient(135deg, #d9534f, #c9302c);
  border-color: #d9534f;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(217, 83, 79, 0.3);
}

.remove-link:before {
  content: '×';
  font-size: 18px;
  font-weight: bold;
}

.cart-img img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 12px;
  border: 3px solid white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.cart-img img:hover {
  transform: scale(1.03);
}

.cart-details {
  flex: 1;
  min-width: 220px;
}

.cart-details h4 {
  font-size: 17px;
  margin-bottom: 10px;
  color: #2a3f5f;
  line-height: 1.5;
  font-weight: 600;
}

.cart-details span {
  font-size: 14px;
  color: #666;
  display: block;
  margin-bottom: 15px;
  font-weight: 500;
}

/* QUANTITY BOX IMPROVED */
.qty-box {
  display: inline-flex;
  align-items: center;
  border: 2px solid #e8eaf6;
  border-radius: 10px;
  overflow: hidden;
  margin-top: 12px;
  background: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.qty-minus, .qty-plus {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #f5f7ff, #e8eaf6);
  border: none;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  color: #1d2d50;
  font-weight: bold;
}

.qty-minus:hover, .qty-plus:hover {
  background: linear-gradient(135deg, #1a4cff, #0d3fd3);
  color: white;
  box-shadow: 0 3px 10px rgba(26, 76, 255, 0.3);
}

.qty-input {
  width: 50px;
  height: 36px;
  border: none;
  text-align: center;
  font-size: 15px;
  background: white;
  font-weight: 600;
  color: #2a3f5f;
  border-left: 1px solid #e8eaf6;
  border-right: 1px solid #e8eaf6;
}

.qty-input:focus {
  outline: none;
  background: #f8f9ff;
}

/* CART PRICE */
.cart-price {
  font-size: 20px;
  font-weight: 700;
  color: #1d2d50;
  min-width: 110px;
  text-align: right;
  padding: 10px 15px;
  background: linear-gradient(135deg, #f8f9ff, #ffffff);
  border-radius: 10px;
  border: 2px solid rgba(26, 76, 255, 0.1);
}

.cart-price:before {
  content: '$';
  font-size: 16px;
  color: #4CAF50;
  margin-right: 2px;
}

/* UPDATE BUTTON */
.update-btn {
  padding: 12px 28px;
  background: linear-gradient(135deg, #4CAF50, #45a049);
  color: white;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.2);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.update-btn:hover {
  background: linear-gradient(135deg, #45a049, #3d8b40);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(76, 175, 80, 0.3);
}

.update-btn:before {
  content: '↻';
  font-size: 18px;
}

/* RIGHT SUMMARY */
.cart-right {
  flex: 1;
  min-width: 300px;
}

.cart-summary {
  background: linear-gradient(135deg, #ffffff, #f8f9ff);
  padding: 30px;
  border-radius: 16px;
  border: 2px solid rgba(26, 76, 255, 0.1);
  position: sticky;
  top: 30px;
  box-shadow: 0 8px 25px rgba(26, 76, 255, 0.1);
}

.cart-summary h3 {
  font-size: 24px;
  color: #1d2d50;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 3px solid #1a4cff;
  font-weight: 700;
  position: relative;
}

.cart-summary h3:after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #1a4cff, #4CAF50);
  border-radius: 1.5px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 18px;
  font-size: 16px;
  padding-bottom: 8px;
  border-bottom: 1px dashed rgba(221, 221, 221, 0.5);
}

.summary-row span {
  color: #555;
  font-weight: 500;
}

.summary-row strong {
  color: #1d2d50;
  font-size: 17px;
  font-weight: 600;
}

.summary-row:last-of-type {
  margin-top: 25px;
  padding-top: 20px;
  border-top: 2px solid #1a4cff;
  border-bottom: none;
  font-size: 20px;
  color: #1d2d50;
  background: linear-gradient(135deg, #f8f9ff, #ffffff);
  padding: 18px;
  border-radius: 10px;
  margin-bottom: 25px;
}

.cart-summary input[type="text"] {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e8eaf6;
  border-radius: 10px;
  margin: 20px 0;
  font-size: 15px;
  box-sizing: border-box;
  background: white;
  transition: all 0.3s ease;
  font-weight: 500;
}

.cart-summary input[type="text"]:focus {
  outline: none;
  border-color: #1a4cff;
  box-shadow: 0 0 0 3px rgba(26, 76, 255, 0.1);
  background: #f8f9ff;
}

.cart-summary input[type="text"]::placeholder {
  color: #999;
  font-weight: normal;
}

.checkout-btn {
  display: block;
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #1a4cff, #0d3fd3);
  color: white;
  text-align: center;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 17px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
  letter-spacing: 0.5px;
  box-shadow: 0 6px 20px rgba(26, 76, 255, 0.25);
  position: relative;
  overflow: hidden;
}

.checkout-btn:after {
  content: '→';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  transition: transform 0.3s ease;
}

.checkout-btn:hover {
  background: linear-gradient(135deg, #0d3fd3, #0a32b0);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(26, 76, 255, 0.35);
}

.checkout-btn:hover:after {
  transform: translateY(-50%) translateX(5px);
}

.checkout-btn[style*="background: #666;"] {
  background: linear-gradient(135deg, #666, #555);
  box-shadow: 0 6px 20px rgba(102, 102, 102, 0.25);
}

.checkout-btn[style*="background: #666;"]:hover {
  background: linear-gradient(135deg, #555, #444);
  box-shadow: 0 10px 25px rgba(102, 102, 102, 0.35);
}

.checkout-btn[style*="background: #666;"]:after {
  content: '🛒';
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .cart-container {
    gap: 30px;
  }
  
  .cart-left, .cart-right {
    flex: 100%;
  }
  
  .cart-summary {
    position: static;
  }
}

@media (max-width: 768px) {
  .cart-section {
    padding: 30px 3%;
  }
  
  .cart-container {
    flex-direction: column;
    gap: 25px;
  }
  
  .cart-left {
    padding: 25px 20px;
  }
  
  .cart-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 25px 0;
  }
  
  .cart-item:hover {
    padding: 25px 15px;
    margin: 0 -10px;
  }
  
  .cart-details {
    margin-left: 0;
    width: 100%;
  }
  
  .cart-price {
    text-align: center;
    margin-left: 0;
    margin-top: 15px;
    width: 100%;
  }
  
  .cart-img img {
    width: 160px;
    height: 160px;
  }
  
  .qty-box {
    margin: 15px auto;
  }
  
  .remove-link {
    margin: 15px auto 0;
  }
}

@media (max-width: 480px) {
  .cart-section {
    padding: 25px 2%;
  }
  
  .cart-left {
    padding: 20px 15px;
  }
  
  .cart-img img {
    width: 140px;
    height: 140px;
  }
  
  .cart-price {
    font-size: 18px;
    padding: 8px;
  }
}

/* EMPTY CART MESSAGE */
.cart-section > .cart-container > .cart-left > form > div {
  text-align: center;
  padding: 13px 40px;
  background: linear-gradient(135deg, #f8f9ff, #ffffff);
  border-radius: 16px;
  border: 2px dashed rgba(26, 76, 255, 0.2);
  margin: 20px 0;
}

.cart-section > .cart-container > .cart-left > form > div p {
  font-size: 18px;
  color: #666;
  margin-bottom: 20px;
  font-weight: 500;
}

.cart-section > .cart-container > .cart-left > form > div a {
  color: #4CAF50;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  margin-top: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: rgba(76, 175, 80, 0.1);
  border-radius: 10px;
  border: 2px solid rgba(76, 175, 80, 0.2);
  transition: all 0.3s ease;
}

.cart-section > .cart-container > .cart-left > form > div a:hover {
  background: rgba(76, 175, 80, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.2);
}

.cart-section > .cart-container > .cart-left > form > div a:before {
  content: '←';
  font-size: 18px;
}

.checkout-btn {
  display: block;
  text-align: center;
  background: #1a4cff;
  color: #fff;
  text-decoration: none;
  padding: 12px;
  border-radius: 6px;
  font-weight: 500;
}

.checkout-btn:hover {
  background: #1439cc;
}
.checkout-section {
  padding: 60px 5%;
  background: #fff;
}

.checkout-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 40px;
}

/* LEFT */
.checkout-left {
  flex: 2;
}

.back-link {
  font-size: 14px;
  color: black;
  text-decoration: none;
}

.checkout-left h2 {
  margin: 10px 0 25px;
  color: #1d2d50;
}

.checkout-box {
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 20px;
  margin-bottom: 20px;
}

.checkout-box h4 {
  font-size: 14px;
  color: black;
  margin-bottom: 15px;
}

.checkout-box input,
.checkout-box select {
  width: 100%;
  padding: 10px;
  margin-bottom: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.form-row {
  display: flex;
  gap: 15px;
}

.checkbox {
  font-size: 13px;
  color: #555;
}

.payment-option {
  display: block;
  border: 1px solid #ccc;
  padding: 10px;
  border-radius: 4px;
  margin-bottom: 10px;
  font-size: 14px;
}

.payment-option.active {
  border-color: #1a4cff;
}

.place-order-btn {
  width: 100%;
  background: black;
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
}

/* RIGHT */
/* RIGHT CHECKOUT CARD */
.checkout-right {
  flex: 1;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 22px;
  box-shadow: 0 10px 30px rgba(26, 76, 255, 0.08);
}

/* TITLE */
.checkout-right h4 {
  font-size: 16px;
  font-weight: 600;
  color: #1d2d50;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e6ecff;
}

/* PRODUCT ITEM */
.summary-item {
  display: flex;
  gap: 14px;
  margin-bottom: 22px;
  align-items: flex-start;
}

.summary-item img {
  width: 150px;
  border-radius: 6px;
  border: 1px solid #eee;
}

.summary-item p {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 2px;
  color: #111;
}

.summary-item span {
  font-size: 12px;
  color: #777;
}

/* QUANTITY BOX */
.qty-box {
  display: inline-flex;
  border: 1px solid #1a4cff;
  border-radius: 6px;
  overflow: hidden;
  margin-top: 6px;
}

.qty-box button {
  width: 28px;
  border: none;
  background: #f1f5ff;
  color: #1a4cff;
  font-weight: 600;
  cursor: pointer;
}

.qty-box button:hover {
  background: #e0e9ff;
}

.qty-box input {
  width: 34px;
  border: none;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
}

/* COUPON */
.coupon {
  display: flex;
  gap: 10px;
  margin: 18px 0;
}

.coupon input {
  flex: 1;
  padding: 8px 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 13px;
}

.coupon button {
  background: black;
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 13px;
  cursor: pointer;
}

.coupon button:hover {
  background: #0f3dff;
}

/* PRICE ROWS */
.price-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 10px;
  color: #333;
}

.price-row.total {
  font-weight: 600;
  font-size: 15px;
  border-top: 1px solid #e6ecff;
  padding-top: 12px;
  margin-top: 12px;
}

/* DISCOUNT */
.discount {
  color: #17a24a;
  font-weight: 500;
}

/* Add to your style.css file */
.category-badge {
  width: 101px;
    background: #4CAF50;
    color: white;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 12px;
    display: inline-block;
    margin: 5px 0;
}

.product-filter {
    margin-top: 10px;
}

.product-filter select {
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
}

.no-products {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px;
    font-size: 18px;
    color: #666;
}

/* Active category style */
#categoryList li.active a {
    font-weight: bold;
}

.update-btn {
    background: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
}

.update-btn:hover {
    background: #45a049;
}

.qty-box {
    
    align-items: center;
    margin-top: 10px;
}

.qty-box button {
    width: 30px;
    height: 30px;
    background: #f0f0f0;
    border: 1px solid #ddd;
    cursor: pointer;
    font-size: 16px;
}

.qty-box input {
    width: 50px;
    height: 30px;
    text-align: center;
    border: 1px solid #ddd;
    margin: 0 5px;
}

/* Optional: Style for empty cart message */
.cart-left > form > div {
    text-align: center;
    padding: 40px;
    color: #666;
}

.cart-left > form > div a {
    color: #4CAF50;
    text-decoration: none;
    font-weight: bold;
}

.cart-left > form > div a:hover {
    text-decoration: underline;
}

/* Add to your style.css file */
.category-badge {
    background: #4CAF50;
    color: white;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 12px;
    display: inline-block;
    margin: 5px 0;
}

.product-filter {
    margin-top: 10px;
}

.product-filter select {
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
}

.no-products {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px;
    font-size: 18px;
    color: #666;
}

/* Active category style */


.commitment-section {
  background: #f7f7f7;
  width: 92%;
  max-width: 1440px;
  margin: 0 auto;      /* center align */
  padding: 30px 20px;
  background: #fff;
}


.commitment-container {
  max-width: 1200px;
  margin: auto;
}

.commitment-heading {
  text-align: center;
  margin-bottom: 50px;
}

.commitment-heading h2 {
  font-size: 32px;
  color: #0f2a44;
  margin-bottom: 10px;
}

.commitment-heading p {
  color: #6b7280;
  max-width: 600px;
  margin: auto;
}

/* GRID */
/* GRID */
.commitment-boxes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 22px;
}

/* BOX */
.commitment-box {
  padding: 28px 18px;   /* 👈 pehle 40px 25px */
  border: 2px solid #2f80ff;
  border-radius: 16px; /* thoda compact */
  text-align: center;
  background: #fff;
}

/* ICON CIRCLE */
.icon-circle {
  width: 70px;        /* 👈 pehle 90px */
  height: 70px;
  background: #fff1ec;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;    /* 👈 pehle 36px */
  margin: 0 auto 16px;
}

/* HEADING */
.commitment-box h4 {
  font-size: 18px;    /* 👈 pehle 20px */
  font-weight: 600;
  color: #0f2a44;
  margin-bottom: 8px;
}

/* TEXT */
.commitment-box p {
  font-size: 14px;    /* 👈 thoda chota */
  color: #6b7280;
  line-height: 1.5;
}


.order-section{ 
  padding:80px 5%;
  background:#f7fbff;
  font-family:'Poppins',sans-serif;
}

.order-title{
  text-align:center;
  margin-bottom:50px;
}

.order-title h2{
  font-size:38px;
  color:#12243a;
  margin-bottom:10px;
}

.order-title p{
  color:#6c7a89;
  font-size:15px;
}

/* GRID */
.order-steps{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:25px;
}

/* CARD */
.order-card{
  background:#fff;
  padding:30px 22px;
  border-radius:14px;
  text-align:center;

  /* NEW */
  border:1.5px solid #dbeafe;

  box-shadow:0 6px 18px rgba(0,0,0,.05);
  transition:all .3s ease;
}

.order-card:hover{
  transform:translateY(-6px);

  /* hover border */
  border-color:#0d6efd;

  box-shadow:0 14px 35px rgba(13,110,253,.18);
}

/* ICON */
.order-icon{
  width:60px;
  height:60px;
  margin:0 auto 18px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;

  /* NEW */
  border:2px solid #dbeafe;
  background:#eaf4ff;
  transition:.3s;
}

.order-card:hover .order-icon{
  border-color:#0d6efd;
  background:#0d6efd;
}

.order-card:hover .order-icon i{
  color:#fff;
}

.order-icon i{
  font-size:26px;
  color:#0d6efd;
}

.order-card h4{
  font-size:16px;
  margin-bottom:8px;
  color:#12243a;
}

.order-card p{
  font-size:13px;
  color:#6c7a89;
  line-height:1.6;
}

/* Responsive */
@media(max-width:900px){
  .order-steps{grid-template-columns:repeat(2,1fr);}
}

@media(max-width:500px){
  .order-steps{grid-template-columns:1fr;}
}
/* Add mobile CSS for sections without responsive styles */

/* Product Detail Page Mobile */
@media (max-width: 768px) {
  .product-wrap {
    flex-direction: column;
    gap: 30px;
  }
  
  .pd-left, .pd-right {
    width: 100%;
  }
  
  .pd-main-img {
    height: auto;
    padding: 20px;
  }
  
  .pd-main-img img {
    margin-top: 0;
    height: 250px;
    object-fit: contain;
  }
  
  .pd-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  
  .pd-tabs button {
    padding: 8px 15px;
    font-size: 14px;
    margin-right: 5px;
    margin-bottom: 5px;
  }
}

/* Cart Page Mobile */
@media (max-width: 768px) {
  .cart-container {
    flex-direction: column;
  }
  
  .cart-item {
    flex-direction: column;
    text-align: center;
  }
  
  .cart-img img {
    width: 100%;
    max-width: 300px;
    margin-bottom: 15px;
  }
  
  .cart-details {
    margin-left: 0;
    margin-top: 15px;
  }
  
  .summary-item {
    flex-direction: column;
    text-align: center;
  }
  
  .summary-item img {
    width: 100%;
    max-width: 200px;
    margin: 0 auto 15px;
  }
}

/* Checkout Page Mobile */
@media (max-width: 768px) {
  .checkout-container {
    flex-direction: column;
  }
  
  .form-row {
    flex-direction: column;
    gap: 0;
  }
  
  .checkout-box {
    padding: 15px;
  }
}

/* Header Mobile Optimization */
@media (max-width: 900px) {
  .header-inner {
    flex-wrap: wrap;
    padding: 10px 5%;
  }
  
  .logo img {
    width: 200px;
  }
  
  .search-box {
    order: 3;
    max-width: 100%;
    margin: 15px 0 0 0;
    width: 100%;
  }
  
  .header-icons {
    display: flex;
    gap: 15px;
    margin-left: auto;
  }
  
  .header-icons span {
    margin-left: 0;
    font-size: 20px;
  }
  
  .login-register {
    margin-left: 0;
    font-size: 14px;
  }
}

/* Nav Bar Mobile */
@media (max-width: 900px) {
  .nav-bar {
    padding: 10px 5%;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .category-dropdown {
    margin-right: 0;
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
  }
  
  .category-dropdown select {
    margin-left: 0;
    width: 100%;
    max-width: 300px;
  }
  
  .nav-bar a {
    margin: 5px 10px;
    font-size: 14px;
  }
}

/* Health Hero Mobile */
@media (max-width: 768px) {
  .health-hero {
    height: auto;
    padding: 40px 5%;
    flex-direction: column;
    text-align: center;
  }
  
  .hero-content h1 {
    font-size: 32px;
  }
  
  .hero-visual img {
    width: 100%;
    max-width: 300px;
    margin-top: 30px;
  }
}

/* About Section Mobile */
@media (max-width: 900px) {
  .about-wrap {
    flex-direction: column;
  }
  
  .about-images, .about-info {
    width: 100%;
  }
  
  .about-small {
    right: 10px;
    bottom: 30px;
    width: 40%;
  }
}

/* Offer Section Mobile */
@media (max-width: 900px) {
  .offer-section {
    padding: 30px 5%;
    margin: 20px 5%;
  }
  
  .offer-head {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .offer-head p {
    border-left: none;
    padding-left: 0;
    border-top: 2px solid #3aa0ff;
    padding-top: 15px;
  }
  
  .offer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .offer-grid {
    grid-template-columns: 1fr;
  }
}

/* Commit Section Mobile */
@media (max-width: 900px) {
  .commit-wrap, .exp-wrap {
    flex-direction: column;
    gap: 30px;
  }
  
  .commit-left, .commit-right, .exp-left, .exp-right {
    width: 100%;
  }
  
  .commit-badge {
    position: relative;
    right: 0;
    bottom: 0;
    margin: 20px auto 0;
    width: 120px;
  }
  
  .exp-right {
    text-align: center;
  }
}

/* FAQ Section Mobile */
@media (max-width: 768px) {
  .faq-section {
    padding: 0 15px;
  }
  
  .faq-section h3 {
    font-size: 22px;
  }
  
  .faq-question {
    padding: 15px 10px;
    font-size: 14px;
  }
  
  .faq-hero h2 {
    font-size: 24px;
  }
}

/* Contact Banner Mobile */
@media (max-width: 768px) {
  .contact-banner h1 {
    font-size: 32px;
  }
}

/* Deal Section Mobile */
@media (max-width: 768px) {
  .deal-card {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  
  .big img, .small img {
    max-width: 100%;
  }
}

/* Category Info Mobile */
@media (max-width: 768px) {
  .safety-info, .cialis-info, .levitra-info {
    width: auto;
    margin: 15px 5% 40px;
    padding: 0;
  }
}

/* Commitment Section Mobile */
@media (max-width: 768px) {
  .commitment-boxes {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .commitment-heading h2 {
    font-size: 26px;
  }
}

/* Order Steps Mobile */
@media (max-width: 768px) {
  .order-title h2 {
    font-size: 28px;
  }
  
  .order-card {
    padding: 20px 15px;
  }
}

/* Blog Hero Mobile */
@media (max-width: 768px) {
  .blog-hero {
    padding: 30px 20px;
    height: auto;
  }
  
  .blog-hero-content h1 {
    font-size: 28px;
  }
}


/* Very Small Screens (Below 480px) */
@media (max-width: 480px) {
  .topbar-inner {
    font-size: 12px;
    gap: 10px;
  }
  
  .logo img {
    width: 150px;
  }
  
  .hero-content h1 {
    font-size: 28px;
  }
  
  .product-head h2 {
    font-size: 20px;
  }
  
  .view-all {
    padding: 4px 10px;
    font-size: 13px;
  }
  
  .btn-row {
    flex-direction: column;
  }
  
  .cart-btn, .buy-btn {
    margin-left:40px;
    width: 100%;
  }
  
  .blog-related-title {
    font-size: 24px;
  }
  
  .blog-heading h2 {
    font-size: 28px;
  }
}

/* Fix for horizontal scrolling */
@media (max-width: 768px) {
  body {
    overflow-x: hidden;
  }
  
  * {
    max-width: 100%;
  }
}     




.header-icons{
  display:flex;
  gap:22px;
  align-items:center;
}

/* icon base */
.header-icons .icon{
  position:relative;
  font-size:22px;
  cursor:pointer;
  color:#111827;
  transition:all .25s ease;
}

/* hover */
.header-icons .icon:hover{
  color:#2563eb;
  transform:translateY(-1px);
}

/* cart badge */
.cart-icon .cart-count{
  position:absolute;
  top:-8px;
  right:-10px;
  min-width:18px;
  height:18px;
  padding:0 5px;

  display:flex;
  align-items:center;
  justify-content:center;

  background:linear-gradient(135deg,#ef4444,#dc2626);
  color:#fff;
  font-size:11px;
  font-weight:700;

  border-radius:999px;
  border:2px solid #fff;

  box-shadow:0 4px 12px rgba(239,68,68,0.45);
}

.auth-buttons{
  display:flex;
  gap:10px;
  align-items:center;
}

.auth-buttons .btn{
  padding:7px 14px;
  border-radius:6px;
  font-size:14px;
  text-decoration:none;
  transition:0.3s ease;
}

.login-btn{
  border:1px solid #2563eb;
  color:#2563eb;
  background:#fff;
}

.login-btn:hover{
  background:#2563eb;
  color:#fff;
}

.signup-btn{
  background:#2563eb;
  color:#fff;
}

.signup-btn:hover{
  background:#1e40af;
}
.cart-icon{
  position:relative;
}

.cart-count{
  position:absolute;
  top:-6px;
  right:-8px;
  background:#ef4444;
  color:#fff;
  font-size:11px;
  padding:2px 6px;
  border-radius:50%;
  font-weight:600;
}
              
  .footer-col ul li a{
  color:#cfd8e3;
  text-decoration:none;
  font-size:14px;
  transition:all 0.3s ease;
}

.footer-col ul li a:hover{
  color:#ffffff;
  padding-left:6px;
}



@media (max-width:768px){
  .burger{
    display:block;
    font-size:24px;
    cursor:pointer;
    z-index:9999;   /* 🔥 MOST IMPORTANT */
  }
}

/* burger hidden on desktop */
.burger{
  display:none;
  font-size:24px;
  cursor:pointer;
}

/* MOBILE */
@media (max-width:768px){

  .burger{
      margin-top:-120px;
    display:block;
  }

  .header-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    position:relative;
    padding:10px 12px;
    flex-wrap:wrap;
  }

  /* logo center */
  .logo{
    position:absolute;
    left:50%;
    transform:translateX(-50%);
  }

  .logo img{
    margin-top: -17px;
    margin-left: 12px;
    width:150px;
    max-height:42px;
  }

  /* search full row */
  .search-box{
    width:100%;
    margin-top:100px;
  }

  /* ✅ ONLY AUTH BUTTONS MOVE UP */
  .auth-buttons{
      margin-right: 38px;
      margin-top:-215px;
    width:100%;
    justify-content:center;
    transform:translateY(-28px); /* ← guaranteed move */
  }

  /* nav hidden */
  .nav-bar{
    display:none;
    flex-direction:column;
    gap:12px;
    padding:12px;
  }

  .nav-bar.active{
    display:flex;
  }
}

/* ========== TESTIMONIAL SECTION - FIXED ========== */
.testimonial-section { 
  padding: 30px 6%;
  text-align: center;
  font-family: 'Inter', sans-serif;
}

.testimonial-section h2 {
  font-size: 32px;
  color: #0f172a;
}

.subtitle {
  max-width: 600px;
  margin: 10px auto 40px;
  color: #64748b;
  font-size: 15px;
}

/* WRAPPER */
.testimonial-wrapper {
  position: relative;
  max-width: 100%;
  overflow: hidden;
  padding: 0 40px;
}

/* CONTAINER - FLEX (not grid) */
.testimonial-container {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease-in-out;
  will-change: transform;
}

/* CARD */
.testimonial-card {
  flex: 0 0 calc(25% - 15px);
  background: #ffffff;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.07);
  min-height: 230px;
  box-sizing: border-box;
}

.testimonial-card:hover {
  border-color: #22c55e;
  box-shadow: 0 14px 32px rgba(34, 197, 94, 0.18);
  transform: translateY(-5px);
}

.avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2bb673, #1a8a5a);
  margin-bottom: 10px;
}

.testimonial-card h4 {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
}

.testimonial-card span {
  font-size: 12px;
  color: #64748b;
}

.testimonial-card p {
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.5;
  color: #334155;
}

/* ARROWS */
.arrow {
  display: flex;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  font-size: 18px;
  align-items: center;
  justify-content: center;
}

.arrow:hover {
  background: #22c55e;
  color: white;
  border-color: #22c55e;
}

.arrow.left {
  left: 0;
}

.arrow.right {
  right: 0;
}

/* DOTS */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.dot {
  width: 8px;
  height: 8px;
  background: #cbd5e1;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  width: 25px;
  background: #22c55e;
  border-radius: 10px;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .testimonial-card {
    flex: 0 0 calc(50% - 10px);
  }
}

@media (max-width: 600px) {
  .testimonial-card {
    flex: 0 0 100%;
  }
  
  .testimonial-wrapper {
    padding: 0 30px;
  }
  
  .arrow {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }
}   





/* ======================================== */
/* SEARCH WITH LIVE SUGGESTIONS */
/* ======================================== */

.search-container {
    position: relative;
    flex: 1;
    max-width: 500px;
    margin-left: 20px;
}

.search-box {
    display: flex;
    width: 100%;
    border: 2px solid #e2e8f0;
    border-radius: 50px;
    overflow: hidden;
    background: white;
    transition: all 0.3s ease;
}

.search-box:focus-within {
    border-color: #0066cc;
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.search-box input {
    flex: 1;
    padding: 12px 18px;
    border: none;
    outline: none;
    font-size: 14px;
    background: transparent;
}

.search-box button {
    background: #0066cc;
    border: none;
    padding: 0 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.search-box button:hover {
    background: #0052a3;
}

.search-box button svg {
    fill: white;
}

/* Search Suggestions Dropdown */
.search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    margin-top: 8px;
    max-height: 400px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
    border: 1px solid #e2e8f0;
}

.search-suggestions.show {
    display: block;
    animation: fadeInDown 0.2s ease;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Suggestion Item */
.suggestion-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    text-decoration: none;
    color: #1e293b;
    transition: background 0.2s;
    border-bottom: 1px solid #f1f5f9;
    cursor: pointer;
}

.suggestion-item:last-child {
    border-bottom: none;
}

.suggestion-item:hover,
.suggestion-item.selected {
    background: #f8fafc;
}

/* Suggestion Image */
.suggestion-img {
    width: 45px;
    height: 45px;
    background: #f1f5f9;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.suggestion-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.suggestion-img .no-img {
    font-size: 10px;
    color: #94a3b8;
    text-align: center;
}

/* Suggestion Info */
.suggestion-info {
    flex: 1;
}

.suggestion-name {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #1e293b;
}

.suggestion-name mark {
    background: #fef3c7;
    color: #d97706;
    padding: 0 2px;
    border-radius: 3px;
}

.suggestion-price {
    font-size: 12px;
    color: #0066cc;
    font-weight: 600;
}

.suggestion-price small {
    font-size: 11px;
    color: #64748b;
    font-weight: normal;
}

/* Suggestion Arrow */
.suggestion-arrow {
    color: #94a3b8;
    font-size: 14px;
    flex-shrink: 0;
}

/* Loading State */
.suggestion-loading {
    padding: 20px;
    text-align: center;
    color: #64748b;
    font-size: 13px;
}

.suggestion-loading::after {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #e2e8f0;
    border-top-color: #0066cc;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
    margin-left: 8px;
    vertical-align: middle;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* No Results */
.no-results {
    padding: 30px;
    text-align: center;
    color: #64748b;
}

.no-results p {
    margin: 0 0 5px 0;
    font-size: 14px;
}

.no-results small {
    font-size: 12px;
    color: #94a3b8;
}

/* View All Link */
.view-all-link {
    padding: 10px 15px;
    background: #f8fafc;
    text-align: center;
    border-top: 1px solid #e2e8f0;
}

.view-all-link a {
    color: #0066cc;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    display: block;
}

.view-all-link a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .search-container {
        max-width: 100%;
        margin-left: 0;
        margin-top: 10px;
    }
    
    .search-suggestions {
        max-height: 350px;
    }
    
    .suggestion-item {
        padding: 10px 12px;
    }
    
    .suggestion-img {
        width: 35px;
        height: 35px;
    }
    
    .suggestion-name {
        font-size: 13px;
    }
}    


/* 📱 MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .pd-qty {
    margin: 0 auto; /* center */
  }

  .pd-qty button {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  .pd-qty input {
    width: 45px;
    height: 36px;
    font-size: 14px;
  }
}

/* 📱 SMALL MOBILE */
@media (max-width: 480px) {
  .pd-qty {
    transform: scale(0.95); /* thoda compact */
  }
}
/* 📱 Mobile pe show */
@media (max-width: 768px) {
  .pd-extra {
    display: block;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    color: #666;
    text-align: center;
    font-size: 14px;
    cursor: pointer;
  }

  .pd-extra:hover {
    color: #000;
  }
}