/* ============================================
   WIX QUENX HERO - Parallax Banner
   Clean full-width hero with parallax & animations
   ============================================ */

/* HERO WRAPPER - adds side margins so hero floats */
.wix-hero-wrapper {
    padding: 24px 40px 0;
    box-sizing: border-box;
    max-width: 100%;
    overflow: hidden;
}

/* HERO CONTAINER */
.wix-hero {
    position: relative;
    width: 100%;
    height: calc(100vh - 120px);
    min-height: 560px;
    max-height: 780px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f4ef;
    border-radius: 22px;
    box-sizing: border-box;
}

/* BACKGROUND BANNER IMAGE - PARALLAX ENABLED */
.wix-hero-bg {
    position: absolute;
    top: -10%;
    left: 0;
    width: 100%;
    height: 120%;
    background-image: url('/images/1.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 1;
    border-radius: 22px;
    will-change: transform;
    transform: translateZ(0);
}

/* OVERLAY - keep transparent, banner has its own design */
.wix-hero-overlay {
    display: none;
}

/* CONTENT CONTAINER - unused, text removed */
.wix-hero-content { display: none; }

/* HERO SLIDER */
.wix-hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

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

.wix-hero-slide .wix-hero-bg {
    animation: none;
}

.wix-hero-slide.active .wix-hero-bg {
    animation: heroBgZoom 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

/* HERO SLIDER DOTS */
.hero-slider-dots {
    position: absolute;
    bottom: 32px;
    right: 40px;
    z-index: 15;
    display: flex;
    gap: 10px;
    align-items: center;
}

.hero-slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.hero-slider-dot.active {
    background: rgba(255, 255, 255, 0.95);
    transform: scale(1.2);
}

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

/* FLOATING PRODUCT CARD - RIGHT SIDE */
.wix-hero-product-card {
    position: absolute;
    right: 72px;
    top: 50%;
    transform: translateY(-50%);
    width: 340px;
    background: white;
    border-radius: 18px;
    padding: 20px;
    z-index: 20;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.13),
        0 8px 24px rgba(0, 0, 0, 0.08);
    animation: wixFloatCard 0.9s ease-out 0.5s both;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s ease;
}

.wix-hero-product-card:hover {
    transform: translateY(calc(-50% - 8px));
    box-shadow:
        0 32px 80px rgba(0, 0, 0, 0.18),
        0 12px 36px rgba(0, 0, 0, 0.12);
}

@keyframes wixFloatCard {
    from {
        opacity: 0;
        transform: translateY(-44%) translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateY(-50%) translateX(0);
    }
}

/* PRODUCT IMAGE AREA */
.wix-hero-product-card > .wix-product-image-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 1.1;
    background: #ebebeb;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 16px;
}

.wix-hero-product-card .wix-product-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 14px;
    box-sizing: border-box;
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* SALE BADGE - pill shape like Wix template */
.wix-sale-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 16px;
    background: #896d48;
    color: white;
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
    border-radius: 50px;
}

/* PRODUCT NAME - bold sans-serif */
.wix-hero-product-card .wix-product-name {
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    font-size: 19px;
    font-weight: 700;
    color: #111111;
    margin-bottom: 8px;
    letter-spacing: -0.3px;
    line-height: 1.25;
}

/* PRICE */
.wix-hero-product-card .wix-product-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}

.wix-product-price .wix-price-original {
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    font-size: 15px;
    color: #888888;
    text-decoration: line-through;
    font-weight: 400;
}

.wix-product-price .wix-price-sale {
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    font-size: 19px;
    color: #896d48;
    font-weight: 700;
    letter-spacing: -0.3px;
}

/* VIEW ALL PRODUCTS BUTTON */
.wix-add-to-cart {
    width: 100%;
    padding: 14px 24px;
    background: #896d48;
    color: white;
    border: none;
    border-radius: 8px;
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.wix-add-to-cart:hover {
    background: #6d5639;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(137, 109, 72, 0.4);
}

/* ============================================
   HERO SCROLL INDICATOR - LEFT ALIGNED
   ============================================ */

.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 40px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    opacity: 0;
    animation: heroFadeIn 1s ease-out 1.2s both;
}

.hero-scroll-text {
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
}

.hero-scroll-line {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    border-radius: 1px;
    margin-left: 6px;
}

.hero-scroll-dot {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 12px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 1px;
    animation: heroScrollBounce 2s ease-in-out infinite;
}

@keyframes heroScrollBounce {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(28px); opacity: 0.4; }
}

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

/* Entrance animation for hero bg */
.wix-hero-bg {
    animation: heroBgZoom 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

@keyframes heroBgZoom {
    from { transform: scale(1.08) translateZ(0); opacity: 0.8; }
    to   { transform: scale(1) translateZ(0); opacity: 1; }
}

/* ===== RESPONSIVE BREAKPOINTS ===== */

/* Large tablets and smaller desktops */
@media (max-width: 1400px) {
    .wix-hero-wrapper {
        padding: 20px 28px 0;
    }

    .wix-hero {
        min-height: 520px;
    }

    .wix-hero-product-card {
        width: 300px;
        right: 60px;
    }

    .hero-slider-dots {
        right: 32px;
    }
}

/* Medium screens */
@media (max-width: 1200px) {
    .wix-hero-product-card {
        width: 280px;
        right: 48px;
        padding: 18px;
    }
}

/* Tablets */
@media (max-width: 1024px) {
    .wix-hero-wrapper {
        padding: 14px 14px 0;
    }

    .wix-hero {
        height: auto;
        min-height: 500px;
        max-height: none;
        border-radius: 16px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 48px 24px;
    }

    .wix-hero-bg,
    .wix-hero-overlay {
        border-radius: 16px;
    }

    .wix-hero-product-card {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: 100%;
        max-width: 340px;
        margin: 32px auto 0;
        animation: wixSlideUp 0.9s ease-out 0.5s both !important;
    }

    .wix-hero-product-card:hover {
        transform: translateY(-6px) !important;
    }

    .hero-slider-dots {
        right: 24px;
        bottom: 24px;
    }

    .hero-scroll-indicator {
        bottom: 24px;
        left: 32px;
    }

    .hero-scroll-text {
        font-size: 10px;
    }

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

/* Mobile */
@media (max-width: 768px) {
    .wix-hero-wrapper {
        padding: 8px 8px 0;
    }

    .wix-hero {
        border-radius: 14px;
        padding: 0;
        min-height: auto;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        position: relative;
        height: 360px;
    }

    .wix-hero-slide {
        position: absolute;
        inset: 0;
        border-radius: 14px;
    }

    .wix-hero-slide .wix-hero-bg {
        position: absolute;
        inset: 0;
        border-radius: 14px;
        height: 100%;
        background-position: center center;
    }

    .wix-hero-product-card {
        display: none;
    }

    .hero-scroll-indicator {
        bottom: 20px;
        left: 24px;
    }

    .hero-scroll-text {
        font-size: 9px;
        letter-spacing: 1.5px;
    }

    .hero-scroll-line {
        height: 32px;
    }

    .hero-slider-dots {
        right: 20px;
        bottom: 20px;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .wix-hero-wrapper {
        padding: 6px 6px 0;
    }

    .wix-hero {
        border-radius: 12px;
        height: 320px;
    }

    .wix-hero-slide {
        border-radius: 12px;
    }

    .wix-hero-slide .wix-hero-bg {
        border-radius: 12px;
    }

    .hero-scroll-indicator {
        bottom: 16px;
        left: 20px;
    }

    .hero-slider-dots {
        right: 16px;
        bottom: 16px;
    }
}

/* ============================================
   WIX BEST SELLERS & COLLECTIONS SECTIONS
   ============================================ */

/* Shared Section Padding */
.wix-best-sellers,
.wix-collections,
.wix-cat-section {
    padding: 80px 40px;
    margin: 0 auto;
    box-sizing: border-box;
    max-width: 100%;
    overflow-x: hidden;
}

/* Section Header: centered title + subtitle */
.wix-bs-header {
    text-align: center;
    margin-bottom: 48px;
}

.wix-bs-title {
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    font-size: 32px;
    font-weight: 900;
    color: #171c3c;
    letter-spacing: -0.5px;
    text-transform: uppercase;
    margin: 0 0 8px 0;
}

.wix-bs-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #666666;
    margin: 0;
    font-weight: 400;
}

.wix-bs-view-all {
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #171c3c;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 36px;
    border: 2px solid #171c3c;
    border-radius: 8px;
    background: transparent;
    min-width: 160px;
}

.wix-bs-view-all:hover {
    background: #171c3c;
    color: #ffffff;
}

/* Footer link - centered button below slider */
.wix-bs-footer-link {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

/* 4-column product grid -> horizontal slider */
.wix-bs-grid {
    display: flex;
    gap: 40px;
    overflow-x: auto;
    padding: 19px 0 32px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
}

.wix-bs-grid::-webkit-scrollbar {
    display: none;
}

/* Product card -> fixed width for slider */
.wix-bs-card {
    flex: 0 0 auto;
    width: 300px;
    text-decoration: none;
    color: inherit;
    display: block;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    scroll-snap-align: start;
    border: 1px solid #f0f0f0;
    position: relative;
}

.wix-bs-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.1), 0 4px 12px rgba(0,0,0,0.06);
}

/* ============================================
   SLIDER WRAPPER WITH ARROW NAVIGATION
   ============================================ */

.slider-wrapper {
    position: relative;
    margin: 0 -40px;
    padding: 0 52px;
}

.slider-arrow {
    position: absolute;
    top: 38%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    color: #171c3c;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.25s ease;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}

.slider-arrow:hover {
    background: #171c3c;
    color: #ffffff;
    border-color: #171c3c;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.slider-arrow.prev {
    left: 4px;
}

.slider-arrow.next {
    right: 4px;
}

.slider-arrow svg {
    width: 20px;
    height: 20px;
}

/* Product image area */
.wix-bs-image-area {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(110deg, #f0f0f0 8%, #f8f8f8 18%, #f0f0f0 33%);
    background-size: 200% 100%;
    animation: shimmer 1.5s linear infinite;
    overflow: hidden;
    margin-bottom: 0;
}

.wix-bs-image-area.is-img-loaded {
    background: #f5f5f5;
    animation: none;
}

@keyframes shimmer {
    to {
        background-position-x: -200%;
    }
}

/* Smooth image fade-in when loaded */
.wix-bs-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.wix-bs-image-area.is-img-loaded .wix-bs-image {
    opacity: 1;
}

.wix-bs-card:hover .wix-bs-image {
    transform: scale(1.06);
}

/* Badge */
.wix-bs-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #dbeafe;
    color: #1e40af;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 50px;
    letter-spacing: 0.3px;
    z-index: 2;
}

.wix-bs-badge.wix-bs-badge-sale {
    background: #fef3c7;
    color: #92400e;
}

/* Card body */
.wix-bs-info {
    padding: 16px;
}

/* Rating */
.wix-bs-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
}

.wix-bs-stars {
    color: #f59e0b;
    font-size: 14px;
    letter-spacing: 1px;
}

.wix-bs-reviews {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #888888;
}

/* Product name */
.wix-bs-name {
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #171c3c;
    margin: 0 0 6px 0;
    line-height: 1.35;
}

/* Description */
.wix-bs-desc {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #666666;
    line-height: 1.5;
    margin: 0 0 14px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Card footer: price + arrow button */
.wix-bs-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.wix-bs-price {
    display: flex;
    align-items: center;
    gap: 8px;
}

.wix-bs-original {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #999999;
    text-decoration: line-through;
    font-weight: 400;
}

.wix-bs-current {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: #171c3c;
    font-weight: 700;
}

/* Red arrow button */
.wix-bs-arrow-btn {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #c12329;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.wix-bs-card:hover .wix-bs-arrow-btn {
    transform: scale(1.08);
    box-shadow: 0 4px 12px rgba(193, 35, 41, 0.35);
}

.wix-bs-arrow-btn svg {
    width: 18px;
    height: 18px;
}

/* ============================================
   SHOP BY COLLECTION GRID -> horizontal slider
   ============================================ */

.wix-collections-grid {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 8px 0 16px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
}

.wix-collections-grid::-webkit-scrollbar {
    display: none;
}

.wix-collection-card {
    flex: 0 0 auto;
    width: 320px;
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.25s ease;
    scroll-snap-align: start;
}

.wix-collection-card:hover {
    transform: translateY(-4px);
}

.wix-collection-image {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 10px;
    overflow: hidden;
    background: #f0f0f0;
    margin-bottom: 10px;
}

.wix-collection-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.wix-collection-card:hover .wix-collection-image img {
    transform: scale(1.06);
}

.wix-collection-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0);
    transition: background 0.3s ease;
}

.wix-collection-card:hover .wix-collection-overlay {
    background: rgba(0,0,0,0.08);
}

.wix-collection-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #999;
    font-size: 13px;
    letter-spacing: 1px;
}

.wix-collection-name {
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #111111;
    letter-spacing: 0.5px;
    text-align: center;
}

/* ============================================
   RESPONSIVE - BEST SELLERS & COLLECTIONS
   ============================================ */

/* ============================================
   PROFESSIONAL BRAND-LEVEL ENHANCEMENTS
   ============================================ */

/* Section breathing room */
.wix-best-sellers + .wix-collections,
.wix-collections + .wix-cat-section,
.wix-cat-section + .wix-cat-section {
    margin-top: 20px;
}

/* View-all link underline animation */
.wix-bs-view-all {
    position: relative;
}

.wix-bs-view-all::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: currentColor;
    transition: width 0.3s ease;
}

.wix-bs-view-all:hover::after {
    width: 100%;
}

/* Collection image fade-in */
.wix-collection-image img {
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.wix-collection-image.is-img-loaded img {
    opacity: 1;
}

/* Badge subtle pop on hover */
.wix-bs-card:hover .wix-bs-badge {
    transform: scale(1.05);
}

.wix-bs-badge {
    transition: transform 0.25s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

/* Price hover color shift */
.wix-bs-card:hover .wix-bs-current {
    color: #896d48;
    transition: color 0.25s ease;
}

/* Focus states for accessibility */
.wix-bs-card:focus-visible,
.wix-collection-card:focus-visible {
    outline: 2px solid #896d48;
    outline-offset: 4px;
    border-radius: 4px;
}

/* Smooth scrolling for the whole page */
html {
    scroll-behavior: smooth;
}

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */

/* Tablet: 768px - 1024px */
@media (max-width: 1024px) {
    .wix-best-sellers,
    .wix-collections,
    .wix-cat-section {
        padding: 48px 20px;
    }

    .slider-wrapper {
        margin: 0;
        padding: 0 44px;
    }

    .slider-arrow {
        width: 44px;
        height: 44px;
    }

    .wix-bs-title {
        font-size: 26px;
    }

    .wix-bs-subtitle {
        font-size: 14px;
    }

    .wix-bs-card {
        width: 260px;
    }

    .wix-collection-card {
        width: 280px;
    }

    .wix-bs-grid {
        padding: 8px 0 20px;
    }

    .wix-collections-grid {
        padding: 8px 0 16px;
    }

    .wix-bs-footer-link {
        margin-top: 28px;
    }

    .wix-bs-view-all {
        padding: 12px 32px;
        font-size: 12px;
    }
}

/* Mobile: < 768px */
@media (max-width: 767px) {
    .wix-best-sellers,
    .wix-collections,
    .wix-cat-section {
        padding: 36px 12px;
    }

    .slider-wrapper {
        margin: 0;
        padding: 0 40px;
    }

    .slider-arrow {
        display: none;
    }

    .wix-bs-header {
        margin-bottom: 32px;
    }

    .wix-bs-title {
        font-size: 22px;
        letter-spacing: 0;
    }

    .wix-bs-subtitle {
        font-size: 13px;
    }

    .wix-bs-card {
        width: 240px;
        border-radius: 12px;
    }

    .wix-collection-card {
        width: 260px;
    }

    .wix-bs-grid {
        gap: 16px;
        padding: 4px 0 16px;
    }

    .wix-collections-grid {
        gap: 16px;
        padding: 4px 0 12px;
    }

    .wix-bs-image-area {
        height: 240px;
    }

    .wix-bs-info {
        padding: 16px;
    }

    .wix-bs-name {
        font-size: 15px;
    }

    .wix-bs-desc {
        font-size: 12px;
        -webkit-line-clamp: 2;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .wix-bs-footer {
        margin-top: 12px;
        padding-top: 12px;
    }

    .wix-bs-current {
        font-size: 15px;
    }

    .wix-bs-arrow-btn {
        width: 36px;
        height: 36px;
        border-radius: 8px;
    }

    .wix-bs-footer-link {
        margin-top: 24px;
    }

    .wix-bs-view-all {
        padding: 12px 28px;
        font-size: 12px;
        min-width: 140px;
    }
}

/* Small mobile: < 480px */
@media (max-width: 479px) {
    .wix-best-sellers,
    .wix-collections,
    .wix-cat-section {
        padding: 28px 10px;
    }

    .slider-wrapper {
        margin: 0;
        padding: 0 5px;
    }

    .wix-bs-card {
        width: 220px;
    }

    .wix-collection-card {
        width: 240px;
    }

    .wix-bs-grid {
        gap: 12px;
        padding: 4px 0 12px;
    }

    .wix-collections-grid {
        gap: 12px;
        padding: 4px 0 10px;
    }

    .wix-bs-image-area {
        height: 220px;
    }

    .wix-bs-info {
        padding: 14px;
    }

    .wix-bs-footer-link {
        margin-top: 20px;
    }

    .wix-bs-view-all {
        padding: 10px 24px;
        font-size: 12px;
        min-width: 130px;
    }
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    .wix-bs-image,
    .wix-collection-image img,
    .wix-bs-card,
    .wix-collection-card,
    .wix-hero-product-card,
    .wix-add-to-cart {
        transition: none !important;
        animation: none !important;
    }
}
