/* Premium Home Page Styles */
.main-page-wrapper {
    background: linear-gradient(180deg, #ffffff 0%, #fafbfc 50%, #ffffff 100%);
    position: relative;
    overflow-x: hidden;
}

.main-page-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(242, 106, 48, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(255, 71, 87, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.main-page-wrapper .container {
    position: relative;
    z-index: 1;
}

/* Remove margin from home page container */
.main-page-wrapper .container {
    width: 100%;
    max-width: var(--wd-container-w, 1600px);
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
}

.hero-slider-wrapper {
    max-width: var(--wd-container-w, 1600px);
    margin: 0 auto 40px;
    padding: 0 20px;
}

.hero-section {
    margin-top: 40px;
    padding-top: 20px;
}

.hero-slider {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(21, 11, 52, 0.15), 0 0 0 1px rgba(242, 106, 48, 0.1);
    width: 100%;
    height: 520px;
    max-height: 520px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.hero-slider-track {
    position: relative;
    height: 100%;
    width: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-slide figure {
    margin: 0;
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: block;
}

.hero-slide a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-slide figcaption {
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    border-radius: 18px;
    position: absolute;
    bottom: 30px;
    right: 30px;
    padding: 20px 24px;
    max-width: 60%;
    z-index: 2;
}

.hero-slide h2 {
    margin: 0;
    font-size: 32px;
    font-weight: 800;
    line-height: 1.3;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-slide-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    padding: 12px 28px;
    border-radius: 14px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    color: #f26a30;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.hero-slide-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(242, 106, 48, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.hero-slide-button:hover::before {
    width: 300px;
    height: 300px;
}

.hero-slide-button:hover {
    background: linear-gradient(135deg, #f26a30 0%, #ff4757 100%);
    color: #fff;
    border-color: transparent;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(242, 106, 48, 0.4);
}

.hero-slider-prev,
.hero-slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(242, 106, 48, 0.2);
    color: #f26a30;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15), 0 0 0 0 rgba(242, 106, 48, 0.4);
    pointer-events: auto;
    position: relative;
    overflow: hidden;
}

.hero-slider-prev::before,
.hero-slider-next::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(242, 106, 48, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.hero-slider-prev:hover::before,
.hero-slider-next:hover::before {
    width: 200px;
    height: 200px;
}

.hero-slider-prev:hover,
.hero-slider-next:hover {
    background: #fff;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.hero-slider-prev {
    right: 20px;
}

.hero-slider-next {
    left: 20px;
}

.hero-slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.hero-slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
    position: relative;
    overflow: hidden;
}

.hero-slider-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s;
}

.hero-slider-dot:hover::before {
    width: 30px;
    height: 30px;
}

.hero-slider-dot.active {
    background: linear-gradient(135deg, #f26a30 0%, #ff4757 100%);
    width: 36px;
    border-radius: 999px;
    border-color: #fff;
    box-shadow: 0 4px 12px rgba(242, 106, 48, 0.5);
}

.hero-slider-dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

.category-banners-section,
.promo-banners-section,
.featured-products-section,
.brands-section,
.blog-section,
.best-sellers-section {
    margin-bottom: 60px;
    position: relative;
}

/* Section Background Enhancements */
.brands-section,
.blog-section {
    padding: 30px 0;
    position: relative;
}

.brands-section::before,
.blog-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(242, 106, 48, 0.02), transparent);
    pointer-events: none;
}

/* Best Sellers Section - پرفروش‌ترین‌ها */
.best-seller-section {
    background: linear-gradient(135deg, #0f2f36 0%, #0f2f36 100%);
    border-radius: 24px;
    padding: 40px;
    margin-bottom: 50px;
    box-shadow: 0 12px 40px rgba(15, 47, 54, 0.2);
}

.best-seller-section .section-heading {
    color: #fff;
}

.best-seller-section .section-heading h2 {
    color: #fff !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: #fff !important;
    background-clip: unset !important;
}

.best-seller-section .section-heading .section-link {
    color: #fff;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 14px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 8px;
}

.best-seller-section .section-heading .section-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.best-seller-section .section-heading .section-link:hover::before {
    width: 300px;
    height: 300px;
}

.best-seller-section .section-heading .section-link:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* Best Sellers Products Slider */
.best-sellers-slider-wrapper {
    position: relative;
    margin-top: 24px;
    width: 100%;
    overflow: hidden;
}

.best-sellers-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.best-sellers-track {
    display: flex;
    gap: 20px;
    cursor: grab;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 10px;
    scroll-snap-type: x proximity;
    width: 100%;
    box-sizing: border-box;
}

.best-sellers-track::-webkit-scrollbar {
    display: none;
}

.best-sellers-track:active {
    cursor: grabbing;
}

.best-seller-slide {
    flex: 0 0 auto;
    min-width: 200px;
    max-width: 240px;
    width: 200px;
    scroll-snap-align: start;
}

.best-seller-slide .wd-product {
    background: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.best-seller-slide .wd-product:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

/* Best Seller Add to Cart Button Styles */
.best-seller-slide .wd-buttons {
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 5;
    pointer-events: none;
}

.best-seller-slide .wd-product:hover .wd-buttons {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.best-seller-slide .wd-buttons.compact-actions {
    position: absolute;
    top: auto;
    bottom: 12px;
    left: 12px;
    right: 12px;
}

.best-seller-slide .add-to-cart-loop {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    background: linear-gradient(135deg, #f26a30 0%, #ff4757 100%);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(242, 106, 48, 0.3);
    position: relative;
    overflow: hidden;
}

.best-seller-slide .add-to-cart-loop::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.best-seller-slide .add-to-cart-loop:hover::before {
    width: 300px;
    height: 300px;
}

.best-seller-slide .add-to-cart-loop:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(242, 106, 48, 0.4);
    background: linear-gradient(135deg, #ff4757 0%, #f26a30 100%);
}

.best-seller-slide .add-to-cart-loop:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(242, 106, 48, 0.3);
}

.best-seller-slide .add-to-cart-loop svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    flex-shrink: 0;
}

.best-seller-slide .add-to-cart-loop .add-to-cart-text {
    position: relative;
    z-index: 1;
    white-space: nowrap;
}

.best-seller-slide .add-to-cart-loop:disabled,
.best-seller-slide .add-to-cart-loop.disabled {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}

.best-seller-slide .add-to-cart-loop:disabled:hover,
.best-seller-slide .add-to-cart-loop.disabled:hover {
    transform: none;
    box-shadow: 0 4px 12px rgba(242, 106, 48, 0.3);
}

.best-seller-slider-prev,
.best-seller-slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #0f2f36;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    pointer-events: auto;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.best-seller-slider-prev:hover,
.best-seller-slider-next:hover {
    background: #fff;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    transform: translateY(-50%) scale(1.1);
}

.best-seller-slider-prev {
    right: 10px;
}

.best-seller-slider-next {
    left: 10px;
}

/* Featured Section - پیشنهاد شگفت‌انگیز */
.featured-section {
    background: linear-gradient(135deg, #f26a30 0%, #ff4757 50%, #f26a30 100%);
    background-size: 200% 100%;
    animation: gradientShift 8s ease infinite;
    border-radius: 28px;
    padding: 50px 40px;
    margin-bottom: 60px;
    box-shadow: 0 20px 60px rgba(242, 106, 48, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.featured-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.featured-section .section-heading {
    color: #fff;
}

.featured-section .section-heading h2 {
    color: #fff !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: #fff !important;
    background-clip: unset !important;
}

.featured-section .section-heading .section-link {
    color: #fff;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 14px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 8px;
}

.featured-section .section-heading .section-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.featured-section .section-heading .section-link:hover::before {
    width: 300px;
    height: 300px;
}

.featured-section .section-heading .section-link:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* Featured Products Slider */
.featured-products-slider-wrapper {
    position: relative;
    margin-top: 24px;
    width: 100%;
    overflow: visible;
}

.featured-products-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.featured-products-track {
    display: flex;
    gap: 20px;
    cursor: grab;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 10px;
    scroll-snap-type: x proximity;
    width: 100%;
    box-sizing: border-box;
    will-change: scroll-position;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
}

.featured-products-track::-webkit-scrollbar {
    display: none;
}

.featured-products-track:active {
    cursor: grabbing;
}

.featured-product-slide {
    flex: 0 0 auto;
    min-width: 280px;
    max-width: 320px;
    width: 280px;
    scroll-snap-align: start;
}

.featured-product-slide .wd-product {
    background: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
}

.featured-product-slide .wd-product:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

/* Larger product image for featured products */
.featured-product-slide .product-element-top {
    padding: 24px;
}

.featured-product-slide .product-image-link {
    border-radius: 12px;
    overflow: hidden;
}

/* Better product title for featured products */
.featured-product-slide .wd-entities-title {
    font-size: 15px;
    line-height: 1.5;
    min-height: 45px;
    max-height: 45px;
    margin-bottom: 12px;
}

/* Better price display for featured products */
.featured-product-slide .price {
    font-size: 16px;
}

.featured-product-slide .price del {
    font-size: 14px;
}

.featured-product-slide .price ins {
    font-size: 18px;
    font-weight: 700;
}

/* Enhanced Add to Cart Button for Featured Products */
.featured-product-slide .wd-buttons.compact-actions {
    top: 16px;
    left: 16px;
    gap: 10px;
}

.featured-product-slide .add-to-cart-loop {
    background: linear-gradient(135deg, #f26a30 0%, #f2844a 100%);
    color: #fff;
    border-radius: 999px;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    box-shadow: 0 4px 16px rgba(242, 106, 48, 0.4);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.featured-product-slide .add-to-cart-loop::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.featured-product-slide .add-to-cart-loop:hover::before {
    left: 100%;
}

.featured-product-slide .add-to-cart-loop:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 24px rgba(242, 106, 48, 0.5);
    background: linear-gradient(135deg, #f26a30 0%, #f26a30 100%);
}

.featured-product-slide .add-to-cart-loop:active {
    transform: translateY(0) scale(1);
    box-shadow: 0 4px 12px rgba(242, 106, 48, 0.4);
}

.featured-product-slide .add-to-cart-loop svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.featured-product-slide .add-to-cart-loop .add-to-cart-text {
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
}

.featured-product-slide .add-to-cart-loop:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.featured-product-slide .add-to-cart-loop:disabled:hover {
    transform: none;
    box-shadow: 0 4px 16px rgba(242, 106, 48, 0.4);
}

/* Product Timer for Featured Products */
.product-timer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: linear-gradient(135deg, rgba(242, 106, 48, 0.95) 0%, rgba(255, 138, 79, 0.95) 100%);
    color: #fff;
    padding: 10px 14px;
    border-radius: 0 0 14px 14px;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
}

.product-timer .timer-icon {
    flex-shrink: 0;
    font-size: 18px;
    color: #fff;
}

.product-timer .timer-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.product-timer .timer-label {
    font-size: 11px;
    font-weight: 600;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    color: #fff !important;
}

.product-timer .timer-display {
    display: flex;
    align-items: center;
    gap: 4px;
    justify-content: center;
}

.product-timer .timer-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    min-width: 30px;
    visibility: visible !important;
    opacity: 1 !important;
}

.product-timer .timer-value {
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    padding: 4px 6px;
    min-width: 30px;
    text-align: center;
    backdrop-filter: blur(4px);
    color: #fff !important;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    z-index: 10 !important;
    content: attr(data-value) !important;
}

.product-timer .timer-unit {
    font-size: 8.5px;
    font-weight: 500;
    opacity: 0.75;
    color: #fff !important;
}

.product-timer .timer-separator {
    font-size: 12px;
    font-weight: 700;
    margin: 0 2px;
    opacity: 0.7;
    color: #fff !important;
}

/* Timer for featured products - larger */
.featured-product-slide .product-timer {
    padding: 12px 18px;
    border-radius: 0 0 16px 16px;
}

.featured-product-slide .product-timer .timer-icon {
    font-size: 20px;
}

.featured-product-slide .product-timer .timer-label {
    font-size: 12px;
}

.featured-product-slide .product-timer .timer-value {
    font-size: 17px;
    min-width: 34px;
    color: #fff !important;
}

.featured-product-slide .product-timer .timer-unit {
    font-size: 9.5px;
    color: #fff !important;
}

.featured-product-slide .product-timer .timer-separator {
    font-size: 16px;
    color: #fff !important;
}

/* Timer expired state */
.product-timer.expired {
    background: linear-gradient(135deg, rgba(128, 128, 128, 0.95) 0%, rgba(96, 96, 96, 0.95) 100%);
}

.product-timer.expired .timer-display {
    opacity: 0.6;
}

/* Hide expired product slides */
.featured-product-slide[style*="display: none"] {
    display: none !important;
}

/* Responsive timer adjustments */
@media (max-width: 768px) {
    .product-timer {
        padding: 9px 12px;
    }
    
    .product-timer .timer-value {
        font-size: 13px;
        padding: 3px 5px;
        min-width: 26px;
    }
    
    .product-timer .timer-unit {
        font-size: 7.5px;
    }
    
    .product-timer .timer-separator {
        font-size: 12px;
    }
    
    .featured-product-slide .product-timer .timer-value {
        font-size: 15px;
        padding: 4px 6px;
        min-width: 32px;
    }
}

.featured-slider-prev,
.featured-slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1001 !important;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95) !important;
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #f26a30;
    cursor: pointer !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    pointer-events: auto !important;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.featured-slider-prev:hover,
.featured-slider-next:hover {
    background: #fff;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    transform: translateY(-50%) scale(1.1);
}

.featured-slider-prev:active,
.featured-slider-next:active {
    transform: translateY(-50%) scale(0.95);
}

.featured-slider-prev {
    right: 10px;
}

.featured-slider-next {
    left: 10px;
}

/* Banner Slider Styles */
.banner-slider-wrapper {
    position: relative;
    margin: 40px 0;
    overflow: hidden;
    width: 100%;
}

.banner-slider {
    position: relative;
    width: 100%;
}

.banner-slider-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
    will-change: transform;
    cursor: grab;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
}

.banner-slider-track::-webkit-scrollbar {
    display: none;
}

.banner-slider-track:active {
    cursor: grabbing;
}

.banner-slide {
    flex: 0 0 calc(25% - 15px);
    min-width: 220px;
    max-width: 280px;
    width: 100%;
}

.banner-slide .banner-card,
.banner-slide .promo-banner {
    width: 100%;
    height: 100%;
}

.banner-slider-prev,
.banner-slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #f26a30;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.banner-slider-prev:hover,
.banner-slider-next:hover {
    background: #fff;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    transform: translateY(-50%) scale(1.1);
}

.banner-slider-prev {
    right: 10px;
}

.banner-slider-next {
    left: 10px;
}

.banner-slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.banner-slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(242, 106, 48, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.banner-slider-dot.active {
    background: #f26a30;
    width: 24px;
    border-radius: 999px;
}

.banner-slider-dot:hover {
    background: rgba(242, 106, 48, 0.6);
}


.banner-card {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 12px 40px rgba(21, 11, 52, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.04);
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
    flex-shrink: 0;
    aspect-ratio: 16 / 9;
    min-height: 220px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.banner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #f26a30 0%, #ff4757 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    z-index: 2;
}

.banner-card:hover::before {
    transform: scaleX(1);
}

.banner-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(242, 106, 48, 0.2), 0 0 0 1px rgba(242, 106, 48, 0.1);
}

.banner-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

.banner-card:hover img {
    transform: scale(1.12);
}

.banner-card-content {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.85) 100%);
    backdrop-filter: blur(3px);
    padding: 32px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 12px;
    transition: all 0.4s ease;
    z-index: 1;
}

.banner-card:hover .banner-card-content {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(242, 106, 48, 0.2) 50%, rgba(0, 0, 0, 0.95) 100%);
    padding: 36px;
}

.banner-card-content h3 {
    margin: 0;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.3;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.banner-card-content p {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.banner-card-button {
    margin-top: 12px;
    align-self: flex-start;
    padding: 10px 20px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    backdrop-filter: blur(10px);
    color: #f26a30;
    font-size: 13px;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.banner-card-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(242, 106, 48, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.banner-card-button:hover::before {
    width: 300px;
    height: 300px;
}

.banner-card-button:hover {
    background: linear-gradient(135deg, #f26a30 0%, #ff4757 100%);
    color: #fff;
    border-color: transparent;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(242, 106, 48, 0.4);
}

.promo-section .banner-slide {
    flex: 0 0 calc(25% - 15px);
    min-width: 280px;
    max-width: 320px;
}

.promo-banner {
    display: flex;
    flex-direction: column;
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
    box-shadow: 0 12px 40px rgba(21, 11, 52, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.04);
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.promo-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #f26a30 0%, #ff4757 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    z-index: 1;
}

.promo-banner:hover::before {
    transform: scaleX(1);
}

.promo-banner:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(242, 106, 48, 0.2), 0 0 0 1px rgba(242, 106, 48, 0.1);
}

.promo-banner-image {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    min-height: 220px;
    overflow: hidden;
}

.promo-banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.promo-banner:hover .promo-banner-image img {
    transform: scale(1.1);
}

.promo-banner-content {
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
}

.promo-banner-content h3 {
    margin: 0;
    font-size: 24px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.3;
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.promo-banner-content p {
    margin: 0;
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.promo-banner-button {
    margin-top: 12px;
    align-self: flex-start;
    padding: 10px 22px;
    border-radius: 12px;
    background: linear-gradient(135deg, #f26a30 0%, #ff4757 100%);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(242, 106, 48, 0.3);
    position: relative;
    overflow: hidden;
}

.promo-banner-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.promo-banner-button:hover::before {
    width: 300px;
    height: 300px;
}

.promo-banner-button:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(242, 106, 48, 0.4);
}

.section-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 32px;
    color: #1d1d1d;
    position: relative;
    padding-bottom: 16px;
}

.section-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #f26a30 0%, #ff4757 100%);
    border-radius: 2px;
}

.section-heading h2 {
    margin: 0;
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-heading h2::before {
    content: '';
    width: 6px;
    height: 28px;
    background: linear-gradient(135deg, #f26a30 0%, #ff4757 100%);
    border-radius: 3px;
    display: inline-block;
}

.section-heading p {
    margin: 0;
    color: #6a6a6a;
    font-size: 14px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.product-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 36px rgba(21, 11, 52, 0.1);
    position: relative;
    display: flex;
    flex-direction: column;
}

.product-card .product-image {
    position: relative;
    display: block;
    padding-top: 100%;
    overflow: hidden;
}

.product-card .product-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.product-card .product-label {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #f26a30;
    color: #fff;
    border-radius: 999px;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 700;
}

.product-card .product-info {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.product-card .product-title {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
    color: #1f1f1f;
}

.product-card .product-price {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
}

.product-card .price-old {
    text-decoration: line-through;
    color: #9ca3af;
    font-size: 13px;
}

.product-card .price-new {
    color: #f26a30;
    font-size: 14px;
}

.currency {
    font-weight: 600;
    font-size: 11px;
    margin-right: 3px;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 16px;
    margin: 24px 0;
}

.brand-card {
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 8px 24px rgba(21, 11, 52, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.brand-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #f26a30 0%, #ff4757 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.brand-card:hover::before {
    transform: scaleX(1);
}

.brand-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 16px 40px rgba(242, 106, 48, 0.2), 0 0 0 1px rgba(242, 106, 48, 0.1);
    background: linear-gradient(135deg, #ffffff 0%, #fff5f0 100%);
}

.brand-card img {
    max-width: 120px;
    max-height: 60px;
    object-fit: contain;
}

.brand-card span {
    font-size: 13px;
    color: #333;
    font-weight: 600;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.blog-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(21, 11, 52, 0.1);
    display: flex;
    flex-direction: column;
}

.blog-card-image {
    display: block;
    position: relative;
    padding-top: 65%;
    overflow: hidden;
}

.blog-card-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
}

.blog-card-content time {
    font-size: 13px;
    color: #f26a30;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-card-content time::before {
    content: '📅';
    font-size: 14px;
}

.blog-card-content h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.4;
    transition: color 0.3s;
}

.blog-card:hover .blog-card-content h3 {
    color: #f26a30;
}

.blog-card-button {
    align-self: flex-start;
    margin-top: auto;
    padding: 10px 20px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(242, 106, 48, 0.1) 0%, rgba(255, 71, 87, 0.1) 100%);
    color: #f26a30;
    font-size: 13px;
    font-weight: 700;
    transition: all 0.3s ease;
    border: 1px solid rgba(242, 106, 48, 0.2);
    position: relative;
    overflow: hidden;
}

.blog-card-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(242, 106, 48, 0.15);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.blog-card-button:hover::before {
    width: 300px;
    height: 300px;
}

.blog-card-button:hover {
    background: linear-gradient(135deg, #f26a30 0%, #ff4757 100%);
    color: #fff;
    border-color: transparent;
    transform: translateX(-5px);
    box-shadow: 0 6px 20px rgba(242, 106, 48, 0.3);
}

.best-sellers-section .section-heading {
    flex-direction: column;
    text-align: center;
}

.best-sellers-section .product-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

@media (max-width: 768px) {
    .hero-section,
    .home-section.hero-section {
        margin-top: 30px;
        padding-top: 15px;
    }
    
    .hero-slider-wrapper {
        padding: 0 10px;
    }

    .hero-slider {
        height: 400px;
        max-height: 400px;
    }

    .hero-slider-prev,
    .hero-slider-next {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .hero-slider-prev {
        right: 10px;
    }

    .hero-slider-next {
        left: 10px;
    }

    .hero-slide figcaption {
        max-width: 85%;
        bottom: 20px;
        right: 20px;
        left: 20px;
        padding: 16px;
    }

    .hero-slide h2 {
        font-size: 20px;
    }

    .hero-slider-dots {
        bottom: 15px;
    }

    .hero-slider-dot {
        width: 10px;
        height: 10px;
    }

    .hero-slider-dot.active {
        width: 24px;
    }

    .product-grid,
    .blog-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
    
    .featured-section {
        padding: 28px 20px;
        border-radius: 16px;
    }
    
    .featured-section .section-heading h2 {
        font-size: 20px;
    }
    
    .featured-products-slider-wrapper {
        overflow: visible;
    }
    
    .featured-products-slider {
        overflow: hidden;
        position: relative;
    }
    
    .featured-products-track {
        overflow-x: auto;
        overflow-y: hidden;
    }
    
    .featured-product-slide {
        min-width: calc(83.33% - 10px) !important;
        max-width: calc(83.33% - 10px) !important;
        width: calc(83.33% - 10px) !important;
    }
    
    .featured-product-slide .add-to-cart-loop {
        padding: 8px 14px;
        font-size: 12px;
    }
    
    .featured-product-slide .add-to-cart-loop svg {
        width: 18px;
        height: 18px;
    }
    
    .featured-slider-prev,
    .featured-slider-next {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    
    .featured-slider-prev {
        right: 5px;
    }
    
    .featured-slider-next {
        left: 5px;
    }
    
    .best-seller-section {
        padding: 28px 20px;
        border-radius: 16px;
    }
    
    .best-seller-section .section-heading h2 {
        font-size: 20px;
        color: #fff !important;
        background: none !important;
        -webkit-background-clip: unset !important;
        -webkit-text-fill-color: #fff !important;
        background-clip: unset !important;
    }
    
    .best-seller-slide .wd-buttons {
        opacity: 1 !important;
        transform: translateY(0) !important;
        pointer-events: auto !important;
        top: 8px;
        left: 8px;
        right: 8px;
    }
    
    .best-seller-slide .wd-buttons.compact-actions {
        bottom: 8px;
        left: 8px;
        right: 8px;
    }
    
    .best-seller-slide .add-to-cart-loop {
        padding: 8px 14px;
        font-size: 11px;
        border-radius: 10px;
    }
    
    .best-seller-slide .add-to-cart-loop svg {
        width: 14px;
        height: 14px;
    }
    
    .best-seller-slide .add-to-cart-loop .add-to-cart-text {
        font-size: 11px;
    }
    
    .best-sellers-slider-wrapper {
        overflow: hidden;
    }
    
    .best-sellers-slider {
        overflow: hidden;
    }
    
    .best-sellers-track {
        overflow-x: auto;
        overflow-y: hidden;
    }
    
    .best-seller-slide {
        min-width: calc(83.33% - 10px) !important;
        max-width: calc(83.33% - 10px) !important;
        width: calc(83.33% - 10px) !important;
    }
    
    .best-seller-slider-prev,
    .best-seller-slider-next {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    
    .best-seller-slider-prev {
        right: 5px;
    }
    
    .best-seller-slider-next {
        left: 5px;
    }

    .banner-slider-wrapper {
        overflow: hidden;
    }
    
    .banner-slider {
        overflow: hidden;
    }
    
    .banner-slider-track {
        overflow-x: auto;
        overflow-y: hidden;
    }
    
    .banner-slide {
        flex: 0 0 calc(83.33% - 10px) !important;
        min-width: calc(83.33% - 10px) !important;
        max-width: calc(83.33% - 10px) !important;
    }

    .banner-slider-prev,
    .banner-slider-next {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .banner-slider-prev {
        right: 5px;
    }

    .banner-slider-next {
        left: 5px;
    }

    .promo-banner {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-slider-wrapper {
        padding: 0 5px;
    }

    .hero-slider {
        height: 300px;
        max-height: 300px;
    }

    .hero-slider-prev,
    .hero-slider-next {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .hero-slider-prev {
        right: 5px;
    }

    .hero-slider-next {
        left: 5px;
    }

    .hero-slide figcaption {
        max-width: calc(100% - 40px);
        right: 15px;
        left: 15px;
        bottom: 15px;
        padding: 12px 16px;
    }

    .hero-slide h2 {
        font-size: 18px;
    }

    .hero-slide-button {
        padding: 6px 14px;
        font-size: 13px;
    }

    .hero-slider-dots {
        bottom: 10px;
        gap: 6px;
    }

    .hero-slider-dot {
        width: 8px;
        height: 8px;
    }

    .hero-slider-dot.active {
        width: 20px;
    }

    .product-grid,
    .blog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .best-sellers-section .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    
    .featured-section {
        padding: 24px 16px;
        border-radius: 12px;
    }
    
    .featured-section .section-heading {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .featured-section .section-heading h2 {
        font-size: 18px;
        color: #fff !important;
        background: none !important;
        -webkit-background-clip: unset !important;
        -webkit-text-fill-color: #fff !important;
        background-clip: unset !important;
    }
    
    .featured-section .section-heading .section-link {
        font-size: 12px;
        padding: 6px 16px;
    }
    
    .featured-products-slider-wrapper {
        overflow: visible;
    }
    
    .featured-products-slider {
        overflow: hidden;
        position: relative;
    }
    
    .featured-products-track {
        overflow-x: auto;
        overflow-y: hidden;
    }
    
    .featured-product-slide {
        min-width: calc(83.33% - 10px) !important;
        max-width: calc(83.33% - 10px) !important;
        width: calc(83.33% - 10px) !important;
    }
    
    .featured-product-slide .add-to-cart-loop {
        padding: 7px 12px;
        font-size: 11px;
    }
    
    .featured-product-slide .add-to-cart-loop svg {
        width: 16px;
        height: 16px;
    }
    
    .featured-product-slide .add-to-cart-loop .add-to-cart-text {
        font-size: 11px;
    }
    
    .featured-slider-prev,
    .featured-slider-next {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
    
    .featured-slider-prev {
        right: 5px;
    }
    
    .featured-slider-next {
        left: 5px;
    }
    
    .best-seller-section {
        padding: 24px 16px;
        border-radius: 12px;
    }
    
    .best-seller-section .section-heading {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .best-seller-section .section-heading h2 {
        font-size: 18px;
        color: #fff !important;
        background: none !important;
        -webkit-background-clip: unset !important;
        -webkit-text-fill-color: #fff !important;
        background-clip: unset !important;
    }
    
    .best-seller-section .section-heading .section-link {
        font-size: 12px;
        padding: 6px 16px;
    }
    
    .best-sellers-slider-wrapper {
        overflow: hidden;
    }
    
    .best-sellers-slider {
        overflow: hidden;
    }
    
    .best-sellers-track {
        overflow-x: auto;
        overflow-y: hidden;
    }
    
    .best-seller-slide {
        min-width: calc(83.33% - 10px) !important;
        max-width: calc(83.33% - 10px) !important;
        width: calc(83.33% - 10px) !important;
    }
    
    .best-seller-slider-prev,
    .best-seller-slider-next {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
    
    .best-seller-slider-prev {
        right: 5px;
    }
    
    .best-seller-slider-next {
        left: 5px;
    }
    
    .best-seller-slide .wd-buttons {
        top: 10px;
        left: 10px;
        right: 10px;
    }
    
    .best-seller-slide .wd-buttons.compact-actions {
        bottom: 10px;
        left: 10px;
        right: 10px;
    }
    
    .best-seller-slide .add-to-cart-loop {
        padding: 10px 16px;
        font-size: 12px;
    }
    
    .best-seller-slide .add-to-cart-loop svg {
        width: 16px;
        height: 16px;
    }
    
    .best-seller-slide .add-to-cart-loop .add-to-cart-text {
        font-size: 12px;
    }

    .banner-slider-wrapper {
        overflow: hidden;
    }
    
    .banner-slider {
        overflow: hidden;
    }
    
    .banner-slider-track {
        overflow-x: auto;
        overflow-y: hidden;
    }
    
    .banner-slide {
        flex: 0 0 calc(83.33% - 10px) !important;
        min-width: calc(83.33% - 10px) !important;
        max-width: calc(83.33% - 10px) !important;
    }
}

/* Instagram Section Styles */
.instagram-section {
    padding: 60px 0;
    background: #fafafa;
}

.instagram-section .section-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 0 20px;
}

.instagram-section .section-heading h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1e1e1e;
    margin: 0;
}

.instagram-section .section-heading .section-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #f26a30;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    padding: 10px 20px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(242, 106, 48, 0.1) 0%, rgba(255, 71, 87, 0.1) 100%);
    border: 1px solid rgba(242, 106, 48, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.instagram-section .section-heading .section-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(242, 106, 48, 0.15);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.instagram-section .section-heading .section-link:hover::before {
    width: 300px;
    height: 300px;
}

.instagram-section .section-heading .section-link:hover {
    background: linear-gradient(135deg, #f26a30 0%, #ff4757 100%);
    color: #fff;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(242, 106, 48, 0.3);
}

.instagram-section .section-heading .section-link i {
    font-size: 18px;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    max-width: var(--wd-container-w, 1600px);
    margin: 0 auto;
    padding: 0 20px;
}

.instagram-post {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
    box-shadow: 0 8px 24px rgba(21, 11, 52, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.instagram-post::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(242, 106, 48, 0.1) 0%, rgba(255, 71, 87, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 1;
    pointer-events: none;
}

.instagram-post:hover::before {
    opacity: 1;
}

.instagram-post:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 16px 40px rgba(242, 106, 48, 0.25), 0 0 0 1px rgba(242, 106, 48, 0.2);
}

.instagram-post-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.instagram-post-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.instagram-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.instagram-post:hover .instagram-post-image img {
    transform: scale(1.05);
}

.instagram-post-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.instagram-post:hover .instagram-post-overlay {
    opacity: 1;
}

.instagram-post-overlay i {
    font-size: 32px;
    color: #fff;
}

.instagram-loading {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 20px;
    color: #666;
    background: linear-gradient(135deg, rgba(242, 106, 48, 0.02) 0%, rgba(255, 71, 87, 0.02) 100%);
    border-radius: 24px;
    border: 1px dashed rgba(242, 106, 48, 0.2);
}

.instagram-loading .loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(242, 106, 48, 0.1);
    border-top: 4px solid #f26a30;
    border-right: 4px solid #ff4757;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 24px;
    box-shadow: 0 4px 15px rgba(242, 106, 48, 0.2);
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.instagram-loading p {
    margin: 0;
    font-size: 16px;
    color: #555;
    font-weight: 500;
}

.instagram-error {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: #666;
    background: linear-gradient(135deg, rgba(242, 106, 48, 0.03) 0%, rgba(255, 71, 87, 0.03) 100%);
    border-radius: 24px;
    border: 1px dashed rgba(242, 106, 48, 0.2);
}

.instagram-error i {
    font-size: 56px;
    margin-bottom: 20px;
    opacity: 0.4;
    color: #f26a30;
    background: linear-gradient(135deg, rgba(242, 106, 48, 0.1) 0%, rgba(255, 71, 87, 0.1) 100%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.instagram-error p {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    color: #555;
}

.instagram-error a {
    display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    color: white !important;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 12px rgba(196, 5, 69, 0.3);
    margin-top: 10px;
}

.instagram-error a:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(196, 5, 69, 0.4);
}

.instagram-fallback {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
}

.instagram-fallback a {
    display: inline-block;
    padding: 16px 32px;
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    color: white !important;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 18px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 6px 20px rgba(196, 5, 69, 0.4);
}

.instagram-fallback a:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(196, 5, 69, 0.5);
}

@media (max-width: 768px) {
    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        padding: 0 15px;
    }
    
    .instagram-section {
        padding: 30px 20px;
    }
    
    .instagram-section .section-heading {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        padding: 0;
        margin-bottom: 24px;
    }
    
    .instagram-section .section-heading h2 {
        font-size: 22px;
    }
    
    .section-heading h2 {
        font-size: 24px;
    }
    
    .section-heading h2::before {
        height: 24px;
    }
}

@media (max-width: 480px) {
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .section-heading h2 {
        font-size: 20px;
    }
    
    .section-heading .section-link {
        padding: 8px 16px;
        font-size: 12px;
    }
}

/* Enhanced Empty States */
.empty-text {
    text-align: center;
    padding: 60px 20px;
    color: #888;
    font-size: 16px;
    background: linear-gradient(135deg, rgba(242, 106, 48, 0.02) 0%, rgba(255, 71, 87, 0.02) 100%);
    border-radius: 20px;
    border: 1px dashed rgba(242, 106, 48, 0.2);
    margin: 20px 0;
}

/* Enhanced Product Cards in Home */
.featured-product-slide .wd-product,
.best-seller-slide .wd-product {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-product-slide .wd-product:hover,
.best-seller-slide .wd-product:hover {
    transform: translateY(-8px);
}

/* Enhanced Section Transitions */
.home-section {
    opacity: 1 !important; /* Always visible */
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stagger animation for sections */
.home-section:nth-child(1) { animation-delay: 0.1s; }
.home-section:nth-child(2) { animation-delay: 0.2s; }
.home-section:nth-child(3) { animation-delay: 0.3s; }
.home-section:nth-child(4) { animation-delay: 0.4s; }
.home-section:nth-child(5) { animation-delay: 0.5s; }
.home-section:nth-child(6) { animation-delay: 0.6s; }

/* Enhanced Scroll Animations - Disabled to prevent hiding content */
/* Sections are visible by default, animations work without requiring JS */
/* @media (prefers-reduced-motion: no-preference) {
    .home-section {
        opacity: 0;
        transform: translateY(40px);
        transition: opacity 0.8s ease, transform 0.8s ease;
    }
    
    .home-section.visible {
        opacity: 1;
        transform: translateY(0);
    }
} */

/* Premium Section Dividers */
.home-section + .home-section {
    position: relative;
}

.home-section + .home-section::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #f26a30 0%, #ff4757 100%);
    border-radius: 2px;
    opacity: 0.3;
}

/* Enhanced Product Image Transitions */
.featured-product-slide .product-image-link img,
.best-seller-slide .product-image-link img {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-product-slide:hover .product-image-link img,
.best-seller-slide:hover .product-image-link img {
    transform: scale(1.08);
}

/* Premium Brand Logo Hover */
.brand-card img {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: grayscale(20%);
}

.brand-card:hover img {
    filter: grayscale(0%);
    transform: scale(1.1);
}

/* Enhanced Instagram Post Overlay */
.instagram-post-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(242, 106, 48, 0.8) 0%, rgba(255, 71, 87, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

.instagram-post:hover .instagram-post-overlay {
    opacity: 1;
}

.instagram-post-overlay i {
    font-size: 32px;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}


