/* ===== GLOBAL STYLES ===== */
body {
  font-family: 'Tajawal', sans-serif !important;
  background-color: #fefefe !important;
  color: #222 !important;
}

a {
  text-decoration: none !important;
  color: inherit !important;
}
a:hover {
  color: #d3a166 !important;
}

/* ===== HEADER ===== */
header.store-header {
  background-color: #ffffff !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06) !important;
}
.store-header .logo img {
  max-height: 60px !important;
}
.store-header nav a {
  font-weight: 600 !important;
  font-size: 15px !important;
  padding: 10px 14px !important;
  color: #333 !important;
}
.store-header nav a:hover {
  color: #d3a166 !important;
}

/* ===== HERO / BANNER SECTION ===== */
.hero-section {
  background-color: #f9f7f4 !important;
  padding: 50px 20px !important;
  text-align: center !important;
}
.hero-section h1,
.hero-section h2 {
  font-size: 2rem !important;
  color: #222 !important;
}
.hero-section p {
  font-size: 1.1rem !important;
  color: #555 !important;
}

/* ===== PRODUCT LISTING ===== */
.products-listing .product-card,
.product-item,
.product-box {
  background: #fff !important;
  border-radius: 10px !important;
  overflow: hidden !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05) !important;
  transition: all 0.3s ease !important;
}
.products-listing .product-card:hover,
.product-item:hover,
.product-box:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08) !important;
}
.product-card .product-title,
.product-item .title,
.product-box .product-name {
  font-size: 16px !important;
  font-weight: 600 !important;
  color: #333 !important;
}
.product-card .product-price,
.product-item .price,
.product-box .price {
  color: #d3a166 !important;
  font-weight: bold !important;
  font-size: 18px !important;
}
.product-card img,
.product-item img {
  border-bottom: 1px solid #eee !important;
  max-height: 280px !important;
  object-fit: cover !important;
}

/* ===== ADD TO CART BUTTON ===== */
.add-to-cart-btn,
.addToCart {
  background-color: #d3a166 !important;
  color: #fff !important;
  font-weight: bold !important;
  border-radius: 8px !important;
  padding: 12px 20px !important;
  transition: background-color 0.3s ease !important;
}
.add-to-cart-btn:hover,
.addToCart:hover {
  background-color: #b78b4f !important;
}

/* ===== PRODUCT DETAIL PAGE ===== */
.product-details-page .product-title,
.product-info .title {
  font-size: 24px !important;
  font-weight: 700 !important;
}
.product-details-page .product-price,
.product-info .price {
  font-size: 22px !important;
  color: #d3a166 !important;
}
.product-details-page .add-to-cart-btn {
  width: 100% !important;
  padding: 15px !important;
  font-size: 16px !important;
}

/* ===== BADGES / OFFERS ===== */
.product-card .badge,
.product-card .offer-tag,
.product-item .discount-badge {
  background-color: #d3a166 !important;
  color: #fff !important;
  font-weight: bold !important;
  border-radius: 4px !important;
}

/* ===== FOOTER ===== */
footer.store-footer {
  background-color: #222 !important;
  color: #ccc !important;
  padding: 40px 20px !important;
}
footer.store-footer a {
  color: #ccc !important;
}
footer.store-footer a:hover {
  color: #fff !important;
}
footer.store-footer .social-icons a {
  color: #d3a166 !important;
  font-size: 18px !important;
}

/* ===== RESPONSIVE TWEAKS ===== */
@media (max-width: 768px) {
  .store-header nav {
    font-size: 14px !important;
  }

  .products-listing .product-card {
    margin-bottom: 20px !important;
  }

  .product-details-page .add-to-cart-btn {
    font-size: 14px !important;
    padding: 12px !important;
  }
}