* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont,
               'Segoe UI', sans-serif;
  color: #333;
  background-color: #ffffff;
}

/* ===========================
   SLIDER HERO (IMAGE)
   =========================== */
  

.slider-hero {
  position: relative;
  width: 100%;
  height: 60vh;
  background-image: url("/assets/images/slider-1.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}



/* Content */
.slider-content {
  position: relative;
  z-index: 2;

  max-width: 1200px;
  height: 100%;
  margin: auto;
  padding: 0 20px;

  display: flex;
  flex-direction: column;
  justify-content: center;

  color: #ffffff;
}

.slider-content h1 {
  font-size: 44px;
  font-weight: 700;
  line-height: 1.2;
  max-width: 650px;
  margin-bottom: 18px;
}

.slider-content p {
  font-size: 18px;
  line-height: 1.6;
  max-width: 600px;
  margin-bottom: 30px;
  opacity: 0.95;
}

/* Buttons */
.slider-actions {
  display: flex;
  gap: 16px;
}

.btn-primary,
.btn-secondary {
  height: 46px;
  padding: 0 24px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;

  transition: all 0.25s ease;
}

/* Primary */
.btn-primary {
  background: #fd8422;
  color: #ffffff;
}

.btn-primary:hover {
  background: #e87312;
}

/* Secondary */
.btn-secondary {
  border: 2px solid #ffffff;
  color: #ffffff;
}

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

/* ===========================
   RESPONSIVE
   =========================== */

@media (max-width: 1024px) {
  .slider-hero {
    height: 70vh;
  }
}

@media (max-width: 768px) {
  .slider-hero {
    height: 16vh;
  }

  .slider-content h1 {
    font-size: 32px;
  }

  .slider-content p {
    font-size: 16px;
  }

  .slider-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }
}


.category-section {
  background: #ffffff;
  padding: 60px 20px;
  padding-top: 0;
}

.category-container {
  max-width: 1200px;
  margin: auto;
}

.section-title {
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 32px;
  text-align: center;
}

/* Grid */
.category-grid {
  display: grid;
  grid-template-columns: repeat(9, 1fr); /* 9 per row */
  gap: 24px;
}

/* Card */
.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-radius: 10px;
  cursor: pointer;
  padding: 10px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
}

.category-card img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin-bottom: 12px;
}

.category-card span {
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

/* ===========================
   RESPONSIVE
   =========================== */

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

@media (max-width: 992px) {
  .category-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

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



/*Top Manufacturer*/

.top-manufacturer-section {
  background: #ffffff;
  padding: 60px 20px;
  padding-top: 0;
}

.top-manufacturer-container {
  max-width: 1200px;
  margin: auto;
}


/* Grid */
.top-manufacturer-grid {
  display: grid;
  grid-template-columns: repeat(9, 1fr); /* 9 per row */
  gap: 24px;
}

/* Card */
.top-manufacturer-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-radius: 10px;
  cursor: pointer;
  padding: 10px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.top-manufacturer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
}

.top-manufacturer-card img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin-bottom: 12px;
}

.top-manufacturer-card span {
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

/* ===========================
   RESPONSIVE
   =========================== */

@media (max-width: 1200px) {
  .top-manufacturer-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

@media (max-width: 992px) {
  .top-manufacturer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 576px) {
  .top-manufacturer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}





/*Featured Retailer*/

.featured-retailers-section {
  background: #ffffff;
  padding: 60px 20px;
  padding-top: 0;
}

.featured-retailers-container {
  max-width: 1200px;
  margin: auto;
}


/* Grid */
.featured-retailers-grid {
  display: grid;
  grid-template-columns: repeat(9, 1fr); /* 9 per row */
  gap: 24px;
}

/* Card */
.featured-retailers-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-radius: 10px;
  cursor: pointer;
  padding: 10px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.featured-retailers-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
}

.featured-retailers-card img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin-bottom: 12px;
}

.featured-retailers-card span {
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

/* ===========================
   RESPONSIVE
   =========================== */

@media (max-width: 1200px) {
  .featured-retailers-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

@media (max-width: 992px) {
  .featured-retailers-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 576px) {
  .featured-retailers-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}


/* ===========================
   STATS SECTION
   =========================== */

.stats-section {
  background: linear-gradient(
    135deg,
    #fd8422 0%,
    #ff9a47 100%
  );
  padding: 60px 20px;
}

.stats-container {
  max-width: 1200px;
  margin: auto;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 28px 16px;

  text-align: center;
  color: #ffffff;

  transition: transform 0.25s ease, background 0.25s ease;
}

.stat-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.2);
}

.stat-number {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 15px;
  font-weight: 500;
  opacity: 0.95;
}

/* ===========================
   RESPONSIVE
   =========================== */

@media (max-width: 992px) {
  .stats-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .stats-container {
    grid-template-columns: 1fr;
  }

  .stat-number {
    font-size: 32px;
  }
}


/* ===========================
   CONTACT INFO SECTION
   =========================== */

.contact-info-section {
  background: #f9f9f9;
  padding: 70px 20px;
}

.contact-info-container {
  max-width: 1200px;
  margin: auto;

  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
}

.text-left {
  text-align: left;
}

.office-name {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}

.office-address {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}

/* Contact List */
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-list li {
  font-size: 15px;
  margin-bottom: 14px;
  color: #444;
}

.contact-list a {
  color: #fd8422;
  text-decoration: none;
  font-weight: 500;
}

.contact-list a:hover {
  text-decoration: underline;
}

/* ===========================
   RESPONSIVE
   =========================== */

@media (max-width: 992px) {
  .contact-info-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}


/* ===========================
   MOBILE BOTTOM NAV (FA ICONS)
   =========================== */

.mobile-bottom-nav {
  display: none;
}

@media (max-width: 768px) {
  .mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 64px;

    background: #ffffff;
    border-top: 1px solid #e5e5e5;

    display: flex;
    justify-content: space-around;
    align-items: center;

    z-index: 1000;
  }

  .nav-item {
    width: 20%;
    height: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-decoration: none;
    color: #666;

    font-size: 11px;
    font-weight: 500;
  }

  .nav-icon {
    font-size: 20px;
    margin-bottom: 4px;
  }

  .nav-item.active,
  .nav-item:hover {
    color: #fd8422;
  }

  /* Prevent page content hiding behind nav */
  body {
    padding-bottom: 64px;
  }
}



/* ===========================
   CATEGORY PAGE
   =========================== */

.category-hero {
  background: #f9f9f9;
  padding: 60px 20px;
}

.category-hero-content {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.category-hero-content img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 16px;
}

.category-hero-content h1 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 10px;
}

.category-hero-content p {
  font-size: 16px;
  color: #666;
  max-width: 700px;
  margin: auto;
}

.category-main {
  padding: 40px 20px;
}


.subcategory-block {
  margin-bottom: 50px;
}

.subcategory-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #222;
}

