/* Featured Collections Styles */
.featured_collections {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.collections_lane {
    margin-bottom: 40px;
}

.lane_title {
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

.lane_title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: #e74c3c;
}

.collection_tile {
    margin-bottom: 30px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.collection_tile:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.collection_tile a {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.collection_image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

.collection_tile:hover .collection_image img {
    transform: scale(1.05);
}

.collection_overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.collection_tile:hover .collection_overlay {
    opacity: 1;
}

.collection_cta {
    background: #e74c3c;
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

.collection_info {
    padding: 25px;
}

.collection_info h4 {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

.collection_desc {
    color: #7f8c8d;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
}

.price_from {
    color: #e74c3c;
    font-weight: 600;
    font-size: 16px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .featured_collections {
        padding: 60px 0;
    }
    
    .lane_title {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .collection_image {
        height: 200px;
    }
    
    .collection_info {
        padding: 20px;
    }
    
    .collection_info h4 {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .collection_image {
        height: 180px;
    }
    
    .collection_info {
        padding: 15px;
    }
    
    .collection_info h4 {
        font-size: 16px;
    }
    
    .collection_desc {
        font-size: 13px;
    }
}
