body {
    background-color: #fcf7ee;
}


  .ecommerce-categories__thumb img {
    width: 70px !important;
    height: 70px !important;
    object-fit: contain;
  }
  
  .ecommerce-categories__card {
    border: 1px solid #e0e0e0 !important;
    border-radius: 8px !important;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1) !important;
    padding: 12px !important;
  }



/* Base responsive styles for the slideshow section */
.simple-slider-section {
    width: 100%;
    overflow: hidden;
}

/* Swiper container responsive styles */
.simple-slider-section .tf-slideshow.style-2,
.simple-slider-section .tf-swiper.sw-slide-show,
.simple-slider-section .swiper-wrapper {
    width: 100%;
    height: auto;
}

/* Individual slide responsive styles */
.simple-slider-section .swiper-slide {
    width: 100% !important;
    height: auto;
    flex-shrink: 0;
}

/* Slideshow wrap responsive styles */
.simple-slider-section .slideshow-wrap.fashion-slide {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
}

/* Image container and image responsive styles */
.simple-slider-section .sld_image {
    width: 100%;
    height: auto;
    position: relative;
}

.simple-slider-section .sld_image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    aspect-ratio: auto;
    max-width: 100%;
}

/* Content overlay responsive positioning */
.simple-slider-section .sld_content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center; /* ALWAYS vertically centered */
    justify-content: flex-start; /* Horizontal alignment left */
    width: 100%;
}

/* Container within content */
.simple-slider-section .sld_content .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Content wrapper */
.simple-slider-section .content-sld_wrap {
    max-width: 600px;
    text-align: left; /* ALWAYS left-aligned text */
}

/* Responsive typography */
.simple-slider-section .sub-text_sld {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 15px;
}

.simple-slider-section .title_sld {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    word-wrap: break-word;
}

/* Button responsive styles */
.simple-slider-section .tf-btn.btn-fill {
    display: inline-block;
    padding: 12px 30px;
    font-size: 16px;
    white-space: nowrap;
}

/* =========================================
   Mobile responsive styles (Adjusted smaller)
   ========================================= */
@media screen and (max-width: 768px) {
    .simple-slider-section .content-sld_wrap {
        max-width: 100%;
        padding: 20px 0; 
    }
    
    .simple-slider-section .title_sld {
        font-size: 24px; /* Reduced from 28px */
        line-height: 1.3;
        margin-bottom: 15px;
    }
    
    .simple-slider-section .sub-text_sld {
        font-size: 13px; /* Reduced from 14px */
        margin-bottom: 12px;
    }
    
    .simple-slider-section .tf-btn.btn-fill {
        padding: 8px 20px; /* Reduced padding */
        font-size: 13px; /* Reduced from 14px */
    }
}

@media screen and (max-width: 480px) {
    .simple-slider-section .title_sld {
        font-size: 18px; /* Reduced from 22px */
        margin-bottom: 10px;
    }
    
    .simple-slider-section .sub-text_sld {
        font-size: 11px; /* Reduced from 12px */
        margin-bottom: 10px;
    }
    
    .simple-slider-section .tf-btn.btn-fill {
        padding: 6px 16px; /* Reduced padding */
        font-size: 11px; /* Reduced from 12px */
    }
}

/* Tablet responsive styles */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .simple-slider-section .title_sld {
        font-size: 36px;
    }
    
    .simple-slider-section .content-sld_wrap {
        max-width: 500px;
    }
}

/* Large screen responsive styles */
@media screen and (min-width: 1025px) {
    .simple-slider-section .content-sld_wrap {
        max-width: 600px;
    }
}

/* Fix for Swiper width override */
.simple-slider-section .swiper-slide[style*="width"] {
    width: 100% !important;
}

/* Minimum height for very small screens */
@media screen and (max-width: 320px) {
    .simple-slider-section .slideshow-wrap.fashion-slide {
        min-height: 200px;
    }
    
    .simple-slider-section .sld_image img {
        min-height: 200px;
        object-fit: cover;
    }
}

/* Smooth transitions */
.simple-slider-section .sld_image img,
.simple-slider-section .title_sld,
.simple-slider-section .sub-text_sld,
.simple-slider-section .tf-btn.btn-fill {
    transition: all 0.3s ease-in-out;
}