/* Add custom CSS styles below */ 

.home-slider .swiper-slide img,
.home-slider .swiper-slide-shadow-left,
.home-slider .swiper-slide-shadow-right {
  width: 100% !important;
  height: 100% !important;
}

.home-slider .swiper-slide img {
  object-fit: cover !important;
  object-position: center !important;
}

.home-slider.s-block--full-bg {
  padding: 0 !important;
}

.home-slider .swiper-slide {
  border-radius: 0 !important;
}

.home-slider .s-slider-container {
  border-radius: 0 !important;
}






.swiper.s-slider-container {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.swiper-slide img {
    width: 100%;
    height: auto;
}










.s-products-list-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    padding: 32px 20px;
}

/* ===== Product Card ===== */
.s-product-card-entry {
    background: var(--color-background-primary) !important;
    border: 1px solid var(--color-border-tertiary) !important;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.s-product-card-entry:hover {
    border-color: #c23231 !important;
    box-shadow: 0 8px 24px rgba(194, 50, 49, 0.15);
    transform: translateY(-4px);
}

/* ===== Product Image Section ===== */
.s-product-card-image {
    position: relative;
    background: #f8f9fa;
    overflow: hidden;
    aspect-ratio: 1 / 1;
}

.s-product-card-image-cover {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.s-product-card-entry:hover .s-product-card-image-cover {
    transform: scale(1.08);
}

/* ===== Product Actions (Wishlist & Quick View) ===== */
.s-product-card-actions {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    gap: 8px;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 10;
}

.s-product-card-entry:hover .s-product-card-actions {
    opacity: 1;
    transform: translateY(0);
}

.s-product-card-fixed-btn {
    background: white !important;
    border: none !important;
    border-radius: 50%;
    width: 44px !important;
    height: 44px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    transition: all 0.2s ease;
}

.s-product-card-fixed-btn:hover {
    background: #c23231 !important;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(194, 50, 49, 0.3);
}

/* ===== Product Content Section ===== */
.s-product-card-content {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* ===== Product Title ===== */
.s-product-card-content-title {
    font-size: 16px;
    font-weight: 500;
    color: var(--color-text-primary);
    margin: 0;
    line-height: 1.4;
}

.s-product-card-content-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.s-product-card-entry:hover .s-product-card-content-title a {
    color: #c23231;
}

/* ===== Product Subtitle ===== */
.s-product-card-content-subtitle {
    font-size: 13px;
    color: var(--color-text-secondary);
    margin: 0;
    min-height: 36px;
    display: flex;
    align-items: center;
}

/* ===== Price ===== */
.s-product-card-price {
    font-size: 18px;
    font-weight: 600;
    color: #c23231;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* ===== Button (Add to Cart) ===== */
.s-product-card-content-footer {
    margin-top: 4px;
}

.s-button-element {
    background: white !important;
    color: #c23231 !important;
    border: 2px solid #c23231 !important;
    font-weight: 600;
    padding: 10px 16px !important;
    border-radius: var(--border-radius-md);
    transition: all 0.3s ease;
    font-size: 14px;
}

.s-button-element:hover {
    background: #c23231 !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(194, 50, 49, 0.3);
}

.s-button-element:active {
    transform: translateY(0);
}

/* ===== Rating ===== */
.s-product-card-rating {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(255, 255, 255, 0.95);
    padding: 4px 8px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: