* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Promotional Banner */
.promo-banner {
  background-color: #000;
  color: white;
  padding: 8px 0;
  font-size: 14px;
  text-align: center;
}

.promo-text {
  font-weight: 400;
}

.shop-now-link {
  color: #ff6b6b;
  text-decoration: none;
  font-weight: 600;
}

.shop-now-link:hover {
  text-decoration: underline;
}

/* Header */
.header {
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
  padding: 15px 0;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.logo-text {
  font-size: 24px;
  font-weight: 700;
  color: #333;
}

/* Location Selector */
.location-selector {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.deliver-text {
  font-size: 12px;
  color: #666;
  margin-bottom: 2px;
}

.location-dropdown {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #333;
  cursor: pointer;
}

.location-dropdown i {
  color: #666;
}

.location-code {
  font-weight: 600;
  font-size: 14px;
}

.location-dropdown .fa-chevron-down {
  font-size: 12px;
}

/* Search Container */
.search-container {
  flex: 1;
  max-width: 500px;
}

.search-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  background: #f8f9fa;
  border-radius: 8px;
  padding: 12px 15px;
  border: 1px solid #e5e5e5;
}

.search-icon {
  color: #666;
  margin-right: 10px;
  font-size: 16px;
}

.search-input {
  border: none;
  background: transparent;
  outline: none;
  flex: 1;
  font-size: 14px;
  color: #333;
}

.search-input::placeholder {
  color: #999;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 25px;
}

.bulk-orders,
.cart-icon,
.user-account {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: color 0.3s ease;
}

.bulk-orders i,
.cart-icon i,
.user-account i {
  font-size: 18px;
  color: #666;
}

.bulk-orders span,
.cart-icon span,
.user-account span {
  font-size: 14px;
  color: #333;
  font-weight: 500;
}

.bulk-orders:hover,
.cart-icon:hover,
.user-account:hover {
  color: #ff6b6b;
}

.bulk-orders:hover i,
.cart-icon:hover i,
.user-account:hover i {
  color: #ff6b6b;
}

/* Navigation */
.main-nav {
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
  padding: 12px 0;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.nav-link {
  text-decoration: none;
  color: #333;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 0;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.nav-link:hover {
  color: #ff6b6b;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 40px 0;
  overflow: hidden;
}

.hero-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Hero Image Section */
.hero-image-section {
  position: relative;
}

.discount-badge {
  position: absolute;
  top: 30px;
  left: 30px;
  background: #b8860b;
  color: white;
  padding: 15px 20px;
  border-radius: 50%;
  z-index: 10;
  text-align: center;
  width: 100px;
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(184, 134, 11, 0.3);
}

.extra-text {
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
}

.percentage {
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}

.off-text {
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
}

.hero-image-container {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.hero-main-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

/* Hero Text Section */
.hero-text-section {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

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

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #b8860b;
  margin-bottom: 15px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 30px;
  line-height: 1.4;
}

.hero-cta-btn {
  background: #b8860b;
  color: white;
  border: none;
  padding: 15px 40px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: flex-start;
  letter-spacing: 0.5px;
}

.hero-cta-btn:hover {
  background: #9a7209;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(184, 134, 11, 0.3);
}

.hero-product {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.hero-product .product-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.shop-by-category {
  margin: 40px 0;
  padding: 0 20px;
}
.category-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
  text-align: left;
}
.category-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 40px;
  justify-content: flex-start;
}
.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 180px;
  margin-bottom: 20px;
  cursor: pointer;
  transition: transform 0.2s;
}
.category-card:hover {
  transform: translateY(-8px) scale(1.05);
}
.category-img {
  width: 160px;
  height: 160px;
  background: #efefef;
  border-radius: 50%;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.category-card span {
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  color: #222;
}
@media (max-width: 900px) {
  .category-grid {
    gap: 24px 16px;
  }
  .category-card {
    width: 120px;
  }
  .category-img {
    width: 100px;
    height: 100px;
  }
}


.emergency-lights-section {
  margin: 40px 0;
  padding: 0 20px;
}
.emergency-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
}
.view-all-btn {
  color: #ff5a36;
  border: 1px solid #ff5a36;
  border-radius: 20px;
  padding: 4px 16px;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  display: flex;
  align-items: center;
  gap: 4px;
}
.view-all-btn:hover {
  background: #ff5a36;
  color: #fff;
}
.emergency-content {
  display: flex;
  gap: 24px;
}
.emergency-banner {
  flex: 1 1 0;
  background: #ebebeb;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner-text {
  font-size: 2rem;
  font-weight: 600;
  color: #111;
  text-align: center;
}
.emergency-sidebar {
  width: 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.sidebar-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 4px;
  display: flex;
  align-items: center;
  padding: 16px;
  justify-content: space-between;
  min-height: 70px;
}
.sidebar-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.sidebar-title {
  font-size: 15px;
  color: #222;
  margin-bottom: 2px;
}
.sidebar-shopnow {
  color: #ff2d2d;
  font-size: 14px;
  text-decoration: none;
  font-weight: 500;
}
.sidebar-img {
  width: 60px;
  height: 60px;
  background: #dedede;
  border-radius: 4px;
  margin-left: 12px;
}
@media (max-width: 900px) {
  .emergency-content {
    flex-direction: column;
  }
  .emergency-sidebar {
    width: 100%;
    flex-direction: row;
    gap: 8px;
    overflow-x: auto;
  }
  .sidebar-card {
    min-width: 220px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

.vparoo-stories-section {
  margin: 40px 0;
  padding: 0 20px;
}
.vparoo-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
}
.vparoo-header .view-all-btn {
  color: #ff5a36;
  border: 1px solid #ff5a36;
  border-radius: 20px;
  padding: 4px 16px;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  display: flex;
  align-items: center;
  gap: 4px;
}
.vparoo-header .view-all-btn:hover {
  background: #ff5a36;
  color: #fff;
}
.vparoo-content {
  display: flex;
  gap: 24px;
}
.vparoo-banner {
  flex: 1 1 0;
  background: #ebebeb;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner-text {
  font-size: 2.2rem;
  font-weight: 600;
  color: #111;
  text-align: center;
}
.vparoo-stories-grid {
  width: 340px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
}
.story-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #dedede;
  aspect-ratio: 1/1.2;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: box-shadow 0.2s;
}
.story-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.10);
}
.story-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2.5rem;
  color: #fff;
  background: rgba(0,0,0,0.35);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
@media (max-width: 900px) {
  .vparoo-content {
    flex-direction: column;
  }
  .vparoo-stories-grid {
    width: 100%;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .vparoo-banner {
    min-height: 200px;
  }
}


/* Features Section */
.features {
  padding: 60px 0;
  background: #f8f9fa;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 20px;
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
}

.feature-icon {
  background: linear-gradient(135deg, #ff6b6b, #ff8e53);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.feature-text h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
}

.feature-text p {
  color: #666;
  font-size: 14px;
}

/* Section Header */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.section-title {
  font-size: 28px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0;
}

.view-all {
  color: #e74c3c;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease;
}

.view-all:hover {
  color: #c0392b;
}

.view-all i {
  font-size: 12px;
}
.best-selling-section {
  margin: 40px 0;
  padding: 0 20px;
}
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}
.section-title {
  font-size: 22px;
  font-weight: 700;
}
.view-all-btn {
  color: #ff5a36;
  border: 1px solid #ff5a36;
  border-radius: 20px;
  padding: 4px 16px;
  font-size: 15px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  display: flex;
  align-items: center;
  gap: 4px;
}
.view-all-btn:hover {
  background: #ff5a36;
  color: #fff;
}
.carousel-container {
  position: relative;
  display: flex;
  align-items: center;
}
.carousel-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 8px;
  width: 100%;
}
.product-card {
  background: #fff;
  border: 1.5px solid #eee;
  border-radius: 8px;
  width: 220px;
  min-width: 220px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  display: flex;
  flex-direction: column;
  padding-bottom: 16px;
  transition: box-shadow 0.2s;
}
.product-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.product-image {
  background: #ededed;
  height: 160px;
  border-radius: 6px 6px 0 0;
  position: relative;
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 10px;
}
.sale-badge {
  background: #fff;
  color: #ff5a36;
  border: 1.5px solid #ff5a36;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  padding: 3px 12px;
  position: absolute;
  top: 12px;
  left: 12px;
}
.action-icons {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.icon-btn {
  background: #fff;
  border: 1.5px solid #ff5a36;
  color: #ff5a36;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.icon-btn:hover {
  background: #ff5a36;
  color: #fff;
}
.product-info {
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.product-title {
  font-size: 15px;
  font-weight: 500;
  margin: 8px 0 2px 0;
  color: #222;
  min-height: 38px;
}
.rating {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  margin-bottom: 2px;
}
.stars {
  color: #ffc107;
  font-size: 14px;
}
.rating-value {
  color: #222;
  font-size: 14px;
  font-weight: 500;
}
.purchase-info {
  color: #888;
  font-size: 13px;
  margin-bottom: 2px;
}
.pricing {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 4px 0;
}
.current-price {
  color: #e60000;
  font-size: 18px;
  font-weight: 700;
}
.original-price {
  color: #888;
  font-size: 15px;
  text-decoration: line-through;
}
.product-actions {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}
.btn-add-cart,
.btn-bulk-order {
  border: 1.5px solid #ff5a36;
  background: #fff;
  color: #222;
  border-radius: 20px;
  padding: 6px 18px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.btn-bulk-order {
  color: #ff5a36;
}
.btn-add-cart:hover,
.btn-bulk-order:hover {
  background: #ff5a36;
  color: #fff;
}
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: #fff;
  border: none;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  width: 44px;
  height: 44px;
  font-size: 22px;
  color: #ff5a36;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.carousel-arrow.left {
  left: -22px;
}
.carousel-arrow.right {
  right: -22px;
}
.carousel-arrow:hover {
  background: #ff5a36;
  color: #fff;
}
@media (max-width: 900px) {
  .carousel-track {
    gap: 12px;
  }
  .product-card {
    width: 170px;
    min-width: 170px;
  }
  .product-image {
    height: 110px;
  }
}
.clearfix{
  clear: both;
}



.custom-footer {
  background: #111;
  color: #eee;
  font-family: 'Inter', Arial, sans-serif;
  font-size: 18px;
  margin-top: 0;
}
.footer-main {
  display: flex;
  justify-content: space-between;
  padding: 48px 4vw 32px 4vw;
  flex-wrap: wrap;
  gap: 32px;
}
.footer-col {
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 320px;
}
.logo-col {
  min-width: 320px;
  max-width: 400px;
}
.footer-logo {
  font-size: 2rem;
  margin-bottom: 32px;
  margin-top: 16px;
}
.footer-company {
  margin-bottom: 24px;
}
.footer-contact {
  margin-top: 18px;
}
.footer-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 17px;
}
.footer-contact-row i {
  font-size: 20px;
  margin-top: 3px;
  color: #fff;
  min-width: 22px;
}
.footer-title {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 18px;
}
.red {
  color: #e60000;
}
.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-list li {
  margin-bottom: 8px;
  cursor: pointer;
  transition: color 0.2s;
  list-style: none;
}
.footer-list li a{
  cursor: pointer;
  color: #fff;
  text-decoration: none;
}
.footer-list li a:hover {
  color: #e60000;
}
.footer-list li:hover {
  color: #e60000;
}
.footer-desc {
  margin-bottom: 18px;
  color: #ccc;
  font-size: 16px;
}
.footer-newsletter {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 8px;
}
.footer-newsletter input[type="email"] {
  background: #222;
  border: none;
  border-radius: 6px;
  padding: 12px;
  color: #fff;
  font-size: 16px;
  outline: none;
}
.footer-newsletter button {
  background: #e60000;
  color: #fff;
  border: none;
  border-radius: 20px;
  padding: 8px 32px;
  font-size: 17px;
  font-weight: 500;
  cursor: pointer;
  width: fit-content;
  transition: background 0.2s;
}
.footer-newsletter button:hover {
  background: #b80000;
}
.footer-social {
  display: flex;
  gap: 18px;
  margin-top: 12px;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #222;
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 22px;
  transition: background 0.2s, color 0.2s;
}
.footer-social a:hover {
  background: #e60000;
  color: #fff;
}
.footer-bottom {
  background: #222;
  color: #bbb;
  font-size: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 4vw;
  flex-wrap: wrap;
}
.footer-bottom b {
  color: #fff;
}
.footer-payments img {
  height: 28px;
  margin-left: 10px;
  background: #fff;
  border-radius: 4px;
  padding: 2px 6px;
}
@media (max-width: 1100px) {
  .footer-main {
    flex-wrap: wrap;
    gap: 24px;
  }
  .footer-col {
    min-width: 200px;
    max-width: 100%;
  }
}
@media (max-width: 800px) {
  .footer-main {
    flex-direction: column;
    gap: 32px;
    padding: 32px 4vw 24px 4vw;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
}


/* Responsive Design */
@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    gap: 20px;
  }

  .search-container {
    order: -1;
    width: 100%;
    max-width: none;
  }

  .nav-list {
    gap: 15px;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 10px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .feature-item {
    flex-direction: column;
    text-align: center;
  }

  .category-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .products-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .newsletter-form {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .discount-badge {
    width: 80px;
    height: 80px;
    top: 20px;
    left: 20px;
  }

  .percentage {
    font-size: 20px;
  }

  .nav-list {
    gap: 10px;
  }

  .nav-link {
    font-size: 13px;
  }
}

.slick-slide {
  width: auto !important; /* Allow .product-card to define width */
  display: flex;
  justify-content: center;
  margin: 0 10px;
}


.slick-arrow
 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    box-shadow: rgba(0, 0, 0, 0.08) 0px 2px 8px;
    width: 44px;
    height: 44px;
    font-size: 22px;
    color: rgb(255, 90, 54);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(255, 255, 255);
    border-width: initial;
    border-style: none;
    border-color: initial;
    border-image: initial;
    border-radius: 50%;
    transition: background 0.2s, color 0.2s;
}
.slick-prev {
    left: -22px;
}
.slick-next {
    right: -22px;
}
.product-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  margin: auto;
}
.sidebar-img img {
  width: 60px;
  height: auto;
}


/* Woocommerce */
.product-archive-wrapper {
  background-color: #f9f9f9;
  padding: 40px 0;
}
.shop-title {
  font-size: 2.2rem;
  margin-bottom: 20px;
  text-align: center;
}
.custom-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}
.no-products-message {
  text-align: center;
  padding: 40px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 6px;
  font-size: 1.1rem;
  color: #666;
}
ul.products.columns-4 {
  display: flex;
  flex-wrap: wrap;
  gap: 24px; /* spacing between items */
  padding: 0;
  margin: 0;
  list-style: none;
}

ul.products.columns-4 li.product {
  flex: 0 0 calc(25% - 18px); /* 4 columns, adjusted for gap */
  box-sizing: border-box;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 6px;
  overflow: hidden;
}

@media (max-width: 1024px) {
  ul.products.columns-4 li.product {
    flex: 0 0 calc(33.33% - 16px); /* 3 columns */
  }
}

@media (max-width: 768px) {
  ul.products.columns-4 li.product {
    flex: 0 0 calc(50% - 12px); /* 2 columns */
  }
}

@media (max-width: 480px) {
  ul.products.columns-4 li.product {
    flex: 0 0 100%; /* 1 column on mobile */
  }
}