.himaluxe-slider {
        position: relative;
        width: 100%;
        height: 650px;
        overflow: hidden;
        font-family: Arial, sans-serif;
    }
    .hslide {
        position: absolute;
        inset: 0;
        background-size: cover;
        background-position: center right;
        opacity: 0;
        transition: opacity .8s ease-in-out;
    }
    .hslide.active { opacity: 1; z-index: 5; }
    .hslide-content {
        position: absolute;
        top: 26%;
        left: 6%;
        max-width: 600px;
        color: #fff;
    }
    .hslide-content h1 {
        font-size: 70px;
        font-weight: 800;
        text-transform: uppercase;
        color: #ffffffd6;
        line-height: 1;
        margin: 0;
    }
    .hslide-content p {
        font-size: 22px;
        margin-top: 20px;
    }
    .hslide-btn {
        display: inline-block;
        margin-top: 30px;
        background: #fff;
        color: #000;
        padding: 12px 28px;
        text-decoration: none;
        font-weight: 600;
        border-radius: 6px;
    }
    .hslide-arrow {
        position: absolute;
        bottom: 34px;
        right: 140px;
        font-size: 32px;
        color: #fff;
        cursor: pointer;
        z-index: 20;
    }
    .hslide-prev { right: 180px; }
    .hslide-next { right: 120px; }
    .hslide-counter {
        position: absolute;
        bottom: 30px;
        right: 40px;
        color: #fff;
        font-size: 32px;
        font-weight: 700;
        z-index: 20;
    }
    .hslide-progress {
        position: absolute;
        bottom: 20px;
        right: 40px;
        width: 120px;
        height: 3px;
        background: rgba(255,255,255,0.3);
        overflow: hidden;
        z-index: 20;
    }
    .hslide-progress span {
        display: block;
        width: 0%;
        height: 100%;
        background: #fff;
        animation: slideProgress 5s linear infinite;
    }
    @keyframes slideProgress {
        from { width: 0%; }
        to   { width: 100%; }
    }

    .category-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        @media (max-width: 1024px) {
            .category-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 640px) {
            .category-grid {
                grid-template-columns: repeat(1, 1fr);
            }
        }

        .category-grid .category-item {
            border-radius: 6px;
            text-align: center;
        }

        .category-grid img {
            width: 100%;
            height: 150px;
            object-fit: cover;
            border-radius: 4px;
        }
        section.category-grid-section h2.category-title {
            font-weight: 400;
            font-size: 22px;
        }
        section.category-grid-section .category-item h3 {
            font-size: 18px;
        }

.banner_image {
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    width: 100vw;
    overflow: hidden;
}

.banner_image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* ---------------- Product Card Pricing ---------------- */

.himaluxe.product-grid .product-card .price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.himaluxe.product-grid .product-card .price {
  font-size: 22px;
  font-weight: 700;
}

.himaluxe.product-grid .product-card .meta {
  font-size: 14px;
  color: #666;
  display: flex;
  align-items: center;
  gap: 6px;
}

.himaluxe.product-grid .product-card .dot {
  opacity: 0.4;
}

.himaluxe.product-grid .product-card .discount-row {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
}

.himaluxe.product-grid .product-card .old-price {
  text-decoration: line-through;
  color: #999;
  font-size: 15px;
}

.himaluxe.product-grid .product-card .discount-text {
  color: #ff2f2f;
  font-weight: 600;
  font-size: 15px;
}

/* ---------------- Product Card Offers ---------------- */

.himaluxe.product-grid .product-card .offer-row {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
}

.himaluxe.product-grid .product-card .offer-pill {
  background: #e9f9ee;
  color: #1e9b4b;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
}

.himaluxe.product-grid .product-card .offer-pill p {
    padding: 0;
    margin: 0;
}

.himaluxe.product-grid .product-card .offer-more {
  background: #dff5e7;
  color: #1e9b4b;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 13px;
}

/* ---------------- Product Card Actions ---------------- */

.himaluxe.product-grid .product-card .card-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.himaluxe.product-grid .product-card .wishlist {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #ddd;
  background: #fff;
  font-size: 18px;
  cursor: pointer;
}

.himaluxe.product-grid .product-card .add-to-cart {
  flex: 1;
  height: 44px;
  border-radius: 12px;
  background: #1a1a1a;
  color: #fff;
  border: none;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}
.himaluxe.product-grid .product-card .dbs-add-to-cart {
  flex: 1;
  height: 44px;
  border-radius: 12px;
  background: #1a1a1a;
  color: #fff;
  border: none;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}
@media (max-width: 1200px) {
  .himaluxe.product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

@media (max-width: 520px) {
  .himaluxe.product-grid {
    grid-template-columns: 1fr;
  }
}
