/* Hero — first 3 seconds */
.sc-hero-anim {
    opacity: 0;
    transform: translateY(18px);
    animation: sc-hero-in 0.6s ease forwards;
}
@keyframes sc-hero-in {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.sc-hero-proof {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 600;
    color: #555;
    margin-bottom: 16px;
    letter-spacing: 0.3px;
}
.sc-hero-proof-stars {
    color: #be6c42;
    font-size: 0.85rem;
    letter-spacing: 1px;
}
@media (max-width: 767.98px) {
    .sc-hero-proof {
        justify-content: center;
    }
}

/* Sub-Hero Strip */
.sc-subhero {
    background: #111;
    padding: 14px 0;
}
.sc-subhero-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.sc-subhero-text {
    font-size: 0.88rem;
    color: #fff;
    letter-spacing: 0.3px;
}
.sc-subhero-text strong {
    color: #be6c42;
}
.sc-subhero-link {
    font-size: 0.82rem;
    font-weight: 600;
    color: #be6c42;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s;
}
.sc-subhero-link:hover {
    color: #fff;
}
@media (max-width: 575.98px) {
    .sc-subhero-inner {
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }
    .sc-subhero-text {
        font-size: 0.82rem;
    }
}

/* Popular Products — Horizontal Scroll */
.sc-pop {
    padding: 64px 0 48px;
    overflow: hidden;
}
.sc-pop-inner {
    display: flex;
    align-items: stretch;
    gap: 48px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}
.sc-pop-left {
    flex: 0 0 260px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 24px 0;
}
.sc-pop-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2rem;
    font-weight: 700;
    color: #111;
    line-height: 1.2;
    margin: 0 0 12px;
}
.sc-pop-desc {
    font-size: 0.92rem;
    color: #666;
    line-height: 1.6;
    margin: 0 0 28px;
}
.sc-pop-nav {
    display: flex;
    gap: 10px;
    margin-bottom: 28px;
}
.sc-pop-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid #ddd;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #111;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
}
.sc-pop-arrow:hover {
    border-color: #111;
    background: #111;
    color: #fff;
}
.sc-pop-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -ms-overflow-style: none;
    scrollbar-width: none;
    flex: 1;
    padding: 4px 0;
}
.sc-pop-track::-webkit-scrollbar { display: none; }
.sc-pop-card {
    flex: 0 0 240px;
    text-decoration: none;
    color: #111;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
}
.sc-pop-card-img {
    width: 100%;
    aspect-ratio: 3 / 4;
    border-radius: 10px;
    overflow: hidden;
    background: #f5f5f5;
    margin-bottom: 12px;
}
.sc-pop-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.sc-pop-card:hover .sc-pop-card-img img {
    transform: scale(1.05);
}
.sc-pop-card-name {
    font-size: 0.88rem;
    font-weight: 600;
    color: #111;
    margin-bottom: 4px;
}
.sc-pop-card-price {
    font-size: 0.82rem;
    color: #888;
    font-weight: 500;
}
.sc-pop-card:hover .sc-pop-card-price {
    color: #111;
}
.sc-pop-scrollbar {
    max-width: 1400px;
    margin: 20px auto 0;
    padding: 0 24px;
    height: 3px;
    position: relative;
}
.sc-pop-scrollbar::before {
    content: '';
    position: absolute;
    left: 24px;
    right: 24px;
    top: 0;
    height: 3px;
    background: #eee;
    border-radius: 2px;
}
.sc-pop-scrollbar-thumb {
    position: relative;
    height: 3px;
    background: #111;
    border-radius: 2px;
    width: 20%;
    transition: left 0.15s ease;
    left: 0;
}

@media (max-width: 991.98px) {
    .sc-pop-inner {
        flex-direction: column;
        gap: 24px;
    }
    .sc-pop-left {
        flex: none;
        text-align: center;
        padding: 0;
    }
    .sc-pop-title {
        font-size: 1.6rem;
    }
    .sc-pop-nav {
        justify-content: center;
    }
    .sc-pop-left {
        align-items: center;
    }
    .sc-pop-card {
        flex: 0 0 200px;
    }
}

@media (max-width: 575.98px) {
    .sc-pop {
        padding: 40px 0 32px;
    }
    .sc-pop-card {
        flex: 0 0 170px;
    }
    .sc-pop-card-img {
        border-radius: 8px;
    }
}

/* Trust Bar — Mobile Marquee */
.feature-marquee-wrapper {
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid #eee;
}
.feature-marquee-track {
    display: flex;
    gap: 32px;
    animation: marquee-scroll 28s linear infinite;
    width: max-content;
}
.feature-marquee-item {
    flex: 0 0 auto;
    min-width: 180px;
    text-align: center;
    padding: 0 8px;
}
.feature-marquee-item h5 {
    font-size: 0.85rem;
    font-weight: 700;
    color: #111;
}
.feature-marquee-item p {
    font-size: 0.75rem;
}
@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Trust Strip */
.sc-trust-strip {
    border-bottom: 1px solid #eee;
    background: #fff;
    padding: 14px 0;
}
.sc-trust-strip-inner {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}
.sc-trust-strip-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #111;
    white-space: nowrap;
}
.sc-trust-strip-item i {
    font-size: 1rem;
    color: #111;
}
@media (max-width: 767.98px) {
    .sc-trust-strip-inner {
        gap: 1rem 1.5rem;
    }
    .sc-trust-strip-item {
        font-size: 0.75rem;
    }
}

/* How It Works */
.sc-hiw {
    padding: 64px 0;
    background: #fff;
    border-bottom: 1px solid #eee;
}
.sc-hiw .sc-index-section-label {
    text-align: center;
    margin-bottom: 40px;
}
.sc-hiw-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}
.sc-hiw-step {
    text-align: center;
    max-width: 280px;
    flex: 1;
}
.sc-hiw-step-num {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #111;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 auto 16px;
}
.sc-hiw-step h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 8px;
}
.sc-hiw-step p {
    font-size: 0.88rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
    padding: 0 12px;
}
.sc-hiw-step-line {
    width: 60px;
    height: 2px;
    background: #ddd;
    flex-shrink: 0;
    margin-top: 23px;
}
@media (max-width: 767.98px) {
    .sc-hiw-steps {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    .sc-hiw-step {
        max-width: 100%;
    }
}

/* Size Calculator CTA */
.sc-size-cta {
    background: #111;
    padding: 56px 0;
}
.sc-size-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}
.sc-size-cta-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px;
}
.sc-size-cta-desc {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.6;
    margin: 0;
    max-width: 520px;
}
@media (max-width: 767.98px) {
    .sc-size-cta {
        padding: 40px 0;
    }
    .sc-size-cta-inner {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    .sc-size-cta-title {
        font-size: 1.3rem;
    }
    .sc-size-cta-desc {
        font-size: 0.85rem;
    }
}

/* FAQ */
.sc-faq {
    padding: 72px 0;
    border-top: 1px solid #eee;
}
.sc-faq .sc-index-section-label {
    margin-bottom: 32px;
}
.sc-faq-item {
    border-bottom: 1px solid #eee;
}
.sc-faq-header {
    margin: 0;
}
.sc-faq-btn {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    background: none;
    border: none;
    font-size: 0.95rem;
    font-weight: 600;
    color: #111;
    text-align: left;
    cursor: pointer;
    gap: 16px;
}
.sc-faq-btn:hover {
    color: #333;
}
.sc-faq-icon {
    font-size: 0.85rem;
    color: #111;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}
.sc-faq-btn:not(.collapsed) .sc-faq-icon {
    transform: rotate(45deg);
}
.sc-faq-body {
    padding: 0 0 18px;
    font-size: 0.9rem;
    line-height: 1.7;
    color: #555;
}

.testimonial-card {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    border-left: 4px solid #be6c42;
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}
.testimonial-quote-icon {
    font-size: 2.5rem;
    line-height: 1;
    color: #be6c42;
    font-family: Georgia, serif;
}
.testimonial-stars {
    color: #be6c42;
    font-size: 0.9rem;
    letter-spacing: 2px;
}
.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
    font-style: italic;
}
.testimonial-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #1a1a1a;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    flex-shrink: 0;
}
.testimonial-verified {
    font-size: 0.75rem;
    color: #6c757d;
}
.testimonial-verified i {
    color: #be6c42;
}
@media (min-width: 768px) {
    .testimonial-masonry {
        column-count: 3;
        column-gap: 1.5rem;
    }
    .testimonial-masonry .testimonial-item {
        break-inside: avoid;
        margin-bottom: 1.5rem;
    }
}
@media (max-width: 767.98px) {
    .testimonial-masonry .testimonial-item {
        margin-bottom: 1rem;
    }
}

/* Shop by Event — horizontal scroll */
.sc-event-scroll {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding-bottom: 4px;
}
.sc-event-scroll::-webkit-scrollbar { display: none; }
.sc-event-card {
    flex: 0 0 auto;
    width: 140px;
    text-align: center;
    text-decoration: none;
    scroll-snap-align: start;
}
.sc-event-card-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 10px;
    border: 2px solid #eee;
    transition: border-color 0.2s ease, transform 0.2s ease;
}
.sc-event-card:hover .sc-event-card-img {
    border-color: #111;
    transform: scale(1.04);
}
.sc-event-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.sc-event-card-title {
    font-size: 0.82rem;
    font-weight: 600;
    color: #111;
    margin: 0;
}
@media (min-width: 768px) {
    .sc-event-scroll {
        justify-content: center;
        flex-wrap: wrap;
    }
    .sc-event-card { width: 130px; }
    .sc-event-card-img { width: 110px; height: 110px; }
}

/* Mini Social Proof */
.sc-mini-proof {
    padding: 40px 0;
    background: #fafaf9;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}
.sc-mini-proof-inner {
    text-align: center;
    max-width: 560px;
    margin: 0 auto;
}
.sc-mini-proof-stars {
    color: #be6c42;
    font-size: 1.1rem;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 12px;
}
.sc-mini-proof-quote {
    font-size: 1rem;
    font-style: italic;
    color: #333;
    line-height: 1.7;
    margin: 0 0 12px;
}
.sc-mini-proof-author {
    font-size: 0.82rem;
    font-weight: 600;
    color: #888;
}
.sc-mini-proof-verified {
    color: #aaa;
    font-weight: 500;
}
.sc-mini-proof-verified i {
    color: #be6c42;
    font-size: 0.75rem;
}

@media (max-width: 575.98px) {
    .sc-mini-proof {
        padding: 28px 0;
    }
    .sc-mini-proof-quote {
        font-size: 0.9rem;
    }
}

/* Shop by Event */
.sc-events {
    padding: 72px 0;
    background: #fff;
    border-bottom: 1px solid #eee;
}
.sc-events .sc-index-section-label {
    margin-bottom: 32px;
}
.sc-events-row {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}
.sc-events-card {
    text-decoration: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.sc-events-card-img {
    width: 100%;
    aspect-ratio: 3 / 4;
    border-radius: 10px;
    overflow: hidden;
    background: #f5f5f5;
    margin-bottom: 12px;
}
.sc-events-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.sc-events-card:hover .sc-events-card-img img {
    transform: scale(1.05);
}
.sc-events-card-title {
    font-size: 0.88rem;
    font-weight: 600;
    color: #111;
    transition: color 0.2s;
}
.sc-events-card:hover .sc-events-card-title {
    color: #555;
}
@media (max-width: 991.98px) {
    .sc-events-row {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
    .sc-events {
        padding: 56px 0;
    }
}
@media (max-width: 575.98px) {
    .sc-events-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .sc-events {
        padding: 40px 0;
    }
    .sc-events-card-img {
        border-radius: 8px;
    }
    .sc-events-card-title {
        font-size: 0.82rem;
    }
}

/* Two-Up: Bundles + Event Creator */
.sc-twoup {
    padding: 80px 0;
    background: #fff;
}
.sc-twoup-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.sc-twoup-card {
    border-radius: 12px;
    overflow: hidden;
    background: #fafaf9;
    border: 1px solid #eee;
    transition: box-shadow 0.3s ease;
}
.sc-twoup-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}
.sc-twoup-card-media {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}
.sc-twoup-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.sc-twoup-card-video-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.sc-twoup-card-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.sc-twoup-card:hover .sc-twoup-card-img,
.sc-twoup-card:hover .sc-twoup-card-video {
    transform: scale(1.03);
}
.sc-twoup-card-body {
    padding: 28px 28px 32px;
}
.sc-twoup-card-body .sc-index-section-label {
    margin-bottom: 8px;
}
.sc-twoup-card-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #111;
    margin: 0 0 10px;
    line-height: 1.3;
}
.sc-twoup-card-desc {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin: 0 0 20px;
}
@media (max-width: 767.98px) {
    .sc-twoup-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .sc-twoup {
        padding: 56px 0;
    }
    .sc-twoup-card-body {
        padding: 20px 20px 24px;
    }
    .sc-twoup-card-title {
        font-size: 1.15rem;
    }
}

/* Shop by Category — Compact Cards */
.sc-index-categories--compact {
    padding: 72px 0;
    background: #fff;
}
.sc-index-categories--compact .sc-index-section-label {
    margin-bottom: 32px;
}
.sc-cat-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}
.sc-cat-card {
    position: relative;
    display: block;
    text-decoration: none;
    text-align: center;
}
.sc-cat-card-media {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    border-radius: 10px;
    overflow: hidden;
    background: #f5f5f5;
    margin-bottom: 12px;
}
.sc-cat-card-poster {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.sc-cat-card-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.5s ease;
}
.sc-cat-card:hover .sc-cat-card-video {
    opacity: 1;
}
.sc-cat-card:hover .sc-cat-card-poster,
.sc-cat-card:hover .sc-cat-card-video {
    transform: scale(1.04);
}
.sc-cat-card-title {
    font-size: 0.88rem;
    font-weight: 600;
    color: #111;
    margin: 0;
    transition: color 0.2s;
}
.sc-cat-card:hover .sc-cat-card-title {
    color: #555;
}

@media (max-width: 991.98px) {
    .sc-cat-row {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
    .sc-index-categories--compact {
        padding: 56px 0;
    }
}
@media (max-width: 575.98px) {
    .sc-cat-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .sc-cat-card-media {
        border-radius: 8px;
    }
    .sc-cat-card-title {
        font-size: 0.82rem;
    }
    .sc-index-categories--compact {
        padding: 40px 0;
    }
}

/* Category card image hover */
.video-hover-wrapper img,
.video-hover-wrapper video {
    transition: transform 0.4s ease;
}
.video-hover-wrapper:hover img,
.video-hover-wrapper:hover video {
    transform: scale(1.03);
}

/* Brand Statement */
.sc-brand-statement {
    padding: 80px 0;
    background: #fff;
    border-top: 1px solid #eee;
}
.sc-brand-statement-inner {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}
.sc-brand-statement-heading {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #999;
    margin: 0 0 24px;
}
.sc-brand-statement-text {
    font-size: 1.05rem;
    line-height: 1.85;
    color: #333;
    margin: 0 0 32px;
}
.sc-brand-statement-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    font-size: 0.72rem;
    font-weight: 600;
    color: #999;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 32px;
}
.sc-brand-statement-sep {
    width: 1px;
    height: 14px;
    background: #ccc;
}
.sc-brand-statement-logo {
    height: 48px;
    opacity: 0.7;
}
@media (max-width: 575.98px) {
    .sc-brand-statement {
        padding: 56px 0;
    }
    .sc-brand-statement-text {
        font-size: 0.95rem;
    }
}

/* Blog cards */
.blog-card-hover:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1) !important;
}
.blog-card-hover img {
    transition: transform 0.3s ease;
}
.blog-card-hover:hover img {
    transform: scale(1.05);
}
