/**
 * Evolux Cards - Premium Collections
 * Ultra-clean, high-end design
 */

/* ===== CONTAINER ===== */
.container-wide {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

/* ===== HERO SECTION ===== */
.collections-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
    padding: 120px 40px;
    position: relative;
}

.collections-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(220, 38, 38, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    position: relative;
    z-index: 1;
}

.hero-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #dc2626;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 72px;
    font-weight: 300;
    letter-spacing: -2px;
    color: #1a1a1a;
    margin: 0 0 24px 0;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 18px;
    color: #666;
    line-height: 1.7;
    margin: 0;
    font-weight: 400;
}

/* ===== COLLECTIONS SECTION ===== */
.collections-section {
    padding: 100px 0;
    background: #ffffff;
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.collection-card {
    text-decoration: none;
    display: block;
    background: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.collection-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: #e8e8e8;
}

.collection-image-wrapper {
    position: relative;
    padding-top: 75%;
    overflow: hidden;
    background: #fafafa;
}

.collection-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.collection-card:hover .collection-image {
    transform: scale(1.05);
}

.collection-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.collection-card:hover .collection-overlay {
    opacity: 1;
}

.collection-cta {
    color: white;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 12px 32px;
    border: 2px solid white;
    border-radius: 0;
    transform: translateY(10px);
    transition: transform 0.4s ease;
}

.collection-card:hover .collection-cta {
    transform: translateY(0);
}

.collection-info {
    padding: 32px;
}

.collection-name {
    font-size: 24px;
    font-weight: 500;
    color: #1a1a1a;
    margin: 0 0 12px 0;
    letter-spacing: -0.5px;
}

.collection-description {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin: 0 0 24px 0;
}

.collection-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.collection-count {
    font-size: 13px;
    color: #999;
    font-weight: 500;
}

.collection-arrow {
    font-size: 20px;
    color: #dc2626;
    transition: transform 0.3s ease;
}

.collection-card:hover .collection-arrow {
    transform: translateX(5px);
}

/* ===== FEATURED SECTION ===== */
.featured-section {
    padding: 100px 0;
    background: #fafafa;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 60px;
}

.section-title {
    font-size: 36px;
    font-weight: 300;
    color: #1a1a1a;
    margin: 0;
    letter-spacing: -1px;
}

.section-link {
    font-size: 14px;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 500;
    transition: transform 0.3s ease;
    display: inline-block;
}

.section-link:hover {
    transform: translateX(5px);
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.featured-card {
    background: white;
    border: 1px solid #f0f0f0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.featured-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
}

.featured-link {
    text-decoration: none;
    display: block;
}

.featured-image-wrapper {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
    background: #fafafa;
}

.featured-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.featured-card:hover .featured-image {
    transform: scale(1.05);
}

.featured-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ddd;
    font-size: 48px;
}

.featured-info {
    padding: 24px;
}

.featured-name {
    font-size: 16px;
    font-weight: 500;
    color: #1a1a1a;
    margin: 0 0 12px 0;
    line-height: 1.4;
}

.featured-price {
    display: flex;
    align-items: center;
    gap: 12px;
}

.featured-price .price-old {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
}

.featured-price .price-current {
    font-size: 20px;
    font-weight: 600;
    color: #dc2626;
}

/* ===== TRUST SECTION ===== */
.trust-section {
    padding: 100px 0;
    background: white;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.trust-item {
    text-align: center;
}

.trust-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #dc2626;
}

.trust-title {
    font-size: 18px;
    font-weight: 500;
    color: #1a1a1a;
    margin: 0 0 8px 0;
}

.trust-text {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* ===== FILTERS SECTION ===== */
.filters-section {
    background: var(--bg-light);
    padding: 24px 0;
    border-bottom: 1px solid var(--border-color);
}

.filters-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.filter-form,
.sort-form {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.filter-select,
.sort-select {
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    background: white;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition);
    outline: none;
}

.filter-select:focus,
.sort-select:focus {
    border-color: var(--primary-color);
}

.price-filter {
    display: flex;
    align-items: center;
    gap: 8px;
}

.price-label {
    font-weight: 500;
    color: var(--text-gray);
    font-size: 15px;
    white-space: nowrap;
}

.price-input {
    padding: 12px 12px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    background: white;
    color: var(--text-dark);
    width: 100px;
    transition: var(--transition);
    outline: none;
}

.price-input:focus {
    border-color: var(--primary-color);
}

.price-separator {
    color: var(--text-gray);
    font-weight: 500;
}

.sale-checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 15px;
    color: var(--text-dark);
    font-weight: 500;
    user-select: none;
}

.sale-checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.sort-label {
    font-weight: 500;
    color: var(--text-gray);
    font-size: 15px;
}

.products-info {
    margin-bottom: 24px;
}

.products-count {
    color: var(--text-gray);
    font-size: 15px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .container-wide {
        padding: 0 32px;
    }
    
    .hero-title {
        font-size: 56px;
    }
    
    .collections-grid {
        gap: 32px;
    }
    
    .featured-grid {
        gap: 32px;
    }
}

@media (max-width: 968px) {
    .collections-hero {
        min-height: 50vh;
        padding: 80px 32px;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .collections-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .collections-section {
        padding: 60px 0;
    }
    
    .featured-section {
        padding: 60px 0;
    }
    
    .featured-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .trust-section {
        padding: 60px 0;
    }
    
    .trust-grid {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .container-wide {
        padding: 0 20px;
    }
    
    .filters-bar {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }
    
    .filter-form,
    .sort-form {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-select,
    .sort-select,
    .price-input {
        width: 100%;
    }
    
    .price-filter {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }
    
    .price-separator {
        display: none;
    }
    
    .collections-hero {
        min-height: 40vh;
        padding: 60px 20px;
    }
    
    .hero-label {
        font-size: 11px;
        margin-bottom: 16px;
    }
    
    .hero-title {
        font-size: 36px;
        letter-spacing: -1px;
        margin-bottom: 16px;
    }
    
    .hero-subtitle {
        font-size: 15px;
    }
    
    .collections-section {
        padding: 40px 0;
    }
    
    .collections-grid {
        gap: 24px;
    }
    
    .collection-info {
        padding: 24px;
    }
    
    .collection-name {
        font-size: 20px;
    }
    
    .collection-description {
        font-size: 14px;
        margin-bottom: 16px;
    }
    
    .featured-section {
        padding: 40px 0;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        margin-bottom: 32px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .featured-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .trust-section {
        padding: 40px 0;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 480px) {
    .collections-hero {
        padding: 48px 16px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 14px;
    }
    
    .collections-section {
        padding: 32px 0;
    }
    
    .collections-grid {
        gap: 20px;
    }
    
    .collection-info {
        padding: 20px;
    }
    
    .collection-name {
        font-size: 18px;
        margin-bottom: 8px;
    }
    
    .collection-description {
        font-size: 13px;
    }
    
    .featured-section {
        padding: 32px 0;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .featured-info {
        padding: 20px;
    }
    
    .featured-name {
        font-size: 15px;
    }
    
    .trust-section {
        padding: 32px 0;
    }
    
    .trust-icon {
        width: 56px;
        height: 56px;
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .trust-title {
        font-size: 16px;
    }
    
    .trust-text {
        font-size: 13px;
    }
}

