/* ===========================
   COLLECTIONS PAGE STYLES
   =========================== */

/* Hero Section */
.collections-hero {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 120px 20px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.collections-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.collections-hero .hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.collections-hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #d4af37 0%, #f4e4a6 50%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.collections-hero p {
    font-size: 1.25rem;
    color: #aaa;
    line-height: 1.6;
}

/* Collections Section */
.collections-section {
    padding: 80px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

/* Collection Card */
.collection-card {
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    text-decoration: none;
    display: block;
    position: relative;
}

.collection-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.collection-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.6);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
}

.collection-card:hover::before {
    opacity: 1;
}

.collection-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
}

.collection-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.collection-card:hover .collection-image img {
    transform: scale(1.1);
}

.collection-info {
    padding: 30px;
}

.collection-info h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.collection-info p {
    font-size: 1rem;
    color: #aaa;
    line-height: 1.6;
    margin-bottom: 20px;
}

.collection-count,
.collection-price {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    margin-right: 10px;
    margin-top: 10px;
}

.collection-count {
    background: rgba(212, 175, 55, 0.15);
    color: #d4af37;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.collection-price {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.collection-card:hover .collection-price {
    background: rgba(212, 175, 55, 0.2);
    color: #d4af37;
    border-color: rgba(212, 175, 55, 0.4);
}

/* Footer */
.site-footer {
    background: #0a0a0a;
    padding: 40px 20px;
    text-align: center;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.copyright {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .collections-hero h1 {
        font-size: 2.5rem;
    }

    .collections-hero p {
        font-size: 1rem;
    }

    .collections-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .collection-image {
        height: 220px;
    }

    .collection-info h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .collections-hero {
        padding: 100px 15px 60px;
    }

    .collections-hero h1 {
        font-size: 2rem;
    }

    .collections-section {
        padding: 60px 15px;
    }

    .collection-info {
        padding: 20px;
    }
}