/* ============================================
   Spray Page Additional Styles
   ============================================ */

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* legacy placeholder for text logo; hidden when using image */
.logo-circle {
    display: none;
}

/* new logo image styling */
.logo-image {
    max-width: 120px;
    height: auto;
    display: block;
}

.logo-text {
    color: var(--primary);
    font-weight: bold;
    font-size: 1.125rem;
    display: none;
}

@media (min-width: 640px) {
    .logo-text {
        display: inline;
    }
}
/* Category Badges */
.category-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 0.7rem;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(52, 152, 219, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.category-badge.luxury-badge {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    box-shadow: 0 2px 8px rgba(231, 76, 60, 0.3);
}

.category-badge.ultra-badge {
    background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
    box-shadow: 0 2px 8px rgba(155, 89, 182, 0.3);
}

/* Collection Categories */
.collection-category {
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.collection-category:last-child {
    border-bottom: none;
}

.collection-title {
    font-size: 1.75rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

@media (min-width: 768px) {
    .collection-title {
        font-size: 2rem;
    }
}

.collection-desc {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 0.95rem;
    max-width: 600px;
}

/* Spray Collections Grid */
.spray-collections {
    background-color: white;
}

.spray-collections .collection-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .spray-collections .collection-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .spray-collections .collection-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Product Card Pricing for Spray */
.spray-collections .product-price {
    font-size: 0.8rem;
    line-height: 1.4;
    color: var(--accent);
    font-weight: 500;
}

@media (min-width: 768px) {
    .spray-collections .product-price {
        font-size: 0.85rem;
    }
}

/* Enhanced Hover Effects for Spray Cards */
.spray-collections .product-card {
    background-color: black;
}

.spray-collections .product-card:hover {
    box-shadow: 0 12px 32px rgba(212, 175, 55, 0.25);
}

/* Responsive adjustments for mobile */
@media (max-width: 640px) {
    .collection-title {
        font-size: 1.25rem;
    }

    .collection-desc {
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
    }

    .spray-collections .collection-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .spray-collections .product-price {
        font-size: 0.7rem;
    }

    .collection-category {
        margin-bottom: 2.5rem;
        padding-bottom: 2rem;
    }
}

/* Animation for collection reveal */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.collection-category {
    animation: slideInUp 0.6s ease-out;
}

.collection-category:nth-child(2) {
    animation-delay: 0.1s;
}

.collection-category:nth-child(3) {
    animation-delay: 0.2s;
}

.collection-category:nth-child(4) {
    animation-delay: 0.3s;
}