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

:root {
  --primary: #e3131b;
  --dark: #111111;
  --light: #f5f5f5;
  --white: #ffffff;
  --border: #e4e4e4;
  --text: #222222;
  --muted: #777777;
}

body {
  font-family: Arial, sans-serif;
  background: var(--light);
  color: var(--text);
  line-height: 1.6;
}

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

a {
  text-decoration: none;
  color: inherit;
}

/* HEADER */
.topbar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.menu-icon {
  border: none;
  background: none;
  font-size: 28px;
  color: var(--dark);
  cursor: pointer;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--dark);
}

.logo img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.logo span {
  font-size: 16px;
  font-weight: 800;
}

.cart-icon {
  position: relative;
  font-size: 26px;
  color: var(--dark);
}

.cart-icon small {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* MOBILE MENU */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: #111;
}

.mobile-menu.show {
  display: flex;
}

.mobile-menu a {
  color: #fff;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* HERO */
.hero {
  min-height: 380px;
}

.small-hero {
  min-height: 260px;
}

.hero-mini {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-weight: 700;
}

.hero h1,
.small-hero h1 {
  font-size: 42px;
  line-height: 1.1;
  margin-bottom: 14px;
  font-weight: 800;
}

.hero-text {
  font-size: 17px;
  line-height: 1.7;
  max-width: 600px;
}

/* INFO BAR / TRUST */
.info-bar,
.trust-strip {
  background: var(--white);
  display: grid;
  gap: 1px;
  border-bottom: 1px solid var(--border);
}

.info-item,
.trust-strip div {
  text-align: center;
  padding: 14px 16px;
  font-weight: 700;
}

/* GENERAL SECTION */
.section,
.shop-section,
.cart-page {
  padding: 22px 16px;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.section-title span {
  flex: 1;
  height: 1px;
  background: #d8d8d8;
}

.section-title h2 {
  font-size: 18px;
  white-space: nowrap;
}

/* BUTTONS */
.btn,
.btn-outline,
.small-btn,
.view-btn,
.order-btn {
  border: none;
  border-radius: 12px;
  font-weight: 800;
  cursor: pointer;
  text-align: center;
  display: inline-block;
}

.btn {
  background: var(--primary);
  color: var(--white);
  padding: 14px 18px;
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--white);
  padding: 14px 18px;
}

.small-btn {
  width: 100%;
  background: var(--primary);
  color: var(--white);
  padding: 12px 14px;
}

.view-btn,
.order-btn {
  width: 100%;
  padding: 14px 12px;
  font-size: 16px;
}

.view-btn {
  background: #000;
  color: #fff;
}

.order-btn {
  background: var(--primary);
  color: #fff;
}

/* CATEGORIES */
.categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.category-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  text-align: center;
  padding: 18px 10px;
}

.category-circle {
  width: 72px;
  height: 72px;
  margin: 0 auto 10px;
  border-radius: 50%;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
}

.category-card p {
  font-weight: 700;
  font-size: 14px;
}

/* SEARCH AND FILTER */
.search-box {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  outline: none;
  margin-bottom: 14px;
}

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.filter-btn {
  border: 1px solid var(--border);
  background: var(--white);
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
}

.filter-btn.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

/* PRODUCTS */
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 12px;
  position: relative;
}

.product-image-wrap {
  width: 100%;
  height: 150px;
  background: #fafafa;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 12px;
}

.product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--primary);
  color: var(--white);
  font-size: 12px;
  padding: 8px 10px;
  border-radius: 8px;
  font-weight: 700;
}

.product-card h3 {
  font-size: 16px;
  line-height: 1.3;
  margin-bottom: 12px;
  min-height: 42px;
}

.price {
  font-size: 18px;
  color: var(--primary);
  font-weight: 800;
  margin-bottom: 14px;
}

.price span {
  color: #8f8f8f;
  text-decoration: line-through;
  margin-left: 6px;
  font-weight: 400;
}

.product-actions {
  display: grid;
  gap: 10px;
}

/* WHY SECTION */
.why-grid {
  display: grid;
  gap: 14px;
}

.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px;
}

.why-card h3 {
  margin-bottom: 10px;
}

.why-card p {
  color: #444;
}

/* MODAL */
.product-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  z-index: 9999;
}

.product-modal.show {
  display: flex;
}

.product-modal-content {
  background: var(--white);
  width: 100%;
  max-width: 420px;
  border-radius: 20px;
  padding: 18px;
  position: relative;
}

.close-modal {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: #000;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
}

.modal-image-wrap {
  width: 100%;
  height: 220px;
  background: #fafafa;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 14px;
}

.modal-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.modal-price {
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
  margin: 10px 0;
}

.modal-details {
  color: #444;
  line-height: 1.7;
  margin-bottom: 16px;
}

/* CART */
.cart-list {
  display: grid;
  gap: 14px;
}

.empty-cart-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px 16px;
  text-align: center;
}

.empty-cart-box h3 {
  margin-bottom: 10px;
}

.empty-cart-box p {
  color: var(--muted);
  margin-bottom: 14px;
}

.back-shop-btn {
  max-width: 220px;
  margin: 0 auto;
}

.cart-summary {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px 16px;
  margin-top: 18px;
}

.cart-summary h3 {
  margin-bottom: 14px;
}

.cart-summary p {
  margin-bottom: 12px;
  font-size: 16px;
}

.cart-checkout-btn {
  margin-top: 8px;
}

/* CHECKOUT */
.checkout-grid {
  display: grid;
  gap: 16px;
}

.checkout-form-box,
.checkout-summary-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px;
}

.checkout-form-box h3,
.checkout-summary-box h3 {
  margin-bottom: 12px;
}

.checkout-form {
  display: grid;
  gap: 12px;
}

.form-group {
  display: grid;
  gap: 6px;
}

.form-group label {
  font-weight: 700;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  outline: none;
  background: var(--white);
}

.checkout-items {
  display: grid;
  gap: 10px;
  margin-bottom: 16px;
}

.checkout-item {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 10px;
}

.checkout-item:last-child {
  border-bottom: none;
}

.checkout-submit-btn {
  width: 100%;
}

/* ABOUT / CONTACT */
.about-grid,
.contact-grid {
  display: grid;
  gap: 16px;
}

.about-box,
.contact-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px;
}

.about-box h2,
.contact-box h3 {
  margin-bottom: 12px;
}

.about-box p,
.contact-box p {
  margin-bottom: 10px;
}

.contact-form {
  display: grid;
  gap: 12px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  outline: none;
  background: var(--white);
}

/* FOOTER */
.footer {
  background: #000;
  color: #fff;
  padding: 30px 15px;
  margin-top: 24px;
}

.footer-content {
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
}

.footer-logo {
  width: 70px !important;
  max-width: 70px !important;
  height: auto !important;
  display: block;
  margin: 0 auto 12px;
  object-fit: contain;
}

.footer {
  background: #000;
  color: #fff;
  padding: 30px 15px;
  margin-top: 24px;
}

.footer-content {
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
}

.footer h3 {
  margin-bottom: 10px;
  font-size: 18px;
  color: #fff;
}

.footer p {
  font-size: 14px;
  line-height: 1.7;
  margin: 4px 0;
  color: #ddd;
}

/* WHATSAPP FLOAT */
.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  z-index: 999;
}

.whatsapp-float img {
  width: 30px;
  height: 30px;
}

/* RESPONSIVE */
@media (min-width: 768px) {
  .hero {
    min-height: 500px;
    background:
      linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.45)),
      url("https://i.imgur.com/HKhfRho.jpeg") center 20% / cover no-repeat;
  }

  .hero-overlay {
    padding: 50px 60px;
  }

  .hero h1 {
    font-size: 58px;
    max-width: 700px;
  }

  .hero-text {
    font-size: 18px;
  }

  .info-bar,
  .trust-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .product-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .why-grid,
  .checkout-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section,
  .shop-section,
  .cart-page {
    padding: 28px 40px;
  }
}

@media (min-width: 992px) {
  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.hero,
.small-hero {
  position: relative;
  display: flex;
  align-items: center;
  background:
    linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.45)),
    url("https://i.imgur.com/HKhfRho.jpeg") center top / cover no-repeat;
}

.hero-overlay {
  width: 100%;
  padding: 30px 18px;
}

.hero-content,
.hero-overlay {
  color: #fff;
}

.hero-mini,
.hero h1,
.hero p,
.small-hero .hero-mini,
.small-hero h1,
.small-hero p {
  color: #fff !important;
}
@media (max-width: 767px) {
  .hero {
    min-height: 340px;
  }

  .small-hero {
    min-height: 220px;
  }

  .hero h1,
  .small-hero h1 {
    font-size: 30px;
  }

  .hero-text {
    font-size: 15px;
  }
}
.badge.out-stock {
  background: #777;
  color: #fff;
}

.order-btn.disabled {
  background: #777;
  cursor: not-allowed;
  opacity: 0.7;
}
.product-note {
  font-size: 13px;
  color: #c0392b;
  font-weight: 600;
  margin-top: 6px;
}
.order-btn.disabled,
.order-btn:disabled {
  background: #777;
  color: #fff;
  cursor: not-allowed;
  opacity: 0.7;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 22px;
  align-items: stretch;
}

.product-card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-image-wrap {
  width: 100%;
  height: 230px;
  overflow: hidden;
  border-radius: 14px;
}

.product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-actions {
  display: flex;
  gap: 10px;
  margin-top: auto;
}

.product-actions button {
  flex: 1;
}

@media (max-width: 600px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .product-image-wrap {
    height: 170px;
  }

  .product-actions {
    flex-direction: column;
  }
}
