/* ============================================
   WCH - Wedding Closet Hub
   New Homepage Styles
   ============================================ */

:root {
    --primary: #000000;
    --primary-opacity: rgba(0, 0, 0, 0.8);
    --primary-dark: #333333;
    --text-dark: #1A1A1A;
    --text-muted: #6c757d;
    --text-light: #999;
    --bg-cream: #f9f8f6;
    --bg-light: #f5f5f5;
    --border-color: #e5e5e5;
    --white: #ffffff;
}

/* Typography for new homepage */
.new-homepage h1,
.new-homepage h2,
.new-homepage h3,
.new-homepage h4,
.new-homepage h5,
.new-homepage .serif {
    font-family: 'Futura', sans-serif;
}

.new-homepage {
    font-family: 'Futura', sans-serif;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

body.home-page {
    overflow-x: hidden;
}

/* ============================================
   HEADER — Homepage overrides (solid, not transparent)
   ============================================ */
/* No transparent header anymore — hero section starts below the fixed header */

/* ============================================
   HERO SECTION - FULL WIDTH BACKGROUND
   ============================================ */
.hero-section {
    position: relative;
    height: 100vh;
    max-height: 100vh;
    display: flex;
    background: var(--bg-cream);
    overflow: hidden;
}

/* Full-width background slider */
.hero-section.hero-fullwidth {
    background: transparent;
}

.hero-bg-slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-bg-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
}

.hero-bg-slide.active {
    opacity: 1;
    visibility: visible;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.hero-fullwidth .hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 50px 50px 80px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    text-align: center;
    height: 100%;
    max-height: 100vh;
}

/* White text for fullwidth hero */
.hero-fullwidth .hero-badge .badge-line {
    background: var(--white);
}

.hero-fullwidth .hero-badge .badge-text {
    color: var(--white);
}

.hero-fullwidth .hero-title {
    color: var(--white);
}

.hero-fullwidth .hero-description {
    color: rgba(255, 255, 255, 0.85);
    margin-left: auto;
    margin-right: auto;
}

.hero-fullwidth .hero-social a {
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.hero-fullwidth .hero-social a:hover {
    background: var(--white);
    color: var(--text-dark);
    border-color: var(--white);
}

.hero-fullwidth .hero-slide-nav .slide-dot {
    border-color: rgba(255, 255, 255, 0.5);
}

.hero-fullwidth .hero-slide-nav .slide-dot.active {
    background: var(--white);
    border-color: var(--white);
}

.hero-fullwidth .hero-slide-nav .slide-line {
    background: rgba(255, 255, 255, 0.3);
}

.hero-fullwidth .hero-slide-nav .slide-skip {
    color: rgba(255, 255, 255, 0.7);
}

.hero-fullwidth .hero-slide-nav .slide-skip:hover {
    color: var(--white);
}

/* Original hero content styles */
.hero-content {
    position: relative;
    z-index: 10;
    width: 42%;
    padding: 100px 50px 40px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    max-height: 100vh;
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.badge-line {
    width: 40px;
    height: 1px;
    background: var(--text-dark);
}

.badge-text {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3px;
    color: var(--text-dark);
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(36px, 4vw, 54px);
    font-weight: 600;
    line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: 20px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-family: 'Futura', sans-serif;
}

.hero-description {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 30px;
    max-width: 600px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Futura', sans-serif;
    font-weight: 400;
}

/* Hero Search Bar */
.hero-search {
    display: flex;
    align-items: center;
    background: var(--white);
    border-radius: 50px;
    padding: 6px 6px 6px 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    max-width: 480px;
}

.search-field {
    flex: 1;
    padding: 8px 0;
}

.search-field label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.search-field input,
.search-field select {
    border: none;
    background: transparent;
    font-size: 13px;
    color: var(--text-light);
    width: 100%;
    outline: none;
    padding: 0;
}

.search-field input::placeholder {
    color: var(--text-light);
}

.search-field select {
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.search-divider {
    width: 1px;
    height: 40px;
    background: var(--border-color);
    margin: 0 20px;
}

.search-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    border: none;
    color: var(--white);
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.search-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

/* ============================================
   HERO IMAGES SLIDER
   ============================================ */
.hero-images-container {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    width: 48%;
    max-width: 650px;
    height: 75vh;
    max-height: 600px;
    z-index: 5;
    display: flex;
    gap: 15px;
    padding: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    display: flex;
    gap: 20px;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.hero-img {
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    transition: transform 0.5s ease;
    flex-shrink: 0;
}

.hero-img:hover {
    transform: scale(1.02);
}

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

/* Left column - contains image 1 (top) and image 2 (large) */
.hero-img-1 {
    position: absolute;
    width: calc(50% - 10px);
    height: 25%;
    top: 0;
    left: 0;
    border-radius: 0 0 20px 20px;
}

/* Image 2 - Main large vertical image (left side) */
.hero-img-2 {
    position: absolute;
    width: calc(50% - 10px);
    height: 70%;
    bottom: 0;
    left: 0;
    border-radius: 20px;
}

/* Image 3 - Top right corner, small cropped */
.hero-img-3 {
    position: absolute;
    width: calc(50% - 10px);
    height: 15%;
    top: 0;
    right: 0;
    border-radius: 0 0 0 20px;
}

/* Image 4 - Middle right */
.hero-img-4 {
    position: absolute;
    width: calc(50% - 10px);
    height: 42%;
    top: calc(15% + 15px);
    right: 0;
    border-radius: 20px;
}

/* Image 5 - Bottom right */
.hero-img-5 {
    position: absolute;
    width: calc(50% - 10px);
    height: 38%;
    bottom: 0;
    right: 0;
    border-radius: 20px;
}

/* ============================================
   HERO SOCIAL ICONS - Below search in content area
   ============================================ */
.hero-social {
    display: flex;
    gap: 10px;
    margin-top: 35px;
}

.hero-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 14px;
    transition: all 0.3s;
    background: var(--white);
}

.hero-social a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

/* ============================================
   HERO SLIDE NAVIGATION - RIGHT SIDE
   ============================================ */
.hero-slide-nav {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 100;
}

.slide-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid var(--border-color);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s;
}

.slide-dot.active {
    background: var(--text-dark);
    border-color: var(--text-dark);
}

.slide-dot:hover {
    border-color: var(--text-muted);
}

.slide-line {
    width: 1px;
    height: 80px;
    background: var(--border-color);
    margin: 15px 0;
}

.slide-skip {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    cursor: pointer;
    transition: color 0.3s;
}

.slide-skip:hover {
    color: var(--text-dark);
}

/* ============================================
   SECTION 2: STATS SECTION
   ============================================ */
.stats-section {
    position: relative;
    padding: 80px 0;
    background: var(--white);
}

.stats-bg,
.stats-overlay {
    display: none;
}

.stats-section .container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.stats-grid {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 60px;
}

.stat-item {
    text-align: center;
    color: var(--text-dark);
    flex: 1;
}

.stat-icon {
    margin-bottom: 20px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon svg {
    width: auto;
    height: 60px;
}

.stat-icon svg path {
    fill: var(--text-dark) !important;
}

.stat-number {
    font-family: 'Futura', sans-serif;
    font-size: 42px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.stat-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* ============================================
   SECTION 3: DESIGNERS SLIDER
   ============================================ */
.designers-section {
    padding: 50px 0;
    background: var(--white);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.designers-slider {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0 60px;
}

.designers-viewport {
    flex: 1;
    overflow: hidden;
}

.designers-track {
    display: flex;
    gap: 20px;
    transition: transform 0.4s ease;
    padding: 10px 0;
}

.designer-item {
    flex: 0 0 calc((100% - 100px) / 6);
    min-width: calc((100% - 100px) / 6);
    text-align: center;
}

.designer-item a {
    text-decoration: none;
    display: block;
}

.designer-img {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 0;
    overflow: hidden;
    margin-bottom: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.designer-item:hover .designer-img {
    transform: scale(1.03);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.designer-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    display: block;
}

.slider-arrow {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    font-size: 14px;
    transition: all 0.3s;
    z-index: 10;
}

.slider-arrow:hover {
    background: var(--bg-light);
    border-color: var(--text-muted);
}

.slider-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.slider-arrow-left {
    order: -1;
}

.slider-arrow-right {
    order: 1;
}

/* ============================================
   SECTION 4: FEATURED COLLECTIONS
   ============================================ */
.collections-section {
    padding: 80px 0;
    background: var(--white);
}

.collections-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.collections-title {
    font-size: 32px;
    font-weight: 400;
    margin: 0;
    display: flex;
    gap: 10px;
}

.collections-title .title-italic {
    font-family: 'Futura', sans-serif;
    font-style: italic;
    font-weight: 400;
    color: var(--text-dark);
}

.collections-title .title-bold {
    font-family: 'Futura', sans-serif;
    font-weight: 600;
    color: var(--text-dark);
}

.collections-tabs {
    display: flex;
    gap: 20px;
}

.tab-btn {
    background: none;
    border: none;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    cursor: pointer;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s;
}

.tab-btn:hover {
    color: var(--text-dark);
}

.tab-btn.active {
    color: #000;
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: #000;
}

/* Product Grid */
.collections-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 55px 30px;
}

/* Collections CTA */
.collections-cta {
    text-align: center;
    margin-top: 50px;
    padding-top: 40px;
}

.btn-explore {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #000;
    color: #fff;
    padding: 16px 40px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 0;
    transition: all 0.3s ease;
}

.btn-explore:hover {
    background: #333;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn-explore i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.btn-explore:hover i {
    transform: translateX(4px);
}

/* Product Card */
.product-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
}

.product-image {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    height: 0 !important;
    padding-top: 133.33% !important;
    flex-shrink: 0;
    background: var(--bg-light);
    border: 2px solid #000;
}

.product-image > img {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.4s ease;
}

.product-card:hover .product-image > img {
    transform: scale(1.03);
}

/* Featured Badge */
.featured-badge,
.stillwhite-featured-badge {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    background: #000;
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.featured-badge i,
.stillwhite-featured-badge i {
    font-size: 10px;
}

.product-card.is-featured {
    position: relative;
}

.product-card.is-featured::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 23px;
    background: #000;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s;
}

.product-card.is-featured:hover::before {
    opacity: 1;
}

/* Quick View & Wishlist Buttons */
.product-quickview,
.product-wishlist {
    position: absolute;
    top: 15px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: var(--white);
    color: var(--text-dark);
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    opacity: 0;
}

.product-card:hover .product-quickview,
.product-card:hover .product-wishlist {
    opacity: 1;
}

.product-quickview {
    left: 15px;
}

.product-wishlist {
    right: 15px;
}

.product-quickview:hover,
.product-wishlist:hover {
    background: #000;
    color: #fff;
}

.product-wishlist.active {
    background: #000;
    color: #fff;
}

.product-wishlist.active i {
    font-weight: 900;
}

/* Product Thumbnails */
.product-thumbnails {
    position: absolute;
    bottom: 15px;
    left: 15px;
    display: flex;
    gap: 8px;
}

.product-thumbnails .thumb {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    background: var(--white);
}

.product-thumbnails .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-thumbnails .thumb.more {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 600;
    color: var(--white);
    background: var(--primary);
    border-color: var(--primary);
}

/* Product Info */
.product-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 15px 5px 0;
    gap: 10px;
}

.product-details {
    flex: 1;
    min-width: 0;
}

.product-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    margin: 0 0 4px;
    line-height: 1.3;
    text-decoration: none !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-meta {
    font-size: 12px;
    color: var(--text-muted);
    margin: 0;
}

.product-price {
    text-align: right;
    white-space: nowrap;
}

.product-price .price {
    font-size: 15px;
    font-weight: 400;
    color: var(--primary);
}

.product-price .currency {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 400;
}

/* Product Card Link - Makes entire card clickable */
.product-card-link,
.product-card-link:hover,
.product-card-link:focus,
.product-card-link:visited {
    display: flex;
    flex-direction: column;
    flex: 1;
    text-decoration: none !important;
    color: inherit !important;
}

.product-card a,
.product-card a:hover,
.product-card a:focus,
.product-card a:visited {
    text-decoration: none !important;
    color: inherit !important;
}

/* Reduced Badge */
.reduced-badge {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    background: #500809;
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 8px rgba(80, 8, 9, 0.4);
}

/* Reduced card border glow */
.product-card.is-reduced {
    position: relative;
}

.product-card.is-reduced::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 23px;
    background: #500809;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s;
}

.product-card.is-reduced:hover::before {
    opacity: 1;
}

/* Sold Badge */
.sold-badge {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    background: #333;
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-card.is-sold .product-image > img {
    opacity: 0.6;
}

/* Original / Strikethrough Price */
.product-price .original-price {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 400;
}

.product-price .original-price del {
    text-decoration: line-through;
}

/* Wishlist button positioned over the card link */
.product-card > .product-wishlist {
    z-index: 5;
}

/* ============================================
   SECTION 5: BUY, SELL AND SAVE
   ============================================ */
.cta-section {
    background: var(--primary);
    padding: 60px 40px 0;
    overflow: hidden;
}

.cta-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    gap: 40px;
}

.cta-left {
    flex: 1;
}

.cta-title {
    font-size: 32px;
    margin: 0 0 15px;
    line-height: 1.2;
}

.cta-title .title-italic {
    font-family: 'Futura', sans-serif;
    font-style: italic;
    font-weight: 400;
    color: var(--white);
}

.cta-title .title-bold {
    font-family: 'Futura', sans-serif;
    font-weight: 600;
    color: var(--white);
    font-size: 36px;
}

.cta-description {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 280px;
    line-height: 1.6;
    margin: 0;
}

.cta-right {
    text-align: right;
    max-width: 300px;
}

.cta-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0 0 10px;
}

.cta-link {
    font-size: 13px;
    color: var(--white);
    text-decoration: underline;
    font-weight: 500;
    transition: opacity 0.3s;
}

.cta-link:hover {
    opacity: 0.8;
    color: var(--white);
}

/* CTA Gallery */
.cta-gallery {
    display: flex;
    gap: 15px;
    height: 500px;
}

.gallery-col {
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex: 1;
}

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    flex: 1;
    min-height: 0;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-item.tall {
    flex: 1.5;
}

.gallery-item.extra-tall {
    flex: 1;
    height: 100%;
}

.gallery-item.wide {
    flex: none;
    height: 60%;
}

.gallery-row {
    display: flex;
    gap: 15px;
    flex: 1;
}

.gallery-row .gallery-item {
    flex: 1;
}

.gallery-col-3 {
    flex: 1.5;
}

.gallery-col-6 {
    flex: 0.8;
}

/* ============================================
   SECTION 6: DESIGNER WEARS
   ============================================ */
.designer-wears-section {
    padding: 80px 0;
    background: var(--white);
}

.designer-wears-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 50px;
    gap: 40px;
}

.designer-wears-title {
    font-size: 32px;
    font-weight: 400;
    margin: 0;
    display: flex;
    gap: 10px;
}

.designer-wears-title .title-italic {
    font-family: 'Futura', sans-serif;
    font-style: italic;
    font-weight: 400;
    color: var(--text-dark);
}

.designer-wears-title .title-bold {
    font-family: 'Futura', sans-serif;
    font-weight: 600;
    color: var(--text-dark);
}

.designer-wears-right {
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

.designer-wears-text {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 350px;
    margin: 0;
}

.view-all-link {
    color: var(--text-dark);
    font-weight: 500;
    text-decoration: underline;
}

.view-all-link:hover {
    color: var(--primary);
}

.designer-wears-nav {
    display: flex;
    gap: 10px;
}

.nav-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    font-size: 14px;
    transition: all 0.3s;
}

.nav-arrow:hover {
    background: var(--bg-light);
    border-color: var(--text-muted);
}

/* Designer Wears Slider - 2 Images visible */
.designer-wears-slider {
    overflow: hidden;
}

.designer-wears-track {
    display: flex;
    gap: 30px;
    transition: transform 0.4s ease;
}

.designer-wear-card {
    flex: 0 0 calc((100% - 30px) / 2);
    min-width: calc((100% - 30px) / 2);
    text-align: center;
}

.designer-wear-image {
    aspect-ratio: 4/5;
    border-radius: 30px;
    overflow: hidden;
    border: 8px solid #e8ddd4;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.designer-wear-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.designer-wear-card:hover .designer-wear-image {
    transform: scale(1.01);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.designer-wear-name {
    font-family: 'Futura', sans-serif;
    font-size: 22px;
    font-weight: 500;
    color: var(--text-dark);
    display: block;
    margin-top: 20px;
}

/* ============================================
   SECTION 7: FIND PERFECT DRESS CTA
   ============================================ */
.find-dress-section {
    position: relative;
    padding: 120px 40px;
    text-align: center;
    overflow: hidden;
}

.find-dress-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.find-dress-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(80, 8, 9, 0.88);
    z-index: 2;
}

.find-dress-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    margin: 0 auto;
}

.find-dress-title {
    font-family: 'Futura', sans-serif;
    font-size: 48px;
    font-weight: 400;
    color: var(--white);
    line-height: 1.2;
    margin: 0 0 40px;
    letter-spacing: 2px;
}

.find-dress-btn {
    display: inline-block;
    padding: 16px 40px;
    background: var(--white);
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.find-dress-btn:hover {
    background: var(--text-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* ============================================
   FOOTER
   ============================================ */
.wch-footer {
    background: #1a1a1a;
    color: var(--white);
    padding: 60px 0 0;
}

.wch-footer .footer-main {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 60px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.wch-footer .footer-logo {
    margin-bottom: 20px;
}

.wch-footer .footer-links {
    display: flex;
    gap: 60px;
}

.wch-footer .footer-col {
    flex: 1;
}

.wch-footer .footer-title {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0 0 20px;
    text-transform: uppercase;
}

.wch-footer .footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wch-footer .footer-menu li {
    margin-bottom: 12px;
}

.wch-footer .footer-menu a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
}

.wch-footer .footer-menu a:hover {
    color: var(--white);
}

.wch-footer .footer-newsletter {
    text-align: right;
}

.wch-footer .newsletter-form {
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 8px;
}

.wch-footer .newsletter-form input {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 13px;
    outline: none;
}

.wch-footer .newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.wch-footer .newsletter-form button {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    font-size: 14px;
    padding: 5px;
    transition: color 0.3s;
}

.wch-footer .newsletter-form button:hover {
    color: var(--white);
}

.wch-footer .footer-social {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    padding: 30px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.wch-footer .footer-social a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 12px;
    transition: color 0.3s;
}

.wch-footer .footer-social a:hover {
    color: var(--white);
}

.wch-footer .social-divider {
    color: rgba(255, 255, 255, 0.3);
    font-size: 12px;
}

.wch-footer .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
}

.wch-footer .footer-copyright {
    flex: 1;
}

.wch-footer .footer-legal {
    display: flex;
    gap: 30px;
}

.wch-footer .footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s;
}

.wch-footer .footer-legal a:hover {
    color: var(--white);
}

.wch-footer .footer-credit {
    flex: 1;
    text-align: right;
}

.wch-footer .footer-credit strong {
    color: var(--white);
    font-weight: 600;
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */
@media (max-width: 1400px) {
    .hero-content {
        width: 44%;
        padding: 90px 40px 30px 60px;
    }

    .hero-images-container {
        right: 50px;
        width: 48%;
        max-width: 580px;
    }
}

@media (max-width: 1200px) {
    .hero-content {
        width: 46%;
        padding: 80px 30px 30px 50px;
    }

    .hero-images-container {
        right: 30px;
        width: 46%;
        max-width: 500px;
        height: 70vh;
    }

    .hero-description {
        font-size: 13px;
    }
}

@media (max-width: 1200px) {
    /* Designers Section - 5 items */
    .designer-item {
        flex: 0 0 calc((100% - 80px) / 5);
        min-width: calc((100% - 80px) / 5);
    }

    /* Collections Section - 3 columns */
    .collections-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 45px 25px;
    }

    .collections-title {
        font-size: 28px;
    }

    /* CTA Section */
    .cta-gallery {
        height: 400px;
    }

    .cta-title {
        font-size: 28px;
    }

    .cta-title .title-bold {
        font-size: 32px;
    }

    /* Designer Wears */
    .designer-wears-track {
        gap: 25px;
    }

    .designer-wear-card {
        flex: 0 0 calc((100% - 25px) / 2);
        min-width: calc((100% - 25px) / 2);
    }

    .designer-wear-image {
        border-radius: 25px;
        border-width: 6px;
    }

    .designer-wear-name {
        font-size: 20px;
    }

    /* Find Dress Section */
    .find-dress-section {
        padding: 100px 30px;
    }

    .find-dress-title {
        font-size: 40px;
    }

    /* Footer */
    .wch-footer .footer-main {
        gap: 40px;
    }

    .wch-footer .footer-links {
        gap: 40px;
    }
}

@media (max-width: 991px) {
    /* Stats Section */
    .stats-grid {
        gap: 50px;
    }

    .stat-number {
        font-size: 36px;
    }

    /* Designers Section - 4 items */
    .designers-slider {
        padding: 0 40px;
    }

    .designer-item {
        flex: 0 0 calc((100% - 60px) / 4);
        min-width: calc((100% - 60px) / 4);
    }

    /* Collections Section - 2 columns */
    .collections-section {
        padding: 60px 0;
    }

    .collections-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .collections-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 48px 12px;
    }

    .product-quickview,
    .product-wishlist {
        opacity: 1;
    }

    /* CTA Section */
    .cta-section {
        padding: 40px 20px 0;
    }

    .cta-header {
        flex-direction: column;
        gap: 20px;
    }

    .cta-right {
        text-align: left;
        max-width: none;
    }

    .cta-gallery {
        height: 350px;
    }

    .gallery-col-5,
    .gallery-col-6 {
        display: none;
    }

    /* Designer Wears */
    .designer-wears-section {
        padding: 60px 0;
    }

    .designer-wears-header {
        flex-direction: column;
        gap: 20px;
    }

    .designer-wears-right {
        width: 100%;
        justify-content: space-between;
    }

    .designer-wears-track {
        gap: 20px;
    }

    .designer-wear-card {
        flex: 0 0 calc((100% - 20px) / 2);
        min-width: calc((100% - 20px) / 2);
    }

    .designer-wear-image {
        border-radius: 20px;
        border-width: 5px;
    }

    .designer-wear-name {
        font-size: 18px;
        margin-top: 15px;
    }

    .nav-arrow {
        width: 40px;
        height: 40px;
        font-size: 12px;
    }

    /* Find Dress Section */
    .find-dress-section {
        padding: 80px 20px;
    }

    .find-dress-title {
        font-size: 32px;
        letter-spacing: 1px;
    }

    .find-dress-btn {
        padding: 14px 30px;
        font-size: 13px;
    }

    /* Footer */
    .wch-footer .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .wch-footer .footer-brand {
        text-align: center;
    }

    .wch-footer .footer-links {
        justify-content: space-between;
    }

    .wch-footer .footer-newsletter {
        text-align: left;
    }

    .wch-footer .footer-bottom {
        flex-wrap: wrap;
        gap: 15px;
    }

    .wch-footer .footer-copyright,
    .wch-footer .footer-credit {
        flex: none;
        width: 100%;
        text-align: center;
    }

    .wch-footer .footer-legal {
        width: 100%;
        justify-content: center;
    }

    .hero-section {
        flex-direction: column;
        min-height: auto;
        height: 80vh;
        max-height: 80vh;
    }

    .hero-fullwidth .hero-content {
        padding: 40px 30px 60px;
    }

    .hero-content {
        width: 100%;
        padding: 120px 30px 40px;
        text-align: center;
    }

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

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-search {
        margin: 0 auto;
    }

    .hero-images-container {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: 100%;
        max-width: none;
        height: 500px;
        max-height: none;
        padding: 20px;
        margin: 0 auto;
    }

    .hero-slide {
        padding: 0 20px;
    }

    .hero-img-1,
    .hero-img-3 {
        display: none;
    }

    .hero-img-2 {
        width: 45%;
        height: 100%;
        left: 5%;
        top: 0;
        bottom: auto;
    }

    .hero-img-4 {
        width: 45%;
        height: 48%;
        right: 5%;
        top: 0;
    }

    .hero-img-5 {
        width: 45%;
        height: 48%;
        right: 5%;
        bottom: 0;
        top: auto;
    }

    .hero-slide-nav {
        right: 20px;
    }

    .hero-social {
        justify-content: center;
        margin-top: 40px;
    }
}

@media (max-width: 767px) {
    /* Hero Section - full height on mobile (portrait images served via media query) */
    .hero-section {
        height: 100vh;
        height: 100dvh;
        max-height: 100vh;
        max-height: 100dvh;
    }

    .hero-fullwidth .hero-content {
        padding: 30px 20px 50px;
    }

    /* Stats Section */
    .stats-section {
        padding: 40px 0;
    }

    .stats-grid {
        flex-direction: column;
        gap: 30px;
    }

    .stat-number {
        font-size: 32px;
    }

    .stat-icon {
        height: 50px;
    }

    .stat-icon svg {
        transform: scale(0.8);
    }

    /* Designers Section - 3 items */
    .designers-section {
        padding: 20px 0;
        border-bottom: none;
        overflow: hidden;
    }

    .designers-slider {
        padding: 0 20px;
        gap: 10px;
    }

    .designers-track {
        gap: 15px;
    }

    .designer-item {
        flex: 0 0 calc((100% - 30px) / 3);
        min-width: calc((100% - 30px) / 3);
    }

    .designer-img {
        border-radius: 0;
    }

    .designer-name {
        font-size: 12px;
    }

    .slider-arrow {
        width: 36px;
        height: 36px;
        font-size: 12px;
    }

    /* Collections Section - Mobile */
    .collections-section {
        padding: 20px 0 50px;
    }

    .collections-section .container-fluid.px-4 {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }

    .collections-title {
        font-size: 24px;
    }

    .collections-grid {
        gap: 48px 12px;
    }

    .product-image {
        border-radius: 0;
        height: 0 !important;
        padding-top: 150% !important;
    }

    .product-quickview,
    .product-wishlist {
        width: 32px;
        height: 32px;
        font-size: 12px;
        top: 10px;
    }

    .product-quickview {
        left: 10px;
    }

    .product-wishlist {
        right: 10px;
    }

    .product-thumbnails {
        bottom: 10px;
        left: 10px;
        gap: 5px;
    }

    .product-thumbnails .thumb {
        width: 28px;
        height: 28px;
    }

    .product-thumbnails .thumb.more {
        font-size: 9px;
    }

    .product-name {
        font-size: 13px;
    }

    .product-meta {
        font-size: 11px;
    }

    .product-price .price {
        font-size: 14px;
    }

    /* CTA Section - Mobile */
    .cta-section {
        padding: 30px 15px 0;
    }

    .cta-title {
        font-size: 22px;
    }

    .cta-title .title-bold {
        font-size: 26px;
    }

    .cta-gallery {
        height: 280px;
        gap: 10px;
    }

    .gallery-col {
        gap: 10px;
    }

    .gallery-col-3,
    .gallery-col-4 {
        display: none;
    }

    .gallery-item {
        border-radius: 10px;
    }

    /* Designer Wears - Mobile */
    .designer-wears-section {
        padding: 50px 0;
    }

    .designer-wears-title {
        font-size: 24px;
    }

    .designer-wears-text {
        font-size: 12px;
        max-width: 180px;
    }

    .designer-wears-track {
        gap: 15px;
    }

    .designer-wear-card {
        flex: 0 0 100%;
        min-width: 100%;
    }

    .designer-wear-image {
        border-radius: 15px;
        border-width: 4px;
    }

    .designer-wear-name {
        font-size: 16px;
        margin-top: 12px;
    }

    .nav-arrow {
        width: 36px;
        height: 36px;
        font-size: 11px;
    }

    /* Find Dress - Mobile */
    .find-dress-section {
        padding: 60px 15px;
    }

    .find-dress-title {
        font-size: 26px;
        margin-bottom: 30px;
        letter-spacing: 0.5px;
    }

    .find-dress-btn {
        padding: 12px 25px;
        font-size: 12px;
    }

    /* Footer - Mobile */
    .wch-footer {
        padding: 40px 0 0;
    }

    .wch-footer .footer-main {
        gap: 30px;
        padding-bottom: 30px;
    }

    .wch-footer .footer-links {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }

    .wch-footer .footer-social {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        padding: 20px 0;
    }

    .wch-footer .footer-bottom {
        padding: 20px 0;
        font-size: 10px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-search {
        flex-direction: column;
        border-radius: 20px;
        padding: 20px;
        gap: 15px;
    }

    .search-field {
        width: 100%;
    }

    .search-divider {
        width: 100%;
        height: 1px;
        margin: 0;
    }

    .search-btn {
        width: 100%;
        border-radius: 25px;
        height: 50px;
    }

    .hero-images-container {
        height: 400px;
    }

    .hero-slide-nav {
        display: none;
    }
}

@media (max-width: 576px) {
    .hero-content {
        padding: 100px 20px 30px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-description {
        font-size: 14px;
    }

    /* Old nav-link override removed — new header has own responsive styles */

    .hero-social a {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }

    .hero-images-container {
        height: 350px;
    }

    .hero-img-2 {
        width: 48%;
        left: 2%;
    }

    .hero-img-4,
    .hero-img-5 {
        width: 48%;
        right: 2%;
    }
}

/* Height-based adjustments for smaller screens */
@media (max-height: 800px) {
    .hero-content {
        padding-top: 80px;
        padding-bottom: 20px;
    }

    .hero-title {
        font-size: clamp(32px, 3.5vw, 46px);
        margin-bottom: 15px;
    }

    .hero-badge {
        margin-bottom: 15px;
    }

    .hero-description {
        margin-bottom: 20px;
        font-size: 13px;
        line-height: 1.6;
    }

    .hero-social {
        margin-top: 25px;
    }

    .hero-images-container {
        height: 70vh;
        max-height: 500px;
    }
}

@media (max-height: 700px) {
    .hero-content {
        padding-top: 70px;
        padding-bottom: 15px;
    }

    .hero-title {
        font-size: clamp(28px, 3vw, 40px);
        margin-bottom: 12px;
    }

    .hero-description {
        margin-bottom: 15px;
        font-size: 12px;
    }

    .hero-social {
        margin-top: 20px;
    }

    .hero-social a {
        width: 36px;
        height: 36px;
        font-size: 13px;
    }

    .hero-images-container {
        height: 65vh;
        max-height: 420px;
    }
}
