/* Base Styles Removed */

.home-main {
    padding-bottom: 0;
    position: relative;
}

/* Home Slider */

.home-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: transparent;
}

.home-slider-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 7;
    margin: 0 auto;
}

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

/* Individual Slides */

.home-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
    z-index: 1;
}

.home-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

/* Slide Images */

.home-slide-image-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.home-slide-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: fill;
    object-position: center;
}

/* Desktop Image - Visible by default */
.home-slide-img-desktop {
    display: block;
}

/* Mobile Image - Hidden by default */
.home-slide-img-mobile {
    display: none;
}

/* Slide Overlay */

.home-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.1) 0%,
            rgba(0, 0, 0, 0) 30%,
            rgba(0, 0, 0, 0) 70%,
            rgba(0, 0, 0, 0.15) 100%);
    z-index: 1;
    pointer-events: none;
}

/* Slider Navigation Arrows */

.home-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease,
        border-color 0.3s ease,
        color 0.3s ease,
        box-shadow 0.3s ease;
    color: #ffffff;
    padding: 0;
    /* Remove default button styles */
    outline: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.home-slider-arrow svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    pointer-events: none;
}

.home-slider-prev {
    left: 30px;
}

.home-slider-next {
    right: 30px;
}

/* Hover state - Only for devices with hover capability */
@media (hover: hover) and (pointer: fine) {
    .home-slider-arrow:hover {
        background: rgba(255, 215, 0, 0.95);
        border-color: #ffd700;
        color: #1a1a2e;
        box-shadow: 0 8px 30px rgba(255, 215, 0, 0.5);
    }
}

/* Focus state - Remove default, keep for accessibility */
.home-slider-arrow:focus {
    outline: none;
}

/* Focus visible - For keyboard navigation only */
.home-slider-arrow:focus-visible {
    outline: 3px solid #ffd700;
    outline-offset: 3px;
    background: rgba(255, 215, 0, 0.3);
}

/* Active/Pressed state */
.home-slider-arrow:active {
    background: rgba(255, 215, 0, 0.95);
    border-color: #ffd700;
    color: #1a1a2e;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    transition: none;
}





/* Mobile Responsive Slider */

@media (max-width: 768px) {
    .home-slider-wrapper {
        /* Mobile: 9:16 aspect ratio (Portrait) */
        aspect-ratio: 9 / 16;
        height: auto;
        max-height: 85vh;
        max-width: 100%;
    }

    /* Hide desktop image on mobile */
    .home-slide-img-desktop {
        display: none;
    }

    /* Show mobile image on mobile */
    .home-slide-img-mobile {
        display: block;
    }

    /* Adjust overlay for mobile */
    .home-slide-overlay {
        background: linear-gradient(to bottom,
                rgba(0, 0, 0, 0.15) 0%,
                rgba(0, 0, 0, 0) 20%,
                rgba(0, 0, 0, 0) 80%,
                rgba(0, 0, 0, 0.2) 100%);
    }

    /* Navigation Arrows - Mobile */
    .home-slider-arrow {
        width: 44px;
        height: 44px;
        background: rgba(0, 0, 0, 0.35);
        border-color: rgba(255, 255, 255, 0.3);
    }

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

    .home-slider-prev {
        left: 15px;
    }

    .home-slider-next {
        right: 15px;
    }

    /* Active state for mobile touch */
    .home-slider-arrow:active {
        background: rgba(255, 215, 0, 0.9);
        border-color: #ffd700;
        color: #1a1a2e;
    }
}



/* Small Mobile Devices */
@media (max-width: 480px) {
    .home-slider-wrapper {
        max-height: 100svh;
    }

    .home-slider-arrow {
        width: 40px;
        height: 40px;
    }

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

    .home-slider-prev {
        left: 10px;
    }

    .home-slider-next {
        right: 10px;
    }
}

/* Extra Small Devices */
@media (max-width: 360px) {
    .home-slider-arrow {
        width: 36px;
        height: 36px;
    }

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

    .home-slider-prev {
        left: 8px;
    }

    .home-slider-next {
        right: 8px;
    }
}

/* Landscape Mobile - Use Desktop Images */
@media (max-width: 768px) and (orientation: landscape) {
    .home-slider-wrapper {
        /* Use 16:9 for landscape mobile */
        aspect-ratio: 16 / 9;
        max-height: 100vh;
        max-height: 100svh;
    }

    /* Show desktop image in landscape */
    .home-slide-img-desktop {
        display: block;
    }

    /* Hide mobile image in landscape */
    .home-slide-img-mobile {
        display: none;
    }

    .home-slider-arrow {
        width: 38px;
        height: 38px;
    }

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

/* Tablet Portrait */
@media (min-width: 769px) and (max-width: 1024px) {
    .home-slider-arrow {
        width: 50px;
        height: 50px;
    }

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

    .home-slider-prev {
        left: 25px;
    }

    .home-slider-next {
        right: 25px;
    }
}

/* Large Desktop */
@media (min-width: 1400px) {
    .home-slider-arrow {
        width: 60px;
        height: 60px;
    }

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

    .home-slider-prev {
        left: 40px;
    }

    .home-slider-next {
        right: 40px;
    }
}

/* Home About Section */
.home-about-section {
    padding: 80px 20px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.home-about-heading {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #333;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.home-about-heading::after {
    content: '';
    display: block;
    width: 60%;
    height: 4px;
    background-color: #ffd700;
    margin: 15px auto 0;
    border-radius: 2px;
}

.home-about-content {
    max-width: 900px;
    margin: 0 auto;
}

.home-about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 20px;
    font-family: 'Segoe UI', sans-serif;
}

/* Features Section */

.home-features {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    padding: 7rem 3rem;
    max-width: 1350px;
    margin: 0 auto;
    flex-wrap: wrap;
    background: transparent;
    position: relative;
    z-index: 1;
}

/* Section Divider */
.home-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 5px;
    background: linear-gradient(90deg,
            transparent 0%,
            #ffd700 20%,
            #f39c12 50%,
            #ffd700 80%,
            transparent 100%);
    border-radius: 3px;
}

/* Feature Card */
.home-feature-card {
    padding: 3.5rem 2rem;
    border-radius: 45px;
    flex: 1;
    min-width: 320px;
    max-width: 380px;
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.8);
    background: linear-gradient(145deg,
            #fffef8 0%,
            #fff9e6 30%,
            #ffefd5 60%,
            #ffe4b5 100%);
    box-shadow:
        15px 15px 35px rgba(255, 193, 7, 0.25),
        -10px -10px 30px rgba(255, 255, 255, 0.98),
        inset 4px 4px 10px rgba(255, 255, 255, 1),
        inset -4px -4px 10px rgba(255, 193, 7, 0.1);
}

.home-feature-card:hover {
    background: linear-gradient(145deg,
            #fff5d6 0%,
            #ffe4b5 50%,
            #ffd699 100%);
    transform: translateY(-15px) scale(1.02);
    box-shadow:
        20px 20px 50px rgba(255, 193, 7, 0.4),
        -15px -15px 40px rgba(255, 255, 255, 1),
        inset 4px 4px 10px rgba(255, 255, 255, 1),
        inset -4px -4px 10px rgba(255, 193, 7, 0.15),
        0 0 35px rgba(255, 215, 0, 0.25);
}

/* Feature Icon Wrapper */
.home-feature-icon-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg,
            #f39c12 0%,
            #e67e22 50%,
            #d35400 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid rgba(255, 215, 0, 0.4);
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
    box-shadow:
        8px 8px 20px rgba(211, 84, 0, 0.15),
        -6px -6px 18px rgba(255, 255, 255, 1),
        inset 3px 3px 8px rgba(255, 255, 255, 1),
        inset -3px -3px 8px rgba(255, 215, 0, 0.1);
}

.home-feature-card:hover .home-feature-icon-wrapper {
    border-color: rgba(255, 255, 255, 0.7);
    box-shadow:
        12px 12px 30px rgba(211, 84, 0, 0.4),
        -8px -8px 25px rgba(255, 255, 255, 0.9),
        inset 3px 3px 8px rgba(255, 255, 255, 0.5),
        0 0 30px rgba(255, 215, 0, 0.4);
}

.home-feature-icon {
    font-size: 2.8rem;
    display: block;
    transition: transform 0.4s ease, filter 0.4s ease;
    filter: drop-shadow(2px 2px 4px rgba(211, 84, 0, 0.2));
}

.home-feature-card:hover .home-feature-icon {
    transform: scale(1.15);
    filter: drop-shadow(3px 3px 6px rgba(0, 0, 0, 0.25));
}

.home-feature-title {
    font-size: 1.5rem;
    margin: 0 0 1.2rem 0;
    color: #d35400;
    font-family: 'Georgia', serif;
    font-weight: 700;
    transition: color 0.3s ease;
}

.home-feature-desc {
    color: #6d4c41;
    line-height: 1.9;
    font-size: 1.05rem;
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
}

/* Products Section */

.home-products {
    max-width: 100%;
    margin: 0;
    padding: 7rem 3rem;
    background: linear-gradient(180deg,
            #ffe4b5 0%,
            #ffd699 20%,
            #ffcc80 40%,
            #f5b041 60%,
            #e67e22 80%,
            #d35400 100%);
    position: relative;
    overflow: hidden;
}

/* Top Wave */
.home-products::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    right: 0;
    height: 80px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 80'%3E%3Cpath d='M0,80 C150,60 350,20 600,40 C850,60 1050,20 1200,80 L1200,0 L0,0 Z' fill='%23ffe4b5'/%3E%3C/svg%3E") no-repeat;
    background-size: cover;
}

.home-products-container {
    max-width: 1250px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title {
    font-size: 3.2rem;
    color: #ffffff;
    margin: 0;
    font-family: 'Georgia', serif;
    font-weight: 700;
    letter-spacing: -0.5px;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.2);
    display: inline-block;
    padding: 20px 50px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 30px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    box-shadow:
        10px 10px 30px rgba(160, 64, 0, 0.2),
        -8px -8px 25px rgba(255, 255, 255, 0.15),
        inset 2px 2px 5px rgba(255, 255, 255, 0.3);
}

.section-title-underline {
    display: block;
    width: 120px;
    height: 6px;
    background: linear-gradient(90deg,
            #ffffff 0%,
            #ffd700 50%,
            #ffffff 100%);
    margin: 2rem auto 0;
    border-radius: 3px;
    box-shadow: 0 3px 15px rgba(255, 255, 255, 0.5);
}

/* Products Grid */
.home-products-grid {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 5rem;
}

/* Product Card */
.home-product-card {
    background: linear-gradient(145deg,
            #ffffff 0%,
            #fffef8 30%,
            #fff9e6 60%,
            #ffefd5 100%);
    border-radius: 40px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    width: 360px;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    border: 4px solid rgba(255, 255, 255, 0.9);
    position: relative;
    box-shadow:
        15px 15px 40px rgba(160, 64, 0, 0.2),
        -10px -10px 30px rgba(255, 255, 255, 0.4),
        inset 3px 3px 8px rgba(255, 255, 255, 1);
}

.home-product-card:hover {
    transform: translateY(-18px) scale(1.02);
    border-color: rgba(255, 215, 0, 0.6);
    box-shadow:
        25px 25px 60px rgba(160, 64, 0, 0.35),
        -15px -15px 40px rgba(255, 255, 255, 0.6),
        inset 3px 3px 8px rgba(255, 255, 255, 1),
        0 0 45px rgba(255, 215, 0, 0.3);
}

/* Product Image Wrapper */
.home-product-image-wrapper {
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg,
            #fffef8 0%,
            #fff9e6 100%);
    padding: 20px;
}

.home-product-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
    border-radius: 28px;
    box-shadow:
        inset 4px 4px 10px rgba(255, 255, 255, 0.9),
        inset -4px -4px 10px rgba(211, 84, 0, 0.06),
        6px 6px 18px rgba(211, 84, 0, 0.12);
}

.home-product-card:hover img {
    transform: scale(1.08);
}

/* Golden Overlay */
.home-product-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    background: linear-gradient(135deg,
            rgba(255, 215, 0, 0) 0%,
            rgba(255, 215, 0, 0.12) 50%,
            rgba(255, 215, 0, 0) 100%);
    border-radius: 28px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.home-product-card:hover .home-product-overlay {
    opacity: 1;
}

/* Product Info */
.home-product-info {
    padding: 2rem 2.5rem 2.5rem;
    text-align: center;
    background: linear-gradient(180deg,
            #ffffff 0%,
            #fffef8 100%);
    position: relative;
}

.home-product-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 4px;
    background: linear-gradient(90deg,
            #f39c12 0%,
            #ffd700 50%,
            #f39c12 100%);
    border-radius: 2px;
    transition: width 0.4s ease;
}

.home-product-card:hover .home-product-info::before {
    width: 70%;
}

.home-product-info h4 {
    margin: 0 0 1rem 0;
    font-size: 1.3rem;
    color: #3d2914;
    font-family: 'Georgia', serif;
    font-weight: 700;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.home-product-card:hover .home-product-info h4 {
    color: #d35400;
}

.home-product-price {
    font-weight: 800;
    font-size: 1.6rem;
    font-family: 'Georgia', serif;
    display: inline-block;
    padding: 10px 25px;
    background: linear-gradient(145deg,
            rgba(255, 248, 220, 0.9) 0%,
            rgba(255, 239, 186, 0.9) 100%);
    border-radius: 30px;
    color: #d35400;
    border: 3px solid rgba(255, 215, 0, 0.5);
    box-shadow:
        inset 3px 3px 6px rgba(255, 255, 255, 1),
        inset -2px -2px 4px rgba(255, 215, 0, 0.15),
        4px 4px 12px rgba(211, 84, 0, 0.15);
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.home-product-card:hover .home-product-price {
    background: linear-gradient(135deg,
            #f39c12 0%,
            #e67e22 100%);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow:
        inset 2px 2px 4px rgba(255, 255, 255, 0.4),
        6px 6px 18px rgba(211, 84, 0, 0.3);
    transform: scale(1.05);
}

/* View All Button */
.text-center {
    text-align: center;
}

.home-view-all {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(145deg,
            #ffffff 0%,
            #fffaf0 50%,
            #fff9e6 100%);
    color: #d35400;
    padding: 1.4rem 4.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    transition: background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease,
        text-shadow 0.3s ease;
    border: 4px solid rgba(255, 215, 0, 0.6);
    box-shadow:
        12px 12px 35px rgba(160, 64, 0, 0.25),
        -8px -8px 28px rgba(255, 255, 255, 0.5),
        inset 3px 3px 8px rgba(255, 255, 255, 1),
        inset -3px -3px 8px rgba(255, 215, 0, 0.1);
}

.home-view-all:hover {
    background: linear-gradient(135deg,
            #f39c12 0%,
            #e67e22 50%,
            #d35400 100%);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-5px);
    box-shadow:
        18px 18px 50px rgba(160, 64, 0, 0.4),
        -12px -12px 35px rgba(255, 255, 255, 0.4),
        inset 3px 3px 8px rgba(255, 255, 255, 0.4),
        inset -3px -3px 8px rgba(160, 64, 0, 0.2),
        0 0 40px rgba(255, 215, 0, 0.35);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.home-view-all:active {
    transform: translateY(-2px);
}

/* ================================== */
/* RESPONSIVE - FEATURES & PRODUCTS */
/* ================================== */

@media (max-width: 1024px) {
    .home-features {
        gap: 2rem;
        padding: 6rem 2rem;
    }

    .home-feature-card {
        min-width: 290px;
        max-width: 350px;
        padding: 3rem 1.8rem;
    }

    .home-products {
        padding: 6rem 2rem;
    }

    .section-title {
        font-size: 2.8rem;
        padding: 18px 40px;
    }

    .home-product-card {
        width: 340px;
    }
}

@media (max-width: 900px) {
    .section-title {
        font-size: 2.4rem;
        padding: 15px 35px;
    }

    .home-products {
        padding: 5rem 1.5rem;
    }

    .home-features::before {
        width: 100px;
    }
}

@media (max-width: 680px) {
    .home-features {
        padding: 5rem 1rem;
        gap: 1.5rem;
    }

    .home-features::before {
        width: 80px;
        height: 4px;
    }

    .home-feature-card {
        min-width: 100%;
        max-width: 420px;
        padding: 2.8rem 1.8rem;
        border-radius: 35px;
    }

    .home-feature-icon-wrapper {
        width: 85px;
        height: 85px;
    }

    .home-feature-icon {
        font-size: 2.4rem;
    }

    .home-product-card {
        width: 100%;
        max-width: 380px;
        border-radius: 35px;
    }

    .home-products-grid {
        gap: 2.5rem;
        margin-bottom: 4rem;
    }

    .home-products::before {
        height: 50px;
    }

    .home-view-all {
        padding: 1.2rem 3.5rem;
        font-size: 0.95rem;
        width: 90%;
        max-width: 350px;
    }

    .section-title {
        font-size: 2.1rem;
        padding: 12px 28px;
    }
}

@media (max-width: 480px) {
    .home-features {
        padding: 4rem 0.8rem;
    }

    .home-feature-card {
        padding: 2.3rem 1.5rem;
        border-radius: 30px;
        border-width: 2px;
    }

    .home-feature-icon-wrapper {
        width: 75px;
        height: 75px;
        margin-bottom: 1.5rem;
        border-width: 3px;
    }

    .home-feature-icon {
        font-size: 2.1rem;
    }

    .home-feature-title {
        font-size: 1.3rem;
    }

    .home-feature-desc {
        font-size: 0.95rem;
    }

    .home-products {
        padding: 4rem 0.8rem;
    }

    .section-title {
        font-size: 1.8rem;
        padding: 10px 22px;
        border-radius: 22px;
    }

    .section-title-underline {
        width: 80px;
        height: 5px;
    }

    .home-product-card {
        border-radius: 30px;
        border-width: 3px;
    }

    .home-product-card img {
        height: 220px;
        border-radius: 22px;
    }

    .home-product-image-wrapper {
        padding: 15px;
    }

    .home-product-info {
        padding: 1.8rem 1.5rem 2rem;
    }

    .home-product-info h4 {
        font-size: 1.15rem;
    }

    .home-product-price {
        font-size: 1.4rem;
        padding: 8px 20px;
    }

    .home-view-all {
        padding: 1.1rem 2.8rem;
        font-size: 0.88rem;
        border-radius: 45px;
        border-width: 3px;
    }
}

@media (max-width: 360px) {
    .home-features {
        padding: 3rem 0.6rem;
    }

    .home-feature-card {
        padding: 2rem 1.2rem;
        border-radius: 26px;
    }

    .home-feature-icon-wrapper {
        width: 65px;
        height: 65px;
    }

    .home-feature-icon {
        font-size: 1.8rem;
    }

    .home-feature-title {
        font-size: 1.2rem;
    }

    .home-feature-desc {
        font-size: 0.88rem;
        line-height: 1.7;
    }

    .home-products {
        padding: 3.5rem 0.6rem;
    }

    .section-title {
        font-size: 1.55rem;
        padding: 8px 18px;
    }

    .home-product-card img {
        height: 190px;
    }

    .home-product-info {
        padding: 1.5rem 1.2rem;
    }

    .home-product-info h4 {
        font-size: 1.05rem;
    }

    .home-product-price {
        font-size: 1.25rem;
        padding: 6px 16px;
    }

    .home-view-all {
        padding: 1rem 2.2rem;
        font-size: 0.82rem;
    }
}

/* Reduced Motion */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .home-slide {
        transition: none;
    }


}