/* Collections Page Styles */

.collections-page {
    padding: 60px 0;
    font-family: 'Outfit', sans-serif;
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.collection-card {
    display: block;
    text-decoration: none;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    position: relative;
    border: 1px solid transparent;
}

.collection-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: #f0f0f0;
}

.collection-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 100%;
    /* 1:1 Aspect Ratio */
    overflow: hidden;
}

.collection-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.collection-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    color: #666;
    font-size: 0.9rem;
}

.collection-content {
    padding: 24px;
    text-align: center;
    background: #fff;
    position: relative;
    z-index: 2;
}

.collection-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
    transition: color 0.3s ease;
}

.collection-card:hover .collection-title {
    color: #bfa885;
    /* Gold/Primary accent color */
}

.collection-count {
    font-size: 0.9rem;
    color: #888;
    font-weight: 400;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .collections-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .collections-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .collections-page {
        padding: 40px 0;
    }

    .collection-content {
        padding: 16px;
    }
}