/* Special Collections Section CSS */

.special-collections-section {
    padding: 80px 0;
    background: #FFFFFF;
}

.special-collections-container {
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 40px;
    padding-right: 40px;
}

.special-collections-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1425px;
    margin: 0 auto;
}

.collection-card {
    border-radius: 15px;
    padding: 35px;
    flex: 1;
    min-width: 320px;
    max-width: 450px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid transparent;
}

.collection-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

/* Card Background Tints */
.collection-premium {
    background-color: #FFF7E6; /* Light orange tint */
}

.collection-budget {
    background-color: #E6F7F0; /* Light green tint */
}

.collection-dateless {
    background-color: #FFE6EB; /* Light pink tint */
}

.collection-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.collection-premium .collection-icon { background: #FFEBBF; }
.collection-budget .collection-icon { background: #BFF0E0; }
.collection-dateless .collection-icon { background: #FFCFD8; }

.collection-icon i {
    font-size: 20px;
    color: #000000;
}

.collection-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 15px;
}

.collection-card p {
    font-size: 16px;
    color: #4B5563;
    line-height: 1.6;
    margin-bottom: 30px;
    flex-grow: 1;
}

/* Button Styling */
.collection-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 25px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none !important;
    transition: all 0.3s;
    border: 1px solid transparent;
}

.btn-yellow {
    background: #FFCC00;
    color: #000000;
}

.btn-white {
    background: #FFFFFF;
    color: #000000;
    border: 1px solid #E5E7EB;
}

.collection-btn i {
    font-size: 14px;
}

.collection-btn:hover {
    filter: brightness(0.95);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* Responsive */
@media (max-width: 768px) {
    .special-collections-grid {
        gap: 20px;
    }
    
    .collection-card {
        min-width: 100%;
        max-width: 100%;
    }
}
