/* Additional styles for collections page */

/* Featured Collections */
.featured-collections {
    padding: 4rem 0;
    background: #f8f9fa;
}

.featured-collections h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #333;
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.collection-card {
    position: relative;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s;
}

.collection-card.large {
    grid-column: span 2;
    height: 400px;
}

.collection-card:hover {
    transform: scale(1.02);
}

.collection-image {
    position: relative;
    width: 100%;
    height: 100%;
}

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

.collection-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 2rem;
    display: flex;
    align-items: flex-end;
}

.collection-content h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: white;
}

.collection-content p {
    margin-bottom: 1rem;
    opacity: 0.9;
}

.collection-stats {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.collection-stats span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.collection-stats i {
    color: #d4af37;
}

/* Seasonal Collections */
.seasonal-collections {
    padding: 4rem 0;
}

.seasonal-collections h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #333;
}

.seasonal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.seasonal-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.seasonal-card:hover {
    transform: translateY(-5px);
}

.seasonal-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

.seasonal-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 500;
    color: white;
}

.seasonal-badge.spring {
    background: #28a745;
}

.seasonal-badge.summer {
    background: #ffc107;
    color: #333;
}

.seasonal-badge.autumn {
    background: #fd7e14;
}

.seasonal-badge.winter {
    background: #6c757d;
}

.seasonal-content {
    padding: 1.5rem;
}

.seasonal-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.seasonal-content p {
    color: #666;
    margin-bottom: 1rem;
}

.seasonal-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.seasonal-features li {
    padding: 0.25rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.9rem;
}

.seasonal-features i {
    color: #28a745;
    font-size: 0.8rem;
}

/* Budget Collections */
.budget-collections {
    padding: 4rem 0;
    background: #f8f9fa;
}

.budget-collections h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #333;
}

.budget-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.budget-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.budget-card:hover {
    transform: translateY(-5px);
}

.budget-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.budget-header h3 {
    font-size: 1.5rem;
    color: #333;
    margin: 0;
}

.budget-icon {
    width: 50px;
    height: 50px;
    background: #d4af37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.budget-content p {
    color: #666;
    margin-bottom: 1rem;
}

.budget-content ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.budget-content li {
    padding: 0.25rem 0;
    color: #666;
    position: relative;
    padding-left: 1rem;
}

.budget-content li:before {
    content: "•";
    color: #d4af37;
    position: absolute;
    left: 0;
}

.budget-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: #666;
}

/* Location Collections */
.location-collections {
    padding: 4rem 0;
}

.location-collections h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #333;
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.location-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.location-card:hover {
    transform: translateY(-5px);
}

.location-image {
    height: 150px;
    overflow: hidden;
}

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

.location-content {
    padding: 1.5rem;
}

.location-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.location-content p {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.location-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
    .collection-card.large {
        grid-column: span 1;
        height: 300px;
    }
    
    .collections-grid {
        grid-template-columns: 1fr;
    }
    
    .seasonal-grid,
    .budget-grid,
    .location-grid {
        grid-template-columns: 1fr;
    }
    
    .collection-overlay {
        padding: 1rem;
    }
    
    .collection-content h3 {
        font-size: 1.5rem;
    }
    
    .collection-stats {
        flex-direction: column;
        gap: 0.5rem;
    }
}
