/* Brand accent */
:root { --brand-red:#7C0A02; }

.simple-slider .title, .simple-slider .description { text-shadow:0 2px 10px rgba(0,0,0,.25); }

/* Product & category cards */
.product-item, .category-item, .ads-item {
  transition:transform .35s ease, box-shadow .35s ease;
}
.product-item:hover, .category-item:hover, .ads-item:hover {
  transform:translateY(-6px); box-shadow:0 10px 24px rgba(0,0,0,.12);
}

/* Keep images tidy */
.product-item .image img, .category-item .image img { object-fit:cover; aspect-ratio:1/1; }

/* Section spacing */
.home-section, .ecommerce-products, .ecommerce-categories, .site-features, .blog-posts, .gallery {
  margin-block: 36px;
}

/* Mobile type scales */
@media (max-width: 768px){
  .simple-slider .title { font-size: 42px !important; line-height:1.1; }
  .simple-slider .description { font-size:16px !important; }
  .ecommerce-products .section-title, .ecommerce-categories .section-title { font-size:22px; }
}