/* ============================================
   SILKY FUSION — Redesigned Homepage v2
   Immersive, Animated, Editorial Design
   ============================================ */

/* === Target Variable Override === */
:root {
    --announcement-height: 70px;
}

/* Marquee and Navbar rules moved to layout.css for global consistency */

.marquee-bar {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    display: flex;
    align-items: center;
}

.marquee-top {
    background: #C68E6B;
    color: white;
    height: 35px;
    font-size: 0.85rem;
    font-weight: 600;
}

.marquee-bottom {
    background: #1D2E4D;
    color: white;
    height: 35px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1.5px;
}

.marquee-content {
    display: inline-flex;
    animation: marquee-scroll 25s linear infinite;
}

.marquee-content-reverse {
    display: inline-flex;
    animation: marquee-scroll-reverse 45s linear infinite;
}

.marquee-content span {
    padding: 0 40px;
}

@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes marquee-scroll-reverse {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}


/* === Split Hero Slider === */
.hero-split {
    position: relative;
    height: calc(100vh - var(--announcement-height, 40px) - var(--navbar-height, 72px));
    min-height: 600px;
    max-height: 900px;
    margin-top: calc(var(--announcement-height, 40px) + var(--navbar-height, 72px));
    overflow: hidden;
    background: var(--color-primary);
}

/* Each Slide */
.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s cubic-bezier(.4,0,.2,1), visibility 0.8s;
    z-index: 1;
}
.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

/* LEFT: Text Side */
.hero-slide-text {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 80px;
    background: var(--color-primary);
    position: relative;
    z-index: 2;
}
.hero-slide-inner {
    max-width: 520px;
}

/* Tag / Eyebrow */
.hero-tag {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(212,165,116,0.15);
    border: 1px solid rgba(212,165,116,0.3);
    border-radius: 30px;
    color: var(--color-secondary);
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 32px;
    font-weight: 500;
    opacity: 0;
    animation: heroFadeIn 0.8s ease 0.2s forwards;
}

/* Heading */
.hero-slide-text h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    color: #fff;
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 400;
    opacity: 0;
    animation: heroSlideRight 0.9s cubic-bezier(.4,0,.2,1) 0.3s forwards;
}
.hero-slide-text h1 em {
    font-style: italic;
    color: var(--color-secondary);
    font-family: var(--font-accent);
}

/* Paragraph */
.hero-slide-text p {
    color: rgba(255,255,255,0.55);
    font-size: var(--text-md);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 420px;
    opacity: 0;
    animation: heroFadeIn 0.8s ease 0.6s forwards;
}

/* Buttons */
.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    opacity: 0;
    animation: heroFadeIn 0.8s ease 0.8s forwards;
}
.btn-hero-primary {
    padding: 16px 40px;
    background: var(--color-secondary);
    color: var(--color-primary);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all .3s;
    text-decoration: none;
}
.btn-hero-primary:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212,165,116,0.3);
}
.btn-hero-outline {
    padding: 16px 40px;
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.3);
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .3s;
    text-decoration: none;
}
.btn-hero-outline:hover {
    background: rgba(255,255,255,0.08);
    border-color: var(--color-secondary);
    color: var(--color-secondary);
}

/* RIGHT: Image Side */
.hero-slide-img {
    position: relative;
    overflow: hidden;
    background: var(--color-cream);
}
.hero-slide-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 8s ease;
}
.hero-slide.active .hero-slide-img img {
    transform: scale(1.04);
}

/* Decorative diagonal separator */
.hero-slide-text::after {
    content: '';
    position: absolute;
    top: 0;
    right: -60px;
    bottom: 0;
    width: 120px;
    background: var(--color-primary);
    transform: skewX(-4deg);
    z-index: 3;
}

/* Navigation: Arrows + Dots */
.hero-nav {
    position: absolute;
    bottom: 48px;
    left: 0;
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    z-index: 10;
}
.hero-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    background: transparent;
    color: rgba(255,255,255,0.6);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}
.hero-arrow:hover {
    border-color: var(--color-secondary);
    color: var(--color-secondary);
    background: rgba(212,165,116,0.1);
}
.hero-dots {
    display: flex;
    gap: 10px;
}
.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.3);
    background: transparent;
    cursor: pointer;
    transition: all .3s;
}
.hero-dot.active {
    background: var(--color-secondary);
    border-color: var(--color-secondary);
    transform: scale(1.3);
}

/* Slide Counter */
.hero-counter {
    position: absolute;
    bottom: 48px;
    right: 48px;
    z-index: 10;
    color: rgba(255,255,255,0.4);
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 4px;
    font-family: var(--font-body);
}
.hero-counter .hero-current {
    color: var(--color-secondary);
    font-weight: 600;
    font-size: 24px;
}

/* Animations */
@keyframes heroFadeIn { to { opacity: 1; } }
@keyframes heroSlideRight {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

/* === Marquee Ticker === */
.marquee-section {
    background: var(--color-primary);
    padding: 18px 0;
    overflow: hidden;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.marquee-inner {
    display: flex;
    animation: marqueeScroll 25s linear infinite;
    white-space: nowrap;
}
.marquee-inner span {
    padding: 0 40px;
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    font-weight: 500;
}
.marquee-inner span::after {
    content: '✦';
    margin-left: 40px;
    color: var(--color-secondary);
}
@keyframes marqueeScroll { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* === Instagram Feed Section === */
.instagram-section {
    padding: 100px 0 80px;
    background: #fff;
}
.section-subtitle {
    color: var(--color-text-light);
    font-size: var(--text-md);
    max-width: 500px;
    margin: 12px auto 0;
    line-height: 1.7;
}
.instagram-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 6px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}
.insta-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    cursor: pointer;
}
.insta-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(.4,0,.2,1);
}
.insta-item:hover img {
    transform: scale(1.1);
}
.insta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}
.insta-item:hover .insta-overlay {
    opacity: 1;
}

/* === Editorial Split Section === */
.editorial-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 85vh;
}
.editorial-image {
    position: relative;
    overflow: hidden;
}
.editorial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(.4,0,.2,1);
}
.editorial-section:hover .editorial-image img {
    transform: scale(1.04);
}
.editorial-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px;
    background: var(--color-cream);
}
.editorial-content .eyebrow-v2 {
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--color-secondary-dark);
    margin-bottom: 20px;
    font-weight: 600;
}
.editorial-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.15;
    margin-bottom: 24px;
    color: var(--color-primary);
}
.editorial-content h2 em {
    font-family: var(--font-accent);
    font-style: italic;
    color: var(--color-secondary-dark);
}
.editorial-content p {
    font-size: var(--text-md);
    line-height: 1.8;
    color: var(--color-text-light);
    margin-bottom: 36px;
    max-width: 480px;
}
.btn-editorial {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 0;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-primary);
    text-decoration: none;
    border-bottom: 2px solid var(--color-primary);
    transition: all .3s;
    width: fit-content;
}
.btn-editorial:hover { gap: 18px; color: var(--color-secondary-dark); border-color: var(--color-secondary-dark); }

/* === How We Do It Differently Section === */
.how-different-section {
    padding: 120px 0;
    background: var(--color-off-white);
}
.how-diff-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}
.how-diff-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: all 0.4s;
}
.how-diff-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
}
.how-diff-visual {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}
.how-diff-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s;
}
.how-diff-card:hover .how-diff-visual img {
    transform: scale(1.05);
}
.how-diff-label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.how-diff-label .label-tag {
    display: inline-block;
    width: fit-content;
    padding: 4px 12px;
    background: var(--color-secondary);
    color: var(--color-primary);
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
}
.how-diff-label .label-main {
    display: inline-block;
    width: fit-content;
    padding: 8px 14px;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
}
.how-diff-label .label-main strong {
    color: var(--color-secondary);
    font-weight: 600;
}
.how-diff-info {
    padding: 32px 28px;
}
.how-diff-info h3 {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    color: var(--color-primary);
    margin-bottom: 12px;
    line-height: 1.3;
}
.how-diff-info p {
    color: var(--color-text-light);
    line-height: 1.7;
    font-size: var(--text-sm);
}
.how-diff-info p strong {
    color: var(--color-primary);
    font-weight: 600;
}

/* === Products Carousel === */
.products-section-v2 {
    padding: 120px 0;
    background: #fff;
}
.section-header-v2 {
    text-align: center;
    margin-bottom: 60px;
}
.section-header-v2 .eyebrow-v2 {
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--color-secondary-dark);
    margin-bottom: 16px;
    font-weight: 600;
}
.section-header-v2 h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--color-primary);
}
.section-header-v2 h2 em { font-family: var(--font-accent); font-style: italic; color: var(--color-secondary-dark); }
.products-scroll {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 0 8% 20px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.products-scroll::-webkit-scrollbar { display: none; }
.product-card-v2 {
    flex: 0 0 320px;
    scroll-snap-align: start;
    cursor: pointer;
    transition: transform .4s;
}
.product-card-v2:hover { transform: translateY(-6px); }
.product-card-v2 .img-wrap {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: var(--color-off-white);
    margin-bottom: 16px;
}
.product-card-v2 .img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s cubic-bezier(.4,0,.2,1);
}
.product-card-v2:hover .img-wrap img { transform: scale(1.06); }
.product-card-v2 .quick-add {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 14px;
    background: rgba(0,0,0,0.85);
    color: #fff;
    text-align: center;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    transform: translateY(100%);
    transition: transform .3s;
    cursor: pointer;
    border: none;
    width: 100%;
}
.product-card-v2:hover .quick-add { transform: translateY(0); }
.product-card-v2 .badge-v2 {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 5px 14px;
    background: var(--color-secondary);
    color: #fff;
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 700;
}
.product-card-v2 .p-category {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: 6px;
}
.product-card-v2 .p-name {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    color: var(--color-primary);
    margin-bottom: 8px;
    line-height: 1.3;
}
.product-card-v2 .p-price {
    font-weight: 600;
    color: var(--color-primary);
    font-size: var(--text-base);
}
.product-card-v2 .p-price .old { text-decoration: line-through; color: var(--color-text-muted); font-weight: 400; margin-left: 8px; font-size: .9em; }

/* === Trust Strip === */
.trust-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
    background: var(--color-primary);
    color: #fff;
}
.trust-strip-item {
    padding: 60px 40px;
    border-right: 1px solid rgba(255,255,255,0.06);
    position: relative;
    overflow: hidden;
}
.trust-strip-item:last-child { border: none; }
.trust-strip-item h3 {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    color: #fff;
    margin-bottom: 8px;
}
.trust-strip-item h3 em { font-family: var(--font-accent); font-style: italic; color: var(--color-secondary); }
.trust-strip-item p { color: rgba(255,255,255,0.5); font-size: var(--text-sm); letter-spacing: 1px; }

/* === Differentiator with bold SVG icons === */
.diff-section-v2 {
    padding: 120px 0;
    background: var(--color-off-white);
}
.diff-grid-v2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}
.diff-card-v2 {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    padding: 48px 36px;
    transition: all .4s;
    position: relative;
    overflow: hidden;
}
.diff-card-v2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--color-secondary);
    transform: scaleX(0);
    transition: transform .4s;
    transform-origin: left;
}
.diff-card-v2:hover::before { transform: scaleX(1); }
.diff-card-v2:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,0.08); }
.diff-card-v2 .icon-v2 {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    background: var(--color-cta);
    border-radius: var(--radius-md);
    transition: all 0.3s;
}
.diff-card-v2:hover .icon-v2 {
    background: var(--color-secondary);
    transform: scale(1.05);
}
.diff-card-v2:hover .icon-v2 svg {
    stroke: #fff;
}
.diff-card-v2 h4 { font-family: var(--font-heading); font-size: var(--text-xl); margin-bottom: 12px; color: var(--color-primary); }
.diff-card-v2 p { color: var(--color-text-light); line-height: 1.7; font-size: var(--text-sm); }

/* === Comparison section (dark immersive) === */
.comparison-v2 {
    background: var(--color-primary);
    padding: 120px 0;
    color: #fff;
}
.comparison-table-v2 {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    border-collapse: collapse;
}
.comparison-table-v2 th {
    padding: 16px 20px;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    text-align: left;
    color: var(--color-secondary);
    font-weight: 600;
}
.comparison-table-v2 td {
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: var(--text-sm);
    color: rgba(255,255,255,0.7);
}
.comparison-table-v2 td:nth-child(2) { color: var(--color-secondary); font-weight: 500; }

/* === Blog / Latest Content Section === */
.blog-section {
    padding: 120px 0;
    background: #fff;
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}
.blog-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.4s;
}
.blog-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
}
.blog-card-img {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}
.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s;
}
.blog-card:hover .blog-card-img img {
    transform: scale(1.06);
}
.blog-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 12px;
    background: var(--color-primary);
    color: #fff;
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 700;
    border-radius: var(--radius-sm);
}
.blog-card-body {
    padding: 28px 24px;
}
.blog-date {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--color-text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.blog-card-body h3 {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    color: var(--color-primary);
    margin-bottom: 12px;
    line-height: 1.3;
    transition: color 0.3s;
}
.blog-card:hover .blog-card-body h3 {
    color: var(--color-secondary-dark);
}
.blog-card-body p {
    color: var(--color-text-light);
    font-size: var(--text-sm);
    line-height: 1.7;
    margin-bottom: 16px;
}
.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-primary);
    text-decoration: none;
    transition: all 0.3s;
}
.blog-read-more:hover {
    gap: 12px;
    color: var(--color-secondary-dark);
}

/* === CTA v2 === */
.cta-v2 {
    position: relative;
    padding: 140px 0;
    text-align: center;
    overflow: hidden;
}
.cta-v2-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.cta-v2-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.65); }
.cta-v2-content { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.cta-v2-content h2 { font-family: var(--font-heading); color: #fff; font-size: clamp(2rem,4vw,3.5rem); margin-bottom: 20px; line-height: 1.15; }
.cta-v2-content h2 em { font-family: var(--font-accent); font-style: italic; color: var(--color-secondary); }
.cta-v2-content p { color: rgba(255,255,255,0.6); margin-bottom: 36px; font-size: var(--text-lg); }

/* === Responsive === */
@media (max-width: 1024px) {
    .hero-slide { grid-template-columns: 1fr 1fr; }
    .hero-slide-text { padding: 40px 48px; }
    .hero-slide-text::after { width: 80px; right: -40px; }
    .editorial-section { grid-template-columns: 1fr; }
    .editorial-content { padding: 60px 5%; }
    .diff-grid-v2 { grid-template-columns: 1fr 1fr; }
    .trust-strip { grid-template-columns: 1fr; }
    .instagram-grid { grid-template-columns: repeat(3, 1fr); }
    .how-diff-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .hero-split { height: auto; min-height: unset; max-height: unset; }
    .hero-slide { grid-template-columns: 1fr; position: relative; }
    .hero-slide:not(.active) { display: none; }
    .hero-slide-text { padding: 48px 24px 32px; }
    .hero-slide-text::after { display: none; }
    .hero-slide-img { aspect-ratio: 4/3; }
    .hero-nav { width: 100%; bottom: auto; position: relative; padding: 20px 0; background: var(--color-primary); }
    .hero-counter { display: none; }
    .diff-grid-v2 { grid-template-columns: 1fr; }
    .product-card-v2 { flex: 0 0 260px; }
    .editorial-content { padding: 40px 5%; }
    .instagram-grid { grid-template-columns: repeat(2, 1fr); }
    .blog-grid { grid-template-columns: 1fr; }
    .how-diff-grid { grid-template-columns: 1fr; }
}

/* ============================================
   NEW HOMEPAGE SECTIONS
   ============================================ */

/* --- Shop By Shade --- */
.shop-by-shade {
    padding: 80px 20px;
    text-align: center;
    background: #fff;
}
.shop-by-shade h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 40px;
    letter-spacing: 0.5px;
}
.shade-circles {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.shade-item {
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s;
}
.shade-item:hover {
    transform: translateY(-5px);
}
.shade-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 12px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.shade-item p {
    font-size: 13px;
    margin: 0;
    color: #111;
    font-weight: 500;
}
.shade-actions {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.btn-primary-dark {
    background: var(--color-primary, #111);
    color: var(--color-secondary, #d4a574);
    padding: 12px 24px;
    font-size: 11px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: background 0.3s, color 0.3s;
}
.btn-primary-dark:hover {
    background: var(--color-secondary, #d4a574);
    color: var(--color-primary, #111);
}
.link-underline {
    font-size: 11px;
    font-weight: 700;
    text-decoration: none;
    color: #111;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid #111;
    padding-bottom: 2px;
}

/* --- Category Grid --- */
.category-grid-section {
    width: 100%;
}
.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
}
.category-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: #fff;
}
.cat-img-wrap {
    width: 100%;
    aspect-ratio: 4/5;
    position: relative;
    overflow: hidden;
}
.cat-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.cat-info {
    padding: 24px;
    text-align: left;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.cat-info h3 {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 8px;
    font-family: var(--font-body); /* Or heading if preferred */
}
.cat-best-for {
    font-size: 10px;
    font-weight: 700;
    color: var(--color-primary, #111);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.cat-info p {
    font-size: 13px;
    line-height: 1.4;
    color: #333;
    margin-bottom: 24px;
    flex: 1;
}
.cat-info .btn-primary-dark {
    align-self: flex-start;
}

/* --- Recommendations For You --- */
.recommendations-section {
    padding: 80px 5%;
    background: #fff;
    text-align: center;
}
.recommendations-section h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 40px;
}
.recs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.rec-card {
    text-align: left;
}
.rec-img {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    margin-bottom: 16px;
    background: #f4f4f4;
}
.rec-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.rec-title {
    font-size: 14px;
    font-family: var(--font-body);
    font-weight: 400;
    margin-bottom: 6px;
    color: #111;
    line-height: 1.3;
}
.rec-price {
    font-size: 12px;
    font-weight: 600;
    color: #666;
}

/* --- Stylist Banner --- */
.stylist-banner {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #fff 0%, #f7f7f7 100%);
    overflow: hidden;
}
.stylist-content {
    flex: 1;
    padding: 60px 10%;
    text-align: left;
}
.stylist-content h2 {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 16px;
}
.stylist-content h2 em {
    font-family: var(--font-accent);
    font-style: italic;
}
.stylist-content p {
    font-size: 16px;
    color: #333;
    margin-bottom: 32px;
}
.btn-connect {
    background: #000;
    color: #fff;
    border: none;
    padding: 14px 32px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s;
}
.btn-connect:hover {
    background: #333;
}
.stylist-image {
    flex: 1;
    height: 600px;
}
.stylist-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsiveness */
@media (max-width: 1200px) {
    .category-grid { grid-template-columns: repeat(2, 1fr); }
    .cat-img-wrap { aspect-ratio: 1; }
    .stylist-banner { flex-direction: column; }
    .stylist-image { height: 400px; width: 100%; }
}
@media (max-width: 768px) {
    .recs-grid { grid-template-columns: repeat(2, 1fr); }
    .shade-circles { gap: 16px; }
    .shade-circle { width: 80px; height: 80px; }
}
@media (max-width: 480px) {
    .category-grid { grid-template-columns: 1fr; }
    .recs-grid { grid-template-columns: 1fr; }
}

/* --- Flashing Badge --- */
@keyframes flashNew {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.05); }
}
.badge-flashing {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #cc0000;
    color: #fff;
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 3px;
    animation: flashNew 1.5s infinite;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(204,0,0,0.3);
}

/* --- Video Parallax Marquee --- */
.instagram-video-marquee {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background: #000; /* fallback */
}

/* Glossy animated background */
.marquee-bg-glossy {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, #fdfbf7, #f4eee6, #faecd4, #fdfbf7);
    background-size: 300% 300%;
    animation: glossyFlow 8s ease infinite;
    z-index: 0;
}
@keyframes glossyFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.video-marquee-container {
    padding-top: 40px;
    width: 100%;
    overflow: hidden;
    position: relative;
    z-index: 2;
    display: flex;
}

.video-marquee-track {
    display: flex;
    gap: 20px;
    animation: marqueeSlideLR 30s linear infinite;
    min-width: 200%;
    padding-left: 20px; /* Optional start spacing */
}
.video-marquee-container:hover .video-marquee-track {
    animation-play-state: paused;
}

@keyframes marqueeSlideLR {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0%); }
}

.marquee-video-item {
    width: 320px;
    aspect-ratio: 9/16;
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    background: #111;
    position: relative;
    cursor: pointer;
    /* Parallax scale effect on hover */
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.marquee-video-item:hover {
    transform: scale(1.05) translateY(-10px);
    z-index: 10;
}

.marquee-video-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ig-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}
.marquee-video-item:hover .ig-overlay {
    opacity: 1;
}
.ig-overlay svg {
    filter: drop-shadow(0 2px 5px rgba(0,0,0,0.5));
}

/* --- Hair Order Atlas Grid --- */
.home-grid-atlas {
    padding: 110px 5%;
    background: linear-gradient(180deg, #fff 0%, #faf6ef 100%);
}

.atlas-shell,
.growth-shell,
.founder-led-shell {
    max-width: 1240px;
    margin: 0 auto;
}

.atlas-intro-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 30px 34px;
    margin-bottom: 24px;
    border-radius: 30px;
    background:
        radial-gradient(circle at top right, rgba(212, 165, 116, 0.18), transparent 30%),
        linear-gradient(135deg, #151515 0%, #26201b 100%);
    color: #fff;
    box-shadow: 0 24px 50px rgba(17, 17, 17, 0.16);
}

.atlas-banner-kicker,
.growth-kicker,
.mastery-kicker,
.founder-content-kicker,
.type-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
}

.atlas-banner-kicker {
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 10px;
}

.atlas-intro-banner h3 {
    max-width: 720px;
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3vw, 2.5rem);
    line-height: 1.15;
    color: #fff;
}

.atlas-type-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-bottom: 24px;
}

.atlas-type-card {
    padding: 30px;
    border-radius: 28px;
    border: 1px solid rgba(17, 17, 17, 0.08);
    background: #fff;
    box-shadow: 0 18px 40px rgba(17, 17, 17, 0.06);
}

.atlas-type-card-light {
    background: linear-gradient(180deg, #fff7eb 0%, #ffffff 100%);
}

.type-tag {
    color: var(--color-secondary-dark);
    margin-bottom: 14px;
}

.atlas-type-card h3 {
    font-family: var(--font-heading);
    font-size: clamp(1.45rem, 2vw, 2rem);
    line-height: 1.2;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.atlas-type-card p {
    color: var(--color-text-light);
    line-height: 1.8;
    font-size: var(--text-md);
    max-width: 48ch;
}

.atlas-product-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 18px;
}

.atlas-product-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 18px;
    min-height: 245px;
    padding: 24px 22px;
    border-radius: 26px;
    color: #fff;
    text-decoration: none;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(17, 17, 17, 0.12);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.atlas-product-card::before {
    content: '';
    position: absolute;
    inset: auto -10% -25% auto;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    filter: blur(2px);
}

.atlas-product-card:nth-child(1) { background: linear-gradient(145deg, #161616 0%, #2c2622 100%); }
.atlas-product-card:nth-child(2) { background: linear-gradient(145deg, #2a1f16 0%, #6f4a2d 100%); }
.atlas-product-card:nth-child(3) { background: linear-gradient(145deg, #221b2c 0%, #5d427d 100%); }
.atlas-product-card:nth-child(4) { background: linear-gradient(145deg, #16303a 0%, #2f7d8e 100%); }
.atlas-product-card:nth-child(5) { background: linear-gradient(145deg, #2b2412 0%, #9d7a26 100%); }
.atlas-product-card:nth-child(6) { background: linear-gradient(145deg, #31181d 0%, #8d4350 100%); }

.atlas-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 58px rgba(17, 17, 17, 0.16);
}

.atlas-product-index {
    position: relative;
    z-index: 1;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
}

.atlas-product-card h3 {
    position: relative;
    z-index: 1;
    font-family: var(--font-heading);
    font-size: 1.55rem;
    line-height: 1.05;
    margin-bottom: 10px;
}

.atlas-product-card p {
    position: relative;
    z-index: 1;
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.76);
}

.atlas-product-cta {
    position: relative;
    z-index: 1;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-secondary);
}

.atlas-lower-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.9fr);
    gap: 24px;
    margin-top: 28px;
}

.atlas-testimonials-panel,
.atlas-solutions-panel {
    padding: 30px;
    border-radius: 30px;
    background: #fff;
    border: 1px solid rgba(17, 17, 17, 0.08);
    box-shadow: 0 18px 40px rgba(17, 17, 17, 0.06);
}

.atlas-panel-head {
    margin-bottom: 22px;
}

.atlas-panel-head .eyebrow-v2 {
    margin-bottom: 10px;
}

.atlas-panel-head h3 {
    font-family: var(--font-heading);
    font-size: clamp(1.45rem, 2vw, 2rem);
    line-height: 1.2;
    color: var(--color-primary);
}

.atlas-testimonial-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.atlas-testimonial-card {
    min-height: 200px;
    padding: 22px 18px;
    border-radius: 22px;
    background: #f8f4ed;
    border: 1px solid rgba(17, 17, 17, 0.06);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 16px;
    box-shadow: 0 12px 24px rgba(17, 17, 17, 0.04);
}

.atlas-testimonial-card:nth-child(2n) {
    transform: translateY(18px);
}

.atlas-testimonial-card p {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    line-height: 1.55;
    color: var(--color-primary);
}

.atlas-testimonial-card span {
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-text-light);
}

.atlas-solution-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.atlas-solution-pill {
    aspect-ratio: 1;
    border-radius: 50%;
    background: linear-gradient(180deg, #fff 0%, #f7eedf 100%);
    border: 1px solid rgba(17, 17, 17, 0.08);
    color: var(--color-primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 18px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.atlas-solution-pill:hover {
    transform: translateY(-5px);
    background: var(--color-primary);
    color: var(--color-secondary);
}

/* --- Goals, Forms, and Mastery Grid --- */
.home-growth-grid {
    padding: 120px 5%;
    background: var(--color-off-white);
}

.growth-top-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    gap: 24px;
    margin-bottom: 24px;
}

.growth-quiz-card,
.growth-action-card,
.mastery-card {
    text-decoration: none;
}

.growth-quiz-card {
    position: relative;
    min-height: 360px;
    padding: 34px;
    border-radius: 32px;
    color: #fff;
    background:
        radial-gradient(circle at top right, rgba(212, 165, 116, 0.18), transparent 28%),
        linear-gradient(140deg, #171717 0%, #2f251f 100%);
    box-shadow: 0 24px 50px rgba(17, 17, 17, 0.14);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.growth-quiz-card::after {
    content: '?';
    position: absolute;
    right: 28px;
    bottom: 8px;
    font-family: var(--font-heading);
    font-size: 9rem;
    line-height: 1;
    color: rgba(255, 255, 255, 0.06);
}

.growth-kicker {
    color: var(--color-secondary);
    margin-bottom: 12px;
}

.growth-quiz-card h3,
.growth-action-card h3,
.mastery-card h3 {
    font-family: var(--font-heading);
    line-height: 1.12;
}

.growth-quiz-card h3 {
    position: relative;
    z-index: 1;
    max-width: 12ch;
    font-size: clamp(2rem, 4vw, 3.3rem);
    color: #fff;
    margin-bottom: 18px;
}

.growth-quiz-card p {
    position: relative;
    z-index: 1;
    max-width: 46ch;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.76);
}

.growth-link {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    font-size: 12px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    font-weight: 700;
}

.growth-cta-stack {
    display: grid;
    gap: 24px;
}

.growth-action-card {
    min-height: 168px;
    padding: 28px 30px;
    border-radius: 28px;
    background: #fff;
    border: 1px solid rgba(17, 17, 17, 0.08);
    color: var(--color-primary);
    box-shadow: 0 18px 36px rgba(17, 17, 17, 0.06);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.growth-action-dark {
    background: linear-gradient(140deg, #fff5e8 0%, #f0e3d0 100%);
}

.growth-action-card h3 {
    font-size: clamp(1.45rem, 2vw, 2rem);
    margin: 6px 0 10px;
}

.growth-action-card p {
    color: var(--color-text-light);
    line-height: 1.75;
}

.mastery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.mastery-card {
    min-height: 250px;
    padding: 28px;
    border-radius: 28px;
    background: linear-gradient(180deg, #fff 0%, #fcf8f2 100%);
    border: 1px solid rgba(17, 17, 17, 0.08);
    box-shadow: 0 18px 36px rgba(17, 17, 17, 0.06);
    color: var(--color-primary);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mastery-card:hover,
.growth-action-card:hover,
.growth-quiz-card:hover {
    transform: translateY(-6px);
}

.mastery-kicker {
    color: var(--color-secondary-dark);
    margin-bottom: 12px;
}

.mastery-card h3 {
    font-size: clamp(1.5rem, 2vw, 2rem);
    margin-bottom: 12px;
}

.mastery-card p {
    color: var(--color-text-light);
    line-height: 1.75;
}

/* --- Founder-Led Content Grid --- */
.founder-led-grid-section {
    padding: 80px 5% 120px;
    background: var(--color-off-white);
}

.founder-content-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.founder-content-card {
    position: relative;
    min-height: 460px;
    border-radius: 30px;
    overflow: hidden;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 24px 48px rgba(17, 17, 17, 0.12);
}

.founder-content-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.founder-content-card:hover img {
    transform: scale(1.06);
}

.founder-content-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(17, 17, 17, 0.16) 0%, rgba(17, 17, 17, 0.44) 42%, rgba(17, 17, 17, 0.92) 100%);
}

.founder-content-copy {
    position: relative;
    z-index: 1;
    height: 100%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.founder-content-copy::before {
    content: '';
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    top: 42%;
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(10, 10, 10, 0.08) 0%, rgba(10, 10, 10, 0.68) 40%, rgba(10, 10, 10, 0.94) 100%);
    backdrop-filter: blur(2px);
    box-shadow: 0 18px 32px rgba(0, 0, 0, 0.18);
}

.founder-content-kicker {
    position: relative;
    z-index: 1;
    color: var(--color-secondary);
    margin-bottom: 12px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
}

.founder-content-copy h3 {
    position: relative;
    z-index: 1;
    font-family: var(--font-heading);
    font-size: clamp(1.55rem, 2.4vw, 2.2rem);
    line-height: 1.12;
    margin-bottom: 12px;
    color: #fff;
    text-shadow: 0 3px 16px rgba(0, 0, 0, 0.52);
}

.founder-content-copy p {
    position: relative;
    z-index: 1;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.8;
    max-width: 34ch;
    margin-bottom: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

@media (max-width: 1200px) {
    .atlas-product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .atlas-testimonial-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .mastery-grid,
    .founder-content-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 1024px) {
    .atlas-intro-banner,
    .atlas-type-grid,
    .atlas-lower-grid,
    .growth-top-grid {
        grid-template-columns: 1fr;
    }

    .atlas-intro-banner {
        flex-direction: column;
        align-items: flex-start;
    }

    .atlas-intro-banner .btn-primary-dark {
        align-self: flex-start;
    }

    .atlas-lower-grid,
    .growth-top-grid {
        display: grid;
    }

    .atlas-testimonial-card:nth-child(2n) {
        transform: none;
    }
}

@media (max-width: 768px) {
    .home-grid-atlas,
    .home-growth-grid,
    .founder-led-grid-section {
        padding-left: 24px;
        padding-right: 24px;
    }

    .founder-led-grid-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .atlas-product-grid,
    .atlas-solution-grid,
    .mastery-grid,
    .founder-content-grid {
        grid-template-columns: 1fr;
    }

    .atlas-testimonial-grid {
        grid-template-columns: 1fr;
    }

    .atlas-type-card,
    .atlas-testimonials-panel,
    .atlas-solutions-panel,
    .growth-quiz-card,
    .growth-action-card,
    .mastery-card,
    .founder-content-copy {
        padding: 24px;
    }

    .growth-quiz-card {
        min-height: 300px;
    }

    .founder-content-card {
        min-height: 380px;
    }
}

/* ============================================
   SHOP: PERMANENT vs TEMPORARY SPLIT SECTION
   ============================================ */

.shop-split-section {
    position: relative;
    background: #fff;
    overflow: hidden;
}

/* --- Section Header --- */
.shop-split-header {
    text-align: center;
    padding: 100px 5% 60px;
}

.shop-split-eyebrow {
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--color-secondary-dark);
    font-weight: 700;
    margin-bottom: 16px;
}

.shop-split-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    color: var(--color-primary);
    line-height: 1.1;
    margin-bottom: 20px;
}

.shop-split-title em {
    font-family: var(--font-accent);
    font-style: italic;
    color: var(--color-secondary-dark);
}

.shop-split-title-underline {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-secondary), var(--color-accent));
    margin: 0 auto 24px;
    border-radius: 3px;
}

.shop-split-subtitle {
    max-width: 560px;
    margin: 0 auto;
    color: var(--color-text-light);
    font-size: var(--text-md);
    line-height: 1.7;
}

/* --- Left/Right Banner --- */
.shop-split-banner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    min-height: 640px;
    position: relative;
}

.shop-split-half {
    position: relative;
    display: flex;
    align-items: flex-end;
    text-decoration: none;
    color: #fff;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.shop-split-half:hover {
    flex-grow: 1.05;
}

/* Image Layer */
.shop-split-img-wrap {
    position: absolute;
    inset: 0;
}

.shop-split-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.shop-split-half:hover .shop-split-img-wrap img {
    transform: scale(1.06);
}

/* Overlay Gradients */
.shop-split-overlay {
    position: absolute;
    inset: 0;
    transition: opacity 0.5s;
}

.shop-split-overlay--dark {
    background: linear-gradient(
        to top,
        rgba(10, 8, 6, 0.92) 0%,
        rgba(10, 8, 6, 0.65) 35%,
        rgba(10, 8, 6, 0.2) 70%,
        rgba(10, 8, 6, 0.05) 100%
    );
}

.shop-split-overlay--light {
    background: linear-gradient(
        to top,
        rgba(30, 20, 15, 0.88) 0%,
        rgba(30, 20, 15, 0.55) 35%,
        rgba(30, 20, 15, 0.15) 70%,
        rgba(30, 20, 15, 0.0) 100%
    );
}

.shop-split-half:hover .shop-split-overlay {
    opacity: 0.85;
}

/* Content Overlay */
.shop-split-content {
    position: relative;
    z-index: 2;
    padding: 40px;
    width: calc(100% - 40px);
    margin: 20px;
    background: rgba(15, 10, 8, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    transition: all 0.4s ease;
}

.shop-split-half:hover .shop-split-content {
    background: rgba(15, 10, 8, 0.8);
    transform: translateY(-5px);
    border-color: rgba(212, 165, 116, 0.3);
}

.shop-split-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    font-size: 10px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--color-secondary-light);
    margin-bottom: 18px;
}

.shop-split-name {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    font-weight: 400;
    line-height: 1.05;
    margin-bottom: 16px;
    color: #fff;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.shop-split-desc {
    font-size: var(--text-md);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    max-width: 400px;
    margin-bottom: 24px;
}

/* Product Pills */
.shop-split-products {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
}

.shop-split-pill {
    padding: 7px 18px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    transition: all 0.3s;
}

.shop-split-half:hover .shop-split-pill {
    background: rgba(212, 165, 116, 0.2);
    border-color: rgba(212, 165, 116, 0.4);
    color: var(--color-secondary-light);
}

/* CTA Arrow Button */
.shop-split-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--color-secondary);
    transition: gap 0.3s, color 0.3s;
}

.shop-split-half:hover .shop-split-cta {
    gap: 18px;
    color: #fff;
}

/* Center Divider */
.shop-split-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 5;
}

.shop-split-divider span {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(26, 26, 26, 0.9);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(212, 165, 116, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    letter-spacing: 3px;
    font-weight: 700;
    color: var(--color-secondary);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

/* Wavy Bottom Divider */
.shop-split-wave {
    position: relative;
    margin-top: -2px;
    line-height: 0;
}

.shop-split-wave svg {
    width: 100%;
    height: 60px;
    display: block;
}

/* ============================================
   PRODUCT QUICK CARDS
   ============================================ */

.product-quick-cards {
    padding: 80px 5%;
    background: var(--color-cream);
}

.pqc-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    max-width: 1300px;
    margin: 0 auto;
}

.pqc-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 16px;
    min-height: 220px;
    padding: 24px 20px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    text-decoration: none;
    color: var(--color-primary);
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s;
}

.pqc-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-secondary), var(--color-accent));
    transform: scaleX(0);
    transition: transform 0.4s;
    transform-origin: left;
}

.pqc-card:hover::before {
    transform: scaleX(1);
}

.pqc-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-color: rgba(212, 165, 116, 0.2);
}

.pqc-index {
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--color-text-muted);
    font-weight: 600;
}

.pqc-body h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    line-height: 1.1;
    margin-bottom: 8px;
    color: var(--color-primary);
}

.pqc-body p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--color-text-light);
}

.pqc-cta {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-secondary-dark);
    transition: color 0.3s;
}

.pqc-card:hover .pqc-cta {
    color: var(--color-primary);
}

/* --- Responsive --- */
@media (max-width: 1200px) {
    .pqc-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .shop-split-banner {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .shop-split-half {
        min-height: 480px;
    }

    .shop-split-divider {
        width: 100%;
        height: 1px;
        background: rgba(255, 255, 255, 0.15);
    }

    .shop-split-divider span {
        position: relative;
    }
}

@media (max-width: 768px) {
    .shop-split-header {
        padding: 60px 5% 40px;
    }

    .shop-split-half {
        min-height: 380px;
    }

    .shop-split-content {
        padding: 25px 20px;
        margin: 15px;
        width: calc(100% - 30px);
    }

    .shop-split-name {
        font-size: 1.8rem;
    }

    .pqc-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .shop-split-half {
        min-height: 380px;
    }

    .pqc-grid {
        grid-template-columns: 1fr;
    }

    .shop-split-products {
        gap: 6px;
    }

    .shop-split-pill {
        font-size: 10px;
        padding: 5px 12px;
    }
}

/* ============================================
   PROMOTIONAL HERO BANNER SLIDER
   ============================================ */
.promo-hero {
    position: relative;
    margin-top: calc(var(--announcement-height, 40px) + var(--navbar-height, 72px));
    height: calc(100vh - var(--announcement-height, 40px) - var(--navbar-height, 72px));
    min-height: 550px;
    width: 100%;
    overflow: hidden;
}
.ph-slides { position: relative; width: 100%; height: 100%; display: flex; align-items: stretch; }
.ph-slide {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    opacity: 0; visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0s linear 0.8s;
    z-index: 1;
}
.ph-slide.active {
    opacity: 1; visibility: visible; z-index: 2;
    transition: opacity 0.8s ease-in-out, visibility 0s linear 0s;
}
.ph-slide-inner {
    max-width: var(--max-width-wide, 1600px);
    margin: 0 auto; display: flex; align-items: center;
    height: 100%; padding: 40px 5%;
}

/* Text — LEFT */
.ph-text { flex: 0 0 45%; padding-right: 40px; z-index: 3; }
.ph-eyebrow {
    display: inline-block; font-family: var(--font-accent);
    font-size: 1.1rem; color: var(--color-secondary-dark);
    font-style: italic; margin-bottom: 12px; letter-spacing: 1px;
}
.ph-text h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4.2rem); line-height: 1.05;
    color: var(--color-primary); margin-bottom: 16px;
}
.ph-text h1 em { font-family: var(--font-accent); font-style: italic; font-weight: 400; color: var(--color-primary); }
.ph-text h1 strong { font-weight: 900; letter-spacing: -1px; }
.ph-text p { font-family: var(--font-body); font-size: 1.1rem; color: #444; margin-bottom: 12px; line-height: 1.5; }
.ph-offer { font-size: 1.05rem !important; color: var(--color-secondary-dark) !important; margin-bottom: 16px !important; }
.ph-price {
    display: inline-block; border: 1px solid var(--color-secondary-dark); border-radius: 4px;
    padding: 8px 18px; font-size: 0.95rem; font-family: var(--font-body);
    color: var(--color-secondary-dark); margin-bottom: 24px; font-weight: 500;
}
.ph-btn {
    display: inline-block; padding: 16px 40px; background: var(--color-primary); color: #fff;
    font-family: var(--font-body); font-size: 1rem; font-weight: 700; letter-spacing: 2px;
    text-transform: uppercase; text-decoration: none; border: none;
    transition: transform 0.2s, box-shadow 0.2s;
}
.ph-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,0.15); }

/* Image — RIGHT */
.ph-image { flex: 1; display: flex; justify-content: center; align-items: flex-end; position: relative; z-index: 2; height: 100%; max-height: 75vh; }
.ph-image img {
    height: 100%; width: auto; max-width: 100%; object-fit: contain;
    filter: contrast(1.08) saturate(1.15) brightness(1.02);
    transform: translateX(20px) scale(0.95); opacity: 0;
    transition: transform 1s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.8s ease;
}
.ph-slide.active .ph-image img { transform: translateX(0) scale(1); opacity: 1; }

/* Parallax float */
@keyframes ph-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
.ph-slide.active .ph-parallax img { animation: ph-float 4s ease-in-out infinite 1s; }

/* Decorative accent circle */
.ph-image::before {
    content: ''; position: absolute;
    width: 280px; height: 280px; border-radius: 50%;
    background: rgba(200, 100, 80, 0.12);
    right: 10%; bottom: 10%; z-index: -1;
}

/* Navigation */
.ph-nav {
    position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
    z-index: 10; display: flex; align-items: center; gap: 20px;
}
.ph-dots { display: flex; gap: 8px; }
.ph-dot {
    width: 10px; height: 10px; border-radius: 50%;
    background: rgba(0,0,0,0.2); border: none; cursor: pointer;
    transition: background 0.3s, transform 0.3s; padding: 0;
}
.ph-dot.active { background: var(--color-primary); transform: scale(1.3); }
.ph-arrows { display: flex; gap: 6px; }
.ph-arrow {
    width: 36px; height: 36px; border-radius: 50%;
    border: 1px solid rgba(0,0,0,0.15); background: rgba(255,255,255,0.7);
    color: var(--color-primary); font-size: 1.4rem; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s, border-color 0.2s; line-height: 1;
}
.ph-arrow:hover { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }

@media (max-width: 900px) {
    .ph-slide-inner { flex-direction: column; text-align: center; min-height: auto; padding: 30px 5%; }
    .ph-text { flex: none; padding-right: 0; margin-bottom: 20px; }
    .ph-text h1 { font-size: clamp(1.6rem, 6vw, 2.5rem); }
    .ph-image img { max-height: 280px; }
    .ph-image::before { width: 180px; height: 180px; }
}


/* ============================================
   LIVE SHOPPING BANNER
   ============================================ */
.live-shopping-banner {
    background: #8B1A24; /* Deep maroon/red like reference */
    color: white;
    overflow: hidden;
}
.ls-banner-content {
    max-width: var(--max-width-wide, 1600px);
    margin: 0 auto;
    display: flex;
    align-items: stretch;
    height: 480px; /* Slightly taller */
}
.ls-image-box {
    flex: 0 0 42%;
    position: relative;
    overflow: hidden;
}
.ls-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 15%;
    display: block;
}
.ls-image-box::after {
    content: '';
    position: absolute;
    top: 0;
    right: -1px;
    width: 150px;
    height: 100%;
    background: linear-gradient(90deg, transparent, #8B1A24);
    pointer-events: none;
}
.ls-text-box {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; /* Center aligned like reference */
    text-align: center; /* Center aligned like reference */
    padding: 60px;
}
.ls-text-box h2 {
    font-family: var(--font-body); /* Sans-serif for this specific section */
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1;
    font-weight: 800;
    margin-bottom: 15px;
    color: #fff;
    letter-spacing: -1px;
    text-transform: uppercase;
}
.ls-text-box p {
    font-family: var(--font-body);
    font-size: 1.2rem;
    color: #FFD700; /* Gold color like reference */
    margin-bottom: 30px;
    font-weight: 500;
    font-style: italic;
}
.btn-live-video {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: #000; /* Black button like reference */
    color: #fff;
    padding: 18px 45px;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    transition: transform 0.2s, background 0.2s;
    border: 2px solid #000;
    letter-spacing: 1px;
}
.btn-live-video:hover {
    transform: translateY(-3px);
    background: #222;
}
.btn-live-video svg {
    stroke-width: 2;
    width: 20px;
    height: 20px;
}

/* ============================================
   CATEGORY CIRCLES
   ============================================ */
.category-circles-section {
    padding: 50px 5%;
    background: var(--color-off-white);
}
.category-circles-grid {
    display: flex;
    justify-content: center;
    gap: clamp(20px, 3vw, 45px);
    flex-wrap: wrap;
    max-width: var(--max-width-wide, 1600px);
    margin: 0 auto;
}
.cat-circle-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    gap: 14px;
    width: 160px;
    color: var(--color-text);
    transition: transform 0.25s ease;
}
.cat-circle-card:hover {
    transform: translateY(-6px);
}
.cat-circle-img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 2px solid var(--color-secondary-light);
    padding: 4px;
    overflow: hidden;
    background: #fff;
    transition: border-color 0.25s, box-shadow 0.25s;
}
.cat-circle-card:hover .cat-circle-img {
    border-color: var(--color-secondary-dark);
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.25);
}
.cat-circle-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    border-radius: 50%;
    background: #f4f4f4;
    filter: contrast(1.1) saturate(1.2) brightness(1.03);
}
.cat-circle-card span {
    font-size: 0.85rem;
    font-family: var(--font-body);
    font-weight: 500;
    text-align: center;
    line-height: 1.3;
    white-space: nowrap;
}

@media (max-width: 900px) {
    .ls-banner-content {
        flex-direction: column;
        height: auto;
    }
    .ls-image-box {
        flex: none;
        height: 200px;
    }
    .ls-image-box::after {
        width: 100%;
        height: 60px;
        top: auto;
        bottom: 0;
        right: 0;
        background: linear-gradient(180deg, transparent, var(--color-primary));
    }
    .ls-text-box {
        padding: 20px 5% 30px;
    }
    .cat-circle-card {
        width: 100px;
    }
    .cat-circle-img {
        width: 100px;
        height: 100px;
    }
    .cat-circle-card span {
        font-size: 0.75rem;
    }
}

/* ============================================
   VIDEO PROCESS SECTION
   ============================================ */
.video-process-section {
    padding: 120px 5%;
    background: var(--color-off-white);
    color: var(--color-text);
}

.vpc-header {
    text-align: center;
    margin-bottom: 80px;
}

.vpc-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin: 10px 0;
    color: var(--color-primary);
}

.vp-subtitle {
    color: var(--color-text-muted, #666);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.video-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: var(--max-width-wide, 1600px);
    margin: 0 auto 60px;
}

.vp-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.vp-card:hover .vp-video-wrapper {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.vp-video-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 9/16;
    background: #1a1a1a;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.vp-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: opacity 0.4s;
}

.vp-card:hover .vp-video {
    opacity: 1;
}

.vp-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 24px 24px;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.9) 100%);
    pointer-events: none;
}

.vp-step-num {
    font-family: monospace;
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--color-secondary);
    display: block;
    margin-bottom: 8px;
}

.vp-overlay h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin: 0;
    color: #fff;
}

.vp-desc {
    padding: 0 10px;
}

.vp-desc p {
    color: var(--color-text-light, #555);
    font-size: 0.95rem;
    line-height: 1.6;
}

.vp-action {
    text-align: center;
}

/* ============================================
   PILLARS BLOCK
   ============================================ */
.sf-pillars-block {
    margin: 80px auto 60px;
    max-width: var(--max-width-wide, 1600px);
}

.sf-pillars-title {
    text-align: center;
    font-family: var(--font-heading);
    color: var(--color-primary);
    margin-bottom: 50px;
    font-size: 1.8rem;
    font-weight: 500;
}

.sf-pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.sf-pillar-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 16px;
    min-height: 280px;
    padding: 32px 28px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    text-align: left;
    color: var(--color-primary);
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s;
}

.sf-pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-secondary), var(--color-accent));
    transform: scaleX(0);
    transition: transform 0.4s;
    transform-origin: left;
}

.sf-pillar-card:hover::before {
    transform: scaleX(1);
}

.sf-pillar-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-color: rgba(212, 165, 116, 0.2);
}

.sf-pillar-card h4 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    line-height: 1.2;
    margin-top: 10px;
    margin-bottom: 12px;
    font-weight: 600;
}

.sf-pillar-card p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 0;
}

.pqc-cta {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-secondary-dark);
    margin-top: auto;
    border-bottom: 1px solid transparent;
    width: fit-content;
    transition: border-color 0.3s;
}

.sf-pillar-card:hover .pqc-cta {
    border-color: var(--color-secondary-dark);
}

@media (max-width: 900px) {
    .sf-pillars-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1200px) {
    .video-process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 24px;
    }
}

@media (max-width: 768px) {
    .video-process-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-slide-text { text-align: center; }
    .hero-btns { justify-content: center; }
    .hero-nav-layer { width: 100%; padding: 0 20px; justify-content: space-between; }
    .hero-progress-track { flex: 1; margin: 0 15px; }
    .hero-counter-floating, .scroll-ind { display: none; }
}

/* === SECTION 2: HOW EVERY ORDER WORKS === */
.how-it-works-section {
    padding: 60px 0;
    position: relative;
    background: linear-gradient(90deg, #2b1d16, #4a3325, #2b1d16); /* Brownish Moving Gradient */
    background-size: 200% 100%;
    animation: movingGradient 10s linear infinite;
    overflow: hidden;
    color: #fff;
}

@keyframes movingGradient {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}

.how-it-works-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../../assets/images/sales_indian_girl.png');
    background-size: cover;
    background-position: center right;
    opacity: 0.25; /* More visible representative */
    z-index: 1;
}

.how-it-works-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(43, 29, 22, 0.7) 0%, rgba(74, 51, 37, 0.5) 40%, rgba(43, 29, 22, 0.7) 100%);
    z-index: 2;
}

.how-it-works-header, 
.hiw-steps-container {
    position: relative;
    z-index: 3;
    text-align: center;
}

.how-it-works-header {
    margin-bottom: 30px;
}
.how-it-works-header h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: #fff;
    margin-bottom: 15px;
}
@media (max-width: 768px) {
    .how-it-works-header h2 {
        font-size: 2rem;
    }
}
.how-it-works-header h2 em {
    font-family: var(--font-accent);
    color: var(--color-secondary);
    font-style: italic;
}
.hiw-container-mobile-stacked {
    position: relative;
    z-index: 3;
}

.hiw-steps-container {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 16px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
    padding: 0 20px;
}
.hiw-step-clone {
    display: none;
}

@media (max-width: 1024px) {
    .hiw-container-mobile-stacked {
        padding: 40px 0;
        position: relative;
        z-index: 3;
        overflow: hidden;
    }
    .hiw-steps-container {
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        justify-content: flex-start !important;
        gap: 0 !important;
        padding: 0 !important;
        width: fit-content;
        display: flex !important;
    }
    .hiw-step {
        flex: 0 0 280px !important;
        width: 280px !important;
        height: 280px !important;
        aspect-ratio: 1/1 !important;
        border-radius: 50% !important;
        padding: 30px !important;
        margin: 0 15px !important; /* Space between circles */
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center !important;
        background: rgba(255, 255, 255, 0.05) !important;
        border: 1px solid rgba(255,255,255,0.1) !important;
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    }
    .hiw-step-highlight {
        background: rgba(212, 165, 116, 0.08) !important;
        border: 2px solid var(--color-secondary) !important;
        box-shadow: 0 15px 45px rgba(212, 165, 116, 0.15) !important;
    }
    .hiw-step-highlight .hiw-btn {
        display: block !important;
        margin-top: 10px;
        background: var(--color-secondary);
        color: var(--color-primary);
        padding: 8px 16px;
        border-radius: 30px;
        font-size: 0.7rem;
        font-weight: 800;
        text-decoration: none;
    }
    .hiw-step-num {
        margin-bottom: 8px;
        font-size: 0.7rem;
    }
    .hiw-step p strong {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }
    .hiw-step span {
        font-size: 0.8rem;
        max-width: 180px;
    }
}
.hiw-step {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 20px;
    flex: 1;
    min-width: 180px;
    max-width: 250px;
    text-align: left;
    border-radius: 4px;
    position: relative;
    transition: all 0.4s ease;
}

@media (max-width: 1024px) {
    .hiw-step {
        /* Overrides from sf-carousel-item width */
        max-width: none !important;
    }
}

.hiw-step:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    border-color: var(--color-secondary);
}

.hiw-btn {
    display: inline-block;
    margin-top: 15px;
    color: var(--color-secondary);
    text-decoration: underline;
    font-weight: 600;
    font-size: 0.9rem;
    position: relative;
    z-index: 5;
    cursor: pointer;
    pointer-events: auto !important;
}


.hiw-step-highlight {
    background: rgba(212, 165, 116, 0.1);
    border-color: var(--color-secondary);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.hiw-step-num {
    display: block;
    font-size: 0.8rem;
    color: var(--color-secondary);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}
.hiw-step p strong {
    font-size: 1.25rem;
    color: #fff;
    display: block;
    margin-bottom: 15px;
    font-family: var(--font-heading);
    line-height: 1.2;
}
.hiw-step span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    display: block;
    line-height: 1.6;
}
.hiw-step-highlight p strong {
    color: #fff;
}
.hiw-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 8px 15px;
    background: #111;
    color: #fff;
    font-size: 0.8rem;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
}

@media (max-width: 1024px) {
    .hiw-step-highlight .hiw-btn {
        display: block !important;
        width: 100%;
        box-sizing: border-box;
        text-align: center;
    }
}

/* === SECTION 5: WHAT NO ONE ELSE DOES === */
.what-no-one-else-section {
    padding: 100px 5%;
    background: #fff;
    border-top: 1px solid #eaeaea;
    border-bottom: 1px solid #eaeaea;
}
.wnoe-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}
.wnoe-video video {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.wnoe-eyebrow {
    color: #2e8b57; /* Deep green */
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-weight: 700;
}
.wnoe-list {
    list-style: none;
    padding: 0;
}
.wnoe-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    color: var(--color-text-light);
    line-height: 1.6;
}
.wnoe-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2e8b57;
    font-weight: bold;
    font-size: 1.2rem;
}
}
@media (max-width: 900px) {
    .wnoe-grid {
        grid-template-columns: 1fr;
    }
}


/* ============================================
   SECTION 5: LIVE AUDIT
   ============================================ */
.live-audit-section {
    padding: 100px 5%;
    background: #fff;
    border-top: 1px solid #eaeaea;
    border-bottom: 1px solid #eaeaea;
}
.live-audit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}
.live-audit-video {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}
.live-audit-video video {
    width: 100%;
    display: block;
    border-radius: 16px;
}
.live-audit-video-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.25);
    opacity: 0;
    transition: opacity 0.3s;
}
.live-audit-video:hover .live-audit-video-overlay {
    opacity: 1;
}

.live-audit-eyebrow {
    color: #2e8b57;
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-weight: 700;
}
.live-audit-heading {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    margin-bottom: 20px;
    font-weight: 400;
    color: var(--color-primary);
    line-height: 1.2;
}
.live-audit-desc {
    margin-bottom: 20px;
    line-height: 1.7;
    color: var(--color-text-light);
    font-size: 1rem;
}
.live-audit-highlight {
    background: linear-gradient(135deg, #fffbe6 0%, #fff7d6 100%);
    border-left: 4px solid #D4A574;
    padding: 16px 20px;
    margin-bottom: 24px;
    border-radius: 0 8px 8px 0;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--color-primary);
}
.live-audit-highlight em {
    color: var(--color-text-light);
}
.live-audit-list {
    list-style: none;
    padding: 0;
    margin-bottom: 24px;
}
.live-audit-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 14px;
    color: var(--color-text-light);
    line-height: 1.6;
}
.live-audit-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2e8b57;
    font-weight: bold;
    font-size: 1.2rem;
}
.live-audit-list li strong {
    color: var(--color-primary);
}
@media (max-width: 900px) {
    .live-audit-grid { grid-template-columns: 1fr; }
}


/* ============================================
   SECTION 6: ABOUT US
   ============================================ */
.about-us-section {
    padding: 120px 5%;
    background: var(--color-off-white);
}
.about-us-inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}
.about-us-text h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--color-primary);
    margin-bottom: 24px;
    line-height: 1.15;
}
.about-us-text h2 em {
    font-family: var(--font-accent);
    font-style: italic;
    color: var(--color-secondary-dark);
}
.about-us-lead {
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 28px;
    font-size: 1.05rem;
}
.about-us-problems {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 28px;
}
.about-problem-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid rgba(231,76,60,0.15);
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.about-problem-icon {
    color: #e74c3c;
    font-size: 1.2rem;
    font-weight: bold;
    flex-shrink: 0;
}
.about-problem-item span:last-child {
    color: var(--color-text);
    font-size: 0.95rem;
    line-height: 1.5;
}
.about-us-mission {
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 16px;
    font-size: 1rem;
}
.about-us-bold {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-primary);
    line-height: 1.6;
    margin-bottom: 12px;
}

.about-us-video-label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    padding: 8px 18px;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 6px;
}
@media (max-width: 900px) {
    .about-us-inner { grid-template-columns: 1fr; }
}


/* ============================================
   SECTION 7: FOUNDER TALK
   ============================================ */
.founder-talk-section {
    padding: 120px 5%;
    background: var(--color-primary);
    color: #fff;
}
.founder-talk-inner {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}
.founder-talk-portrait {
    position: relative;
}
.founder-portrait-caption {
    margin-top: 24px;
    padding-left: 20px;
    border-left: 2px solid var(--color-secondary);
    animation: fadeIn 1s ease forwards;
}
.founder-portrait-caption strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: #fff;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}
.founder-portrait-caption span {
    font-size: 0.85rem;
    color: var(--color-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    display: block;
}
.founder-talk-portrait img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
    min-height: 480px;
}
.founder-talk-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}
.founder-talk-content h2 em {
    font-family: var(--font-accent);
    font-style: italic;
    color: var(--color-secondary);
}
.founder-talk-content p {
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    margin-bottom: 20px;
}
.founder-quote {
    position: relative;
    padding: 24px 28px;
    margin: 28px 0;
    background: rgba(212,165,116,0.1);
    border-left: 4px solid var(--color-secondary);
    border-radius: 0 12px 12px 0;
    font-family: var(--font-accent);
    font-size: 1.15rem;
    font-style: italic;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
}
/* Founder Video Marquee/Carousel */
.founder-video-container {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    margin-top: 60px;
    background: #0d0d0d;
    overflow: hidden;
    padding: 60px 0;
    border-top: 1px solid rgba(212,165,116,0.1);
    border-bottom: 1px solid rgba(212,165,116,0.1);
}

.founder-marquee {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: founder-scroll 50s linear infinite;
    padding: 0 12px;
}

.founder-marquee:hover {
    animation-play-state: paused;
}

@keyframes founder-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 12px)); }
}

.founder-video-item {
    position: relative;
    width: 300px;
    aspect-ratio: 9/16;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    background: #000;
}

.founder-video-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    z-index: 2;
}

.founder-video-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
    transition: opacity 0.5s ease;
}

.founder-video-item:hover img {
    opacity: 1;
}

.founder-play-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1; /* Always visible but subtle */
    transition: all 0.4s ease;
}

.founder-play-icon {
    width: 64px;
    height: 64px;
    background: rgba(212,165,116,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
    transform: scale(0.9);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.founder-video-item:hover .founder-play-icon {
    transform: scale(1.1);
    background: var(--color-secondary);
}

.founder-play-icon svg {
    fill: #111;
    margin-left: 4px;
}

/* Video Modal */
.video-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.98);
    z-index: 10001;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    backdrop-filter: blur(10px);
    transition: opacity 0.4s ease;
}

.video-modal.active {
    display: flex;
    opacity: 1;
}

.video-modal-content {
    position: relative;
    width: 100%;
    max-width: 450px;
    aspect-ratio: 9/16;
    background: #000;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8);
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.video-modal.active .video-modal-content {
    transform: scale(1);
}

.video-modal-content video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-modal-close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 28px;
    cursor: pointer;
    z-index: 10002;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.video-modal-close:hover {
    background: rgba(255,255,255,0.2);
    transform: rotate(90deg);
}

@media (max-width: 900px) {
    .founder-talk-inner { grid-template-columns: 1fr; gap: 40px; }
    .founder-talk-portrait img { min-height: 350px; }
    
    .founder-video-container {
        padding: 0;
        margin-top: 10px;
    }
    
    .founder-marquee {
        animation: founder-scroll 40s linear infinite;
        overflow-x: visible;
        padding: 0 12px;
        width: max-content;
        gap: 16px;
    }
    .founder-video-item {
        width: 260px;
        scroll-snap-align: center;
        border-radius: 16px;
    }
}



/* ============================================
   SECTION 8: CHOOSE YOUR PATH (SHARP EDITORIAL)
   ============================================ */
.choose-path-sharp {
    padding: 120px 0 0; /* No bottom padding needed here */
    background: #fff;
    position: relative;
    overflow: hidden;
}
.cyp-sharp-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 100px;
    padding: 0 5%;
}
.cyp-sharp-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 6vw, 4.2rem);
    color: var(--color-primary);
    line-height: 1;
    letter-spacing: -2px;
}
.cyp-sharp-header h2 em {
    font-family: var(--font-accent);
    font-style: italic;
    color: var(--color-secondary-dark);
}

.cyp-split-container {
    display: flex;
    width: 100%;
    min-height: 700px;
}

.cyp-slab {
    flex: 1;
    position: relative;
    padding: 120px 80px; /* Precise top padding for alignment */
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Align to top for consistency */
    overflow: hidden;
    transition: all 0.5s ease;
    min-height: 850px; /* Fixed height for split stability */
}

.cyp-number {
    position: absolute;
    top: -20px;
    right: -10px;
    font-family: var(--font-heading);
    font-size: 20rem;
    font-weight: 800;
    line-height: 1;
    opacity: 0.04;
    pointer-events: none;
    user-select: none;
}

.cyp-slab--dark {
    background: #0d0d0d;
    color: #fff;
}
.cyp-slab--light {
    background: #fcf9f5;
    color: var(--color-primary);
}

.cyp-slab-content {
    max-width: 480px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cyp-slab-header {
    margin-bottom: 50px;
    min-height: 120px; /* Ensure headers occupy the same space */
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.cyp-slab-header h3 {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 12px;
    letter-spacing: -1px;
    color: inherit; /* Inherit from slab color */
}
.cyp-slab--dark .cyp-slab-header h3 {
    color: #fff;
}
.cyp-tagline {
    font-size: 11px;
    letter-spacing: 3px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-secondary);
}

.cyp-slab--light .cyp-slab-header h3 {
    color: var(--color-primary);
}

.cyp-slab-body {
    margin-bottom: 60px;
    min-height: 380px; /* Force body context to match vertically */
}
.cyp-description {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 30px;
    opacity: 0.8;
}

.cyp-benefit-list {
    list-style: none;
    padding: 0;
}
.cyp-benefit-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}
.cyp-slab--light .cyp-benefit-list li {
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.cyp-mini-quote {
    padding: 30px;
    border: 1px solid var(--color-secondary);
    background: rgba(212,165,116,0.03);
    position: relative;
}
.cyp-mini-quote p {
    font-family: var(--font-accent);
    font-style: italic;
    font-size: 1.35rem;
    line-height: 1.5;
    color: var(--color-primary);
}

.cyp-slab-footer {
    margin-top: auto;
}

/* Sharp Square Buttons */
.btn-sharp-gold {
    display: inline-block;
    padding: 24px 50px;
    background: var(--color-secondary);
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    transition: all 0.3s;
}
.btn-sharp-gold:hover {
    background: #fff;
    color: #000;
}

.btn-sharp-dark {
    display: inline-block;
    padding: 24px 50px;
    background: var(--color-primary);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    transition: all 0.3s;
}
.btn-sharp-dark:hover {
    background: var(--color-secondary-dark);
}

@media (max-width: 1100px) {
    .cyp-split-container { flex-direction: column; }
    .cyp-slab { padding: 80px 5%; min-height: auto; }
    .cyp-slab-header { min-height: auto; margin-bottom: 30px; }
    .cyp-slab-body { min-height: auto; margin-bottom: 40px; }
    .cyp-number { font-size: 12rem; }
}


/* ============================================
   SECTION 9: BEST SELLERS
   ============================================ */
.best-sellers-section {
    padding: 60px 5% 100px;
    background: var(--color-off-white);
}
.best-sellers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}


/* ============================================
   SECTION 10: COMMUNITY V2
   ============================================ */
.community-section-v2 {
    padding: 120px 5%;
    background: #fff;
}
.community-v2-inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}
.community-v2-text h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--color-primary);
    margin-bottom: 24px;
    line-height: 1.15;
}
.community-v2-text h2 em {
    font-family: var(--font-accent);
    font-style: italic;
    color: var(--color-secondary-dark);
}
.community-v2-desc {
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 32px;
    font-size: 1.05rem;
}
.community-v2-perks {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}
.community-perk {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 14px 24px;
    background: #fff;
    border-radius: 14px;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
}
.community-perk:hover {
    transform: translateX(6px);
    border-color: var(--color-secondary);
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}
.community-perk-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: #fdfaf5;
    color: var(--color-secondary-dark);
    border-radius: 10px;
    flex-shrink: 0;
}
.community-perk span:last-child {
    font-size: 0.95rem;
    color: var(--color-primary);
    font-weight: 500;
    letter-spacing: -0.2px;
}
.community-v2-visual img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}
@media (max-width: 900px) {
    .community-v2-inner { grid-template-columns: 1fr; }
}


/* ============================================
   SECTION 11: ACCOUNTABILITY WALL
   ============================================ */
.accountability-section {
    padding: 120px 5%;
    background: var(--color-primary);
    color: #fff;
}
.accountability-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}
.accountability-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    color: #fff;
    margin-bottom: 16px;
}
.accountability-header h2 em {
    font-family: var(--font-accent);
    font-style: italic;
    color: var(--color-secondary);
}
.accountability-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}
.accountability-card {
    position: relative;
    padding: 48px 40px;
    border-radius: 28px;
    background: #111;
    border: 1px solid rgba(255,255,255,0.08);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
}
.accountability-card:hover {
    transform: translateY(-8px);
    background: #151515;
    border-color: rgba(255,255,255,0.15);
    box-shadow: 0 30px 70px rgba(0,0,0,0.4);
}
.accountability-card-status {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    opacity: 0.4;
}
.accountability-card-icon {
    margin-bottom: 28px;
}
.accountability-card h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 18px;
}
.accountability-card--shame .accountability-card-icon svg { stroke: #e74c3c; }
.accountability-card--shame .accountability-card-status { color: #e74c3c; }
.accountability-card--shame { border-top: 3px solid #e74c3c; }

.accountability-card--fame .accountability-card-icon svg { stroke: #2ecc71; }
.accountability-card--fame .accountability-card-status { color: #2ecc71; }
.accountability-card--fame { border-top: 3px solid #2ecc71; }

.accountability-card p {
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
    font-size: 0.95rem;
    margin-bottom: 16px;
}
.accountability-review-note {
    font-size: 0.85rem !important;
    color: rgba(212,165,116,0.6) !important; /* Muted Gold */
    margin-bottom: 24px !important;
}
.accountability-card-footer {
    margin-top: auto;
}
.btn-accountability {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}
.btn-accountability--shame {
    background: rgba(231,76,60,0.1);
    border: 1px solid rgba(231,76,60,0.2);
    color: #e74c3c;
}
.btn-accountability--shame:hover {
    background: #e74c3c;
    color: #fff;
    box-shadow: 0 8px 16px rgba(231,76,60,0.2);
}
.btn-accountability--fame {
    background: rgba(46,204,113,0.1);
    border: 1px solid rgba(46,204,113,0.2);
    color: #2ecc71;
}
.btn-accountability--fame:hover {
    background: #2ecc71;
    color: #fff;
    box-shadow: 0 8px 16px rgba(46,204,113,0.2);
}
@media (max-width: 768px) {
    .accountability-grid { grid-template-columns: 1fr; }
}


/* ============================================
   BOTTOM LINE STATEMENT
   ============================================ */
.bottom-line-section {
    padding: 80px 5%;
    background: var(--color-cream);
    text-align: center;
}
.bottom-line-inner {
    max-width: 800px;
    margin: 0 auto;
}
.bottom-line-text {
    font-family: var(--font-accent);
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    line-height: 1.8;
    color: var(--color-text-light);
    letter-spacing: 0.3px;
}
.bottom-line-text em {
    font-style: italic;
}

/* === Homepage Testimonials Grid Overrides === */
.section-testimonials .grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}



/* === Removed old Smooth Infinite Mobile Marquee (handled by JS carousel now) === */
@media (max-width: 768px) { .shop-split-desc, .shop-split-products { display: none !important; } .shop-split-name { font-size: 1.5rem !important; } }

/* ============================================
   SECTION 9.5: INSTAGRAM FEED
   ============================================ */
.instagram-feed-section {
    padding: 100px 5%;
    background: #fff;
    position: relative;
    z-index: 1;
}

.insta-feed-header {
    text-align: center;
    margin-bottom: 50px;
}

.insta-feed-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--color-primary);
    margin-bottom: 15px;
}

.insta-feed-header h2 em {
    font-family: var(--font-accent);
    color: var(--color-secondary-dark);
    font-style: italic;
}

.insta-handle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--color-secondary-dark);
    font-weight: 700;
    text-decoration: none;
    font-size: 1.1rem;
    letter-spacing: 1px;
    transition: opacity 0.3s;
}

.insta-handle:hover {
    opacity: 0.7;
}

.insta-grid-v2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
    width: 100%;
}

.insta-post-v2 {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 4px;
    background: #f0f0f0;
}

.insta-post-v2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.insta-post-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.insta-post-v2:hover img {
    transform: scale(1.1);
}

.insta-post-v2:hover .insta-post-overlay {
    opacity: 1;
}

.insta-icon-white {
    color: #fff;
    width: 30px;
    height: 30px;
}

/* Grid stays 3 columns on all screens for authentic Instagram look */

/* Video badge (play icon) for Reels/Videos */
.insta-video-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.6);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    pointer-events: none;
}

/* Likes counter on hover overlay */
.insta-likes {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    font-family: var(--font-body);
}

.insta-post-overlay {
    flex-direction: column;
    gap: 8px;
}

/* ============================================
   FOUNDER MARQUEE V3 (from founder-talk)
   ============================================ */
.founder-marquee-v3 {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    background: #0d0d0d;
    padding: 60px 0;
    border-top: 1px solid rgba(212,165,116,0.1);
    border-bottom: 1px solid rgba(212,165,116,0.1);
}
@media (max-width: 900px) {
    .founder-marquee-v3 {
        padding: 0;
    }
}
.founder-marquee-content-v3 {
    display: flex;
    gap: 24px;
    width: max-content;
    /* animation removed for JS control */
}
.founder-marquee-content-v3:hover {
    animation-play-state: paused;
}
@keyframes founder-scroll-v3 {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 12px)); }
}
.video-card-v3 {
    width: 350px;
    flex-shrink: 0;
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
    white-space: normal;
}
.video-card-v3:hover {
    transform: translateY(-5px);
}
.video-card-v3 .video-card-info {
    padding: 24px !important;
}
.video-card-v3 .video-card-info h4 {
    color: #ffffff !important;
    margin-bottom: 12px !important;
    font-size: 1.25rem !important;
}
.video-card-v3 .video-card-info p {
    color: #cccccc !important;
    font-size: 0.9rem !important;
    line-height: 1.6 !important;
}

        .video-card-thumb {
            position: relative;
            aspect-ratio: 9/16;
            overflow: hidden;
            background: #f5f5f5;
            cursor: pointer;
        }
        .video-card-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }
        .video-card-v3:hover .video-card-thumb img {
            transform: scale(1.05);
        }
        .video-play-btn-v3 {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(0,0,0,0.1);
            transition: background 0.3s;
        }
        .video-card-v3:hover .video-play-btn-v3 {
            background: rgba(0,0,0,0.3);
        }

@media (max-width: 900px) {
    .video-card-v3 {
        width: 75vw !important;
    }
}


/* Desktop / Mobile Carousel Toggles */
.mobile-carousel-only {
    display: none !important;
}
.desktop-carousel-only {
    display: block !important;
}
@media (max-width: 900px) {
    .desktop-carousel-only {
        display: none !important;
    }
    .mobile-carousel-only {
        display: block !important;
    }
}
