/* ============================================
   PROMOTIONAL FEATURES - NOIR LUXE THEME
   ============================================ */

/* ===== PROMOTIONAL BANNERS (Option 4) ===== */

.promo-banner {
    position: relative;
    background: linear-gradient(135deg, var(--cta-primary), var(--accent-gold-dim));
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.promo-banner-top {
    position: fixed;
    top: 50px; /* Below header */
    left: 0;
    right: 0;
    border-bottom: 1px solid var(--accent-gold);
}

.promo-banner-bottom {
    position: relative;
    margin: 2rem 0;
    border-radius: 12px;
    border: 1px solid var(--accent-gold);
}

.promo-banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.promo-icon {
    font-size: 1.2rem;
    color: var(--bg-primary);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.promo-text {
    color: var(--bg-primary);
    font-weight: 600;
    font-size: 0.95rem;
    text-align: center;
}

.promo-cta {
    background: var(--bg-primary);
    color: var(--accent-gold);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid var(--accent-gold);
}

.promo-cta:hover {
    background: var(--bg-surface-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.promo-close {
    position: absolute;
    right: 1rem;
    background: rgba(10, 10, 10, 0.3);
    border: none;
    color: var(--bg-primary);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.promo-close:hover {
    background: rgba(10, 10, 10, 0.5);
    transform: rotate(90deg);
}

/* ===== TRUST BADGES STRIP (Option 2) ===== */

.trust-badges-section {
    background: var(--bg-surface);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    padding: 2.5rem 5%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-primary);
    border-radius: 12px;
    border: 1px solid var(--border-emphasis);
    transition: all 0.3s ease;
}

.trust-badge-item:hover {
    transform: translateY(-4px);
    border-color: var(--accent-gold);
    box-shadow: 0 8px 24px rgba(var(--cta-primary-rgb), 0.3);
}

.trust-icon {
    color: var(--accent-gold);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-icon svg {
    filter: drop-shadow(0 2px 4px rgba(212, 175, 112, 0.3));
}

.trust-text {
    flex: 1;
}

.trust-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    line-height: 1;
    margin-bottom: 0.25rem;
    font-family: 'Playfair Display', serif;
}

.trust-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===== PARTNER LOGOS CAROUSEL (Option 1) ===== */

.partners-section {
    background: var(--bg-primary);
    padding: 3rem 5%;
    text-align: center;
    border-bottom: 1px solid var(--border-subtle);
}

.partners-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 400;
}

.partners-carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.partner-logo-wrapper {
    flex-shrink: 0;
    width: 140px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.9;  /* Keep visible, original colors */
    transition: all 0.3s ease;
    filter: none;  /* No grayscale - original colors */
}

.partner-logo-wrapper:hover {
    opacity: 1;  /* Full brightness on hover */
    filter: none;  /* Keep original colors on hover too */
    transform: scale(1.1);
}

.partner-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Scrolling animation */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ===== LIVE ACTIVITY FEED (Option 5) ===== */

.live-activity-feed {
    background: var(--bg-surface);
    border: 1px solid var(--border-emphasis);
    border-radius: 16px;
    padding: 1.5rem;
    max-width: 340px;
    box-shadow: var(--shadow-lg);
}

/* When inside hero section, remove top margin */
.hero-live-feed .live-activity-feed {
    margin-top: 0;
}

.activity-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-subtle);
}

.activity-icon {
    color: #ff6b35;
    font-size: 1.2rem;
    animation: flicker 2s ease-in-out infinite;
}

@keyframes flicker {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
}

.activity-header h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--accent-gold);
    margin: 0;
    letter-spacing: 0.5px;
}

.activity-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-height: 300px;
    overflow-y: auto;
}

.activity-item {
    display: flex;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--bg-primary);
    border-radius: 8px;
    border: 1px solid var(--border-subtle);
    transition: all 0.3s ease;
    animation: fadeInSlide 0.5s ease-out;
}

@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.activity-item:hover {
    border-color: var(--accent-gold-dim);
    background: var(--bg-surface-hover);
}

.activity-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cta-primary), var(--accent-gold-dim));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: var(--bg-primary);
    font-weight: 700;
    flex-shrink: 0;
}

.activity-content {
    flex: 1;
    min-width: 0;
}

.activity-user {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.activity-perfume {
    color: var(--text-secondary);
    font-size: 0.85rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.activity-perfume .fragrance-dot {
    margin-left: 0.25rem;
    flex-shrink: 0;
}

.activity-time {
    font-size: 0.75rem;
    color: var(--text-tertiary);
    margin-top: 0.25rem;
}

/* Custom scrollbar for activity feed */
.activity-list::-webkit-scrollbar {
    width: 4px;
}

.activity-list::-webkit-scrollbar-track {
    background: var(--bg-primary);
    border-radius: 4px;
}

.activity-list::-webkit-scrollbar-thumb {
    background: var(--border-emphasis);
    border-radius: 4px;
}

.activity-list::-webkit-scrollbar-thumb:hover {
    background: var(--accent-gold-dim);
}

/* ===== RESPONSIVE DESIGN ===== */

@media (max-width: 1024px) {
    .trust-badges-section {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .partners-carousel {
        gap: 2rem;
    }
    
    .partner-logo-wrapper {
        width: 120px;
    }
}

@media (max-width: 768px) {
    .promo-banner-content {
        padding: 0.5rem;
    }
    
    .promo-text {
        font-size: 0.85rem;
    }
    
    .promo-cta {
        font-size: 0.85rem;
        padding: 0.4rem 1rem;
    }
    
    .trust-badges-section {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 2rem 5%;
    }
    
    .trust-badge-item {
        padding: 0.75rem;
    }
    
    .trust-number {
        font-size: 1.3rem;
    }
    
    .partners-carousel {
        gap: 1.5rem;
    }
    
    .partner-logo-wrapper {
        width: 100px;
        height: 50px;
    }
    
    .live-activity-feed {
        max-width: 100%;
        margin-top: 1.5rem;
    }
    
    .activity-list {
        max-height: 200px;
    }
}

@media (max-width: 480px) {
    .promo-banner {
        padding: 0.75rem 1rem;
    }
    
    .promo-close {
        right: 0.5rem;
        width: 24px;
        height: 24px;
        font-size: 1.2rem;
    }
    
    .partners-title {
        font-size: 1.2rem;
    }
    
    .partners-carousel {
        gap: 1rem;
    }
    
    .partner-logo-wrapper {
        width: 80px;
        height: 40px;
    }
}
