:root {
  --antu-bg: #ffffff;
  --antu-text: #1a1a1a;
  --antu-soft: #f7f3ef;
  --antu-accent: #e8d9cc;
  --antu-border: #ece7e2;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: var(--antu-text);
  background: var(--antu-bg);
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; height: auto; }
.container { width: min(1200px, 92%); margin: 0 auto; }
.section { padding: 72px 0; }
.topbar { text-align: center; background: #111; color: #fff; padding: 10px 15px; font-size: 14px; }
.site-header { border-bottom: 1px solid var(--antu-border); background: #fff; position: sticky; top: 0; z-index: 99; }
.header-wrap { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 18px 0; }
.site-title { font-size: 30px; font-weight: 700; }
.menu { list-style: none; display: flex; gap: 22px; padding: 0; margin: 0; }
.header-icons { display: flex; gap: 16px; align-items: center; }
.hero-section { background: var(--antu-soft); padding: 80px 0; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; align-items: center; }
.eyebrow { display: inline-block; margin-bottom: 12px; font-size: 14px; letter-spacing: 1px; text-transform: uppercase; }
.hero-content h1 { font-size: clamp(38px, 6vw, 64px); line-height: 1.1; margin: 0 0 16px; }
.hero-content p { max-width: 560px; margin: 0 0 24px; font-size: 18px; }
.hero-image img { border-radius: 12px; box-shadow: 0 20px 40px rgba(0,0,0,.08); }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 12px; }
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 12px 22px; border-radius: 4px; border: 1px solid #111; font-weight: 600; cursor: pointer; }
.btn-dark { background: #111; color: #fff; }
.btn-light { background: transparent; color: #111; }
.section-heading { text-align: center; margin-bottom: 28px; }
.category-grid, .testimonial-grid, .footer-grid, .post-list-grid { display: grid; gap: 24px; }
.category-grid { grid-template-columns: repeat(4, 1fr); }
.testimonial-grid { grid-template-columns: repeat(3, 1fr); }
.footer-grid { grid-template-columns: repeat(4, 1fr); }
.post-list-grid { grid-template-columns: repeat(2, 1fr); }
.category-card, .testimonial-card, .post-card, .page-card { border: 1px solid var(--antu-border); background: #fff; padding: 26px; }
.category-image-card { padding: 0; overflow: hidden; }
.category-image-card img { aspect-ratio: 4 / 5; object-fit: cover; width: 100%; }
.category-image-card span { display: block; padding: 14px; font-weight: 700; text-align: center; }
.promo-banner { background: var(--antu-accent); padding: 65px 0; text-align: center; }
.newsletter-section { background: #faf8f5; padding: 72px 0; }
.newsletter-box { text-align: center; }
.newsletter-form { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin-top: 16px; }
.newsletter-form input { width: min(340px, 100%); padding: 14px 16px; border: 1px solid #d8d2cb; }
.site-footer { background: #111; color: #fff; padding: 70px 0 40px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li + li { margin-top: 8px; }
.shop-shell { display: grid; grid-template-columns: 280px minmax(0, 1fr); gap: 32px; }
.shop-sidebar { border: 1px solid var(--antu-border); padding: 22px; height: fit-content; }
.shop-widget + .shop-widget { margin-top: 24px; }
.widget-title { margin: 0 0 14px; font-size: 18px; }
.antu-cart-link { position: relative; display: inline-flex; gap: 8px; align-items: center; }
.antu-cart-count { min-width: 22px; height: 22px; border-radius: 999px; background: #111; color: #fff; display: inline-flex; align-items: center; justify-content: center; font-size: 12px; padding: 0 6px; }
.antu-menu-toggle { display: none; border: 1px solid #111; background: transparent; padding: 10px 14px; cursor: pointer; }
.woocommerce ul.products { display: grid !important; grid-template-columns: repeat(4, 1fr); gap: 24px; margin: 0 !important; padding: 0 !important; }
.woocommerce ul.products::before, .woocommerce ul.products::after { display: none !important; }
.antu-product-item { list-style: none; margin: 0 !important; width: 100% !important; }
.antu-product-card { border: 1px solid var(--antu-border); background: #fff; overflow: hidden; height: 100%; }
.antu-product-thumb img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.antu-product-content { padding: 18px; }
.antu-product-title { font-size: 18px; margin: 0 0 10px; }
.antu-product-price { margin-bottom: 14px; font-weight: 700; }
.antu-product-actions .button,
.woocommerce div.product form.cart .button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  background: #111 !important;
  color: #fff !important;
  border-radius: 0 !important;
  padding: 12px 18px !important;
}
.woocommerce div.product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.woocommerce div.product div.images,
.woocommerce div.product div.summary {
  width: 100% !important;
  float: none !important;
}
@media (max-width: 991px) {
  .hero-grid, .category-grid, .testimonial-grid, .footer-grid, .post-list-grid, .woocommerce ul.products, .woocommerce div.product { grid-template-columns: repeat(2, 1fr); }
  .shop-shell { grid-template-columns: 1fr; }
}
@media (max-width: 767px) {
  .header-wrap { flex-wrap: wrap; }
  .hero-grid, .category-grid, .testimonial-grid, .footer-grid, .post-list-grid, .woocommerce ul.products, .woocommerce div.product { grid-template-columns: 1fr; }
  .main-nav { display: none; width: 100%; }
  .menu { flex-direction: column; }
  .antu-menu-toggle { display: inline-flex; }
  .section { padding: 56px 0; }
}
