/* Homepage layout and section styling.
   Card/button/input patterns are split into component files. */
@import url("components/homepage-cards.css");
@import url("components/homepage-buttons.css");
@import url("components/homepage-inputs.css");

/* --- NEW: Static Homepage Styles --- */
.static-homepage {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    background: #fff;
}

/* --- Hero Banner --- */
.hero-banner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 1rem 0;
}

.hero-banner-inner {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.hero-banner-image {
    width: 100%;
    height: auto;
    display: block;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 3rem 2rem 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
    text-align: center;
    color: #fff;
}

.hero-headline {
    font-size: 2.25rem;
    font-weight: 800;
    margin: 0 0 0.5rem;
    line-height: 1.2;
}

.hero-subline {
    font-size: 1.1rem;
    margin: 0 0 1.25rem;
    opacity: 0.95;
}

.hero-cta {
    display: inline-block;
    padding: 0.875rem 2rem;
    background: #2A2A2A;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 50px;
    transition: background 0.2s ease, transform 0.2s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.hero-cta:hover {
    background: var(--brand-green-dark);
    transform: translateY(-2px);
}

@media (max-width: 600px) {
    .hero-banner {
        padding: 0;
    }

    .hero-banner-inner {
        border-radius: 0;
        box-shadow: none;
        overflow: hidden;
        position: relative;
    }

    .hero-banner-image {
        width: 100%;
        height: 70vw;
        object-fit: cover;
        object-position: center;
    }

    .hero-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
        padding: 2rem 1.25rem 1.5rem;
        text-align: center;
    }

    .hero-headline {
        font-size: 1.3rem;
        color: #fff;
        margin-bottom: 0.5rem;
    }

    .hero-subline {
        font-size: 0.9rem;
        color: rgba(255,255,255,0.95);
        margin-bottom: 0;
    }

    .hero-cta {
        display: none;
    }
}

/* --- Life Skills Slider --- */
.life-skills-slider {
    background: #fff;
    padding: 1.5rem 0;
    overflow: hidden;
    position: relative;
}

/* Mobile scroll indicator - arrow on right edge */
.life-skills-slider::before {
    content: '';
    position: absolute;
    right: 12px;
    top: 50%;
    width: 12px;
    height: 12px;
    border-right: 3px solid rgba(0,0,0,0.4);
    border-bottom: 3px solid rgba(0,0,0,0.4);
    transform: translateY(-50%) rotate(-45deg);
    pointer-events: none;
    z-index: 3;
}

/* Mobile scroll indicator - gradient fade on right edge */
.life-skills-slider::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 100%;
    background: linear-gradient(to left, rgba(255,255,255,1) 0%, rgba(255,255,255,0.9) 50%, transparent 100%);
    pointer-events: none;
    z-index: 2;
}

.life-skills-track {
    display: flex;
    gap: 0.75rem;
    padding: 0 0 0 1rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
}

.life-skills-track::after {
    content: '';
    flex: 0 0 1rem;
}

.life-skills-track::-webkit-scrollbar {
    display: none;
}

.life-skill-item {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--brand-text);
    padding: 0.5rem;
    scroll-snap-align: start;
    transition: transform 0.2s ease;
}

.life-skill-item:hover {
    transform: translateY(-4px);
}

.life-skill-icon {
    width: 90px;
    height: 90px;
    margin-bottom: 0.5rem;
}

.life-skill-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.life-skill-name {
    font-size: 0.75rem;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
    color: var(--brand-text);
}

@media (min-width: 601px) {
    .life-skills-slider {
        padding: 2rem 1rem;
        max-width: 1200px;
        margin: 0 auto;
    }

    /* Hide scroll indicators on desktop */
    .life-skills-slider::before,
    .life-skills-slider::after {
        display: none;
    }

    .life-skills-track::after {
        display: none;
    }

    .life-skills-track {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 1.5rem 1rem;
        overflow-x: visible;
        padding: 0;
    }

    .life-skill-item {
        scroll-snap-align: unset;
    }

    .life-skill-icon {
        width: 120px;
        height: 120px;
    }

    .life-skill-name {
        font-size: 1rem;
    }
}

/* --- Build Sections (Technical Drawing Style) --- */
/* Search Divider */
.search-divider {
    position: relative;
    width: 100%;
    height: 20px;
    overflow: visible;
    background-image: url('/cdn/assets/icons/glyphs/builds_divider/section_divider_menu.svg');
    background-repeat: no-repeat;
    background-size: 100% 2px;
    background-position: center;
}

.search-divider__line {
    display: none;
}

.search-divider__center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(0.5);
    height: 24px;
    width: auto;
}

.search-divider__arrow {
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    height: 20px;
    width: auto;
}

@media (min-width: 861px) {
    .search-divider {
        width: 100%;
        box-sizing: border-box;
        background: none;
    }

    .search-divider__line {
        display: block;
        position: absolute;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
        width: 100%;
        height: 3px;
        object-fit: fill;
    }

    .search-divider__arrow {
        right: calc(50% - 400px + 26px);
    }
}

@media (min-width: 1200px) {
    .search-divider__arrow {
        right: calc((100% - 1200px) / 2 + (1200px - 800px) / 2 + 26px);
    }
}

/* Main "BUILDS & KITS" title */
.builds-kits-title {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: 0.05em;
    color: #000;
    text-transform: uppercase;
    margin: 1rem 0 0.5rem 1rem;
    padding: 0;
    position: relative;
}

.builds-kits-title__dash {
    position: absolute;
    right: 100%;
    top: 50%;
    height: 0.6em;
    width: auto;
    transform: translateY(-50%) scale(0.25);
    transform-origin: right center;
    margin-right: 0.1em;
}

.builds-kits-title__arrow {
    position: absolute;
    left: -10px;
    top: 100%;
    height: 1.25em;
    width: auto;
    transform: translateX(-50%);
    margin-top: -10px;
}


.build-section {
    padding: 0.75rem 1rem;
    background: #fff;
}

.build-section__title {
    display: flex;
    align-items: center;
    gap: 0.3em;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 0.91rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #000;
    margin: -10px 0 0.6rem 0;
    text-transform: uppercase;
    position: relative;
}

.build-section--supplies-header {
    position: relative;
}

.build-section--supplies-header .build-section__title {
    position: relative;
}

.build-section__arrow-down {
    position: absolute;
    left: -5px;
    top: calc(50% + 5px);
    height: 1.875rem;
    width: auto;
    transform: translate(-100%, -100%);
}

.build-section__arrow-end {
    height: 0.96em;
    position: relative;
    top: 5px;
    width: auto;
    margin-left: 0.2em;
}

.build-section__subtitle {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: #000;
    margin: 0 0 0.4rem 0;
    text-transform: uppercase;
}

.build-section__subtitle::before {
    content: '— ';
}

.build-section__track {
    display: flex;
    gap: 0.4rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
    padding-bottom: 0.2rem;
}

.build-section__track::-webkit-scrollbar {
    display: none;
}

.homepage-hero {
    padding: 2rem 1.5rem 3rem;
    text-align: center;
}

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

.homepage-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--brand-green-dark);
    margin-bottom: 1rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.homepage-description {
    font-size: 1.35rem;
    color: #556b63;
    margin-bottom: 3rem;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* --- Social Proof Section (Marquee in Hero) --- */
.social-proof-section {
    margin: 2rem 0 0 0;
    /* Top margin only */
    padding: 1rem 0;
    background: transparent;
    /* Transparent background for hero integration */
    overflow: hidden;
    width: 100%;
}

.social-proof-heading {
    text-align: center;
    font-size: 1.2rem;
    /* Smaller heading for hero context */
    font-weight: 700;
    color: var(--brand-text);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    opacity: 0.8;
}

.testimonial-marquee {
    width: 100%;
    position: relative;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.testimonial-track {
    display: flex;
    gap: 1.5rem;
    width: max-content;
    animation: scroll 90s linear infinite;
    padding: 0.5rem 0;
    /* Minimal padding */
    align-items: center;
}

.testimonial-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
        /* Move half the width */
    }
}

.testimonial-image {
    height: 120px;
    /* Fixed height for consistent marquee */
    width: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex-shrink: 0;
    display: block;
}

.testimonial-image:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
    z-index: 10;
}

/* --- NEW: Build Real Focus Section Styles --- */
.focus-skills-section {
    background: #f0faf0;
    padding: 3rem 1.5rem;
    margin: 0 1rem;
    border-radius: 24px;
}

.focus-skills-heading {
    font-size: 2rem;
    font-weight: 800;
    color: var(--brand-text);
    text-align: center;
    margin: 0 0 2rem;
    letter-spacing: -0.02em;
}

.focus-skills-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 540px;
    margin: 0 auto;
}

.focus-skill-card {
    text-decoration: none;
    color: inherit;
    text-align: center;
    transition: transform 0.2s ease;
}

.focus-skill-card:hover {
    transform: translateY(-4px);
}

.focus-skill-image {
    aspect-ratio: 1;
    margin-bottom: 1rem;
}

.focus-skill-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

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

.focus-skill-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--brand-text);
    margin: 0 0 0.25rem;
}

.focus-skill-category {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

/* Mobile responsive for focus skills */
@media (max-width: 600px) {
    .focus-skills-section {
        padding: 2rem 1rem;
    }

    .focus-skills-heading {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .focus-skills-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
    }

    .focus-skill-image {
        border-radius: 12px;
        margin-bottom: 0.5rem;
    }

    .focus-skill-title {
        font-size: 0.75rem;
    }

    .focus-skill-category {
        font-size: 0.7rem;
    }
}

/* --- NEW: Garden Time Section Styles --- */
.garden-section {
    background: #f5f0fa;
    padding: 3rem 1.5rem;
    margin: 0 1rem;
    border-radius: 24px;
}

.garden-heading {
    font-size: 2rem;
    font-weight: 800;
    color: var(--brand-text);
    text-align: center;
    margin: 0 0 2rem;
    letter-spacing: -0.02em;
}

.garden-emoji {
    display: inline-block;
}

.garden-hero {
    max-width: 800px;
    margin: 0 auto 2rem;
}

.garden-hero-image {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.garden-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 700px;
    margin: 0 auto;
}

.garden-card {
    text-decoration: none;
    color: inherit;
    text-align: center;
    transition: transform 0.2s ease;
}

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

.garden-icon {
    aspect-ratio: 1;
    margin-bottom: 0.75rem;
}

.garden-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

.garden-card:hover .garden-icon img {
    transform: scale(1.05);
}

.garden-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--brand-text);
    margin: 0 0 0.25rem;
    line-height: 1.3;
}

.garden-subtitle {
    font-size: 0.85rem;
    color: #666;
    margin: 0;
}

@media (max-width: 600px) {
    .garden-section {
        padding: 2rem 1rem;
    }

    .garden-heading {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .garden-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .garden-title {
        font-size: 0.85rem;
    }

    .garden-subtitle {
        font-size: 0.75rem;
    }
}

/* --- NEW: Exploration and Observation Section Styles --- */
.butterfly-section {
    background: #fff;
    padding: 3rem 1.5rem;
    margin: 0;
}

.butterfly-section-heading {
    font-size: 2rem;
    font-weight: 800;
    color: var(--brand-green-dark);
    text-align: center;
    margin: 0 0 1.5rem;
}

.butterfly-hero {
    max-width: 800px;
    margin: 0 auto 2rem;
}

.butterfly-hero-image {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.butterfly-stages {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 500px;
    margin: 0 auto;
}

.butterfly-stage {
    text-decoration: none;
    color: inherit;
    text-align: center;
    transition: transform 0.2s ease;
}

.butterfly-stage:hover {
    transform: translateY(-4px);
}

.butterfly-stage-icon {
    aspect-ratio: 1;
    margin-bottom: 0.75rem;
    max-width: 120px;
    margin-left: auto;
    margin-right: auto;
}

.butterfly-stage-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

.butterfly-stage:hover .butterfly-stage-icon img {
    transform: scale(1.05);
}

.butterfly-stage-label {
    margin-top: 0.75rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--brand-text);
    line-height: 1.3;
}

@media (max-width: 600px) {
    .butterfly-section {
        padding: 2rem 1rem;
    }

    .butterfly-section-heading {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .butterfly-hero {
        margin-bottom: 1.5rem;
    }

    .butterfly-stages {
        gap: 1rem;
    }

    .butterfly-stage-icon {
        max-width: 80px;
    }

    .butterfly-stage-label {
        font-size: 0.85rem;
    }
}

/* --- Organization Section Styles --- */
.organization-section {
    padding: 3rem 1.5rem;
    background: #fff;
    text-align: center;
}

.organization-section-heading {
    font-size: 2rem;
    font-weight: 800;
    color: var(--brand-green-dark);
    margin: 0 0 1.5rem;
}

.organization-hero {
    max-width: 800px;
    margin: 0 auto 2rem;
}

.organization-hero-image {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.organization-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 700px;
    margin: 0 auto;
}

.organization-item {
    text-decoration: none;
    color: inherit;
    text-align: center;
    transition: transform 0.2s ease;
}

.organization-item:hover {
    transform: translateY(-4px);
}

.organization-icon {
    aspect-ratio: 1;
    margin-bottom: 0.75rem;
    max-width: 120px;
    margin-left: auto;
    margin-right: auto;
}

.organization-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

.organization-item:hover .organization-icon img {
    transform: scale(1.05);
}

.organization-item-label {
    margin-top: 0.75rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--brand-text);
    line-height: 1.3;
}

@media (max-width: 600px) {
    .organization-section {
        padding: 2rem 1rem;
    }

    .organization-section-heading {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .organization-hero {
        margin-bottom: 1.5rem;
    }

    .organization-items {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .organization-icon {
        max-width: 80px;
    }

    .organization-item-label {
        font-size: 0.85rem;
    }
}

/* --- Music Section Styles --- */
.music-section {
    padding: 3rem 1.5rem;
    background: #fff;
    text-align: center;
}

.music-section-heading {
    font-size: 2rem;
    font-weight: 800;
    color: var(--brand-green-dark);
    margin: 0 0 1.5rem;
}

.music-hero {
    max-width: 800px;
    margin: 0 auto 2rem;
}

.music-hero-image {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.music-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.music-item {
    flex: 0 0 calc(20% - 1.2rem);
    max-width: calc(20% - 1.2rem);
    text-decoration: none;
    color: inherit;
    text-align: center;
    transition: transform 0.2s ease;
}

.music-item:hover {
    transform: translateY(-4px);
}

.music-icon {
    aspect-ratio: 1;
    margin-bottom: 0.75rem;
    max-width: 120px;
    margin-left: auto;
    margin-right: auto;
}

.music-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

.music-item:hover .music-icon img {
    transform: scale(1.05);
}

.music-item-title {
    display: block;
    margin-top: 0.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--brand-text);
    line-height: 1.3;
}

.music-item-subtitle {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: #888;
    margin-top: 0.2rem;
}

@media (max-width: 600px) {
    .music-section {
        padding: 2rem 1rem;
    }

    .music-section-heading {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .music-hero {
        margin-bottom: 1.5rem;
    }

    .music-items {
        gap: 1rem;
    }

    .music-item {
        flex: 0 0 calc(33.333% - 0.7rem);
        max-width: calc(33.333% - 0.7rem);
    }

    .music-icon {
        max-width: 80px;
    }

    .music-item-title {
        font-size: 0.85rem;
    }

    .music-item-subtitle {
        font-size: 0.75rem;
    }
}

/* --- NEW: Homepage Products Section Styles --- */
.homepage-products-section {
    margin: 4rem auto;
    max-width: 1500px;
    padding: 0 1.5rem;
}

.homepage-products-section .homepage-products-heading {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--brand-green-dark);
    margin: 0 0 0.5rem;
    line-height: 1.2;
    text-align: left;
}

.homepage-products-last-updated {
    font-size: 0.95rem;
    font-family: var(--font-family-brand);
    color: #2A2A2A;
    margin: 0 0 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: left;
}

.homepage-category-sections {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-top: 2rem;
}

.homepage-category-section {
    background: transparent;
    border: none;
    padding: 0;
}

.homepage-category-header {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.homepage-category-copy h3 {
    margin: 0;
    font-size: 1.4rem;
    color: var(--brand-green-dark);
}

.homepage-category-copy p {
    margin: 0.35rem 0 0;
    color: #555;
    font-size: 0.95rem;
}

.homepage-loading-message,
.homepage-load-error {
    text-align: center;
    padding: 2rem 1rem;
    font-weight: 600;
    color: #555;
}

.homepage-empty-state {
    padding: 2rem;
    margin: 0 auto;
    border: 1px dashed #e0e0d1;
    border-radius: 12px;
    background: #f9f7ef;
    color: #777;
    font-weight: 600;
    width: 100%;
}

.homepage-products-carousel {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.homepage-products-track-wrapper {
    overflow: hidden;
    flex: 1;
    min-width: 0;
    width: 100%;
}

.homepage-products-track {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 1rem 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    touch-action: pan-x;
}

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

@media (max-width: 860px) {
    .homepage-content h1 {
        font-size: 2rem;
    }

    .homepage-logo {
        display: none;
    }

    .homepage-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .homepage-products-section {
        margin: 3rem 0;
    }

    .homepage-products-section .homepage-products-heading {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .homepage-products-carousel {
        gap: 0.5rem;
        width: calc(100% + 2rem);
        margin-left: -1rem;
        margin-right: -1rem;
    }

    .homepage-products-track {
        width: 100%;
        gap: 0.75rem;
        padding: 0.5rem 1rem;
    }
}
