/**
 * Joush Luxury — Editorial Luxury Homepage Stylesheet
 *
 * International luxury fashion house aesthetic.
 * Palette: Deep black, warm ivory, champagne gold (#C9A227), muted charcoal.
 * Typography: Playfair Display / Cormorant Garamond (headlines), Inter (sans-serif labels/body).
 *
 * @package Jibtol
 */

/* ═══════════════════════════════════════════════════
   0. DESIGN TOKENS & RESET
   ═══════════════════════════════════════════════════ */
:root {
    --joush-black: #080808;
    --joush-dark: #121212;
    --joush-charcoal: #1C1C1C;
    --joush-ivory: #FBF9F5;
    --joush-sand: #F3EFEA;
    --joush-white: #FFFFFF;
    --joush-gold: #C9A227;
    --joush-gold-muted: rgba(201, 162, 39, 0.4);
    --joush-gold-subtle: rgba(201, 162, 39, 0.12);
    --joush-gray-light: #707070;
    --joush-gray-subtle: #A3A3A3;
    --joush-border: rgba(0, 0, 0, 0.07);
    --joush-border-dark: rgba(255, 255, 255, 0.1);
    --joush-font-serif: var(--font-heading, "Playfair Display", "Cormorant Garamond", Georgia, serif);
    --joush-font-sans: var(--font-body, "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif);
    --joush-ease: cubic-bezier(0.25, 1, 0.5, 1);
}

.front-page-main {
    background-color: var(--joush-white);
    color: var(--joush-dark);
    font-family: var(--joush-font-sans);
    overflow-x: hidden;
}

/* ═══════════════════════════════════════════════════
   1. HERO IMAGE SLIDER (Section 2)
   ═══════════════════════════════════════════════════ */
.jibtol-hero-slider {
    position: relative;
    width: 100%;
    height: clamp(660px, 90vh, 920px);
    min-height: 600px;
    overflow: hidden;
    background: var(--joush-black);
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), visibility 1.2s;
    z-index: 1;
}

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

.hero-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    transform: scale(1.04);
    transition: transform 8s cubic-bezier(0.2, 0.8, 0.2, 1);
    display: block;
}

.hero-slide.is-active .hero-slide-bg img {
    transform: scale(1);
}

/* Sophisticated Scrim Overlay for Readability with Negative Space */
.hero-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(8, 8, 8, 0.72) 0%,
        rgba(8, 8, 8, 0.38) 45%,
        rgba(8, 8, 8, 0.15) 100%
    );
    z-index: 2;
}

/* Align overlay to right on Slide 2 for right-positioned text */
.hero-slide[data-slide-index="1"] .hero-slide-overlay {
    background: linear-gradient(
        270deg,
        rgba(8, 8, 8, 0.75) 0%,
        rgba(8, 8, 8, 0.4) 48%,
        rgba(8, 8, 8, 0.15) 100%
    );
}

/* Intelligent Negative-Space Content Positioning */
.hero-slide-content {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 90%;
    max-width: 620px;
    z-index: 4;
    padding: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

/* Slide 0: Left Aligned with negative space */
.hero-slide[data-slide-index="0"] .hero-slide-content {
    left: clamp(32px, 8vw, 130px);
    right: auto;
}

/* Slide 1: Right Aligned with negative space */
.hero-slide[data-slide-index="1"] .hero-slide-content {
    left: auto;
    right: clamp(32px, 8vw, 130px);
    align-items: flex-start;
    text-align: left;
}

/* Slide 2: Left Aligned with negative space */
.hero-slide[data-slide-index="2"] .hero-slide-content {
    left: clamp(32px, 8vw, 130px);
    right: auto;
}

/* Slide Eyebrow Label */
.hero-slide-eyebrow {
    display: inline-block;
    font-family: var(--joush-font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--joush-gold);
    margin-bottom: clamp(14px, 2.2vh, 22px);
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
}

.hero-slide.is-active .hero-slide-eyebrow {
    opacity: 1;
    transform: translateY(0);
}

/* Slide Heading: High-contrast luxury serif */
.hero-slide-title {
    font-family: var(--joush-font-serif);
    font-size: clamp(2.4rem, 4.4vw, 4.2rem);
    font-weight: 400;
    letter-spacing: -0.015em;
    line-height: 1.15;
    color: var(--joush-white);
    margin: 0 0 clamp(16px, 2.8vh, 24px) 0;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.8s ease 0.35s, transform 0.8s ease 0.35s;
}

.hero-slide.is-active .hero-slide-title {
    opacity: 1;
    transform: translateY(0);
}

/* Slide Description */
.hero-slide-desc {
    font-family: var(--joush-font-sans);
    font-size: clamp(0.92rem, 1.15vw, 1.08rem);
    font-weight: 300;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    max-width: 520px;
    margin: 0 0 clamp(24px, 3.5vh, 36px) 0;
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.8s ease 0.48s, transform 0.8s ease 0.48s;
}

.hero-slide.is-active .hero-slide-desc {
    opacity: 1;
    transform: translateY(0);
}

/* Luxury Fashion CTA Button */
.hero-slide-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: clamp(14px, 2vh, 18px) clamp(32px, 3.2vw, 46px);
    font-family: var(--joush-font-sans);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--joush-black) !important;
    background: var(--joush-white) !important;
    border: 1px solid var(--joush-white) !important;
    border-radius: 0 !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    cursor: pointer;
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.8s ease 0.6s, transform 0.8s ease 0.6s, background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.hero-slide.is-active .hero-slide-cta {
    opacity: 1;
    transform: translateY(0);
}

.hero-slide-cta:hover {
    background: var(--joush-gold) !important;
    border-color: var(--joush-gold) !important;
    color: var(--joush-white) !important;
    box-shadow: 0 12px 32px rgba(201, 162, 39, 0.35);
}

/* Minimal Slider Progress Indicators */
.hero-slider-dots {
    position: absolute;
    bottom: clamp(28px, 5vh, 48px);
    left: clamp(32px, 8vw, 130px);
    right: auto;
    z-index: 10;
    display: flex;
    gap: 14px;
    align-items: center;
}

.hero-dot {
    width: 34px;
    height: 2px;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.35);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: width 0.4s var(--joush-ease), background-color 0.3s ease;
}

.hero-dot.is-active {
    width: 60px;
    background: var(--joush-gold);
}

.hero-dot:hover:not(.is-active) {
    background: rgba(255, 255, 255, 0.8);
}

/* Slide Counter in Hero */
.hero-slide-counter {
    position: absolute;
    bottom: clamp(28px, 5vh, 48px);
    right: clamp(32px, 8vw, 130px);
    z-index: 10;
    font-family: var(--joush-font-sans);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    color: rgba(255, 255, 255, 0.75);
}

.hero-slide-counter span {
    color: var(--joush-gold);
    font-weight: 600;
}

/* Minimal Slide Arrows */
.hero-slider-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 24px;
    box-sizing: border-box;
    z-index: 8;
    pointer-events: none;
}

.hero-arrow {
    pointer-events: auto;
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: var(--joush-white);
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.45;
}

.hero-arrow:hover {
    opacity: 1;
    border-color: var(--joush-gold);
    color: var(--joush-gold);
    background: rgba(8, 8, 8, 0.4);
}

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

/* ═══════════════════════════════════════════════════
   2. BRAND INTRODUCTION (Section 3)
   "WHERE HERITAGE BECOMES FORM"
   ═══════════════════════════════════════════════════ */
.joush-brand-editorial {
    padding: clamp(120px, 16vh, 180px) 24px;
    background: var(--joush-white);
    position: relative;
    border-bottom: 1px solid var(--joush-border);
}

.joush-brand-editorial-inner {
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.joush-eyebrow {
    font-family: var(--joush-font-sans);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--joush-gold);
    margin-bottom: 16px;
    display: inline-block;
}

.joush-eyebrow-gold {
    color: var(--joush-gold);
}

.joush-editorial-headline {
    font-family: var(--joush-font-serif);
    font-size: clamp(2.2rem, 4.2vw, 3.6rem);
    font-weight: 400;
    letter-spacing: -0.015em;
    line-height: 1.2;
    color: var(--joush-dark);
    margin: 0 0 24px 0;
    text-transform: none;
}

.joush-accent-line {
    width: 44px;
    height: 1.5px;
    background: var(--joush-gold);
    margin: 0 auto 28px;
}

.joush-editorial-paragraph {
    font-family: var(--joush-font-sans);
    font-size: clamp(1.05rem, 1.35vw, 1.25rem);
    font-weight: 300;
    line-height: 1.8;
    color: #4A4A4A;
    max-width: 760px;
    margin: 0 auto 36px;
}

.joush-text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--joush-font-sans);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--joush-dark);
    text-decoration: none;
    position: relative;
    padding-bottom: 6px;
    transition: color 0.3s ease;
}

.joush-text-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--joush-gold);
    transition: transform 0.3s var(--joush-ease);
    transform-origin: left;
}

.joush-text-link:hover {
    color: var(--joush-gold);
}

.joush-text-link:hover::after {
    transform: scaleX(0.7);
}

/* ═══════════════════════════════════════════════════
   3. SIGNATURE COLLECTIONS (Section 4)
   "EXPLORE THE ARCHIVE" (Asymmetrical Editorial)
   ═══════════════════════════════════════════════════ */
.joush-collections-section {
    padding: clamp(120px, 15vh, 170px) 24px;
    background: var(--joush-ivory);
}

.joush-section-header {
    max-width: 800px;
    margin: 0 auto clamp(48px, 7vh, 76px);
    text-align: center;
}

.joush-section-title {
    font-family: var(--joush-font-serif);
    font-size: clamp(2rem, 3.6vw, 3rem);
    font-weight: 400;
    letter-spacing: -0.01em;
    line-height: 1.22;
    color: var(--joush-dark);
    margin: 0 0 14px 0;
}

.joush-section-subtitle {
    font-family: var(--joush-font-sans);
    font-size: clamp(0.92rem, 1.1vw, 1.05rem);
    font-weight: 300;
    line-height: 1.7;
    color: var(--joush-gray-light);
    margin: 0 auto;
    max-width: 600px;
}

/* Asymmetric Editorial Grid */
.joush-asym-grid {
    max-width: 1360px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: clamp(24px, 3vw, 40px);
    align-items: stretch;
}

.joush-asym-primary {
    position: relative;
    overflow: hidden;
    min-height: 640px;
    aspect-ratio: 4 / 5;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-decoration: none;
    background: var(--joush-black);
}

.joush-asym-stack {
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    gap: clamp(18px, 2.2vw, 28px);
}

.joush-asym-item {
    position: relative;
    overflow: hidden;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-decoration: none;
    background: var(--joush-black);
}

.joush-asym-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    display: block;
}

.joush-asym-primary:hover .joush-asym-img,
.joush-asym-item:hover .joush-asym-img {
    transform: scale(1.04);
}

.joush-asym-scrim {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(8, 8, 8, 0.05) 0%,
        rgba(8, 8, 8, 0.25) 50%,
        rgba(8, 8, 8, 0.78) 100%
    );
    z-index: 2;
    transition: background 0.3s ease;
}

.joush-asym-primary:hover .joush-asym-scrim,
.joush-asym-item:hover .joush-asym-scrim {
    background: linear-gradient(
        180deg,
        rgba(8, 8, 8, 0.05) 0%,
        rgba(8, 8, 8, 0.35) 45%,
        rgba(8, 8, 8, 0.85) 100%
    );
}

.joush-asym-body {
    position: relative;
    z-index: 4;
    padding: clamp(24px, 3vw, 36px);
    box-sizing: border-box;
}

.joush-asym-tag {
    font-family: var(--joush-font-sans);
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--joush-gold);
    margin-bottom: 8px;
    display: block;
}

.joush-asym-title {
    font-family: var(--joush-font-serif);
    font-size: clamp(1.35rem, 2vw, 1.85rem);
    font-weight: 400;
    letter-spacing: -0.01em;
    line-height: 1.25;
    color: var(--joush-white);
    margin: 0 0 10px 0;
}

.joush-asym-cta {
    font-family: var(--joush-font-sans);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.joush-asym-primary:hover .joush-asym-cta,
.joush-asym-item:hover .joush-asym-cta {
    color: var(--joush-gold);
    transform: translateX(4px);
}

/* ═══════════════════════════════════════════════════
   4. NEW ARRIVALS / THE JOUSH EDIT (Section 5)
   Editorial Product Grid
   ═══════════════════════════════════════════════════ */
.joush-the-edit-section,
.jibtol-product-grid-widget {
    padding: clamp(120px, 15vh, 170px) 24px !important;
    background: var(--joush-white) !important;
}

/* Fashion House Editorial Card Standard: Suppress retail clutter on homepage */
.home .product-card-badges,
.home .product-card-rating,
.home .product-card-price,
.home .joush-product-price,
.joush-the-edit-section .product-card-badges,
.joush-the-edit-section .product-card-rating,
.joush-the-edit-section .product-card-price,
.joush-the-edit-section .joush-product-price,
.jibtol-product-grid-widget .product-card-badges,
.jibtol-product-grid-widget .product-card-rating,
.jibtol-product-grid-widget .product-card-price,
.jibtol-product-grid-widget .price,
.jibtol-product-grid-widget .product-card-top-actions,
.jibtol-product-grid-widget .product-card-bottom-actions {
    display: none !important;
}

.joush-product-grid {
    max-width: 1360px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(20px, 2.5vw, 36px);
}

.joush-product-item {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    position: relative;
}

.joush-product-media {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: #F4F4F4;
    margin-bottom: 18px;
}

.joush-product-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
    display: block;
}

.joush-product-item:hover .joush-product-media img {
    transform: scale(1.035);
}

.joush-product-action {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 14px;
    box-sizing: border-box;
    background: rgba(8, 8, 8, 0.75);
    backdrop-filter: blur(4px);
    color: var(--joush-white);
    text-align: center;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.3s var(--joush-ease);
}

.joush-product-item:hover .joush-product-action {
    opacity: 1;
    transform: translateY(0);
}

.joush-product-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.joush-product-cat {
    font-family: var(--joush-font-sans);
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--joush-gray-light);
}

.joush-product-title,
.jibtol-product-grid-widget .product-card-title {
    font-family: var(--joush-font-serif);
    font-size: 1.08rem;
    font-weight: 400;
    letter-spacing: -0.01em;
    line-height: 1.38;
    color: var(--joush-dark);
    margin: 4px 0 0 0;
    transition: color 0.2s ease;
}

.joush-product-item:hover .joush-product-title,
.product-card:hover .product-card-title a {
    color: var(--joush-gold);
}

/* Subtle View All Button */
.joush-grid-footer {
    text-align: center;
    margin-top: clamp(48px, 7vh, 72px);
}

.joush-pill-text-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 38px;
    font-family: var(--joush-font-sans);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--joush-dark);
    text-decoration: none;
    border: 1px solid var(--joush-dark);
    background: transparent;
    transition: all 0.3s ease;
}

.joush-pill-text-btn:hover {
    background: var(--joush-dark);
    color: var(--joush-white);
}

/* ═══════════════════════════════════════════════════
   5. MEN'S LUXURY FEATURE (Section 6)
   "THE MODERN AFRICAN GENTLEMAN"
   ═══════════════════════════════════════════════════ */
.joush-mens-feature-section {
    background: var(--joush-black);
    color: var(--joush-white);
    padding: clamp(130px, 16vh, 180px) 0;
    position: relative;
    overflow: hidden;
}

.joush-mens-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--joush-font-serif);
    font-size: clamp(80px, 14vw, 190px);
    font-weight: 700;
    letter-spacing: 0.18em;
    color: rgba(255, 255, 255, 0.026);
    white-space: nowrap;
    text-transform: uppercase;
    pointer-events: none;
    z-index: 1;
    user-select: none;
}

.joush-mens-feature-inner {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: clamp(40px, 6vw, 90px);
    align-items: center;
    position: relative;
    z-index: 2;
}

.joush-mens-media {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: var(--joush-charcoal);
}

.joush-mens-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
    display: block;
    transition: transform 0.8s var(--joush-ease);
}

.joush-mens-feature-section:hover .joush-mens-media img {
    transform: scale(1.025);
}

.joush-mens-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.joush-mens-quote {
    font-family: var(--joush-font-serif);
    font-style: italic;
    font-size: clamp(1.15rem, 1.5vw, 1.35rem);
    line-height: 1.5;
    color: #E2DDD5;
    margin: 18px 0 16px 0;
}

.joush-mens-desc {
    font-family: var(--joush-font-sans);
    font-size: clamp(0.92rem, 1.1vw, 1.05rem);
    font-weight: 300;
    line-height: 1.8;
    color: #9E9E9E;
    max-width: 500px;
    margin: 0 0 36px 0;
}

.joush-gold-outline-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 38px;
    font-family: var(--joush-font-sans);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--joush-white);
    border: 1px solid var(--joush-gold);
    background: transparent;
    transition: all 0.3s ease;
}

.joush-gold-outline-btn:hover {
    background: var(--joush-gold);
    color: var(--joush-black);
    box-shadow: 0 8px 24px rgba(201, 162, 39, 0.25);
}

/* ═══════════════════════════════════════════════════
   6. CRAFTSMANSHIP / BRAND STORY (Section 7)
   "CRAFTED WITH INTENTION"
   ═══════════════════════════════════════════════════ */
.joush-craftsmanship-section {
    padding: clamp(120px, 15vh, 170px) 24px;
    background: var(--joush-ivory);
    border-top: 1px solid var(--joush-border);
    border-bottom: 1px solid var(--joush-border);
}

.joush-craftsmanship-inner {
    max-width: 1360px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: clamp(40px, 6vw, 90px);
    align-items: center;
}

.joush-craft-media {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: var(--joush-sand);
}

.joush-craft-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s var(--joush-ease);
}

.joush-craftsmanship-section:hover .joush-craft-media img {
    transform: scale(1.025);
}

.joush-craft-content {
    display: flex;
    flex-direction: column;
}

.joush-craft-statement-list {
    margin: 32px 0 36px 0;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.joush-craft-statement-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.joush-craft-statement-title {
    font-family: var(--joush-font-sans);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--joush-dark);
}

.joush-craft-statement-desc {
    font-family: var(--joush-font-sans);
    font-size: 0.92rem;
    font-weight: 300;
    line-height: 1.6;
    color: var(--joush-gray-light);
    margin: 0;
}

/* ═══════════════════════════════════════════════════
   7. SELECTED PIECES / EDITORIAL LOOKBOOK (Section 8)
   "DISTINCTIVE BY DESIGN"
   ═══════════════════════════════════════════════════ */
.joush-lookbook-section {
    padding: clamp(120px, 15vh, 170px) 24px;
    background: var(--joush-white);
}

.joush-lookbook-grid {
    max-width: 1360px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(18px, 2.2vw, 32px);
}

.joush-lookbook-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    position: relative;
}

/* Stagger vertical rhythm of lookbook cards */
.joush-lookbook-card:nth-child(2),
.joush-lookbook-card:nth-child(4) {
    transform: translateY(clamp(20px, 3vh, 40px));
}

.joush-lookbook-media {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: #F4F4F4;
    margin-bottom: 16px;
}

.joush-lookbook-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
    display: block;
}

.joush-lookbook-card:hover .joush-lookbook-media img {
    transform: scale(1.04);
}

.joush-lookbook-tag {
    font-family: var(--joush-font-sans);
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--joush-gold);
}

.joush-lookbook-title {
    font-family: var(--joush-font-serif);
    font-size: 1.05rem;
    font-weight: 400;
    letter-spacing: -0.01em;
    color: var(--joush-dark);
    margin: 4px 0 0 0;
}

/* ═══════════════════════════════════════════════════
   8. CUSTOMER TESTIMONIALS (Section 9)
   "WORN WITH CONFIDENCE"
   ═══════════════════════════════════════════════════ */
.joush-testimonials-section {
    padding: clamp(120px, 15vh, 170px) 24px;
    background: var(--joush-ivory);
    border-top: 1px solid var(--joush-border);
}

.joush-testimonials-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(24px, 3vw, 48px);
}

.joush-testi-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: clamp(28px, 3.5vw, 42px);
    background: var(--joush-white);
    border: 1px solid var(--joush-border);
    box-sizing: border-box;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.joush-testi-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.05);
}

.joush-testi-quote-mark {
    font-family: var(--joush-font-serif);
    font-size: 2.8rem;
    line-height: 1;
    color: var(--joush-gold);
    margin-bottom: 12px;
}

.joush-testi-quote {
    font-family: var(--joush-font-sans);
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.75;
    color: #3A3A3A;
    margin: 0 0 24px 0;
    font-style: normal;
}

.joush-testi-meta {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.joush-testi-author {
    font-family: var(--joush-font-sans);
    font-size: 0.84rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--joush-dark);
}

.joush-testi-location {
    font-family: var(--joush-font-sans);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--joush-gold);
}

/* ═══════════════════════════════════════════════════
   9. SEASONAL / PROMOTIONAL (Section 10)
   "THE PRIVATE SEASONAL EDIT"
   ═══════════════════════════════════════════════════ */
.joush-seasonal-section {
    position: relative;
    padding: clamp(130px, 16vh, 180px) 24px;
    background-color: var(--joush-black);
    background-image: url('../../../../uploads/2026/09/1787893380893.jpg');
    background-image: url('/joush/wp-content/uploads/2026/09/1787893380893.jpg');
    background-size: cover;
    background-position: center 25%;
    background-repeat: no-repeat;
    color: var(--joush-white);
    text-align: center;
    overflow: hidden;
    border-top: 1px solid var(--joush-border-dark);
    border-bottom: 1px solid var(--joush-border-dark);
}

@media (min-width: 1025px) {
    .joush-seasonal-section {
        background-attachment: fixed;
    }
}

.joush-seasonal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(8, 8, 8, 0.85) 0%,
        rgba(8, 8, 8, 0.65) 50%,
        rgba(8, 8, 8, 0.88) 100%
    );
    z-index: 1;
}

.joush-seasonal-inner {
    position: relative;
    z-index: 3;
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ═══════════════════════════════════════════════════
   10. INSTAGRAM / THE JOUSH WORLD (Section 11)
   Edge-to-Edge Campaign Contact Sheet
   ═══════════════════════════════════════════════════ */
.joush-instagram-section {
    padding: clamp(120px, 15vh, 160px) 0 0 0;
    background: var(--joush-white);
}

.joush-instagram-gallery {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2px;
    margin-top: clamp(36px, 5vh, 56px);
    background: var(--joush-white);
}

.joush-insta-item {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    display: block;
    background: var(--joush-charcoal);
}

.joush-insta-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s var(--joush-ease);
}

.joush-insta-scrim {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(8, 8, 8, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.joush-insta-scrim svg {
    width: 28px;
    height: 28px;
    color: var(--joush-white);
}

.joush-insta-item:hover img {
    transform: scale(1.06);
}

.joush-insta-item:hover .joush-insta-scrim {
    opacity: 1;
}

/* ═══════════════════════════════════════════════════
   11. VIP NEWSLETTER / PRIVATE ACCESS (Section 12)
   ═══════════════════════════════════════════════════ */
.joush-newsletter-section {
    padding: clamp(130px, 16vh, 180px) 24px;
    background: var(--joush-black);
    color: var(--joush-white);
    text-align: center;
    position: relative;
}

/* ═══════════════════════════════════════════════════
   FASHION HOUSE IMAGE TONE HARMONY & COLOR PALETTE
   ═══════════════════════════════════════════════════ */
.joush-product-media img,
.joush-lookbook-media img,
.joush-asym-img,
.joush-craft-media img,
.joush-mens-media img,
.product-primary-img {
    filter: contrast(1.02) saturate(0.96);
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
}

/* Minimal Luxury Footer Elevation */
.elementor-section.footer-main-grid-section,
.footer-main-grid-section {
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    padding-top: clamp(80px, 10vh, 110px) !important;
    padding-bottom: clamp(60px, 8vh, 80px) !important;
}

.footer-main-grid-section .widget-title,
.footer-main-grid-section h4 {
    font-family: var(--joush-font-sans) !important;
    font-size: 0.75rem !important;
    letter-spacing: 0.18em !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    color: var(--joush-gold) !important;
}

.joush-newsletter-inner {
    max-width: 620px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.joush-newsletter-form {
    display: flex;
    width: 100%;
    max-width: 480px;
    margin: 28px auto 0;
    gap: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    transition: border-color 0.3s ease;
}

.joush-newsletter-form:focus-within {
    border-color: var(--joush-gold);
}

.joush-newsletter-input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 12px 0;
    color: var(--joush-white);
    font-family: var(--joush-font-sans);
    font-size: 0.88rem;
    outline: none;
}

.joush-newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.05em;
}

.joush-newsletter-btn {
    background: transparent;
    border: none;
    color: var(--joush-gold);
    font-family: var(--joush-font-sans);
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
    padding: 12px 0 12px 16px;
    transition: color 0.2s ease;
}

.joush-newsletter-btn:hover {
    color: var(--joush-white);
}

/* ═══════════════════════════════════════════════════
   12. RESPONSIVE MEDIA QUERIES
   ═══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .joush-asym-grid {
        grid-template-columns: 1fr;
    }

    .joush-asym-primary {
        min-height: 440px;
    }

    .joush-asym-stack {
        grid-template-rows: auto;
        grid-template-columns: repeat(3, 1fr);
    }

    .joush-product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .joush-mens-feature-inner,
    .joush-craftsmanship-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .joush-lookbook-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .joush-lookbook-card:nth-child(2),
    .joush-lookbook-card:nth-child(4) {
        transform: none;
    }

    .joush-testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

@media (max-width: 768px) {
    .jibtol-hero-slider,
    .elementor .jibtol-hero-slider {
        position: relative !important;
        width: 100% !important;
        height: clamp(520px, 80svh, 680px) !important;
        min-height: 520px !important;
        max-height: 700px !important;
        overflow: hidden !important;
        background: #080808 !important;
    }

    .hero-slide-bg {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
    }

    .hero-slide-bg img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        object-position: center 25% !important;
    }

    .hero-slide-overlay {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        background: linear-gradient(
            180deg,
            rgba(8, 8, 8, 0.40) 0%,
            rgba(8, 8, 8, 0.20) 25%,
            rgba(8, 8, 8, 0.65) 60%,
            rgba(8, 8, 8, 0.92) 100%
        ) !important;
        z-index: 2 !important;
    }

    .hero-slide-content,
    .hero-slide[data-slide-index="0"] .hero-slide-content,
    .hero-slide[data-slide-index="1"] .hero-slide-content,
    .hero-slide[data-slide-index="2"] .hero-slide-content,
    .hero-slide[data-slide-index="3"] .hero-slide-content {
        position: absolute !important;
        top: auto !important;
        bottom: 68px !important;
        left: 20px !important;
        right: 20px !important;
        transform: none !important;
        width: auto !important;
        max-width: calc(100% - 40px) !important;
        margin: 0 !important;
        padding: 0 !important;
        z-index: 4 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        text-align: left !important;
        box-sizing: border-box !important;
    }

    .hero-slide-eyebrow {
        font-family: var(--joush-font-sans, 'Inter', sans-serif) !important;
        font-size: 0.68rem !important;
        font-weight: 600 !important;
        letter-spacing: 0.2em !important;
        text-transform: uppercase !important;
        color: #C9A227 !important;
        margin-bottom: 8px !important;
        text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8) !important;
    }

    .hero-slide-title {
        font-family: var(--joush-font-serif, 'Playfair Display', serif) !important;
        font-size: clamp(1.6rem, 6.5vw, 2.25rem) !important;
        line-height: 1.18 !important;
        font-weight: 400 !important;
        color: #FAF8F5 !important;
        letter-spacing: -0.01em !important;
        margin-bottom: 10px !important;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7) !important;
        max-width: 100% !important;
    }

    .hero-slide-desc {
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
        font-family: var(--joush-font-sans, 'Inter', sans-serif) !important;
        font-size: 0.84rem !important;
        line-height: 1.45 !important;
        color: rgba(250, 248, 245, 0.85) !important;
        margin-bottom: 16px !important;
        max-width: 95% !important;
        text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8) !important;
    }

    .hero-slide-cta {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        background: #FAF8F5 !important;
        color: #080808 !important;
        font-family: var(--joush-font-sans, 'Inter', sans-serif) !important;
        font-size: 0.72rem !important;
        font-weight: 600 !important;
        letter-spacing: 0.16em !important;
        text-transform: uppercase !important;
        padding: 12px 24px !important;
        border-radius: 9999px !important;
        box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35) !important;
        transition: transform 0.2s ease, background 0.2s ease !important;
    }

    .hero-slider-dots {
        bottom: 22px !important;
        left: 20px !important;
        right: auto !important;
        transform: none !important;
        display: flex !important;
        gap: 8px !important;
        z-index: 5 !important;
    }

    .hero-dot {
        width: 22px !important;
        height: 3px !important;
        background: rgba(255, 255, 255, 0.35) !important;
        border-radius: 2px !important;
        transition: all 0.3s ease !important;
    }

    .hero-dot.is-active {
        width: 38px !important;
        background: #C9A227 !important;
    }

    .hero-slide-counter {
        bottom: 18px !important;
        left: 105px !important;
        right: auto !important;
        font-family: var(--joush-font-sans, 'Inter', sans-serif) !important;
        font-size: 0.72rem !important;
        letter-spacing: 0.12em !important;
        color: rgba(250, 248, 245, 0.6) !important;
        z-index: 5 !important;
    }

    .hero-slide-counter span {
        color: #C9A227 !important;
        font-weight: 600 !important;
    }

    .hero-slider-arrows,
    .hero-scroll-indicator {
        display: none !important;
    }

    .joush-asym-stack {
        grid-template-columns: 1fr;
    }

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

    .joush-instagram-gallery .joush-insta-item:last-child {
        display: none;
    }
}

@media (max-width: 480px) {
    .joush-product-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .joush-lookbook-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .joush-pill-text-btn,
    .joush-gold-outline-btn {
        width: 100%;
        justify-content: center;
        box-sizing: border-box;
    }
}

/* ═══════════════════════════════════════════════════
   ELEMENTOR WIDGET SUITE COMPATIBILITY & CLASSIC STYLES
   Ensures custom Elementor widgets (collections grid,
   testimonials, brand story, instagram feed, etc.) render
   with complete luxury styling across all pages.
   ═══════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════
   2. MARQUEE TICKER
   ═══════════════════════════════════════════════════ */
.jibtol-marquee-section {
    background: #111111;
    padding: 14px 0;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.jibtol-marquee-track {
    display: flex;
    width: max-content;
    animation: marqueeScroll var(--marquee-speed, 30s) linear infinite;
}

.jibtol-marquee-section:hover .jibtol-marquee-track {
    animation-play-state: paused;
}

.jibtol-marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 24px;
    padding: 0 24px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
}

.jibtol-marquee-item::after {
    content: '•';
    font-size: 0.5rem;
    color: var(--color-gold, #C9A227);
    opacity: 0.6;
}

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


/* ═══════════════════════════════════════════════════
   3. COLLECTION GRID (Asymmetric Masonry)
   ═══════════════════════════════════════════════════ */
.jibtol-collections-showcase {
    padding: clamp(60px, 8vw, 100px) 0;
    background: #ffffff;
}

.collections-grid-masonry {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 16px;
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 clamp(16px, 3vw, 40px);
}

.collection-tile-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    text-decoration: none;
    color: #ffffff;
    display: block;
}

.collection-tile-card:first-child {
    grid-row: 1 / 3;
    min-height: 560px;
}

.collection-tile-card:not(:first-child) {
    min-height: 270px;
}

.collection-tile-card .tile-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.collection-tile-card .tile-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.collection-tile-card:hover .tile-bg img {
    transform: scale(1.06);
}

.collection-tile-card .tile-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.05) 0%,
        rgba(0, 0, 0, 0.6) 100%
    );
    transition: background 0.5s ease;
}

.collection-tile-card:hover .tile-overlay {
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.1) 0%,
        rgba(0, 0, 0, 0.72) 100%
    );
}

.collection-tile-card .tile-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 28px 24px;
    box-sizing: border-box;
    z-index: 2;
    transform: translateY(8px);
    transition: transform 0.45s ease;
}

.collection-tile-card:hover .tile-caption {
    transform: translateY(0);
}

.tile-caption-eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-gold-light, #E8D5A3);
    margin-bottom: 6px;
    display: block;
}

.tile-caption h3 {
    font-family: var(--font-heading, 'Cormorant Garamond', serif);
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    margin: 0 0 12px 0;
    color: #ffffff;
}

.collection-tile-card:first-child .tile-caption h3 {
    font-size: 2rem;
}

.tile-caption-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #ffffff;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

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

.tile-caption-link svg {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
}

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


/* ═══════════════════════════════════════════════════
   4. PRODUCT GRID
   ═══════════════════════════════════════════════════ */
.jibtol-product-grid-widget .section-header {
    margin-bottom: clamp(32px, 5vw, 56px);
}

.jibtol-product-grid-widget .section-header .eyebrow {
    color: var(--color-gold, #C9A227);
    display: block;
    font-size: 0.78rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-weight: 600;
}

.jibtol-product-grid-widget .section-header h2 {
    font-family: var(--font-heading, 'Cormorant Garamond', serif);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #111111;
    margin: 0;
}

.product-grid-view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: clamp(32px, 4vw, 48px);
    padding: 14px 36px;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    color: #111111;
    border: 1.5px solid #111111;
    background: transparent;
    transition: all 0.35s ease;
}

.product-grid-view-all:hover {
    background: #111111;
    color: #ffffff;
}


/* ═══════════════════════════════════════════════════
   5. BRAND STORY
   ═══════════════════════════════════════════════════ */
.jibtol-brand-story-widget {
    padding: clamp(60px, 8vw, 100px) 0;
    background: #faf9f7;
}

.story-stats-row {
    display: flex;
    gap: 32px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.story-stat-item {
    text-align: center;
}

.story-stat-number {
    font-family: var(--font-heading, 'Cormorant Garamond', serif);
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--color-gold, #C9A227);
    line-height: 1;
    display: block;
}

.story-stat-label {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #888888;
    margin-top: 4px;
    display: block;
}


/* ═══════════════════════════════════════════════════
   6. COUNTDOWN / FLASH SALE BANNER
   ═══════════════════════════════════════════════════ */
.jibtol-countdown-banner {
    position: relative;
    overflow: hidden;
    background-color: #0c0c0c;
    padding: 100px 20px;
    border-top: 1px solid rgba(201, 162, 39, 0.2);
    border-bottom: 1px solid rgba(201, 162, 39, 0.2);
    text-align: center;
}

.countdown-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.35;
    z-index: 1;
}

.countdown-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.65) contrast(1.15);
}

.countdown-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: radial-gradient(circle at center, rgba(14, 14, 14, 0.82) 0%, rgba(8, 8, 8, 0.96) 100%),
                linear-gradient(180deg, rgba(12, 12, 12, 0.85) 0%, rgba(10, 10, 10, 0.95) 100%);
}

.countdown-content-wrap {
    position: relative;
    z-index: 3;
    max-width: 820px;
    margin: 0 auto;
}

.countdown-urgency-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 162, 39, 0.12);
    color: #e5c07b;
    border: 1px solid rgba(201, 162, 39, 0.35);
    padding: 8px 24px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    animation: pulseBadge 3s infinite ease-in-out;
}

.countdown-title {
    font-size: clamp(2.1rem, 4.2vw, 3.4rem);
    font-family: var(--font-heading, "Playfair Display", serif);
    letter-spacing: 0.04em;
    line-height: 1.18;
    margin: 0 0 18px 0;
    color: #ffffff;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.6);
}

.countdown-desc {
    font-size: 1.0625rem;
    color: #d1d5db;
    line-height: 1.7;
    margin: 0 auto 40px;
    max-width: 640px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

.countdown-timer-blocks {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 44px;
}

.countdown-block {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(201, 162, 39, 0.28);
    border-radius: 14px;
    min-width: 96px;
    padding: 20px 12px;
    text-align: center;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.countdown-block:hover {
    transform: translateY(-4px);
    border-color: rgba(201, 162, 39, 0.6);
}

.countdown-block .count-value {
    display: block;
    font-family: var(--font-heading, "Playfair Display", serif);
    font-size: 2.6rem;
    font-weight: 700;
    color: #ffffff;
    font-variant-numeric: tabular-nums;
    line-height: 1;
    margin-bottom: 6px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

.countdown-block .count-label {
    font-size: 0.6875rem;
    letter-spacing: 0.2em;
    font-weight: 700;
    text-transform: uppercase;
    color: #c9a227;
    display: block;
}

.countdown-cta-btn {
    display: inline-block;
    padding: 16px 48px;
    font-size: 0.8125rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 700;
    text-decoration: none;
    border-radius: 30px;
    background: linear-gradient(135deg, #d4af37 0%, #aa771c 100%);
    color: #0a0a0a !important;
    box-shadow: 0 8px 26px rgba(201, 162, 39, 0.35);
    transition: all 0.3s ease;
}

.countdown-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(201, 162, 39, 0.5);
    background: linear-gradient(135deg, #e5c07b 0%, #c9a227 100%);
    color: #000000 !important;
}

@keyframes pulseBadge {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.04); }
}

.countdown-urgency-badge {
    animation: pulseBadge 2s ease-in-out infinite;
}


/* ═══════════════════════════════════════════════════
   7. TESTIMONIALS & CLIENT REVIEWS (LUXURY REDESIGN)
   ═══════════════════════════════════════════════════ */
.jibtol-testimonials-widget {
    padding: clamp(70px, 8vw, 110px) 0;
    background: #fcfbf9;
    border-top: 1px solid #f0eae0;
    border-bottom: 1px solid #f0eae0;
    position: relative;
    overflow: hidden;
}

.testimonials-container {
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 24px;
}

.testimonials-container.container-single-card {
    max-width: 1040px;
}

/* Header with Navigation Controls */
.testimonials-header-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 42px;
    flex-wrap: wrap;
}

.testimonials-header-row.header-centered {
    justify-content: center;
    text-align: center;
    margin-bottom: 36px;
}

.testimonials-header-row.header-centered .testimonials-header-content {
    text-align: center;
}

.testimonials-header-content {
    flex: 1;
    min-width: 280px;
}

.testimonials-eyebrow {
    display: block;
    font-size: 0.8125rem;
    color: #C9A227;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.testimonials-title {
    font-family: var(--font-heading, 'Playfair Display', Georgia, serif);
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 500;
    color: #111111;
    line-height: 1.25;
    margin: 0 0 10px 0;
    letter-spacing: 0.02em;
}

.testimonials-trust-badge {
    font-size: 0.84rem;
    color: #6b7280;
    letter-spacing: 0.04em;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 4px;
}

/* Navigation Arrow Buttons */
.testimonials-nav-arrows {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonials-arrow-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1.5px solid #d4af37;
    background: #ffffff;
    color: #111111;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    padding: 0;
    z-index: 5;
}

.testimonials-arrow-btn:hover {
    background: #111111;
    border-color: #111111;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.testimonials-arrow-btn:active {
    transform: scale(0.95);
}

/* Side Floating Arrows in Single Card View */
.testimonials-arrow-btn.side-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    background: #ffffff;
    border: 1.5px solid #d4af37;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.testimonials-arrow-btn.side-arrow:hover {
    background: #111111;
    border-color: #111111;
    color: #ffffff;
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.16);
}

.side-arrow.prev-btn {
    left: -26px;
}

.side-arrow.next-btn {
    right: -26px;
}

@media (min-width: 1100px) {
    .side-arrow.prev-btn {
        left: -32px;
    }
    .side-arrow.next-btn {
        right: -32px;
    }
}

@media (max-width: 900px) {
    .side-arrow.prev-btn {
        left: -12px;
    }
    .side-arrow.next-btn {
        right: -12px;
    }
}

@media (max-width: 680px) {
    .testimonials-arrow-btn.side-arrow {
        width: 42px;
        height: 42px;
    }
    .side-arrow.prev-btn {
        left: -6px;
    }
    .side-arrow.next-btn {
        right: -6px;
    }
}

/* Carousel Track */
.testimonials-track-wrapper {
    position: relative;
    width: 100%;
}

.testimonials-track-wrapper.single-track-wrap {
    max-width: 860px;
    margin: 0 auto;
}

.testimonials-carousel-track {
    display: flex;
    gap: 28px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 16px 4px 28px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
}

.testimonials-carousel-track::-webkit-scrollbar {
    display: none;
}

/* Card Geometry in 3-Card Carousel */
.testimonials-carousel-track .luxury-testimonial-card {
    flex: 0 0 calc((100% - 56px) / 3);
    min-width: 320px;
    max-width: 420px;
    scroll-snap-align: start;
}

@media (max-width: 1100px) {
    .testimonials-carousel-track .luxury-testimonial-card {
        flex: 0 0 calc((100% - 28px) / 2);
        min-width: 300px;
    }
}

@media (max-width: 680px) {
    .testimonials-carousel-track .luxury-testimonial-card {
        flex: 0 0 88%;
        min-width: 280px;
        max-width: 360px;
    }
}

/* SINGLE TESTIMONY CAROUSEL (ONE CARD VISIBLE ON SCREEN) */
.testimonials-carousel-track.single-card-carousel {
    gap: 0;
    padding: 12px 0 20px;
    width: 100%;
}

.testimonials-carousel-track.single-card-carousel .luxury-testimonial-card {
    flex: 0 0 100%;
    min-width: 100%;
    max-width: 100%;
    width: 100%;
    scroll-snap-align: center;
}

/* Grid Layout Mode */
.testimonials-grid-layout {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 16px 0 28px;
}

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

.testimonials-grid-layout .luxury-testimonial-card {
    width: 100%;
}

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

@media (max-width: 680px) {
    .testimonials-grid-layout {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════════════════════
   LUXURY TESTIMONIAL CARD
   ═══════════════════════════════════════════════════ */
.luxury-testimonial-card {
    background: #ffffff;
    border: none;
    border-radius: 16px;
    padding: 36px 30px 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 320px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 24px -4px rgba(0, 0, 0, 0.04), 0 2px 6px rgba(0, 0, 0, 0.02);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
}

.luxury-testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 45px -8px rgba(201, 162, 39, 0.15), 0 4px 12px rgba(0, 0, 0, 0.04);
}

/* Focused Single-Card Showcase Styling */
.luxury-testimonial-card.single-card-focus {
    padding: clamp(40px, 6vw, 60px) clamp(30px, 5vw, 64px) clamp(34px, 5vw, 48px);
    border-radius: 20px;
    box-shadow: 0 16px 40px -8px rgba(0, 0, 0, 0.06), 0 4px 12px rgba(0, 0, 0, 0.02);
    border: none;
}

.luxury-testimonial-card.single-card-focus .card-header-top {
    justify-content: center;
    margin-bottom: 24px;
}

.luxury-testimonial-card.single-card-focus .stars-rating-wrap {
    gap: 6px;
}

.luxury-testimonial-card.single-card-focus .star-svg {
    width: 20px;
    height: 20px;
}

.luxury-testimonial-card.single-card-focus .watermark-quote-mark {
    font-size: 5rem;
    top: -12px;
    right: 28px;
    opacity: 0.18;
}

.luxury-testimonial-card.single-card-focus .testimonial-headline {
    font-size: clamp(1.3rem, 2.5vw, 1.75rem);
    font-weight: 600;
    text-align: center;
    margin: 0 0 18px 0;
    color: #111111;
    letter-spacing: 0.02em;
}

.luxury-testimonial-card.single-card-focus .testimonial-quote-text {
    font-size: clamp(1.02rem, 1.7vw, 1.18rem);
    line-height: 1.85;
    font-style: italic;
    color: #374151;
    font-family: var(--font-heading, 'Playfair Display', Georgia, serif);
    text-align: center;
    max-width: 740px;
    margin: 0 auto 32px;
}

.luxury-testimonial-card.single-card-focus .card-author-footer {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 12px;
    border-top: 1px solid #f3eee5;
    padding-top: 24px;
}

.luxury-testimonial-card.single-card-focus .author-avatar-wrap {
    margin-bottom: 4px;
}

.luxury-testimonial-card.single-card-focus .author-monogram-crest {
    width: 54px;
    height: 54px;
    font-size: 1.05rem;
    border-width: 2.5px;
}

.luxury-testimonial-card.single-card-focus .author-avatar-img {
    width: 54px;
    height: 54px;
}

.luxury-testimonial-card.single-card-focus .author-name-row {
    justify-content: center;
    gap: 10px;
}

.luxury-testimonial-card.single-card-focus .author-name {
    font-size: 1.05rem;
    font-weight: 600;
}

.luxury-testimonial-card.single-card-focus .author-location-text {
    font-size: 0.78rem;
}

/* Gold Header Accent Bar */
.card-gold-accent-bar {
    display: none !important;
}

/* Card Header Top */
.card-header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
    position: relative;
}

.stars-rating-wrap {
    display: inline-flex;
    align-items: center;
    gap: 3px;
}

.star-svg {
    width: 15px;
    height: 15px;
    fill: #C9A227;
    filter: drop-shadow(0 1px 2px rgba(201, 162, 39, 0.25));
}

.watermark-quote-mark {
    font-family: var(--font-heading, 'Playfair Display', Georgia, serif);
    font-size: 3.2rem;
    line-height: 1;
    color: rgba(201, 162, 39, 0.15);
    position: absolute;
    top: -8px;
    right: -4px;
    pointer-events: none;
    font-style: italic;
    user-select: none;
}

/* Card Body Content */
.card-body-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.testimonial-headline {
    font-family: var(--font-heading, 'Playfair Display', Georgia, serif);
    font-size: 1.15rem;
    font-weight: 600;
    color: #111111;
    margin: 6px 0 12px 0;
    line-height: 1.35;
    letter-spacing: 0.01em;
}

.testimonial-quote-text {
    font-size: 0.925rem;
    line-height: 1.75;
    color: #4b5563;
    font-style: normal;
    margin: 0 0 24px 0;
    flex: 1;
}

/* Card Author Footer */
.card-author-footer {
    display: flex;
    align-items: center;
    gap: 14px;
    border-top: 1px solid #f3eee5;
    padding-top: 18px;
    margin-top: auto;
}

.author-avatar-wrap {
    flex-shrink: 0;
}

.author-avatar-img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 1.5px solid #d4af37;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.author-monogram-crest {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #C9A227 0%, #997514 100%);
    border: 2px solid #ecd9a8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading, 'Playfair Display', Georgia, serif);
    font-size: 0.875rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.05em;
    box-shadow: 0 3px 10px rgba(201, 162, 39, 0.25);
    flex-shrink: 0;
}

.author-meta-wrap {
    flex: 1;
    min-width: 0;
}

.author-name-row {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 2px;
}

.author-name {
    font-size: 0.92rem;
    font-weight: 600;
    color: #111111;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.verified-client-pill {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #f0fdf4;
    color: #15803d;
    border: 1px solid #bbf7d0;
    border-radius: 9999px;
    padding: 2px 7px;
    font-size: 0.64rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.author-location-text {
    display: block;
    font-size: 0.73rem;
    color: #78716c;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* Pagination Dots */
.testimonials-pagination-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 26px;
}

.testimonial-dot-btn {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #e2d9cd;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-dot-btn.is-active {
    width: 28px;
    border-radius: 14px;
    background: #C9A227;
}

/* ═══════════════════════════════════════════════════
   SUBSEQUENT REVIEWS CAROUSEL & CARDS
   ═══════════════════════════════════════════════════ */
.testimonials-subsequent-section {
    margin-top: 60px;
    padding-top: 50px;
    border-top: 1px solid rgba(201, 162, 39, 0.22);
    position: relative;
    width: 100%;
}

.subsequent-section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 30px;
}

.subsequent-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #C9A227;
    margin-bottom: 8px;
}

.subsequent-title {
    font-size: clamp(22px, 3.2vw, 28px);
    font-weight: 600;
    letter-spacing: -0.01em;
    color: #111111;
    margin: 0 0 10px;
    font-family: 'Playfair Display', Georgia, serif;
}

.subsequent-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #666666;
    margin: 0;
}

/* Subsequent Carousel Track Wrapper */
.subsequent-carousel-wrap {
    position: relative;
    width: 100%;
    margin-bottom: 25px;
}

.subsequent-carousel-track-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.subsequent-reviews-carousel-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 12px 6px 20px;
    width: 100%;
}

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

.subsequent-reviews-carousel-track .subsequent-review-card {
    flex: 0 0 calc((100% - 48px) / 3);
    min-width: 0;
    scroll-snap-align: start;
    box-sizing: border-box;
    background: #ffffff;
    border: 1px solid #ede8e1;
    border-radius: 14px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.subsequent-reviews-carousel-track .subsequent-review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.08);
    border-color: rgba(201, 162, 39, 0.45);
}

.subsequent-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.subsequent-stars {
    display: flex;
    gap: 3px;
}

.subsequent-quote-icon {
    font-size: 28px;
    line-height: 1;
    color: rgba(201, 162, 39, 0.25);
    font-family: Georgia, serif;
    font-weight: bold;
}

.subsequent-card-headline {
    font-size: 15.5px;
    font-weight: 700;
    color: #111111;
    margin: 0 0 10px;
    letter-spacing: -0.01em;
}

.subsequent-card-quote {
    font-size: 13.5px;
    line-height: 1.68;
    color: #444444;
    margin: 0 0 22px;
    font-style: normal;
    flex-grow: 1;
}

.subsequent-card-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid #f2eee8;
}

.subsequent-author-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #111111;
    color: #C9A227;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.05em;
    flex-shrink: 0;
    border: 1px solid rgba(201, 162, 39, 0.3);
}

.subsequent-author-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.subsequent-author-name-row {
    display: flex;
    align-items: center;
    gap: 6px;
}

.subsequent-author-name {
    font-size: 13.5px;
    font-weight: 700;
    color: #111111;
}

.subsequent-verified-pill {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-size: 10px;
    font-weight: 600;
    color: #2e7d32;
    background: rgba(46, 125, 50, 0.08);
    padding: 1px 6px;
    border-radius: 10px;
}

.subsequent-author-location {
    font-size: 11.5px;
    color: #777777;
}

/* Subsequent Carousel Navigation Arrows */
.subsequent-arrow-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #e2ddd5;
    color: #111111;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.subsequent-arrow-btn.prev-btn {
    left: -22px;
}

.subsequent-arrow-btn.next-btn {
    right: -22px;
}

.subsequent-arrow-btn:hover {
    background: #111111;
    color: #C9A227;
    border-color: #111111;
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.16);
}

/* Subsequent Carousel Pagination Dots */
.subsequent-pagination-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 15px 0 30px;
}

.subsequent-dot-btn {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #e2d9cd;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.subsequent-dot-btn.is-active {
    width: 26px;
    border-radius: 13px;
    background: #C9A227;
}

.subsequent-actions-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.subsequent-view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 26px;
    background: #111111;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #111111;
}

.subsequent-view-all-btn:hover {
    background: #C9A227;
    color: #111111;
    border-color: #C9A227;
}

.subsequent-share-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #25D366;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.03em;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #25D366;
}

.subsequent-share-btn:hover {
    background: #1eb956;
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

@media (max-width: 991px) {
    .subsequent-reviews-carousel-track .subsequent-review-card {
        flex: 0 0 calc((100% - 24px) / 2);
    }
    .subsequent-arrow-btn.prev-btn {
        left: -12px;
    }
    .subsequent-arrow-btn.next-btn {
        right: -12px;
    }
}

@media (max-width: 680px) {
    .subsequent-reviews-carousel-track .subsequent-review-card {
        flex: 0 0 88%;
    }
    .subsequent-arrow-btn {
        display: none;
    }
    .subsequent-actions-row {
        flex-direction: column;
        width: 100%;
    }
    .subsequent-view-all-btn,
    .subsequent-share-btn {
        width: 100%;
        justify-content: center;
    }
}



/* ═══════════════════════════════════════════════════
   8. TRUST PILLARS (Infinite Luxury Marquee)
   ═══════════════════════════════════════════════════ */
.jibtol-trust-pillars-widget {
    padding: 20px 0;
    background: #faf9f7;
    border-top: 1px solid #eceae5;
    border-bottom: 1px solid #eceae5;
    overflow: hidden;
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

.trust-pillars-track {
    display: flex;
    width: max-content;
    will-change: transform;
    animation: trustPillarsMarqueeScroll var(--pillars-speed, 35s) linear infinite;
}

.jibtol-trust-pillars-widget:hover .trust-pillars-track {
    animation-play-state: paused;
}

.trust-pillars-group {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.pillar-box {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 8px 36px;
    position: relative;
    flex-shrink: 0;
    white-space: nowrap;
    box-sizing: border-box;
    transition: transform 0.25s ease;
}

.pillar-box:hover {
    transform: translateY(-1px);
}

.pillar-box::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 28px;
    background: #e0dcd5;
}

.pillar-icon {
    font-size: 1.45rem;
    line-height: 1;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.pillar-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    white-space: nowrap;
}

.pillar-text h4 {
    font-size: 0.82rem;
    font-weight: 600;
    color: #111111;
    margin: 0 0 2px 0;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    font-family: var(--font-heading, 'Playfair Display', Georgia, serif);
}

.pillar-text p {
    font-size: 0.74rem;
    color: #777777;
    margin: 0;
    line-height: 1.35;
    letter-spacing: 0.01em;
}

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


/* ═══════════════════════════════════════════════════
   9. INSTAGRAM FEED
   ═══════════════════════════════════════════════════ */
.jibtol-instagram-section {
    padding: clamp(60px, 8vw, 100px) 0 0;
    background: #ffffff;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 4px;
}

.instagram-grid-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    cursor: pointer;
}

.instagram-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.instagram-grid-item:hover img {
    transform: scale(1.08);
}

.instagram-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.instagram-grid-item:hover .instagram-item-overlay {
    opacity: 1;
}

.instagram-item-overlay svg {
    width: 28px;
    height: 28px;
    color: #ffffff;
}


/* ═══════════════════════════════════════════════════
   10. NEWSLETTER CTA
   ═══════════════════════════════════════════════════ */
.jibtol-newsletter-cta {
    padding: clamp(60px, 8vw, 100px) clamp(20px, 5vw, 60px);
    background: #111111;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.newsletter-cta-inner {
    max-width: 620px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.newsletter-cta-eyebrow {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-gold, #C9A227);
    margin-bottom: 14px;
}

.newsletter-cta-title {
    font-family: var(--font-heading, 'Cormorant Garamond', serif);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: #ffffff;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin: 0 0 14px 0;
    line-height: 1.2;
}

.newsletter-cta-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin: 0 0 32px 0;
}

.newsletter-form-row {
    display: flex;
    gap: 0;
    max-width: 480px;
    margin: 0 auto;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.newsletter-form-row input[type="email"] {
    flex: 1;
    padding: 15px 20px;
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 0.875rem;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.06);
    border: none;
    outline: none;
    letter-spacing: 0.02em;
    -webkit-appearance: none;
}

.newsletter-form-row input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.newsletter-form-row input[type="email"]:focus {
    background: rgba(255, 255, 255, 0.1);
}

.newsletter-form-row button {
    padding: 15px 28px;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #111111;
    background: var(--color-gold, #C9A227);
    border: none;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.3s ease;
}

.newsletter-form-row button:hover {
    background: #d4ad2e;
}


/* ═══════════════════════════════════════════════════
   GLOBAL: Section Headers
   ═══════════════════════════════════════════════════ */
.jibtol-section-header {
    text-align: center;
    margin-bottom: clamp(32px, 5vw, 56px);
    padding: 0 20px;
}

.jibtol-section-header .eyebrow {
    color: var(--color-gold, #C9A227);
    display: block;
    font-size: 0.78rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-weight: 600;
}

.jibtol-section-header h2 {
    font-family: var(--font-heading, 'Cormorant Garamond', serif);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #111111;
    margin: 0;
    line-height: 1.2;
}


/* ═══════════════════════════════════════════════════
   GLOBAL: Scroll Animations
   ═══════════════════════════════════════════════════ */
.jibtol-fade-up {
    opacity: 1;
    transform: none;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Inside Elementor Editor & Preview: ALWAYS 100% VISIBLE */
.elementor .jibtol-fade-up,
.elementor-editor-active .jibtol-fade-up,
.elementor-editor-preview .jibtol-fade-up,
body.elementor-editor-active .jibtol-fade-up,
body.elementor-editor-preview .jibtol-fade-up {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
}


/* ═══════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .collections-grid-masonry {
        grid-template-columns: repeat(2, 1fr);
    }
    .collection-tile-card:first-child {
        grid-row: auto;
        min-height: 360px;
    }
    .collection-tile-card:not(:first-child) {
        min-height: 260px;
    }
    .hero-slider-arrows {
        display: none;
    }
    .hero-scroll-indicator {
        display: none;
    }
    .hero-slider-dots {
        right: auto;
        left: 50%;
        transform: translateX(-50%);
    }
    .hero-slide-content {
        padding: 0 24px;
        max-width: 100%;
    }
    .trust-pillars-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 24px;
        padding: 0 20px;
        justify-content: center;
    }
    .pillar-box {
        padding: 8px 12px;
    }
    .pillar-box:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .collections-grid-masonry {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .collection-tile-card:first-child,
    .collection-tile-card:not(:first-child) {
        min-height: 300px;
    }
    .testimonial-card {
        flex: 0 0 290px;
    }
    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .newsletter-form-row {
        display: flex !important;
        flex-direction: row !important;
        align-items: stretch !important;
        gap: 0 !important;
        border: 1px solid rgba(255, 255, 255, 0.15) !important;
        border-radius: 4px !important;
        overflow: hidden !important;
        max-width: 100% !important;
    }
    .newsletter-form-row input[type="email"] {
        flex: 1 1 auto !important;
        min-width: 0 !important;
        padding: 13px 14px !important;
        font-size: 0.82rem !important;
        border: none !important;
        border-radius: 0 !important;
    }
    .newsletter-form-row button {
        flex: 0 0 auto !important;
        padding: 13px 20px !important;
        font-size: 0.75rem !important;
        border-radius: 0 !important;
        white-space: nowrap !important;
    }
    .story-stats-row {
        justify-content: center;
    }

    /* 7. TESTIMONIALS MOBILE REFINEMENTS */
    .jibtol-testimonials-widget {
        padding: 40px 0 28px !important;
    }
    .luxury-testimonial-card.single-card-focus {
        padding: 24px 18px 20px !important;
        border-radius: 14px !important;
        min-height: auto !important;
        box-shadow: 0 8px 24px -4px rgba(0, 0, 0, 0.05) !important;
    }
    .luxury-testimonial-card.single-card-focus .card-header-top {
        margin-bottom: 12px !important;
    }
    .luxury-testimonial-card.single-card-focus .star-svg {
        width: 16px !important;
        height: 16px !important;
    }
    .luxury-testimonial-card.single-card-focus .watermark-quote-mark {
        font-size: 3.2rem !important;
        top: -8px !important;
        right: 14px !important;
        opacity: 0.1 !important;
    }
    .luxury-testimonial-card.single-card-focus .testimonial-headline {
        font-size: 1.05rem !important;
        line-height: 1.35 !important;
        margin-bottom: 10px !important;
    }
    .luxury-testimonial-card.single-card-focus .testimonial-quote-text {
        font-size: 0.88rem !important;
        line-height: 1.6 !important;
        margin: 0 auto 18px !important;
        max-width: 100% !important;
    }
    .luxury-testimonial-card.single-card-focus .card-author-footer {
        padding-top: 14px !important;
        gap: 8px !important;
    }
    .luxury-testimonial-card.single-card-focus .author-monogram-crest,
    .luxury-testimonial-card.single-card-focus .author-avatar-img {
        width: 44px !important;
        height: 44px !important;
        font-size: 0.92rem !important;
        border-width: 2px !important;
    }
    .luxury-testimonial-card.single-card-focus .author-name {
        font-size: 0.92rem !important;
    }
    .luxury-testimonial-card.single-card-focus .verified-client-pill {
        font-size: 0.62rem !important;
        padding: 2px 7px !important;
    }
    .luxury-testimonial-card.single-card-focus .author-location-text {
        font-size: 0.72rem !important;
    }
    .testimonial-nav-btn {
        display: none !important;
    }
    .testimonial-slider-dots {
        margin-top: 14px !important;
    }

    /* 8. TRUST PILLARS MOBILE MARQUEE */
    .jibtol-trust-pillars-widget {
        padding: 16px 0 !important;
        background: #faf8f5 !important;
    }
    .pillar-box {
        padding: 6px 22px !important;
        gap: 10px !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
    }
    .pillar-box::after {
        display: block !important;
        height: 24px !important;
        background: #e0dcd5 !important;
    }
    .pillar-icon {
        font-size: 1.25rem !important;
    }
    .pillar-text {
        min-width: 0 !important;
    }
    .pillar-text h4 {
        font-size: 0.76rem !important;
        font-weight: 600 !important;
        color: #111111 !important;
        margin: 0 0 2px 0 !important;
        line-height: 1.25 !important;
        white-space: nowrap !important;
    }
    .pillar-text p {
        font-size: 0.68rem !important;
        color: #777777 !important;
        margin: 0 !important;
        line-height: 1.3 !important;
        white-space: nowrap !important;
    }
}

@media (max-width: 480px) {
    .jibtol-hero-slider,
    .elementor .jibtol-hero-slider {
        height: 74vh !important;
        min-height: 460px !important;
        max-height: 580px !important;
    }
    .hero-slide-title {
        font-size: 1.95rem !important;
        line-height: 1.22 !important;
        max-width: 290px !important;
    }
    .hero-slide-cta {
        padding: 11px 28px !important;
        font-size: 0.88rem !important;
    }
    .pillar-box {
        padding: 4px 18px !important;
        gap: 8px !important;
    }
    .pillar-icon {
        font-size: 1.15rem !important;
    }
    .pillar-text h4 {
        font-size: 0.72rem !important;
    }
    .pillar-text p {
        font-size: 0.64rem !important;
    }
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .countdown-timer-blocks {
        gap: 10px;
    }
    .countdown-block {
        width: 64px;
        padding: 12px 0;
    }
    .countdown-block .count-value {
        font-size: 1.5rem;
    }
}

/* ═══════════════════════════════════════════════════
   WHY CHOOSE JOUSH LUXURY
   ═══════════════════════════════════════════════════ */
.jibtol-why-choose-section {
    background: #fbfbfb;
    padding: 90px 0;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.why-choose-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 56px;
}

.why-choose-eyebrow {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #c9a227;
    margin-bottom: 12px;
}

.why-choose-title {
    font-size: clamp(1.85rem, 3.2vw, 2.6rem);
    font-family: var(--font-heading, "Playfair Display", serif);
    letter-spacing: 0.04em;
    line-height: 1.2;
    margin: 0 0 16px;
    color: #111111;
}

.why-choose-desc {
    font-size: 1rem;
    line-height: 1.7;
    color: #6b7280;
    margin: 0;
}

/* ═══════════════════════════════════════════════════
   ICON LIST GRID LAYOUTS (2-COL & 3-COL)
   ═══════════════════════════════════════════════════ */
.why-choose-icon-list-grid {
    display: grid;
    gap: 24px;
}

.why-choose-icon-list-grid.cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.why-choose-icon-list-grid.cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

/* Legacy Card Grid Fallback */
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* ═══════════════════════════════════════════════════
   LUXURY ICON LIST ITEM
   ═══════════════════════════════════════════════════ */
.why-choose-list-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: #ffffff;
    border: 1px solid #ebebeb;
    border-radius: 12px;
    padding: 26px 24px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
    position: relative;
}

.why-choose-list-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 34px rgba(201, 162, 39, 0.09);
    border-color: #c9a227;
}

.why-choose-item-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fbf7ee 0%, #f4ebd5 100%);
    border: 1px solid rgba(201, 162, 39, 0.32);
    color: #c9a227;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.why-choose-item-icon svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
    color: currentColor;
    display: block;
}

.why-choose-list-item:hover .why-choose-item-icon {
    transform: scale(1.08);
    background: linear-gradient(135deg, #c9a227 0%, #dfbe53 100%);
    color: #ffffff;
    border-color: #c9a227;
    box-shadow: 0 6px 18px rgba(201, 162, 39, 0.35);
}

.why-choose-list-item:hover .why-choose-item-icon svg {
    fill: #ffffff;
    color: #ffffff;
}

.why-choose-item-body {
    flex: 1;
    min-width: 0;
}

.why-choose-item-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 8px;
}

.why-choose-item-title {
    font-size: 1.1875rem;
    font-family: var(--font-heading, "Playfair Display", serif);
    font-weight: 600;
    color: #111111;
    margin: 0;
    letter-spacing: 0.02em;
    line-height: 1.3;
}

.why-choose-item-badge {
    display: inline-flex;
    align-items: center;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #c9a227;
    background: #faf5e8;
    border: 1px solid rgba(201, 162, 39, 0.25);
    padding: 3px 9px;
    border-radius: 20px;
    white-space: nowrap;
    line-height: 1.2;
}

.why-choose-item-desc {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: #555555;
    margin: 0;
}

/* ═══════════════════════════════════════════════════
   SPLIT SHOWCASE LAYOUT
   ═══════════════════════════════════════════════════ */
.why-choose-split-wrap {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: center;
}

.why-choose-media-col .showcase-img-frame {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(201, 162, 39, 0.2);
}

.why-choose-media-col .showcase-img {
    width: 100%;
    height: 100%;
    max-height: 540px;
    object-fit: cover;
    display: block;
}

.showcase-floating-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    background: rgba(17, 17, 17, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #f7e7a9;
    border: 1px solid rgba(201, 162, 39, 0.4);
    border-radius: 8px;
    padding: 12px 18px;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.why-choose-icon-list-vertical {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Legacy Card compatibility */
.why-choose-card {
    border: 1px solid #eee;
    padding: 36px 30px;
    border-radius: 12px;
    background: #ffffff;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
}

.why-choose-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.06);
    border-color: #c9a227;
}

.why-choose-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 22px;
    background-color: #faf5e8;
    color: #c9a227;
    flex-shrink: 0;
}

.why-choose-card-title {
    font-size: 1.25rem;
    font-family: var(--font-heading, "Playfair Display", serif);
    margin: 0 0 12px;
    letter-spacing: 0.02em;
    color: #111111;
}

.why-choose-card-desc {
    font-size: 0.9375rem;
    line-height: 1.75;
    color: #6b7280;
    margin: 0;
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE STYLING
   ═══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .why-choose-icon-list-grid.cols-3 {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .why-choose-split-wrap {
        grid-template-columns: 1fr;
        gap: 36px;
    }
}

@media (max-width: 768px) {
    .why-choose-icon-list-grid.cols-2,
    .why-choose-icon-list-grid.cols-3 {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .jibtol-why-choose-section {
        padding: 42px 0 30px !important;
    }
    .why-choose-header {
        margin: 0 auto 26px !important;
        padding: 0 14px !important;
    }
    .why-choose-eyebrow {
        font-size: 0.72rem !important;
        letter-spacing: 0.16em !important;
        margin-bottom: 8px !important;
    }
    .why-choose-title {
        font-size: 1.45rem !important;
        line-height: 1.25 !important;
        margin-bottom: 8px !important;
    }
    .why-choose-desc {
        font-size: 0.85rem !important;
        line-height: 1.55 !important;
    }
    .why-choose-list-item {
        padding: 16px 14px !important;
        gap: 14px !important;
        border-radius: 10px !important;
    }
    .why-choose-item-icon {
        width: 40px !important;
        height: 40px !important;
        min-width: 40px !important;
        font-size: 1rem !important;
    }
    .why-choose-item-icon svg {
        width: 17px !important;
        height: 17px !important;
    }
    .why-choose-item-title {
        font-size: 0.98rem !important;
    }
    .why-choose-item-desc {
        font-size: 0.82rem !important;
        line-height: 1.55 !important;
    }
    .why-choose-card {
        padding: 20px 16px !important;
    }
}


