.hero{background:linear-gradient(180deg, #e8f5e9, #ffffff); border-radius: 1rem;}
.product-card img{height:180px;object-fit:cover}
/* Horizontal category scroll */
.category-scroll {
  display: flex;
  overflow-x: auto;
  gap: 12px;
  padding-bottom: 10px;
  scroll-snap-type: x mandatory;
}

.category-scroll::-webkit-scrollbar {
  height: 6px;
}

.category-scroll::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 20px;
}

/* Category Card */
.cat-card {
  flex: 0 0 auto;
  width: 110px;
  background: #ffffff;
  border-radius: 14px;
  padding: 12px 8px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  scroll-snap-align: start;
  text-decoration: none;
  color: #333;
  transition: 0.2s ease;
}

.cat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.12);
}

/* Icon */
.cat-icon img {
  width: 45px;
  height: 45px;
  object-fit: contain;
  margin-bottom: 8px;
}

.cat-name {
  font-size: 14px;
  font-weight: 600;
  color: #333;
}
/* ===== Product Card Modern ===== */

.product-card-modern {
    border: 1px solid #eee;
    border-radius: 14px;
    padding: 12px;
    background: #fff;
    position: relative;
    transition: 0.2s;
    height: 100%;
}

.product-card-modern:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transform: translateY(-3px);
}

/* Sale & Discount Badges */
.badge-sale {
    position: absolute;
    top: 8px;
    left: 8px;
    background: #ff4757;
    color: white;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: bold;
}

.badge-discount {
    position: absolute;
    top: 8px;
    right: 8px;
    background: #ffa502;
    color: white;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: bold;
}

/* Image Wrapper */
.product-img-wrapper-modern {
    width: 100%;
    height: 180px;
    background: #f8f9fa;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 8px;
    border: 1px solid #eee;
}

/* HERO BACKGROUND */
.hero {
    background: linear-gradient(180deg, #e8f5e9, #ffffff);
    border-radius: 1rem;
}

/* CATEGORY SCROLL */
.category-scroll {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
}

.category-scroll::-webkit-scrollbar {
    height: 6px;
}

.category-scroll::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 20px;
}

.cat-card {
    flex: 0 0 auto;
    width: 110px;
    background: #ffffff;
    border-radius: 14px;
    padding: 12px 8px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    scroll-snap-align: start;
    text-decoration: none;
    color: #333;
    transition: 0.2s ease;
}

.cat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.12);
}

.cat-icon img {
    width: 45px;
    height: 45px;
    object-fit: contain;
    margin-bottom: 8px;
}

.cat-name {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

/* ===========================
   MODERN PRODUCT CARD STYLES
=========================== */

.product-card-modern {
    border: 1px solid #eee;
    border-radius: 14px;
    padding: 12px;
    background: #fff;
    position: relative;
    transition: 0.2s;
    height: 100%;
}

.product-card-modern:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transform: translateY(-3px);
}

/* Badges */
.badge-sale {
    position: absolute;
    top: 8px;
    left: 8px;
    background: #ff4757;
    color: white;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: bold;
}

.badge-discount {
    position: absolute;
    top: 8px;
    right: 8px;
    background: #ffa502;
    color: white;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: bold;
}

/* Product Image */
.product-img-wrapper-modern {
    width: 100%;
    height: 180px;
    background: #f8f9fa;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 8px;
    border: 1px solid #eee;
}

.product-img-wrapper-modern img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: 0.3s;
}

.product-card-modern:hover img {
    transform: scale(1.05);
}

/* Title */
.product-title-modern {
    font-size: 14px;
    font-weight: 600;
    margin-top: 10px;
    height: 38px;
    overflow: hidden;
    color: #333;
}

/* Prices */
.product-price-modern {
    margin: 6px 0 4px 0;
}

.product-price-modern .new-price {
    font-size: 16px;
    font-weight: 700;
    color: #28a745;
}

.product-price-modern .old-price {
    font-size: 13px;
    color: #999;
    text-decoration: line-through;
    margin-left: 6px;
}

/* Buttons */
.product-actions-modern {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.btn-view {
    padding: 5px 10px;
    background: #fff;
    border: 1px solid #007bff;
    color: #007bff;
    border-radius: 6px;
    font-size: 12px;
}

.btn-add {
    background: #007bff;
    color: white;
    border: none;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 14px;
}

.btn-add i {
    font-size: 16px;
}
