/* ===== Reset & Base ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  color: #222;
  background-color: #f9f9f9;
  line-height: 1.6;
}

/* Navbar container */
.navbar {
  background-color: #5e2b97;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 6px 20px;
}

/* Row 1 (logo + site name + hamburger for mobile) */
.top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-left: 10px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.main-logo {
  height: 65px;
  width: auto;
  border-radius: 6px;
}

.site-text {
  font-size: 22px;
  font-weight: bold;
}

/* Hide hamburger by default (only mobile shows it) */
.hamburger {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}

/* Row 2 (unit text + logo) */
.second-row {
  display: flex;
  flex-direction: column; 
  align-items: center;
  gap: 2px;
  margin: 3px 20px 4px 0;
}

.unit-text {
  font-size: 12px;
  font-weight: bold;
}

.pashas-logo {
  height: 75px;
  width: auto;
}

/* Nav links (row 3) */
.nav-links {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 5px;
  flex: 1;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.35rem;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #ffeb3b;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -3px;
  left: 0;
  background-color: #ffeb3b;
  transition: width 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Desktop */
@media (min-width: 769px) {
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
  }

  .nav-links {
    position: absolute;  
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
  }

  .nav-links a {
    font-size: 19px;
    font-weight: 500;
    color: #fff;
  }
}

/* Mobile only */
@media (max-width: 768px) {
  .navbar {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 10px;
  }

  .top-row {
    width: 100%;
  }

  .brand {
    gap: 8px;
    text-align: center;
  }

  .main-logo {
    height: 55px;
  }

  .site-text {
    font-size: 18px;
  }

  .hamburger {
    display: block;
  }

  .second-row {
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-top: 5px;
    width: 100%;
    text-align: center;
  }

  .unit-text {
    font-size: 20px;
  }

  .pashas-logo {
    height: 70px;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    width: 100%;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    display: inline-block;
    padding: 5px 0;
  }
}

.hero {
  text-align: center;
  padding: 150px 50px;
  background: url('/assets/img/Shop\ 1bg.jpg') no-repeat center center/cover;
  color: #fff;
  position: relative;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  .hero {
    padding :0px 0px 10px 0px;
    text-align: center;

  }

  .hero .container {
   padding: 10px; 
  }

  .hero::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.02);
    z-index: 0;
  }
  .hero h2 {
    font-size: 30px;
    color: rgb(13, 12, 12);
    background-color: rgba(209, 202, 202, 0.4);
  }
}

.cta-buttons .btn {
  display: inline-block;
  background-color: #6a1b9a;
  color: #fff;
  padding: 10px 20px;
  margin: 10px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
}

/* ===== Categories Section ===== */
.categories {
  padding: 40px 20px;
  background-color: #fff;
}

.categories h3 {
  margin-bottom: 20px;
  text-align: center;
  font-size: 28px;
  color: #5e2b97;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
}

.category-card {
  background: #f3e5f5;
  padding: 20px;
  text-align: center;
  border-radius: 8px;
  font-weight: bold;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.category-card:hover {
  transform: translateY(-4px);
}

.category-buttons {
  margin-top: 20px;
  text-align: center;
}

.category-buttons .btn {
  display: inline-block;
  background-color: #6a1b9a;
  color: #fff;
  padding: 10px 20px;
  margin: 8px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.category-buttons .btn:hover {
  background-color: #5e2b97;
}

/* ===== Delivery / Bulk Info Section ===== */
.delivery-info {
  padding: 40px 20px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  margin: 30px auto;
  max-width: 900px;
}

.delivery-info h3 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #5e2b97;
  text-align: center;
}

.delivery-points {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.delivery-points li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.delivery-points li i {
  color: #fff;
  font-size: 20px;
  background-color: #6a1b9a;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ===== Testimonials Section ===== */
.testimonials {
  padding: 50px 20px;
  background: #f9f9f9;
}

.testimonials h3 {
  text-align: center;
  font-size: 30px;
  margin-bottom: 30px;
  color: #5e2b97;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* reduced min width */
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
  justify-items: center;
}

.testimonial-card {
  background: #fff;
  border-radius: 12px;
  padding: 10px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
  width: 100%;
  max-width: 500px; /* Increased */
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

.testimonial-btn-container {
  margin-top: 30px;
  text-align: center;
}

@media (max-width: 768px) {
  .testimonial-grid {
    grid-template-columns: 1fr; /* stack on tablets/mobiles */
    gap: 15px;
  }

  .testimonial-card {
    max-width: 100%; 
  }
}

.view-all-btn {
  background-color: #5e2b97;
  color: #fff;
  padding: 12px 24px;
  font-size: 16px;
  border: none;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.view-all-btn:hover {
  background-color: #4b2180;
}

/* ===== Brand Partners Section ===== */
.partners {
  padding: 50px 20px;
  background: #fff;
}

.partners h3 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 30px;
  color: #5e2b97;
}

.partner-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  border-radius: 15px;
}

.partner-logos img {
  max-height: 120px;
  max-width: 120px;
  object-fit: contain;
  transition: transform 0.3s ease;
  background-color: #f3e5f5;
}

.partner-logos img:hover {
  transform: scale(1.1);
}

/* About Us Section with Map */
.about-flex {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  flex-wrap: wrap; /* stack on small screens */
  padding: 40px 20px 20px 20px; /* reduced bottom padding from 40px to 20px */
  background-color: #f8f8f8;
}

.about-text {
  flex: 1 1 400px; /* flexible width, min 400px */
}

.about-text h3 {
  margin-bottom: 15px;
  color: #5e2b97;
}

.about-map {
  flex: 1 1 400px;
}

.about-map iframe {
  width: 100%;
  height: 100%;
  min-height: 300px;
  border: 3px solid #5e2b97; /* purple border */
  border-radius: 6px;
}

footer {
  background-color: #5e2b97;
  color: #fff;
  text-align: center;
  padding: 0px;
}
