
    
    body {
      background-color: #f4f7fc;
      color: #405f60;
    }
    
    /* Brand Colors - Navy Blue Theme */
    :root {
      --navy:#405f60;
      --navy-light: #405f60;
       /* --grycyon :#405f60 */
      --navy-soft:#405f60;
      --gold: #c6a43f;
      --gold-light: #d4b15c;
      --white: #ffffff;
      --offwhite: #f8fafd;
    }
    
    /* WhatsApp Floating Button */
    .whatsapp-btn {
      position: fixed;
      bottom: 25px;
      right: 25px;
      background: #25d366;
      color: white;
      width: 60px;
      height: 60px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 30px;
      box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
      z-index: 9999;
      text-decoration: none;
      transition: all 0.3s;
      border: 3px solid white;
    }
    
    .whatsapp-btn:hover {
      background: #128C7E;
      transform: scale(1.1);
      color: white;
      box-shadow: 0 10px 30px rgba(18, 140, 126, 0.5);
    }
    
    /* Top Bar */
    .top-bar {
      background: var(--navy);
      color: rgba(255,255,255,0.8);
      padding: 8px 0;
      font-size: 13px;
    }
    
    .weather {
      color: var(--gold);
    }
    
    /* Navigation */
    .navbar {
      background: white !important;
      padding: 12px 0;
      box-shadow: 0 4px 20px rgba(10,26,47,0.08);
    }
    
    /* LOGO - HAFIZ MART OPTICAL */
    .brand-logo {
      display: flex;
      flex-direction: column;
      line-height: 1.2;
    }
    
    .clear-vision {
      font-size: 12px;
      font-weight: 600;
      color: var(--gold);
      letter-spacing: 3px;
      text-transform: uppercase;
      margin-bottom: 2px;
    }
    
    .perfect-style {
      font-size: 11px;
      font-weight: 500;
      color: var(--navy-soft);
      letter-spacing: 2px;
      text-transform: uppercase;
    }
    
    .hafiz-mart {
      font-size: 28px;
      font-weight: 800;
      color: var(--navy);
      line-height: 1;
      margin: 2px 0;
      letter-spacing: -0.5px;
    }
    
    .optical {
      font-size: 14px;
      font-weight: 700;
      color: var(--gold);
      letter-spacing: 6px;
      text-transform: uppercase;
      margin-top: 2px;
    }
    
    /* Logo circle icon */
    .logo-icon {
      width: 50px;
      height: 50px;
      background: var(--navy);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 15px;
    }
    
    .logo-icon i {
      font-size: 28px;
      color: var(--gold);
    }
    
    .nav-link {
      font-weight: 600;
      color: var(--navy) !important;
      margin: 0 12px;
      font-size: 15px;
      transition: all 0.2s;
    }
    
    .nav-link:hover {
      color: var(--gold) !important;
    }
    
    .search-box {
      background: #f0f4f9;
      border-radius: 40px;
      padding: 5px 20px;
      display: flex;
      align-items: center;
      border: 1px solid #e1e8f0;
    }
    
    .search-box input {
      border: none;
      background: transparent;
      padding: 10px 0;
      width: 200px;
      font-size: 14px;
    }
    
    .search-box input:focus {
      outline: none;
    }
    
    .search-box i {
      color: var(--navy-soft);
    }
    
    /* Hero Section */
    .hero-section {
      background: linear-gradient(135deg, #f0f7ff 0%, #e6f0fa 100%);
      padding: 40px 0;
    }
    
    .hero-content {
      background: white;
      border-radius: 24px;
      padding: 40px;
      box-shadow: 0 15px 40px rgba(10,26,47,0.05);
      border: 1px solid rgba(198,164,63,0.1);
    }
    
    /* UR BAN VISION with Hafiz Mart colors */
    .urbon-vision {
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
      color: white;
      padding: 25px 30px;
      border-radius: 16px;
      margin-bottom: 30px;
      position: relative;
      overflow: hidden;
    }
    
    .urbon-vision::after {
      content: "👓";
      position: absolute;
      right: 20px;
      bottom: 10px;
      font-size: 80px;
      opacity: 0.1;
    }
    
    .offer-tag {
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 3px;
      color: var(--gold);
    }
    
    .urbon-title {
      font-size: 52px;
      font-weight: 800;
      line-height: 1.1;
      margin: 10px 0 5px;
    }
    
    .discount {
      font-size: 48px;
      font-weight: 800;
      color: var(--gold);
    }
    
    /* Category Pills */
    .category-pills {
      display: flex;
      gap: 15px;
      flex-wrap: wrap;
      margin: 25px 0;
    }
    
    .category-pill {
      background: #f0f4f9;
      padding: 10px 24px;
      border-radius: 40px;
      font-size: 14px;
      font-weight: 600;
      color: var(--navy);
      text-decoration: none;
      transition: all 0.2s;
      border: 1px solid transparent;
    }
    
    .category-pill:hover {
      background: var(--navy);
      color: white;
    }
    
    .category-pill.active {
      background: var(--navy);
      color: white;
      border-color: var(--gold);
    }



/* PRODUCT CARD */
.product-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #edf2f9;
  transition: all 0.3s;
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  border-color: var(--gold-light);
}

/* IMAGE CONTAINER */
.product-img {
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
  position: relative;
  border-bottom: 1px solid #edf2f9;
  margin-bottom: 15px;
  padding: 10px;
}

.product-img img {
  max-width: 90%;
  max-height: 160px;
  object-fit: contain;
  display: block;
}

/* BADGES */
.product-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #0a1a2f;
  color: white;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
  z-index: 10;
  text-transform: uppercase;
}

.badge-hot { background: #dc2626; }
.badge-new { background: #059669; }
.badge-sale { background: #c6a43f; }

/* CARD TITLE */
.product-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

/* PRODUCT PRICE */
.product-price {
  font-size: 20px;
  font-weight: 400;
  color: var(--navy-light);
  margin-bottom: 15px;
}

.product-price span {
  font-size: 15px;
  color: #999;
  font-weight: 400;
  margin-left: 10px;
  text-decoration: line-through;
}

/* ADD TO CART BUTTON */
.btn-add {
  width: 100%;
  padding: 12px 0;
  background: transparent;
  border: 2px solid var(--navy);
  color: var(--navy);
  font-weight: 600;
  border-radius: 30px;
  font-size: 14px;
  transition: all 0.3s;
}

.btn-add i {
  margin-right: 8px;
}

.btn-add:hover {
  
  color: white;
  border-color: #405f60;
  box-shadow: #059669;
}











    .product-card {
  background: white;
  border-radius: 16px;    /* ✅ 20 se 16 karo */
  overflow: hidden;
  box-shadow: 0 8px 25 var(--navy);
  transition: all 0.3s;
  border: 1px solid #edf2f9;
  margin-bottom: 20px;
  padding: 20px;         /* ✅ YEH ADD KARO */
}
        .product-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 40px ;
      border-color: var(--gold-light);
    }
    
.product-img {
  height: 160px !important;     /* ✅ Fixed height - force apply */
  width: 100% !important;      /* ✅ Fixed width - force apply */
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  position: relative;
  border-bottom: 1px solid #edf2f9;
  margin-bottom: 15px;
}

.product-img img {
  
  object-fit: cover;
}
.product-img {
  
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
}



 .product-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


    .product-info { 
      padding: 20px;
    }
    
    .product-title {
      font-size: 16px;
      font-weight: 600;
      color: var(--navy);
      margin-bottom: 8px;
    }
    
    .product-price {
      font-size: 22px;
      font-weight: 700;
      color: var(--navy-light);
      margin-bottom: 15px;
    }
    
    .product-price span {
      font-size: 15px;
      color: #999;
      font-weight: 400;
      margin-left: 10px;
      text-decoration: line-through;
    }
    
    .btn-add {
      width: 100%;
      padding: 12px;
      background: transparent;
      border: 2px solid var(--navy);
      color: var(--navy);
      font-weight: 600;
      border-radius: 30px;
      font-size: 14px;
      transition: all 0.2s;
    }
    
    .btn-add:hover {
      background: var(--navy);
      color: white;
      border-color: var(--gold);
    }
    
    .btn-add i {
      margin-right: 8px;
    }
    
    /* Optics Banner */
    .optics-banner {
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
      border-radius: 24px;
      padding: 50px;
      color: white;
      margin: 40px 0;
      position: relative;
      overflow: hidden;
    }
    
    .optics-banner::before {
      content: "👓";
      position: absolute;
      right: 40px;
      bottom: 20px;
      font-size: 120px;
      opacity: 0.1;
    }
    
    .optics-title {
      font-size: 38px;
      font-weight: 800;
      margin-bottom: 15px;
    }
    
    .optics-sub {
      font-size: 18px;
      opacity: 0.95;
      margin-bottom: 30px;
    }
    
    .btn-optics {
      background: var(--gold);
      color: var(--navy);
      padding: 14px 40px;
      border-radius: 40px;
      font-weight: 700;
      text-decoration: none;
      display: inline-block;
      transition: all 0.3s;
      border: 2px solid transparent;
    }
    
    .btn-optics:hover {
      background: white;
      color: var(--navy);
      transform: translateY(-3px);
      box-shadow: 0 10px 25px rgba(198,164,63,0.3);
    }
    
    /* Categories Section */
    .categories-section {
      background: white;
      padding: 40px;
      border-radius: 24px;
      margin: 40px 0;
      border: 1px solid #edf2f9;
    }
    
    .section-title {
      font-size: 32px;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 30px;
      position: relative;
    }
    
    .section-title::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 0;
      width: 60px;
      height: 3px;
      background: var(--gold);
    }
    
    .category-item {
      display: flex;
      align-items: center;
      padding: 15px 20px;
      background: #f8fbfe;
      border-radius: 14px;
      margin-bottom: 12px;
      transition: all 0.2s;
      cursor: pointer;
      border: 1px solid #eef4fa;
    }
    
    .category-item:hover {
      background: var(--navy);
      color: white;
      transform: translateX(5px);
      border-color: var(--gold);
    }
    
    .category-item:hover .category-name {
      color: white;
    }
    
    .category-icon {
      width: 45px;
      height: 45px;
      background: white;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 15px;
      font-size: 22px;
      color: var(--navy);
    }
    
    .category-name {
      font-weight: 600;
      flex: 1;
      color: var(--navy);
    }
    
    .category-count {
      color: var(--gold);
      font-weight: 600;
    }
    
    /* OTC Card */
    .otc-card {
      background: linear-gradient(145deg, var(--navy) 0%, #0d1f33 100%);
      border-radius: 20px;
      padding: 35px;
      color: white;
      height: 100%;
    }
    
    .otc-title {
      font-size: 42px;
      font-weight: 800;
      color: var(--gold);
      margin-bottom: 15px;
    }
    
    .btn-appointment {
      background: var(--gold);
      color: var(--navy);
      padding: 14px 30px;
      border-radius: 40px;
      font-weight: 700;
      text-decoration: none;
      display: inline-block;
      margin-top: 20px;
      transition: all 0.3s;
    }
    
    .btn-appointment:hover {
      background: white;
      color: var(--navy);
    }
    
    /* Footer */
    .footer {
      background:var(--navy);
      color: white;
      padding: 70px 0 30px;
      margin-top: 60px;
    }
    
    .footer-logo {
      display: flex;
      flex-direction: column;
      margin-bottom: 20px;
    }
    
    .footer-hafiz {
      font-size: 28px;
      font-weight: 800;
      color: white;
      line-height: 1;
    }
    
    .footer-optical {
      font-size: 14px;
      font-weight: 700;
      color: var(--gold);
      letter-spacing: 6px;
      text-transform: uppercase;
      margin-top: 5px;
    }
    
    .footer-text {
      color: #b0c4ce;
      font-size: 14px;
      line-height: 1.7;
      margin-bottom: 25px;
    }
    
    .footer-title {
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 25px;
      color: white;
      position: relative;
    }
    
    .footer-title::after {
      content: '';
      position: absolute;
      bottom: -8px;
      left: 0;
      width: 30px;
      height: 2px;
      background: var(--gold);
    }
    
    .footer-links {
      list-style: none;
      padding: 0;
    }
    
    .footer-links li {
      margin-bottom: 12px;
    }
    
    .footer-links a {
      color: #b0c4ce;
      text-decoration: none;
      font-size: 14px;
      transition: all 0.2s;
    }
    
    .footer-links a:hover {
      color: var(--gold);
      padding-left: 5px;
    }
    
    .contact-info {
      color: #b0c4ce;
      font-size: 14px;
      margin-bottom: 10px;
    }
    
    .contact-info i {
      width: 25px;
      color: var(--gold);
    }
    
    .weather-footer {
      background: rgba(255,255,255,0.05);
      padding: 20px;
      border-radius: 16px;
      margin-top: 20px;
      border-left: 3px solid var(--gold);
    }
    
    .temp {
      font-size: 26px;
      font-weight: 700;
      color: white;
    }
    
    .social-icons a {
      display: inline-block;
      width: 40px;
      height: 40px;
      background: rgba(255,255,255,0.1);
      color: white;
      text-align: center;
      line-height: 40px;
      border-radius: 50%;
      margin-right: 10px;
      transition: all 0.3s;
    }
    
    .social-icons a:hover {
      background: var(--gold);
      color: var(--navy);
      transform: translateY(-3px);
    }
    
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.1);
      margin-top: 50px;
      padding-top: 30px;
      color: #b0c4ce;
    }
    
    @media (max-width: 768px) {
      .urbon-title {
        font-size: 38px;
      }
      .discount {
        font-size: 36px;
      }
      .optics-title {
        font-size: 28px;
      }
      .brand-logo {
        margin-bottom: 15px;
      }
    }
    /* ======================================== */
/* HAFIZ MART OPTICAL - PREMIUM EYEWEAR     */
/* Author: Hafiz Mart Team                 */
/* Version: 1.0                           */
/* ======================================== */

/* ---------------------------------------- */
/* GOOGLE FONTS & BASE STYLES              */



/* ======================================== */
/* HAFIZ MART OPTICAL - PRODUCT CARD FIX   */
/* ======================================== */

/* PRODUCT CARD - EXACT SCREENSHOT JAISA */
.product-card {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 20px !important;
  margin-bottom: 20px;
  transition: all 0.3s;
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* IMAGE CONTAINER - FIXED SIZE */
.product-img {
  width: 100% !important;
  height: 200px !important;     /* Bada kiya 180 → 200 */
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: white !important;
  border-bottom: 1px solid #f0f0f0 !important;
  margin-bottom: 15px !important;
  padding: 10px !important;
}

/* IMAGE - CONTROL SIZE */
.product-img img {
  width: auto !important;
  height: auto !important;
  max-width: 90% !important;
  max-height: 160px !important;  /* Bada kiya 140 → 160 */
  object-fit: contain !important;
  display: block !important;
}

/* BADGES - POSITION FIX */
.product-badge {
  position: absolute;
  top: 15px !important;
  left: 15px !important;
  background: #0a1a2f !important;
  color: white !important;
  padding: 6px 16px !important;
  border-radius: 30px !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  z-index: 10 !important;
  text-transform: uppercase !important;
}

/* HOT BADGE */
.badge-hot {
  background: #dc2626 !important;

}

/* SALE BADGE */
.badge-sale {
  background: #059669 !important;
}

/* PRODUCT TITLE */
.product-title {
  font-size: 18px !important;
  font-weight: 700 !important;
  color: #0a1a2f !important;
  margin-bottom: 8px !important;
}

/* PRODUCT PRICE */
.product-price {
  font-size: 24px !important;
  font-weight: 800 !important;
  color: #0a1a2f !important;
  margin-bottom: 15px !important;
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
}

.product-price span {
  font-size: 16px !important;
  color: #9ca3af !important;
  text-decoration: line-through !important;
  font-weight: 400 !important;
}

/* ADD TO CART BUTTON */
.btn-add {
  width: 100% !important;
  padding: 14px !important;
  background: transparent !important;
  border: 2px solid #0a1a2f !important;
  color: #0a1a2f !important;
  font-weight: 700 !important;
  border-radius: 50px !important;
  font-size: 15px !important;
  transition: all 0.3s !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
}

.btn-add:hover {
  background: #0a1a2f !important;
  color: white !important;
}

/* FASHION VISION BANNER */
.fashion-banner {
  background: linear-gradient(135deg, #000, #1a1a1a);
  padding: 30px;
  border-radius: 16px;
  margin: 30px 0;
  color: white;
}

.fashion-title {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 5px;
}

.fashion-sub {
  font-size: 24px;
  color: #c6a43f;
  font-weight: 600;
}

/* CATEGORY HEADER */
.category-header {
  font-size: 24px;
  font-weight: 700;
  color: #0a1a2f;
  margin: 30px 0 15px;
  border-bottom: 2px solid #e5e7eb;
  padding-bottom: 10px;
}

/* BADGE CONTAINER */
.badge-container {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.btn-primary { /* border visible */
  
  width: 85%;
  padding: 12px 0;
  font-weight: 600;
  border-radius: 30px;
  border: 2px solid var(--navy-light);
  background-color: white !important;
  color: var(--navy-soft);
  transition: all 0.3s ease;
}

/* icon spacing */
.btn-primary i {
  margin-right: 8px;
}

/* hover effect */

.btn-primary:hover {
    background-color: var(--navy) !important;  /* yahan apna color lagana */
  border-color: var(--navy);       /* border bhi same color ka */
  color:white;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);    
}

/* Product Title */
.product-title {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 8px;
}

/* New Price */
.product-price {
  font-size: 22px;
  font-weight: 700;          /* bold */
  color: var(--navy);        /* apna theme color */
}

/* Old Price */
.old-price {
  font-size: 15px;
  margin-left: 10px;
  color: #999;
  position: relative;
}

/* Red strike line */
.old-price::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 2px;
  background: red;      /* red strike line */
  transform: translateY(-50%);
}

/*card hover effect*/
.card {

background: white;
  border-radius: 16px;    /* ✅ 20 se 16 karo */
  overflow: hidden;
  box-shadow: 0 8px 25 var(--navy);
  transition: all 0.3s;
  border: 5px solid #edf2f9;
  margin-bottom: 20px;
  padding: 20px;         /* ✅ YEH ADD KARO */
  
}

.card:hover {
  transform: translateY(-8px);
      box-shadow: 0 20px 40px ;
      border-color: var(--navy-light);
    }
  

.google-rating {
    border-top: 1px solid #eee;
}

.rating-stars {
    font-size: 28px;
    color: #f4c542;
}

.google-btn {
    display: inline-block;
    color: var(--navy-light);
    padding: 12px 30px;
    border-radius: 50px ;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: 0.3s ease;
    border-color: var(--gold);
}

.google-btn:hover {
    transform: scale(1.05);
    background-color: var(--navy);
    color:white;

}

