/* ============================================
   FASHION PAGE — fashion.css
   ============================================ */

/* Active nav link */
.active-page .link-underline {
    width: 100% !important;
    background-color: var(--accent);
}

/* ============================================
   SEARCH OVERLAY — slides in from right
   ============================================ */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    pointer-events: none;
    visibility: hidden;
}

.search-overlay.open {
    pointer-events: auto;
    visibility: visible;
}

/* Dark background */
.search-overlay-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: 100000;
}

.search-overlay.open .search-overlay-bg {
    opacity: 1;
}

/* Sliding panel */
.search-overlay-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: 420px;
    max-width: 100%;
    height: 100vh;
    background: var(--white, #ffffff);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: -8px 0 30px rgba(0, 0, 0, 0.2);
    z-index: 100001;
}

.search-overlay.open .search-overlay-panel {
    transform: translateX(0);
}

.search-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 24px 18px;
    border-bottom: 1px solid var(--gray, #e0e0e0);
    flex-shrink: 0;
}

.search-panel-logo {
    font-family: 'Samarkan', cursive;
    font-size: 1.8rem;
    color: var(--primary, #6a4c93);
    letter-spacing: 1px;
}

.search-close-btn {
    background: rgba(106, 76, 147, 0.1);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: var(--primary, #6a4c93);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.search-close-btn:hover {
    background: var(--primary, #6a4c93);
    color: white;
    transform: rotate(90deg);
}

/* Search input bar */
.search-box-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 24px;
    border-bottom: 2px solid var(--primary, #6a4c93);
    background: #faf8ff;
    flex-shrink: 0;
}

.search-box-icon {
    color: var(--primary, #6a4c93);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.search-input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    color: var(--dark, #1a1423);
    outline: none;
    padding: 4px 0;
}

.search-input::placeholder {
    color: #bbb;
}

/* Category filter chips */
.search-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 16px 24px;
    border-bottom: 1px solid var(--gray, #e0e0e0);
    align-items: center;
    flex-shrink: 0;
}

.search-cat-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--gray-text, #888);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-right: 4px;
}

.search-cat-btn {
    padding: 5px 14px;
    border-radius: 20px;
    border: 1.5px solid var(--primary, #6a4c93);
    background: transparent;
    color: var(--primary, #6a4c93);
    font-size: 0.78rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
    cursor: pointer;
}

.search-cat-btn:hover,
.search-cat-btn.active {
    background: var(--primary, #6a4c93);
    color: white;
}

/* Results label */
.search-results-label {
    padding: 14px 24px 8px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gray-text, #888);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    flex-shrink: 0;
}

/* Results list */
.search-results {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 0 16px 40px;
    min-height: 0;
    -webkit-overflow-scrolling: touch;
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 8px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f0eaf8;
    text-decoration: none;
    color: var(--dark, #1a1423);
}

.search-result-item:hover {
    background: #f9f5ff;
    transform: translateX(4px);
}

.search-result-img {
    width: 56px;
    height: 56px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid var(--gray, #e0e0e0);
}

.search-result-info {
    flex: 1;
}

.search-result-name {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--dark, #1a1423);
    margin-bottom: 3px;
    font-family: 'Playfair Display', serif;
}

.search-result-artist {
    font-size: 0.78rem;
    color: var(--gray-text, #888);
    margin-bottom: 2px;
}

.search-result-price {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--primary, #6a4c93);
}

.search-result-cat {
    font-size: 0.7rem;
    background: var(--secondary, #f5f0ff);
    color: var(--primary, #6a4c93);
    padding: 2px 8px;
    border-radius: 10px;
    font-weight: 600;
    text-transform: capitalize;
    flex-shrink: 0;
}

.search-no-results {
    text-align: center;
    padding: 40px 20px;
    color: var(--gray-text, #888);
    font-size: 0.95rem;
}

.search-no-results i {
    font-size: 2.5rem;
    color: #ccc;
    display: block;
    margin-bottom: 12px;
}

/* ============================================
   HERO SLIDESHOW
   ============================================ */
.fashion-hero {
    position: relative;
    height: 100vh;
    min-height: 520px;
    overflow: hidden;
}

.slideshow-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: none;
}

/* Each slide */
.slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.08);
    transition: transform 8s ease;
}

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

/* Dark overlay */
.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(26, 20, 35, 0.78) 0%, rgba(26, 20, 35, 0.45) 55%, rgba(26, 20, 35, 0.1) 100%);
    z-index: 1;
}

/* Slide content */
.slide-content {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    max-width: 520px;
    color: white;
    opacity: 0;
    transform: translateY(-40%) translateX(-30px);
    transition: opacity 0.7s ease 0.2s, transform 0.7s ease 0.2s;
}

.slide.is-active .slide-content {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

.slide-tag {
    display: inline-block;
    background: rgba(255, 158, 0, 0.25);
    border: 1px solid rgba(255, 158, 0, 0.6);
    color: var(--accent, #ff9e00);
    padding: 5px 16px;
    border-radius: 30px;
    font-size: 0.78rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.slide-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    line-height: 1.15;
    margin-bottom: 16px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
    color: white;
}

.slide-content h2 span {
    color: var(--accent, #ff9e00);
    font-style: italic;
    font-family: 'Samarkan', cursive;
}

.slide-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    opacity: 0.88;
    margin-bottom: 28px;
    line-height: 1.6;
    max-width: 420px;
}

.slide-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary, #6a4c93);
    color: white;
    padding: 13px 28px;
    border-radius: 30px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.slide-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary, #6a4c93), var(--accent, #ff9e00));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.slide-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.slide-btn:hover::before {
    opacity: 1;
}

.slide-btn i {
    transition: transform 0.3s ease;
}

.slide-btn:hover i {
    transform: translateX(5px);
}

/* Arrows */
.slide-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(6px);
}

.slide-arrow:hover {
    background: var(--primary, #6a4c93);
    border-color: var(--primary, #6a4c93);
    transform: translateY(-50%) scale(1.1);
}

.slide-prev {
    left: 24px;
}

.slide-next {
    right: 24px;
}

/* Dots */
.slide-dots {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
    align-items: center;
}

.slide-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

.slide-dot.active {
    background: var(--accent, #ff9e00);
    width: 26px;
    border-radius: 4px;
}

/* Breadcrumb inside hero */
.slide-breadcrumb {
    position: absolute;
    bottom: 30px;
    right: 30px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-family: 'Montserrat', sans-serif;
    color: rgba(255, 255, 255, 0.65);
}

.slide-breadcrumb a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: color 0.3s ease;
}

.slide-breadcrumb a:hover {
    color: var(--accent, #ff9e00);
}

.slide-breadcrumb i {
    font-size: 0.6rem;
}

.slide-breadcrumb span {
    color: var(--accent, #ff9e00);
    font-weight: 600;
}

/* Progress bar at bottom of hero */
.slide-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: var(--accent, #ff9e00);
    z-index: 10;
    transition: width 0.1s linear;
}

/* ============================================
   FILTER BAR — reuse from collections
   ============================================ */
.filter-bar-section {
    background: white;
    border-bottom: 1px solid #ede8f5;
    position: sticky;
    top: 80px;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.filter-bar-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 14px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.filter-tabs-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--gray-text, #888);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 5px;
}

.filter-tabs {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.filter-tab {
    padding: 6px 16px;
    border-radius: 20px;
    border: 1.5px solid #ddd;
    background: transparent;
    color: #555;
    font-size: 0.8rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.filter-tab:hover {
    border-color: var(--primary, #6a4c93);
    color: var(--primary, #6a4c93);
}

.filter-tab.active {
    background: var(--primary, #6a4c93);
    border-color: var(--primary, #6a4c93);
    color: white;
    box-shadow: 0 3px 10px rgba(106, 76, 147, 0.3);
}

/* ============================================
   SORT WRAP + BEAUTIFUL CUSTOM DROPDOWN
   ============================================ */
.sort-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.products-count {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.82rem;
    color: var(--gray-text, #888);
    font-weight: 600;
    white-space: nowrap;
    background: #f0ebfa;
    padding: 6px 14px;
    border-radius: 20px;
    border: 1.5px solid #e0d6f0;
}

/* Dropdown container */
.custom-sort-dropdown {
    position: relative;
    z-index: 200;
}

/* Trigger button */
.sort-trigger {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: white;
    border: 1.5px solid #d5c8eb;
    border-radius: 25px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--primary, #6a4c93);
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(106, 76, 147, 0.08);
    user-select: none;
}

.sort-trigger:hover {
    background: #f7f3ff;
    border-color: var(--primary, #6a4c93);
    box-shadow: 0 4px 14px rgba(106, 76, 147, 0.15);
    transform: translateY(-1px);
}

.sort-trigger.open {
    background: var(--primary, #6a4c93);
    border-color: var(--primary, #6a4c93);
    color: white;
    box-shadow: 0 4px 14px rgba(106, 76, 147, 0.3);
}

.sort-icon {
    font-size: 0.78rem;
}

.sort-chevron {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
    margin-left: 2px;
}

.sort-trigger.open .sort-chevron {
    transform: rotate(180deg);
}

/* Dropdown menu */
.sort-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 200px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(106, 76, 147, 0.18), 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid #ede6f8;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px) scale(0.97);
    transform-origin: top right;
    transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 300;
}

.sort-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* Menu header */
.sort-menu-header {
    padding: 12px 16px 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    border-bottom: 1px solid #f0ebfa;
}

/* Each option */
.sort-option {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 11px 16px;
    background: transparent;
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark, #1a1423);
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
}

.sort-option i {
    width: 16px;
    font-size: 0.78rem;
    color: var(--primary, #6a4c93);
    opacity: 0.6;
    transition: opacity 0.2s ease;
}

.sort-option:hover {
    background: #f7f3ff;
    color: var(--primary, #6a4c93);
    padding-left: 20px;
}

.sort-option:hover i {
    opacity: 1;
}

.sort-option.active {
    background: linear-gradient(90deg, #f0e8ff, #fdf6ff);
    color: var(--primary, #6a4c93);
    border-left: 3px solid var(--primary, #6a4c93);
}

.sort-option.active i {
    opacity: 1;
    color: var(--primary, #6a4c93);
}

.sort-option:last-child {
    border-bottom: none;
}

/* ============================================
   PRODUCTS GRID — same as collections
   ============================================ */
.collections-grid-section {
    padding: 50px 0 70px;
    background: var(--secondary, #faf8ff);
}

.collections-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 28px;
}

/* Card */
.col-card {
    background: white;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
    transition: all 0.35s ease;
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
    animation: cardFadeIn 0.5s ease forwards;
}

.col-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
}

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

.col-card-img-wrap {
    height: 300px;
    overflow: hidden;
    position: relative;
}

.col-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
    display: block;
}

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

.col-card-badge {
    position: absolute;
    top: 13px;
    left: 13px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.col-card-badge.badge-new {
    background: var(--primary, #6a4c93);
    color: white;
}

.col-card-badge.badge-sale {
    background: #e53935;
    color: white;
}

.col-card-badge.badge-bestseller {
    background: var(--accent, #ff9e00);
    color: var(--dark, #1a1423);
}

.col-card-section-tag {
    position: absolute;
    top: 13px;
    right: 13px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary, #6a4c93);
    font-size: 0.68rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    padding: 3px 10px;
    border-radius: 10px;
    text-transform: capitalize;
}

.col-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 14px 16px;
    background: linear-gradient(to top, rgba(26, 20, 35, 0.85), transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.col-card:hover .col-card-overlay {
    opacity: 1;
}

.col-card-visit {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.7);
    padding: 8px 20px;
    border-radius: 25px;
    transition: all 0.25s ease;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
}

.col-card-visit:hover {
    background: var(--accent, #ff9e00);
    border-color: var(--accent, #ff9e00);
    color: var(--dark, #1a1423);
}

.col-card-body {
    padding: 18px 18px 20px;
}

.col-card-category {
    font-size: 0.72rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    color: var(--accent, #ff9e00);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
    display: block;
}

.col-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.08rem;
    color: var(--dark, #1a1423);
    margin-bottom: 4px;
    font-weight: 700;
    line-height: 1.3;
}

.col-card-artist {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    color: var(--gray-text, #888);
    margin-bottom: 10px;
    display: block;
}

.col-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 4px;
}

.col-card-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary, #6a4c93);
}

.col-card-wishlist {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1.5px solid #e0d6f0;
    background: transparent;
    color: #bbb;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
}

.col-card-wishlist:hover,
.col-card-wishlist.wishlisted {
    background: #fff0f0;
    border-color: #e57373;
    color: #e53935;
}

/* No results */
.no-results {
    text-align: center;
    padding: 80px 20px;
    color: var(--gray-text, #888);
}

.no-results i {
    font-size: 3rem;
    color: #ccc;
    display: block;
    margin-bottom: 16px;
}

.no-results p {
    font-size: 1.1rem;
    margin-bottom: 24px;
    font-family: 'Montserrat', sans-serif;
}

/* ============================================
   CUSTOM ORDER BANNER
   ============================================ */
.custom-banner {
    position: relative;
    background: linear-gradient(135deg, var(--dark, #1a1423) 0%, #2a1e3a 100%);
    padding: 70px 24px;
    text-align: center;
    overflow: hidden;
    color: white;
}

.custom-banner-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}

.custom-tag {
    display: inline-block;
    background: rgba(255, 158, 0, 0.15);
    border: 1px solid rgba(255, 158, 0, 0.4);
    color: var(--accent, #ff9e00);
    padding: 5px 18px;
    border-radius: 30px;
    font-size: 0.78rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.custom-banner-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    margin-bottom: 12px;
    color: white;
}

.custom-banner-text h2 span {
    color: var(--accent, #ff9e00);
    font-family: 'Samarkan', cursive;
}

.custom-banner-text p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    opacity: 0.82;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

.custom-banner-blobs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.12;
    pointer-events: none;
}

/* Footer fix */
.artist-cta-footer {
    margin-top: 25px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.artist-cta-footer p {
    margin-bottom: 4px;
    font-size: 0.85rem;
    opacity: 0.8;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
    .filter-bar-section {
        top: 70px;
    }
    
    .slide-content h2 {
        font-size: 2.4rem;
    }
    
    .slide-content {
        left: 6%;
        max-width: 440px;
    }
    
    .search-overlay-panel {
        width: 380px;
    }
}

@media (max-width: 768px) {
    .fashion-hero {
        height: 90vh;
    }
    
    .slide-content h2 {
        font-size: 1.9rem;
    }
    
    .slide-content p {
        font-size: 0.9rem;
    }
    
    .slide-content {
        max-width: 85%;
        left: 5%;
    }
    
    .slide-arrow {
        width: 38px;
        height: 38px;
    }
    
    .slide-prev {
        left: 12px;
    }
    
    .slide-next {
        right: 12px;
    }
    
    .slide-breadcrumb {
        display: none;
    }
    
    .filter-bar-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .sort-wrap {
        width: 100%;
        justify-content: space-between;
    }
    
    .collections-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 20px;
    }
    
    .custom-banner-text h2 {
        font-size: 1.8rem;
    }
    
    .search-overlay-panel {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .fashion-hero {
        min-height: 480px;
        height: 85vh;
    }
    
    .slide-content h2 {
        font-size: 1.6rem;
    }
    
    .slide-tag {
        font-size: 0.7rem;
        padding: 4px 12px;
    }
    
    .slide-btn {
        padding: 11px 20px;
        font-size: 0.82rem;
    }
    
    .filter-tab {
        padding: 5px 12px;
        font-size: 0.75rem;
    }
    
    .collections-grid {
        grid-template-columns: 1fr;
    }
    
    .col-card-img-wrap {
        height: 260px;
    }
    
    .search-panel-header {
        padding: 16px 20px;
    }
    
    .search-panel-logo {
        font-size: 1.4rem;
    }
    
    .search-box-wrap {
        padding: 14px 20px;
    }
    
    .search-categories {
        padding: 12px 20px;
    }
}