/* --- COLLECTIONS PAGE --- */

.collections-wrapper {
    padding: 160px 0 100px;
    background: #ffffff;
    min-height: 100vh;
}

.collections-header {
    text-align: center;
    margin-bottom: 80px;
}

.collections-header h1 {
    font-size: 3.5rem;
    color: #0f172a;
    font-weight: 800;
    margin: 20px 0;
}

.collections-header p {
    color: #64748b;
    font-size: 16px;
}

.badge-white {
    display: inline-block;
    background: linear-gradient(90deg, #ff3b30, #34c759, #007aff);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.text-red {
    background: linear-gradient(90deg, #ff3b30, #34c759, #007aff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* --- THE COLLECTION GRID --- */

.collections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.collection-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 32px;
    padding: 30px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 280px;
    position: relative;
    overflow: hidden;
}

.card-text {
    position: relative;
    z-index: 2;
}

.card-text h2 {
    font-size: 1.8rem;
    color: #1e293b;
    margin: 10px 0;
    font-weight: 700;
}

.col-label {
    font-size: 12px;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.col-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1e293b;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.card-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 40%, rgba(255,255,255,0.4) 50%, transparent 60%);
    transform: rotate(45deg);
    transition: all 0.5s;
    opacity: 0;
}

.collection-card:hover .card-shine {
    animation: shine 0.8s ease-in-out;
}

@keyframes shine {
    0% { transform: translateX(-100%) rotate(45deg); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateX(100%) rotate(45deg); opacity: 0; }
}


/* --- RGB ACCENT HOVERS --- */

.card-blue:hover {
    border-color: #007aff;
    background: #f0f7ff;
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 122, 255, 0.15);
}

.card-blue:hover .col-icon {
    background: #007aff;
    color: white;
}

.card-red:hover {
    border-color: #ff3b30;
    background: #fff5f5;
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 59, 48, 0.15);
}

.card-red:hover .col-icon {
    background: #ff3b30;
    color: white;
}

.card-green:hover {
    border-color: #34c759;
    background: #f0fdf4;
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(52, 199, 89, 0.15);
}

.card-green:hover .col-icon {
    background: #34c759;
    color: white;
}

.card-yellow:hover {
    border-color: #f59e0b;
    background: #fffbeb;
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(245, 158, 11, 0.15);
}

.card-yellow:hover .col-icon {
    background: #f59e0b;
    color: white;
}

.card-pink:hover {
    border-color: #ec4899;
    background: #fdf2f8;
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(236, 72, 153, 0.15);
}

.card-pink:hover .col-icon {
    background: #ec4899;
    color: white;
}











