:root {
  --btn-background: #ffaf28;
  --btn-color: #000000;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: #222;
  line-height: 1.5;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
}

.site-container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.section {
  padding: 72px 0;
}

.btn {
  display: inline-block;
  padding: 12px 22px;
  background: #111;
  color: #fff;
  border: 1px solid #111;
  border-radius: 4px;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}

.btn:hover {
  opacity: 0.9;
}

.btn--outline {
  background: transparent;
  color: #111;
}

.section-heading {
  margin-bottom: 28px;
  text-align: center;
}

.section-title {
  margin: 0 0 10px;
  font-size: 34px;
  line-height: 1.2;
}

.section-subtitle {
  margin: 0;
  font-size: 16px;
  color: #666;
}

.home-hero {
  background: #f7f7f7;
  text-align: center;
}
.home-hero__content {
  max-width: 760px;
  margin: 0 auto;
}
.home-hero__eyebrow {
  margin: 0 0 12px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #666;
}
.home-hero__title {
  margin: 0 0 16px;
  font-size: 52px;
  line-height: 1.1;
}
.home-hero__text {
  margin: 0 0 28px;
  font-size: 18px;
  color: #555;
}
.home-hero__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 12px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.home-categories .woocommerce,
.home-featured-products .woocommerce {
  width: 100%;
}

.home-benefits {
  background: #fafafa;
}
.home-benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.benefit-card {
  padding: 28px;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  background: #fff;
  text-align: center;
}
.benefit-card__title {
  margin: 0 0 10px;
  font-size: 22px;
}
.benefit-card__text {
  margin: 0;
  color: #666;
}

.home-banner__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  padding: 36px;
  background: #111;
  color: #fff;
  border-radius: 10px;
}
.home-banner__eyebrow {
  margin: 0 0 10px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ccc;
}
.home-banner__title {
  margin: 0 0 12px;
  font-size: 32px;
  line-height: 1.2;
}
.home-banner__text {
  margin: 0;
  color: #ddd;
}

@media (max-width: 992px) {
  .home-benefits__grid {
    grid-template-columns: 1fr;
  }
  .home-banner__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .home-hero__title {
    font-size: 40px;
  }
}
@media (max-width: 768px) {
  .section {
    padding: 56px 0;
  }
  .home-hero__title {
    font-size: 34px;
  }
  .section-title {
    font-size: 28px;
  }
}
/* =========================
   WOOCOMMERCE PRODUCT GRID
========================= */
.home-categories .woocommerce,
.home-featured-products .woocommerce {
  width: 100%;
}
.home-categories ul.products,
.home-featured-products ul.products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.home-categories ul.products::before,
.home-categories ul.products::after,
.home-featured-products ul.products::before,
.home-featured-products ul.products::after {
  display: none !important;
}
.home-categories ul.products li.product,
.home-featured-products ul.products li.product {
  width: 100% !important;
  margin: 0 !important;
  padding: 0;
  float: none !important;
}

.home-featured-products ul.products li.product {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  -webkit-transition: -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  transition: transform 0.2s ease, box-shadow 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  padding: 15px;
}
.home-featured-products ul.products li.product:hover {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
  -webkit-box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
          box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}
.home-featured-products ul.products li.product a.woocommerce-LoopProduct-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  color: inherit;
}
.home-featured-products ul.products li.product img {
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0 !important;
  border-bottom: 1px solid #f0f0f0;
}
.home-featured-products ul.products li.product .woocommerce-loop-product__title {
  padding: 18px 18px 8px;
  margin: 0;
  font-size: 15px;
  line-height: 1.35;
  color: #222;
}
.home-featured-products ul.products li.product .price {
  display: block;
  padding: 0 18px 18px;
  margin: 0;
  font-size: 22px;
  font-weight: 600;
  color: #111;
  text-align: right;
}
.home-featured-products ul.products li.product .price del {
  color: #999;
  font-size: 14px;
  margin-right: 6px;
}
.home-featured-products ul.products li.product .price ins {
  text-decoration: none;
  color: #111;
}
.home-featured-products ul.products li.product .button {
  margin: 0 18px 18px !important;
  padding: 12px 16px;
  text-align: center;
  border-radius: 3px;
  background: var(--btn-background);
  color: var(--btn-color);
  border: 1px solid var(--btn-background);
  font-weight: 500;
  line-height: 1.2;
}
.home-featured-products ul.products li.product .button:hover {
  background: #222;
  border-color: #222;
  color: #fff;
}
.home-featured-products ul.products li.product .product-card-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 18px 12px;
}
.home-featured-products ul.products li.product .product-card-meta .product-card-meta__stock {
  background-color: #16ce13;
  display: inline-block;
  padding: 4px 15px;
  font-size: 11px;
  color: #fff;
  border-radius: 3px;
}
.home-featured-products ul.products li.product .product-card-meta .product-card-meta__sku {
  font-weight: bold;
}

/* =========================
   RESPONSIVE PRODUCT GRID
========================= */
@media (max-width: 1200px) {
  .home-categories ul.products,
  .home-featured-products ul.products {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 992px) {
  .home-categories ul.products,
  .home-featured-products ul.products {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .home-categories ul.products,
  .home-featured-products ul.products {
    grid-template-columns: 1fr;
  }
}
/* =========================
   CATEGORY GRID
========================= */
.home-categories ul.products li.product-category,
.home-categories ul.products li.product-category.product {
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  -webkit-transition: -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  transition: transform 0.2s ease, box-shadow 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}
.home-categories ul.products li.product-category a,
.home-categories ul.products li.product-category.product a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}
.home-categories ul.products li.product-category img,
.home-categories ul.products li.product-category.product img {
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0 !important;
}
.home-categories ul.products li.product-category .category-description,
.home-categories ul.products li.product-category.product .category-description {
  margin: 0 16px 16px;
  font-size: 14px;
  color: #666;
}
.home-categories ul.products li.product-category:hover {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
  -webkit-box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
          box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}
.home-categories ul.products li.product-category a {
  display: block;
  color: inherit;
}
.home-categories ul.products li.product-category img {
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0 !important;
  border-bottom: 1px solid #f0f0f0;
}
.home-categories ul.products li.product-category .woocommerce-loop-category__title {
  margin: 0;
  padding: 18px;
  font-size: 20px;
  line-height: 1.3;
  text-align: center;
  color: #222;
}
.home-categories ul.products li.product-category .count {
  background: transparent;
  color: #777;
  font-size: 14px;
}

/* =========================
   FOOTER
========================= */
.site-footer-custom {
  background: #111;
  color: #ddd;
  margin-top: 60px;
}
.site-footer-custom a {
  color: #fff;
  text-decoration: none;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.site-footer-custom a:hover {
  opacity: 0.8;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  padding: 56px 0 36px;
}

.footer-title {
  margin: 0 0 16px;
  font-size: 20px;
  line-height: 1.3;
  color: #fff;
}

.footer-text {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: #bbb;
}

.footer-links,
.footer-contact {
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-links li,
.footer-contact li {
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1.6;
  color: #bbb;
}

.footer-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-copy {
  margin: 0;
  font-size: 14px;
  color: #aaa;
}

.footer-socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.footer-socials a {
  font-size: 14px;
}

@media (max-width: 992px) {
  .footer-main {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media (max-width: 576px) {
  .footer-main {
    grid-template-columns: 1fr;
  }
}