.collection-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
}

.collection-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.collection-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent 50%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--space-lg);
    color: var(--color-text-light);
}

.collection-overlay h3 {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-xs);
    color: var(--color-text-light);
}

.collection-overlay p {
    font-size: var(--text-sm);
    opacity: 0.8;
}

.product-card {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.product-card .product-image {
    position: relative;
    aspect-ratio: 1/1;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.product-card .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-info h3 {
    font-weight: 700;
    font-size: var(--text-base);
    color: var(--color-text-dark);
}

.product-tag {
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-secondary);
    margin-bottom: var(--space-xs);
}

.product-tag.moss {
    color: var(--color-primary);
}

.product-price {
    font-size: var(--text-sm);
    color: var(--color-muted);
}