/* ====================================== */
/*   MALIK ART - Header & Top Bar Design   */
/*   Clean + Optimized Version             */
/* ====================================== */

/* ---------- Logo Resize ---------- */
#masthead .logo img {
  max-height: 65px;
  width: auto;
}
/* ---------- Elegant Top Bar (Final) ---------- */
.top-dark-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #3a3a3a;               /* Light dark grey (pehle se halka) */
  color: #fff;                        /* White text */
  font-size: 15px;
  font-weight: 500;
  padding: 12px 25px;                 /* Inner spacing */
  margin: 10px auto;                  /* Balanced top-bottom space */
  width: 100%;                        
  max-width: 1280px;                  /* Overflow nahi hoga */
  box-sizing: border-box;             
  box-shadow: 0 2px 5px rgba(0,0,0,0.25);
  flex-wrap: wrap;
  gap: 15px;
}

.top-left {
  letter-spacing: 0.2px;
  flex: 1;
}
.top-right {
  display: flex;
  gap: 25px;
  white-space: nowrap;
}
/* Icon Color (Golden for readability) */
.top-dark-bar span i {
  color: #f5c842;                     /* Golden icon color (padhne mein aasani hogi) */
}
.top-dark-bar span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  transition: color 0.3s ease;
}
.top-dark-bar span:hover {
  color: #f5c842;                     /* Golden hover for text */
}
....
/* ----------- Section Heading ----------- */
.category-section {
  text-align: center;
  margin: 60px auto 40px;
  max-width: 1300px;
}

.category-heading {
  font-size: 28px;
  font-weight: 700;
  color: #111;
  margin-bottom: 30px;
  position: relative;
}

.category-heading::after {
  content: "";
  display: block;
  width: 80px;
  height: 2px;
  background: #111;
  margin: 10px auto 0;
}

/* ----------- Category Grid ----------- */
.category-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.category-item {
  position: relative;
  overflow: hidden;
  text-align: center;
  border-radius: 10px;
  width: calc(20% - 25px);   /* 5 images per row */
  background: #fff;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.category-item h4 {
  font-size: 16px;
  font-weight: 600;
  color: #111;
  padding: 10px 0 15px;
}

.category-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.2);
}

.category-item:hover img {
  transform: scale(1.05);
}

/* ----------- Responsive Fix ----------- */
@media (max-width: 1000px) {
  .category-item { width: calc(33.33% - 20px); }
}
@media (max-width: 700px) {
  .category-item { width: calc(50% - 20px); }
}
@media (max-width: 480px) {
  .category-item { width: 100%; }
}

...

```css
/* ========================= */
/*  Popular Products Section */
/* ========================= */

.popular-products-section {
  text-align: center;
  margin: 60px auto 40px;
  max-width: 1300px;
}

.popular-heading {
  font-size: 28px;
  font-weight: 700;
  color: #111;
  margin-bottom: 30px;
  position: relative;
}

.popular-heading::after {
  content: "";
  display: block;
  width: 80px;
  height: 2px;
  background: #111;
  margin: 10px auto 0;
}

/* ----------- Product Grid ----------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));  /* 4 products per row */
  gap: 30px;
}

/* ----------- Single Product ----------- */
.product-item {
  text-align: left;
}

.product-item a {
  text-decoration: none;
  color: inherit;
  display: block;
}

.product-image {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
  margin-bottom: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.product-title {
  font-size: 16px;
  font-weight: 600;
  color: #111;
  margin-bottom: 4px;
}

.product-price {
  font-size: 14px;
  font-weight: 500;
  color: #666;
}

/* Hover effect */
.product-item:hover .product-image {
  transform: translateY(-6px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.18);
}

.product-item:hover .product-image img {
  transform: scale(1.02);
}

/* ----------- Responsive ----------- */
@media (max-width: 1000px) {
  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 500px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
  .product-item {
    text-align: center;
  }
}
...
/* ================================================= */
/*   Quality & Labels Section (Two Column Layout)    */
/* ================================================= */
.quality-section {
  margin: 60px auto 40px;
  max-width: 1300px;
  padding: 0 20px;
}
.main-heading {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: #111;
  margin-bottom: 15px;
}
.main-subtext {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}
.feature-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
.feature-item {
  flex: 1;
  min-width: 48%;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  overflow: hidden;
  border: 1px solid #f0f0f0;
}
.feature-image-container img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease;
}
.feature-content {
  padding: 25px;
}
.feature-title {
  font-size: 22px;
  font-weight: 700;
  color: #111;
  margin-bottom: 12px;
}
.feature-description {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
}
.feature-item:hover .feature-image-container img {
  transform: scale(1.05);
}
@media (max-width: 900px) {
  .feature-item { min-width: 100%; }
  .feature-grid { gap: 20px; }
}
...
/* ========================= */
/*  Happy Customers Section  */
/* ========================= */
.happy-customers-section {
  margin: 80px auto;
  max-width: 1200px;
  padding: 0 20px;
  text-align: center;
}

.testimonial-heading {
  font-size: 28px;
  font-weight: 700;
  color: #111;
  margin-bottom: 15px;
  position: relative;
}

.testimonial-heading::after {
  content: "";
  width: 80px;
  height: 2px;
  background: #111;
  display: block;
  margin: 10px auto 40px;
}

.testimonial-container {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

.testimonial-slider {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
}

.testimonial-card {
  flex: 0 0 calc( (100% - 40px) / 3 ); /* 3 cards + 2 gaps (20px each) = full width */
  background: #f9f9f9;
  padding: 30px 25px;
  border-radius: 10px;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0.7;
  transform: scale(0.95);
  box-sizing: border-box;
}

.testimonial-card.active {
  background: #1a1a1a;
  color: #fff;
  opacity: 1;
  transform: scale(1);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.testimonial-card:hover {
  opacity: 1;
  transform: scale(1.02);
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-bottom: 15px;
  object-fit: cover;
}

.testimonial-name {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

.testimonial-location {
  font-size: 14px;
  color: #888;
  margin-bottom: 15px;
}

.testimonial-card.active .testimonial-location {
  color: #ddd;
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.6;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: background 0.3s ease;
}

.dot.active {
  background: #1a1a1a;
}

/* Mobile Responsive (1 card per row) */
@media (max-width: 992px) {
  .testimonial-card {
    flex: 0 0 100%;
  }
  .testimonial-card:not(.active) {
    display: none;
  }
  .testimonial-slider {
    transform: translateX(0)!important;
  }
}
..
/* ========================= */
/*  Footer Design             */
/* ========================= */
.site-footer {
  background: #1a1a1a;
  color: #fff;
  padding: 60px 20px 30px;
  margin-top: 80px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

/* Footer Brand Column */
.footer-brand {
  grid-column: 1 / 2;
}

.footer-logo img {
  max-width: 120px;
  height: auto;
  margin-bottom: 20px;
}

.footer-tagline {
  font-size: 15px;
  line-height: 1.6;
  color: #ddd;
  margin-bottom: 10px;
}

.footer-tagline strong {
  color: #f5c842;
}

.footer-about {
  font-size: 14px;
  color: #aaa;
  line-height: 1.5;
}

/* Footer Links Columns */
.footer-links h4, .footer-contact h4, .footer-delivery h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
}

.footer-links h4::after, .footer-contact h4::after, .footer-delivery h4::after {
  content: "";
  width: 40px;
  height: 2px;
  background: #f5c842;
  display: block;
  margin: 8px 0 0;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 12px;
}

.footer-links ul li a {
  color: #ddd;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: #f5c842;
}

/* Footer Contact Info */
.footer-contact p {
  color: #ddd;
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-contact p i {
  color: #f5c842; /* Icon color visible */
  margin-top: 3px;
  font-size: 16px;
}

.footer-contact p a {
  color: #ddd;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact p a:hover {
  color: #f5c842;
}

/* Footer Delivery Logos */
.footer-delivery .delivery-logos {
  display: flex;
  gap: 18px;
  align-items: center;
}

.footer-delivery .delivery-logos img {
  height: 35px;
  width: auto;
}

/* Footer Bottom (Adjusted Border) */
.footer-bottom {
  max-width: 1200px;
  margin: 20px auto 0; /* Line ko upar laaya */
  padding-top: 20px;
  border-top: 1px solid #333; /* Grey line */
  text-align: center;
  font-size: 14px;
  color: #888;
}

/* Responsive */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
  .footer-delivery .delivery-logos {
    justify-content: center;
  }
}
..
/* ========================= */
/*  About Us Section Design   */
/* ========================= */
.about-stats-bar {
  background: #f9f9f9;
  padding: 40px 20px;
  margin-bottom: 60px;
}

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  gap: 20px;
  text-align: center;
}

.stat-item {
  flex: 1;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #f5c842; /* Golden brand color */
  margin-bottom: 8px;
}

.stat-label {
  font-size: 16px;
  color: #555;
  font-weight: 500;
}

/* About Content Section */
about-section {
  max-width: 1200px;
  margin: 0 auto 80px;
  padding: 0 20px;
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-content h2 {
  font-size: 32px;
  font-weight: 700;
  color: #111;
  margin-bottom: 25px;
  line-height: 1.3;
}

.about-content p {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 15px;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .stats-container {
    flex-wrap: wrap;
  }
  .stat-item {
    flex: 0 0 45%;
    margin-bottom: 20px;
  }
  .about-container {
    grid-template-columns: 1fr;
  }
  .about-image {
    order: -1; /* Image upar aaega mobile par */
  }
}

@media (max-width: 576px) {
  .stat-item {
    flex: 0 0 100%;
  }
  .stat-number {
    font-size: 36px;
  }
  .about-content h2 {
    font-size: 26px;
  }
}