/* =============================================================================
   Landing Page Styles
   Premium Wedding Invitations Homepage
   ============================================================================= */

/* =============================================================================
   Announcement Bar
   ============================================================================= */

.announcement-bar {
    background: #e43131;
    color: #fff;
    overflow: hidden;
    height: 2.375rem;
    display: flex;
    align-items: center;
}

.announcement-bar__track {
    display: flex;
    align-items: center;
    white-space: nowrap;
    width: max-content;
}

.announcement-bar__track--scrolling {
    animation: announcement-scroll 30s linear infinite;
}

.announcement-bar__track--scrolling:hover {
    animation-play-state: paused;
}

.announcement-bar__track--static {
    justify-content: center;
    width: 100%;
}

.announcement-bar__item {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0 1.5rem;
}

.announcement-bar__sep {
    font-size: 0.7rem;
    opacity: 0.75;
}

@keyframes announcement-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* =============================================================================
   Hero Slider
   ============================================================================= */

.hero-slider {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

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

.hero-slider__slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
}

.hero-slider__bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

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

.hero-slider__overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.hero-slider__content {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 0 1.5rem;
}

.hero-slider__container {
    max-width: 1200px;
    margin: 0 auto;
    color: white;
}

.hero-slider__badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 1.25rem;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.hero-slider__title {
    font-family: var(--font-family-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.15;
    margin: 0 0 1rem;
    max-width: 700px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

.hero-slider__subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.6;
    max-width: 550px;
    opacity: 0.95;
    margin: 0 0 2rem;
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

.hero-slider__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease-out 0.5s both;
}

.hero-slider__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.125rem;
    font-size: 0.9375rem;
    font-weight: 500;
    border-radius: 0.375rem;
    text-decoration: none;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    line-height: 1.4;
}

.hero-slider__btn--primary {
    background: var(--theme-primary, #e43131);
    color: white;
}

.hero-slider__btn--primary:hover {
    background: var(--theme-primary-dark, #c52a2a);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(228, 49, 49, 0.4);
}

.hero-slider__btn--secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.hero-slider__btn--secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

/* Navigation Arrows */
.hero-slider__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slider__arrow svg {
    width: 24px;
    height: 24px;
}

.hero-slider__arrow:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-50%) scale(1.1);
}

.hero-slider__arrow--prev {
    left: 1.5rem;
}

.hero-slider__arrow--next {
    right: 1.5rem;
}

/* Pagination Dots */
.hero-slider__dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 0.75rem;
}

.hero-slider__dot {
    width: 40px;
    height: 4px;
    border: none;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    padding: 0;
}

.hero-slider__dot:hover {
    background: rgba(255, 255, 255, 0.6);
}

.hero-slider__dot.active {
    background: rgba(255, 255, 255, 0.4);
}

.hero-slider__dot-progress {
    position: absolute;
    inset: 0;
    background: white;
    transform-origin: left;
    animation: dotProgress 6s linear;
}

@keyframes dotProgress {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}

/* Slide Transitions */
.slide-enter { transition: all 0.5s ease-out; }
.slide-enter-start { opacity: 0; transform: translateX(100px); }
.slide-enter-end { opacity: 1; transform: translateX(0); }
.slide-leave { transition: all 0.5s ease-in; }
.slide-leave-start { opacity: 1; transform: translateX(0); }
.slide-leave-end { opacity: 0; transform: translateX(-100px); }

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

/* =============================================================================
   Section Styles
   ============================================================================= */

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

.home-section--gray {
    background: var(--theme-bg-tertiary, #f3f4f6);
}

.home-section--cream {
    background: #fef7f0;
}

.home-section--dark {
    background: var(--theme-bg-dark, #1f2937);
    color: white;
}

.home-section__container {
    max-width: 1200px;
    margin: 0 auto;
}

.home-section__cta {
    display: flex;
    justify-content: center;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

/* Recent Products on home page — 4 columns */
.home-section .products-grid {
    grid-template-columns: repeat(4, 1fr);
}

/* Latest Blogs on home page */
.blog-grid--3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Section Header - Left aligned on desktop, centered on mobile */
.section-header {
    margin-bottom: 3rem;
    text-align: left;
}

.section-header--center {
    text-align: center;
}

.section-header--center .section-header__subtitle {
    margin-left: auto;
    margin-right: auto;
}

.section-header--left {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 1rem;
    text-align: left;
}

.section-header__badge {
    display: inline-block;
    background: var(--theme-primary-lighter, #fee2e2);
    color: var(--theme-primary, #e43131);
    padding: 0.375rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.section-header__title {
    font-family: var(--font-family-heading);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    color: var(--theme-text-primary, #1f2937);
    margin: 0 0 0.75rem;
    line-height: 1.2;
}

.home-section--dark .section-header__title {
    color: white;
}

.section-header__subtitle {
    font-size: 1rem;
    color: var(--theme-text-muted, #6b7280);
    max-width: 600px;
    line-height: 1.6;
    margin: 0;
}

.home-section--dark .section-header__subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.section-header__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--theme-primary, #e43131);
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.section-header__link:hover {
    gap: 0.75rem;
}

.section-header__link svg {
    width: 20px;
    height: 20px;
    transition: transform 0.2s ease;
}

.section-header__link:hover svg {
    transform: translateX(4px);
}

/* =============================================================================
   Collection Card
   ============================================================================= */

.collection-card {
    display: block;
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    aspect-ratio: 4/5;
    text-decoration: none;
    transition: all 0.4s ease;
}

.collection-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.collection-card--small {
    aspect-ratio: 1/1;
}

.collection-card--large {
    aspect-ratio: 16/9;
}

.collection-card__image {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.collection-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.collection-card:hover .collection-card__image img {
    transform: scale(1.08);
}

.collection-card__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--theme-bg-muted, #e5e7eb);
}

.collection-card__placeholder svg {
    width: 48px;
    height: 48px;
    color: var(--theme-text-muted, #6b7280);
}

.collection-card__overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    transition: opacity 0.4s ease;
}

.collection-card--overlay-gradient .collection-card__overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
}

.collection-card--overlay-dark .collection-card__overlay {
    background: rgba(0, 0, 0, 0.4);
}

.collection-card--overlay-brand .collection-card__overlay {
    background: linear-gradient(135deg, rgba(228, 49, 49, 0.7) 0%, rgba(197, 42, 42, 0.7) 100%);
}

.collection-card:hover .collection-card__overlay {
    opacity: 0.9;
}

.collection-card__badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 5;
    background: var(--theme-primary, #e43131);
    color: white;
    padding: 0.375rem 0.875rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.collection-card__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    padding: 1.5rem;
    color: white;
}

.collection-card__title {
    font-family: var(--font-family-heading);
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 0.375rem;
    line-height: 1.3;
}

.collection-card__description {
    font-size: 0.875rem;
    opacity: 0.9;
    margin: 0 0 0.75rem;
}

.collection-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: white;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.collection-card__link svg {
    width: 18px;
    height: 18px;
    transition: transform 0.2s ease;
}

.collection-card:hover .collection-card__link {
    opacity: 1;
    transform: translateY(0);
}

.collection-card:hover .collection-card__link svg {
    transform: translateX(4px);
}

/* =============================================================================
   Collection Grid Layouts
   ============================================================================= */

.collection-grid {
    display: grid;
    gap: 1.5rem;
}

.collection-grid--4 {
    grid-template-columns: repeat(4, 1fr);
}

.collection-grid--3 {
    grid-template-columns: repeat(3, 1fr);
}

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

.collection-grid--featured {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
}

.collection-grid--featured .collection-card:first-child {
    grid-column: span 2;
    grid-row: span 2;
}

/* =============================================================================
   Category Pills
   ============================================================================= */

.category-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.category-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.625rem 1.25rem;
    background: white;
    border: 1px solid var(--theme-border-light, #e5e7eb);
    border-radius: 50px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--theme-text-primary, #1f2937);
    text-decoration: none;
    transition: all 0.2s ease;
}

.category-pill:hover {
    border-color: var(--theme-primary, #e43131);
    color: var(--theme-primary, #e43131);
    box-shadow: 0 4px 12px rgba(228, 49, 49, 0.15);
}

.category-pill--active {
    background: var(--theme-primary, #e43131);
    border-color: var(--theme-primary, #e43131);
    color: white;
}

.category-pill__image {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.category-pill__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-pill__icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-pill__icon svg {
    width: 100%;
    height: 100%;
}

.category-pill__count {
    background: var(--theme-bg-tertiary, #f3f4f6);
    padding: 0.125rem 0.5rem;
    border-radius: 50px;
    font-size: 0.75rem;
    color: var(--theme-text-muted, #6b7280);
}

.category-pill--active .category-pill__count {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

/* =============================================================================
   Feature Cards (Trust/USP Section)
   ============================================================================= */

.feature-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.feature-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: white;
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.feature-card__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--theme-primary-lighter, #fee2e2);
    border-radius: 50%;
    color: var(--theme-primary, #e43131);
}

.feature-card__icon svg {
    width: 32px;
    height: 32px;
}

.feature-card__title {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--theme-text-primary, #1f2937);
    margin: 0 0 0.5rem;
}

.feature-card__description {
    font-size: 0.875rem;
    color: var(--theme-text-muted, #6b7280);
    line-height: 1.5;
    margin: 0;
}

/* =============================================================================
   CTA Section
   ============================================================================= */

.cta-section {
    background: linear-gradient(135deg, var(--theme-primary, #e43131) 0%, var(--theme-primary-dark, #c52a2a) 100%);
    padding: 5rem 1.5rem;
    text-align: center;
    color: white;
}

.cta-section__container {
    max-width: 700px;
    margin: 0 auto;
}

.cta-section__title {
    font-family: var(--font-family-heading);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    margin: 0 0 1rem;
    line-height: 1.2;
}

.cta-section__subtitle {
    font-size: 1.125rem;
    opacity: 0.95;
    margin: 0 0 2rem;
    line-height: 1.6;
}

.cta-section__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.125rem;
    font-size: 0.9375rem;
    font-weight: 500;
    border-radius: 0.375rem;
    text-decoration: none;
    transition: all 0.2s ease;
    line-height: 1.4;
}

.cta-section__btn--primary {
    background: white;
    color: var(--theme-primary, #e43131);
}

.cta-section__btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-section__btn--secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.cta-section__btn--secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

/* =============================================================================
   Customize Section
   ============================================================================= */

.customize-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.customize-section__image {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.customize-section__image img {
    width: 100%;
    height: auto;
    display: block;
}

.customize-section__content {
    max-width: 500px;
}

.customize-section__badge {
    display: inline-block;
    background: var(--theme-primary-lighter, #fee2e2);
    color: var(--theme-primary, #e43131);
    padding: 0.375rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.customize-section__title {
    font-family: var(--font-family-heading);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    color: var(--theme-text-primary, #1f2937);
    margin: 0 0 1rem;
    line-height: 1.2;
}

.customize-section__text {
    font-size: 1rem;
    color: var(--theme-text-muted, #6b7280);
    line-height: 1.7;
    margin: 0 0 1.5rem;
}

.customize-section__features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.customize-section__features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.875rem;
    font-size: 0.9375rem;
    color: var(--theme-text-secondary, #4b5563);
}

.customize-section__features li svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--theme-primary, #e43131);
    margin-top: 0.125rem;
}

.customize-section__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.125rem;
    background: var(--theme-primary, #e43131);
    color: white;
    font-size: 0.9375rem;
    font-weight: 500;
    border-radius: 0.375rem;
    text-decoration: none;
    transition: all 0.2s ease;
    line-height: 1.4;
}

.customize-section__btn:hover {
    background: var(--theme-primary-dark, #c52a2a);
    transform: translateY(-1px);
}

/* =============================================================================
   Add-ons Grid
   ============================================================================= */

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

.addon-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.addon-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
}

.addon-card__image {
    aspect-ratio: 16/10;
    overflow: hidden;
}

.addon-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.addon-card:hover .addon-card__image img {
    transform: scale(1.05);
}

.addon-card__content {
    padding: 1.5rem;
}

.addon-card__title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--theme-text-primary, #1f2937);
    margin: 0 0 0.5rem;
}

.addon-card__text {
    font-size: 0.875rem;
    color: var(--theme-text-muted, #6b7280);
    line-height: 1.5;
    margin: 0 0 1rem;
}

.addon-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    color: var(--theme-primary, #e43131);
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.2s ease;
}

.addon-card__link:hover {
    gap: 0.625rem;
}

.addon-card__link svg {
    width: 18px;
    height: 18px;
}

/* =============================================================================
   Responsive Styles
   ============================================================================= */

@media (max-width: 1024px) {
    .collection-grid--4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .home-section .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .collection-grid--featured {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .collection-grid--featured .collection-card:first-child {
        grid-column: span 2;
        grid-row: span 1;
    }

    .feature-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .customize-section {
        gap: 2.5rem;
    }

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

@media (max-width: 768px) {
    .hero-slider {
        height: 70vh;
        min-height: 450px;
    }

    .hero-slider__arrow {
        width: 40px;
        height: 40px;
    }

    .hero-slider__arrow svg {
        width: 20px;
        height: 20px;
    }

    .hero-slider__arrow--prev {
        left: 1rem;
    }

    .hero-slider__arrow--next {
        right: 1rem;
    }

    .hero-slider__dots {
        bottom: 1.5rem;
    }

    .hero-slider__dot {
        width: 30px;
    }

    .home-section {
        padding: 3.5rem 1rem;
    }

    .section-header {
        margin-bottom: 2rem;
        text-align: center;
    }

    .section-header__subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .section-header--left {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

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

    .collection-grid--2,
    .collection-grid--featured {
        grid-template-columns: 1fr;
    }

    .collection-grid--featured .collection-card:first-child {
        grid-column: span 1;
    }

    .collection-card {
        aspect-ratio: 3/4;
    }

    .collection-card__content {
        padding: 1.25rem;
    }

    .collection-card__title {
        font-size: 1.0625rem;
    }

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

    .feature-card {
        padding: 1.5rem 1rem;
    }

    .feature-card__icon {
        width: 52px;
        height: 52px;
        margin-bottom: 1rem;
    }

    .feature-card__icon svg {
        width: 26px;
        height: 26px;
    }

    .feature-card__title {
        font-size: 0.9375rem;
    }

    .feature-card__description {
        font-size: 0.8125rem;
    }

    .customize-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .customize-section__image {
        order: -1;
    }

    .cta-section {
        padding: 3.5rem 1rem;
    }

    .addons-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .category-pills {
        gap: 0.5rem;
    }

    .category-pill {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        height: 65vh;
        min-height: 400px;
    }

    .hero-slider__actions {
        flex-direction: column;
    }

    .hero-slider__btn {
        width: 100%;
        justify-content: center;
    }

    .collection-grid--3,
    .collection-grid--4 {
        grid-template-columns: 1fr;
    }

    .home-section .products-grid,
    .blog-grid--3 {
        grid-template-columns: 1fr;
    }

    .feature-cards {
        grid-template-columns: 1fr;
    }

    .cta-section__actions {
        flex-direction: column;
    }

    .cta-section__btn {
        width: 100%;
        justify-content: center;
    }
}

/* =============================================================================
   Product Scroller
   ============================================================================= */
.product-scroller-wrap {
    position: relative;
}

.product-scroller {
    display: flex;
    gap: 1.25rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.5rem;
    /* hide scrollbar */
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.product-scroller::-webkit-scrollbar {
    display: none;
}

.product-scroller__item {
    flex: 0 0 calc(33.333% - 0.834rem);
    scroll-snap-align: start;
    min-width: 0;
}

.product-scroller__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    border: 1px solid #e5e7eb;
    background: #fff;
    color: #374151;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,.08);
    transition: background 0.2s, box-shadow 0.2s;
}

.product-scroller__arrow:hover {
    background: var(--theme-primary, #e43131);
    color: #fff;
    border-color: var(--theme-primary, #e43131);
    box-shadow: 0 4px 12px rgba(228,49,49,.25);
}

.product-scroller__arrow--prev { left: -1.25rem; }
.product-scroller__arrow--next { right: -1.25rem; }

.product-scroller__arrow[disabled] {
    opacity: 0.35;
    cursor: default;
    pointer-events: none;
}

/* Mobile: full-width cards, hide arrows */
@media (max-width: 767px) {
    .product-scroller__item {
        flex: 0 0 80%;
    }

    .product-scroller__arrow {
        display: none;
    }

    .product-scroller-wrap {
        margin: 0 -1rem;
        padding: 0 1rem;
    }

    .product-scroller {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* =============================================================================
   Google Reviews Section
   ============================================================================= */

.reviews-carousel {
    width: 100%;
}

/* Summary Row */
.reviews-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    background: #fff;
    border: 1px solid var(--theme-border-light);
    border-radius: 1rem;
    padding: 1.25rem 1.75rem;
    margin-bottom: 2rem;
    box-shadow: var(--theme-shadow-sm);
    flex-wrap: wrap;
}

.reviews-summary__logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.reviews-summary__google-icon {
    width: 1.75rem;
    height: 1.75rem;
    flex-shrink: 0;
}

.reviews-summary__google-label {
    font-size: 1rem;
    font-weight: 700;
    color: var(--theme-text-primary);
    letter-spacing: -0.01em;
}

.reviews-summary__rating {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.reviews-summary__score {
    font-size: 2rem;
    font-weight: 800;
    color: var(--theme-text-primary);
    line-height: 1;
}

.reviews-summary__stars {
    display: flex;
    gap: 0.2rem;
}

.reviews-summary__count {
    font-size: 0.875rem;
    color: var(--theme-text-muted);
    font-weight: 500;
}

.reviews-summary__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--theme-primary);
    border: 1.5px solid var(--theme-primary);
    border-radius: 0.5rem;
    padding: 0.5rem 1rem;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
}

.reviews-summary__cta:hover {
    background: var(--theme-primary);
    color: #fff;
}

.reviews-summary__cta svg {
    width: 1rem;
    height: 1rem;
}

/* Stars */
.reviews-star {
    width: 1rem;
    height: 1rem;
    color: #f59e0b;
    fill: currentColor;
    flex-shrink: 0;
}

.reviews-star--lg {
    width: 1.375rem;
    height: 1.375rem;
}

.reviews-star--filled {
    fill: currentColor;
}

.reviews-star--empty {
    fill: #e5e7eb;
    color: #e5e7eb;
}

.reviews-star--half {
    color: #f59e0b;
}

/* Track Wrap */
.reviews-track-wrap {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.reviews-track {
    display: flex;
    gap: 1.25rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    flex: 1;
}

.reviews-track::-webkit-scrollbar {
    display: none;
}

/* Review Card */
.review-card {
    flex: 0 0 calc(33.333% - 0.85rem);
    scroll-snap-align: start;
    background: #fff;
    border: 1px solid var(--theme-border-light);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: var(--theme-shadow-sm);
    transition: box-shadow 0.2s, transform 0.2s;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.review-card:hover {
    box-shadow: var(--theme-shadow-md);
    transform: translateY(-2px);
}

.review-card__header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.review-card__avatar {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: var(--theme-primary);
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.review-card__meta {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
    min-width: 0;
}

.review-card__name {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--theme-text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.review-card__date {
    font-size: 0.75rem;
    color: var(--theme-text-muted);
}

.review-card__google-icon {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
    margin-left: auto;
}

.review-card__stars {
    display: flex;
    gap: 0.2rem;
}

.review-card__text {
    font-size: 0.9rem;
    color: var(--theme-text-secondary);
    line-height: 1.65;
    flex: 1;
}

/* Nav Arrows */
.reviews-arrow {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    border: 1.5px solid var(--theme-border-default);
    background: #fff;
    color: var(--theme-text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.reviews-arrow:hover {
    border-color: var(--theme-primary);
    color: var(--theme-primary);
    background: var(--theme-primary-lighter);
}

.reviews-arrow:disabled {
    opacity: 0.3;
    cursor: default;
}

/* Dots */
.reviews-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.reviews-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    border: none;
    background: var(--theme-border-default);
    cursor: pointer;
    padding: 0;
    transition: background 0.2s, transform 0.2s;
}

.reviews-dot--active {
    background: var(--theme-primary);
    transform: scale(1.35);
}

/* Responsive */
@media (max-width: 1023px) {
    .review-card {
        flex: 0 0 calc(50% - 0.625rem);
    }
}

@media (max-width: 639px) {
    .reviews-summary {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding: 1rem 1.25rem;
    }

    .reviews-summary__rating {
        gap: 0.5rem;
    }

    .reviews-summary__score {
        font-size: 1.625rem;
    }

    .reviews-track-wrap {
        gap: 0.5rem;
    }

    .reviews-arrow {
        width: 2rem;
        height: 2rem;
    }

    .review-card {
        flex: 0 0 calc(100% - 5rem);
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .product-scroller__item {
        flex: 0 0 calc(50% - 0.625rem);
    }
}
