/* ==========================================================================
   MENZIO LUXURY - CUSTOMER EXPERIENCE STYLES & MULTI-SLIDE HERO CAROUSEL
   ========================================================================== */

/* ==========================================================================
   1. MULTI-SLIDE EDITORIAL HERO CAROUSEL
   ========================================================================== */

.hero-carousel-section {
    position: relative;
    background-color: #07090D;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

/* Cinematic Sartorial Video Background */
.hero-video-bg-container {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.hero-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    opacity: 0.30;
    filter: brightness(0.85) contrast(1.2) saturate(1.25);
    transition: opacity 1s ease;
}

.hero-video-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 65% 45%, rgba(197, 164, 126, 0.12) 0%, transparent 65%),
        linear-gradient(180deg, rgba(7, 9, 13, 0.72) 0%, rgba(10, 13, 19, 0.82) 50%, rgba(13, 16, 23, 0.94) 100%);
    pointer-events: none;
}

.hero-slides-wrapper {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
    min-height: 540px;
    display: flex;
    align-items: center;
    padding: 0 4.2rem;
}

.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 5.5rem;
    box-sizing: border-box;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.8s;
    z-index: 1;
}

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

.hero-slide-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 2.5rem;
    align-items: center;
    width: 100%;
    padding: 1.5rem 0;
}

.hero-slide-content {
    max-width: 600px;
    z-index: 5;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(197, 164, 126, 0.12);
    border: 1px solid var(--color-border);
    padding: 4px 14px;
    border-radius: var(--radius-full);
    color: var(--color-gold-light);
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-transform: none;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(15px);
}

.hero-slide.active .hero-badge {
    animation: fadeUp 0.7s forwards 0.15s ease-out;
}

.hero-title {
    font-size: clamp(1.8rem, 2.7vw, 2.5rem);
    line-height: 1.2;
    font-family: var(--font-heading);
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 0.85rem;
    opacity: 0;
    transform: translateY(20px);
}

.hero-slide.active .hero-title {
    animation: fadeUp 0.8s forwards 0.3s ease-out;
}

.hero-desc {
    font-size: 0.94rem;
    line-height: 1.65;
    color: #A0AEC0;
    margin-bottom: 1.3rem;
    font-weight: 400;
    opacity: 0;
    transform: translateY(20px);
}

.hero-slide.active .hero-desc {
    animation: fadeUp 0.8s forwards 0.45s ease-out;
}

.hero-offer-pill {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--color-border-subtle);
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
}

.hero-slide.active .hero-offer-pill {
    animation: fadeUp 0.8s forwards 0.55s ease-out;
}

.hero-offer-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-gold);
    font-family: var(--font-sans);
}

.hero-offer-old {
    font-size: 0.85rem;
    color: var(--color-muted);
    text-decoration: line-through;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.8rem;
    opacity: 0;
    transform: translateY(20px);
}

.hero-slide.active .hero-ctas {
    animation: fadeUp 0.8s forwards 0.65s ease-out;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    border-top: 1px solid var(--color-border-subtle);
    padding-top: 1.1rem;
    opacity: 0;
    transform: translateY(20px);
}

.hero-slide.active .hero-stats {
    animation: fadeUp 0.8s forwards 0.75s ease-out;
}

.stat-item h4 {
    font-family: var(--font-sans);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-gold);
    line-height: 1.1;
    margin-bottom: 2px;
}

.stat-item p {
    font-size: 0.72rem;
    letter-spacing: normal;
    text-transform: none;
    color: #94A3B8;
}

/* Model Cutout Visual Frame */
.hero-model-frame {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.hero-model-pedestal {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(197, 164, 126, 0.2) 0%, rgba(197, 164, 126, 0.05) 50%, transparent 70%);
    z-index: 1;
    filter: blur(20px);
}

.hero-model-img {
    position: relative;
    z-index: 2;
    max-height: 500px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.8));
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    transform: scale(0.96);
}

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

/* Carousel Navigation Arrows (< >) */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(18, 21, 29, 0.88);
    border: 1px solid var(--color-border);
    backdrop-filter: blur(8px);
    color: var(--color-gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-smooth);
    font-size: 0.95rem;
}

.carousel-arrow:hover {
    background: var(--gold-gradient);
    color: var(--color-obsidian);
    border-color: transparent;
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 10px 25px rgba(197, 164, 126, 0.4);
}

.carousel-prev { left: 16px; }
.carousel-next { right: 16px; }

/* Carousel Progress Indicators */
.carousel-indicators-bar {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.carousel-dot {
    width: 24px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all 0.4s ease;
}

.carousel-dot.active {
    width: 52px;
    background: var(--gold-gradient);
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   2. FABRIC COLLECTION EXPLORER
   ========================================================================== */

.fabric-section {
    padding: 6.5rem 0;
    background: linear-gradient(180deg, #0D1017 0%, #080A0E 100%);
    position: relative;
    border-top: 1px solid var(--color-border-subtle);
}

.fabric-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.fabric-card {
    background: var(--card-gradient);
    border: 1px solid var(--color-border-subtle);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-smooth);
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: column;
}

.fabric-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-gold);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5);
}

.fabric-swatch-view {
    height: 210px;
    position: relative;
    overflow: hidden;
    background: #191E2B;
}

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

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

.fabric-mill-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(10, 12, 16, 0.9);
    border: 1px solid var(--color-border);
    backdrop-filter: blur(8px);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--color-gold-light);
    letter-spacing: 1px;
}

.fabric-info {
    padding: 1.6rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.fabric-info h4 {
    font-size: 1.15rem;
    margin-bottom: 6px;
}

.fabric-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--color-muted);
    margin: 12px 0 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--color-border-subtle);
}

.fabric-meta-item span {
    display: block;
    font-weight: 600;
    color: #FFFFFF;
    margin-top: 2px;
}

.fabric-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.fabric-price {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-gold);
}

/* ==========================================================================
   3. DESIGNER CONSULTATION ENGINE
   ========================================================================== */

.consultation-section {
    padding: 6.5rem 0;
    background: #0B0E14;
    position: relative;
    border-top: 1px solid var(--color-border-subtle);
}

.consultation-card-wrapper {
    background: linear-gradient(135deg, rgba(28, 32, 43, 0.7) 0%, rgba(18, 21, 29, 0.9) 100%);
    border: 1px solid var(--color-gold);
    border-radius: var(--radius-lg);
    padding: 3.5rem;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3.5rem;
    align-items: center;
}

.service-selection-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 1.8rem 0;
}

.service-option-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-border-subtle);
    border-radius: var(--radius-md);
    padding: 1.2rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.service-option-card.selected,
.service-option-card:hover {
    border-color: var(--color-gold);
    background: rgba(197, 164, 126, 0.08);
}

.service-option-card i {
    font-size: 1.5rem;
    color: var(--color-gold);
    margin-bottom: 10px;
    display: block;
}

.service-option-card h5 {
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.service-option-card p {
    font-size: 0.78rem;
    color: var(--color-muted);
}

/* Stylists */
.stylist-grid {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.stylist-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-border-subtle);
    border-radius: var(--radius-md);
    padding: 10px 16px;
    flex: 1;
}

.stylist-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--color-gold);
}

.stylist-name {
    font-size: 0.88rem;
    font-weight: 700;
    color: #FFFFFF;
}

.stylist-title {
    font-size: 0.75rem;
    color: var(--color-gold-light);
}

/* Booking Form */
.booking-form {
    background: rgba(10, 12, 16, 0.6);
    border: 1px solid var(--color-border-subtle);
    border-radius: var(--radius-md);
    padding: 2.2rem;
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: none;
    letter-spacing: normal;
    color: var(--color-gold-light);
    margin-bottom: 6px;
}

.form-control {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-border-subtle);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    color: #FFFFFF;
    font-size: 0.95rem;
    outline: none;
    font-family: var(--font-sans);
    transition: var(--transition-fast);
}

.form-control:focus {
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px var(--gold-glow);
}

/* ==========================================================================
   4. PERFECT FIT & 3D SIMULATOR
   ========================================================================== */

.fit-engine-section {
    padding: 6.5rem 0;
    background: #080A0E;
    border-top: 1px solid var(--color-border-subtle);
}

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

.mannequin-visualizer {
    background: radial-gradient(circle at center, #1B212D 0%, #0D1017 70%);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.mannequin-silhouette {
    max-height: 420px;
    margin: 0 auto;
    display: block;
    filter: drop-shadow(0 15px 30px rgba(197, 164, 126, 0.3));
    transition: all 0.5s ease;
}

.fit-readout-pill {
    position: absolute;
    background: rgba(18, 21, 29, 0.9);
    border: 1px solid var(--color-gold);
    backdrop-filter: blur(8px);
    border-radius: var(--radius-full);
    padding: 6px 14px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    gap: 6px;
}

.fit-readout-chest { top: 32%; right: 15%; }
.fit-readout-waist { top: 52%; left: 15%; }
.fit-readout-inseam { bottom: 20%; right: 20%; }

.measurement-sliders {
    background: var(--card-gradient);
    border: 1px solid var(--color-border-subtle);
    border-radius: var(--radius-md);
    padding: 2.5rem;
}

.slider-group {
    margin-bottom: 1.8rem;
}

.slider-label-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.slider-value {
    color: var(--color-gold);
    font-weight: 700;
}

.custom-range {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    outline: none;
    -webkit-appearance: none;
    accent-color: var(--color-gold);
}

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

.guarantee-badge {
    text-align: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--color-border-subtle);
    padding: 1.1rem 0.6rem;
    border-radius: var(--radius-sm);
}

.guarantee-badge i {
    font-size: 1.5rem;
    color: var(--color-gold);
    margin-bottom: 8px;
    display: block;
}

.guarantee-badge h6 {
    font-size: 0.78rem;
    line-height: 1.4;
}

/* ==========================================================================
   5. BESPOKE COLLECTIONS & E-COMMERCE
   ========================================================================== */

.collections-section {
    padding: 6.5rem 0;
    background: linear-gradient(180deg, #0D1017 0%, #07090D 100%);
    border-top: 1px solid var(--color-border-subtle);
}

.category-filter-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}

.filter-tab-btn {
    padding: 8px 22px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--color-border-subtle);
    color: #B2B9C7;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

.filter-tab-btn.active,
.filter-tab-btn:hover {
    background: var(--gold-gradient);
    color: var(--color-obsidian);
    border-color: var(--color-gold);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2.5rem 1.8rem;
}

.product-card {
    background: var(--card-gradient);
    border: 1px solid var(--color-border-subtle);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-smooth);
    position: relative;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-gold);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
}

.product-media {
    position: relative;
    aspect-ratio: 3/4;
    background: #141722;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .product-img {
    transform: scale(1.06);
}

.product-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(10, 12, 16, 0.92);
    border: 1px solid var(--color-gold);
    color: var(--color-gold-light);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    z-index: 2;
}

.product-quick-actions {
    position: absolute;
    bottom: -60px;
    left: 0;
    width: 100%;
    padding: 14px;
    display: flex;
    gap: 8px;
    background: linear-gradient(to top, rgba(10, 12, 16, 0.98), rgba(10, 12, 16, 0.5) 80%, transparent);
    transition: bottom 0.3s ease;
    z-index: 3;
}

.product-card:hover .product-quick-actions {
    bottom: 0;
}

.product-details {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-category {
    font-size: 0.72rem;
    text-transform: none;
    letter-spacing: 0.3px;
    color: var(--color-gold);
    margin-bottom: 6px;
    font-weight: 600;
}

.product-title {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.4;
    color: #FFFFFF;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.8rem;
}

.product-fabric-line {
    font-size: 0.8rem;
    color: var(--color-muted);
    margin-bottom: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-price-row {
    margin-top: auto;
    display: flex;
    align-items: baseline;
    gap: 10px;
    padding-top: 10px;
    border-top: 1px solid var(--color-border-subtle);
}

.product-price {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--color-gold-light);
    font-family: var(--font-heading);
}

.product-old-price {
    font-size: 0.9rem;
    text-decoration: line-through;
    color: #6B7280;
}

/* ==========================================================================
   6. BESPOKE PACKAGES & WARDROBE SUBSCRIPTIONS
   ========================================================================== */

.packages-section {
    padding: 6.5rem 0;
    background: #0A0C10;
    border-top: 1px solid var(--color-border-subtle);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.package-card {
    background: var(--card-gradient);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 3rem 2.2rem;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition-smooth);
}

.package-card.featured {
    border-color: var(--color-gold);
    box-shadow: 0 25px 70px rgba(197, 164, 126, 0.15);
    transform: scale(1.02);
}

.package-ribbon {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold-gradient);
    color: var(--color-obsidian);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: none;
    padding: 3px 14px;
    border-radius: var(--radius-full);
}

.package-card h3 {
    font-size: 1.35rem;
    margin-bottom: 8px;
}

.package-price {
    font-size: 1.75rem;
    font-family: var(--font-sans);
    font-weight: 700;
    color: var(--color-gold);
    margin: 1.2rem 0;
}

.package-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 2.5rem;
    flex: 1;
    padding: 0;
}

.package-features li {
    font-size: 0.92rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #D1D5DB;
}

.package-features li i {
    color: var(--color-gold);
    font-size: 0.85rem;
}

/* ==========================================================================
   7. HOW IT WORKS TIMELINE
   ========================================================================== */

.how-it-works-section {
    padding: 6.5rem 0;
    background: #080A0E;
    border-top: 1px solid var(--color-border-subtle);
}

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

.timeline-step {
    position: relative;
    background: var(--card-gradient);
    border: 1px solid var(--color-border-subtle);
    border-radius: var(--radius-md);
    padding: 2.2rem 1.6rem;
    transition: var(--transition-fast);
}

.timeline-step:hover {
    border-color: var(--color-gold);
    transform: translateY(-5px);
}

.step-num {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gold-gradient);
    color: var(--color-obsidian);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.timeline-step h4 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.timeline-step p {
    font-size: 0.88rem;
    line-height: 1.6;
}

/* ==========================================================================
   CAROUSEL DOT INDICATORS
   ========================================================================== */

.carousel-indicators-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 15;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.24);
    border: 1px solid rgba(197, 164, 126, 0.4);
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-block;
}

.carousel-dot.active {
    width: 26px;
    border-radius: 8px;
    background: var(--gold-gradient);
    box-shadow: 0 0 10px rgba(197, 164, 126, 0.6);
}

/* ==========================================================================
   RESPONSIVE ADJUSTMENTS (TABLETS & DESKTOPS)
   ========================================================================== */

@media (max-width: 1024px) {
    .hero-slides-wrapper {
        padding: 0 1.5rem;
    }

    .hero-slide {
        padding: 0 1rem;
    }

    .hero-slide-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-slide-content {
        margin: 0 auto;
    }

    .hero-ctas {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .consultation-card-wrapper {
        grid-template-columns: 1fr;
    }

    .fit-engine-grid {
        grid-template-columns: 1fr;
    }

    .timeline-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ==========================================================================
   MOBILE-FIRST HERO & COMPONENT OVERHAUL (< 768px)
   ========================================================================== */

@media (max-width: 768px) {
    /* Hero Carousel Container */
    .hero-carousel-section {
        min-height: auto;
        padding: 0.8rem 0 2.5rem;
        overflow: hidden;
    }

    .hero-slides-wrapper {
        min-height: 560px;
        padding: 0 0.5rem;
    }

    .hero-slide {
        padding: 0.3rem 0.5rem 1rem;
        align-items: flex-start;
        justify-content: center;
    }

    .hero-slide-grid {
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
        gap: 0.5rem;
        width: 100%;
        padding: 0;
        text-align: center;
    }

    .hero-slide-content {
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-badge {
        font-size: 0.65rem;
        padding: 2px 9px;
        margin-bottom: 0.35rem;
    }

    .hero-title {
        font-size: clamp(1.25rem, 4.6vw, 1.55rem);
        line-height: 1.2;
        margin-bottom: 0.3rem;
    }

    .hero-desc {
        font-size: 0.78rem;
        line-height: 1.4;
        margin-bottom: 0.45rem;
        max-width: 330px;
        color: #94A3B8;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .hero-offer-pill {
        padding: 3px 10px;
        gap: 6px;
        margin-bottom: 0.55rem;
        font-size: 0.76rem;
    }

    .hero-offer-price {
        font-size: 1.05rem;
    }

    .hero-ctas {
        display: flex;
        flex-direction: row;
        justify-content: center;
        width: 100%;
        max-width: 330px;
        gap: 8px;
        margin-bottom: 0.55rem;
    }

    .hero-ctas .btn {
        flex: 1;
        width: auto;
        padding: 0.55rem 0.65rem;
        font-size: 0.75rem;
        white-space: nowrap;
    }

    .hero-stats {
        display: flex;
        width: 100%;
        max-width: 320px;
        justify-content: space-around;
        gap: 0.5rem;
        border-top: 1px solid var(--color-border-subtle);
        padding-top: 0.5rem;
        margin: 0 auto;
    }

    .stat-item h4 {
        font-size: 0.95rem;
    }

    .stat-item p {
        font-size: 0.6rem;
    }

    /* Model Frame on Mobile - Standard Prominent Sizing */
    .hero-model-frame {
        height: auto;
        margin-bottom: 0.2rem;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .hero-model-pedestal {
        width: 175px;
        height: 175px;
    }

    .hero-model-img {
        max-height: 205px;
        width: auto;
        object-fit: contain;
        filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.7));
    }

    /* Mobile Carousel Arrows */
    .carousel-arrow {
        display: flex;
        width: 32px;
        height: 32px;
        font-size: 0.7rem;
        background: rgba(10, 12, 16, 0.75);
        border: 1px solid var(--color-border);
        top: auto;
        bottom: 10px;
        transform: none;
        z-index: 16;
    }

    .carousel-prev {
        left: 8px;
    }

    .carousel-next {
        right: 8px;
    }

    .carousel-indicators-bar {
        bottom: 14px;
    }

    /* Fabric Collection (2 Columns on Mobile) */
    .fabric-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px 8px !important;
        width: 100%;
        box-sizing: border-box;
    }

    .fabric-card {
        border-radius: var(--radius-sm);
        display: flex;
        flex-direction: column;
    }

    .fabric-swatch-view {
        height: 125px;
    }

    .fabric-mill-badge {
        top: 6px;
        left: 6px;
        font-size: 0.55rem;
        padding: 2px 6px;
        letter-spacing: 0.5px;
    }

    .fabric-info {
        padding: 0.65rem 0.55rem;
    }

    .fabric-info h4 {
        font-size: 0.76rem;
        line-height: 1.3;
        min-height: 2rem;
        margin-bottom: 4px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .fabric-meta {
        margin: 4px 0 6px;
        padding-bottom: 4px;
        font-size: 0.6rem;
    }

    .fabric-meta-item span {
        font-size: 0.65rem;
    }

    .fabric-cta {
        margin-top: auto;
        padding-top: 4px;
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .fabric-price {
        font-size: 0.85rem;
    }

    .fabric-cta .btn {
        width: 100%;
        font-size: 0.65rem;
        padding: 3px 6px;
        text-align: center;
        justify-content: center;
    }

    /* Bespoke Collections Category Filter Tabs (Sleek Horizontal Swipe) */
    .category-filter-tabs {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
        gap: 8px !important;
        padding: 4px 1rem 12px !important;
        margin: 0 -1rem 1.8rem !important;
        scrollbar-width: none !important;
        justify-content: flex-start !important;
    }

    .category-filter-tabs::-webkit-scrollbar {
        display: none;
    }

    .filter-tab-btn {
        white-space: nowrap !important;
        flex-shrink: 0 !important;
        padding: 7px 14px !important;
        font-size: 0.78rem !important;
    }

    /* Product Grid (2 Columns on Mobile) */
    .product-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px 8px !important;
        width: 100%;
        box-sizing: border-box;
    }

    .product-card {
        border-radius: var(--radius-sm);
        display: flex;
        flex-direction: column;
    }

    .product-media {
        aspect-ratio: 3/4;
        position: relative;
        overflow: hidden;
        display: block;
        width: 100%;
    }

    .product-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .product-tag {
        top: 6px;
        left: 6px;
        font-size: 0.55rem;
        padding: 2px 6px;
        letter-spacing: 0.5px;
    }

    .product-quick-actions {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        padding: 6px;
        background: linear-gradient(to top, rgba(10, 12, 16, 0.95), rgba(10, 12, 16, 0.4) 70%, transparent);
        display: flex;
        gap: 4px;
        box-sizing: border-box;
        z-index: 4;
    }

    .product-quick-actions .btn {
        padding: 4px 6px;
        font-size: 0.65rem;
    }

    .product-details {
        padding: 0.65rem 0.55rem;
        flex: 1;
        display: flex;
        flex-direction: column;
    }

    .product-category {
        font-size: 0.6rem;
        margin-bottom: 2px;
    }

    .product-title {
        font-size: 0.76rem;
        line-height: 1.3;
        min-height: 2rem;
        margin-bottom: 4px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .product-fabric-line {
        font-size: 0.65rem;
        margin-bottom: 6px;
    }

    .product-price-row {
        margin-top: auto;
        padding-top: 6px;
        gap: 6px;
    }

    .product-price {
        font-size: 0.92rem;
    }

    .product-old-price {
        font-size: 0.7rem;
    }

    /* Fit Engine / Simulator */
    .fit-engine-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        width: 100%;
        box-sizing: border-box;
    }

    .measurement-sliders {
        padding: 1.2rem 1rem !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    .mannequin-visualizer {
        padding: 1.2rem 0.8rem !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
        position: relative !important;
    }

    .mannequin-silhouette {
        max-height: 260px;
        width: auto;
        max-width: 85%;
        margin: 0 auto;
        display: block;
    }

    .fit-readout-pill {
        font-size: 0.65rem !important;
        padding: 3px 8px !important;
    }

    .fit-readout-chest {
        top: 24% !important;
        right: 4% !important;
    }

    .fit-readout-waist {
        top: 48% !important;
        left: 4% !important;
    }

    .fit-readout-inseam {
        bottom: 14% !important;
        right: 6% !important;
    }

    .guarantee-badges-grid {
        grid-template-columns: 1fr !important;
        gap: 0.5rem !important;
        margin-top: 1.2rem !important;
    }

    .guarantee-badge {
        padding: 0.7rem !important;
        display: flex !important;
        align-items: center !important;
        text-align: left !important;
        gap: 10px !important;
    }

    .guarantee-badge i {
        font-size: 1.1rem !important;
        margin-bottom: 0 !important;
        flex-shrink: 0 !important;
    }

    /* Packages / Signature Trunks (2-Column Compact Cards Layout) */
    .packages-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px 8px !important;
        width: 100%;
        box-sizing: border-box;
    }

    .package-card {
        padding: 1.15rem 0.75rem !important;
        border-radius: var(--radius-md) !important;
        display: flex;
        flex-direction: column;
    }

    .package-ribbon {
        font-size: 0.55rem !important;
        padding: 2px 7px !important;
        top: -9px !important;
        white-space: nowrap;
    }

    .package-card h3 {
        font-size: 0.92rem !important;
        line-height: 1.25 !important;
        margin-bottom: 3px !important;
    }

    .package-card p {
        font-size: 0.68rem !important;
        line-height: 1.3 !important;
        margin-bottom: 6px !important;
    }

    .package-price {
        font-size: 1.12rem !important;
        margin: 0.4rem 0 0.6rem !important;
    }

    .package-features {
        gap: 5px !important;
        margin-bottom: 0.85rem !important;
        padding: 0 !important;
    }

    .package-features li {
        font-size: 0.66rem !important;
        line-height: 1.25 !important;
        gap: 5px !important;
    }

    .package-features li i {
        font-size: 0.65rem !important;
    }

    .package-card .btn {
        padding: 0.48rem 0.5rem !important;
        font-size: 0.7rem !important;
        margin-top: auto;
    }

    .package-card.featured {
        order: -1;
        transform: none !important;
        grid-column: span 2;
        padding: 1.35rem 1rem !important;
    }

    /* How It Works Timeline (2-Column Clean Cards Layout) */
    .timeline-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px 8px !important;
        width: 100%;
        box-sizing: border-box;
    }

    .timeline-step {
        padding: 1rem 0.8rem !important;
        border-radius: var(--radius-md) !important;
        background: rgba(255, 255, 255, 0.03) !important;
        border: 1px solid var(--color-border-subtle) !important;
        display: flex;
        flex-direction: column;
    }

    .step-num {
        font-size: 0.92rem !important;
        width: 30px !important;
        height: 30px !important;
        line-height: 30px !important;
        margin-bottom: 6px !important;
        border-radius: 50% !important;
        background: rgba(197, 164, 126, 0.15) !important;
        color: var(--color-gold) !important;
        font-weight: 800 !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .timeline-step h4 {
        font-size: 0.8rem !important;
        font-weight: 700 !important;
        margin-bottom: 4px !important;
        line-height: 1.3 !important;
        color: #FFFFFF !important;
    }

    .timeline-step p {
        font-size: 0.66rem !important;
        line-height: 1.35 !important;
        color: #94A3B8 !important;
        margin: 0 !important;
    }

    /* Consultation Booking Form */
    .consultation-card-wrapper {
        padding: 1.5rem 1rem;
        box-sizing: border-box;
    }

    .service-selection-cards {
        grid-template-columns: 1fr !important;
        gap: 0.75rem !important;
        margin: 1.2rem 0 !important;
    }

    .stylist-grid {
        flex-direction: column !important;
        gap: 0.6rem !important;
    }

    .consultation-modes {
        grid-template-columns: 1fr;
        gap: 10px;
    }

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

    .consultation-form-box {
        padding: 1.5rem 1.2rem;
    }

    .form-control {
        font-size: 16px; /* Prevents auto-zoom in mobile Safari */
        height: 48px;
    }

    /* Modals - Mobile Bottom Sheet */
    .modal-content {
        width: 100% !important;
        max-width: 100vw !important;
        border-radius: 20px 20px 0 0 !important;
        position: fixed !important;
        bottom: 0 !important;
        top: auto !important;
        left: 0 !important;
        right: 0 !important;
        transform: none !important;
        max-height: 88vh !important;
        overflow-y: auto !important;
        padding: 1.8rem 1.4rem !important;
    }
}
