body {
  margin: 0;
  background: #fff;
  overflow-x: hidden;
  font-family: 'Roboto', sans-serif;
}

#s4l-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  width: 100vw;
  height: 200vh; /* full 2-row layout */
  padding: 40px;
  gap: 40px;
  box-sizing: border-box;
}

.category-card {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: transform 0.3s ease;
  border-radius: 8px;
  background: #fff;
  overflow: hidden; /* keep hover clean */
}

.category-card img {
  width: 90%;
  height: 90%;
  object-fit: contain;
  display: block;
  margin: auto;
  border-radius: 8px;
}

.category-card:hover {
  transform: scale(0.94);
}

/* Responsive */
@media (max-width: 1024px) {
  #s4l-categories {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    height: auto;
    padding: 20px;
    gap: 20px;
  }
}

@media (max-width: 600px) {
  #s4l-categories {
    grid-template-columns: 1fr;
  }
}

/* --- HERO SECTION (MATCH ELEMENTOR) --- */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 80vh;
  background-color: #0b6b6a;
  color: #fff;
  padding: 60px 20px 100px 20px;
}

.hero img {
  width: 120px;
}

.hero h1 {
  font-size: 4rem;
  font-weight: 700;
  margin: 0;
}

.hero h2 {
  font-size: 1.8rem;
  margin: 5px 0;
  font-weight: 400;
}

.hero p {
  font-size: 1.1rem;
  color: #e8e8e8;
  margin: 5px 0 35px;
  max-width: 500px;
}

.btn-cta {
  display: inline-block;
  padding: 16px 44px;
  cursor: pointer;
  background: #f28b2d;
  color: #ffffff;

  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 10px;
  text-decoration: none;

  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);

  transition: all 0.25s ease;
}

/* Hover */

.btn-cta:hover {
  background: #e0781c;
  transform: translateY(-3px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.25);
}

/* Click */

.btn-cta:active {
  transform: translateY(0);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
/* ===============================
   FEATURED PRODUCTS
================================ */

.featured-products {
  padding: 60px 40px;
  max-width: 1300px;
  margin: auto;
}

.featured-products h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 40px;
}

/* Grid layout */

.featured-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* Product card */

.product-card {
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 12px;
  padding: 18px;
  text-align: center;
  transition: all 0.25s ease;
}

/* hover like shop page */

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* image */

.product-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 12px;
}

/* title */

.product-card h3 {
  font-size: 1rem;
  margin: 10px 0 6px;
  font-weight: 500;
}

/* price */

.product-card .price {
  font-weight: 700;
  color: #0b6b6a;
  margin-top: 4px;
}

/* ===============================
   FEATURED PRODUCT LINKS
================================ */

.product-card a {
  text-decoration: none;
  color: #0b6b6a;
  font-weight: 600;
  display: block;
  margin-top: 10px;
}

.product-card a:hover {
  color: #119290;
}

/* price */

.product-card .price {
  color: #0b6b6a;
  font-weight: 700;
  margin-top: 6px;
}

@media (max-width: 1024px) {
  .featured-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .featured-products-grid {
    grid-template-columns: 1fr;
  }
}

.product-card .price {
  color: #0b6b6a;
  font-weight: 700;
}
