/* Aromatic Senses Custom Styles */
@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@300;400;500;700;800&display=swap');

body {
    font-family: 'Tajawal', sans-serif;
    scroll-behavior: smooth;
    background-color: #050505;
    color: #ffffff;
    overflow-x: hidden;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: #0f0f0f;
}
::-webkit-scrollbar-thumb {
    background: #C5A028;
    border-radius: 10px;
}

/* Perfume Card Animations */
.perfume-card {
    background: #0f0f0f;
    border: 1px solid #1f1f1f;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.perfume-card:hover {
    transform: translateY(-12px);
    border-color: #C5A028;
    box-shadow: 0 15px 40px -10px rgba(197, 160, 40, 0.2);
}

/* Category Card Animations */
.category-card {
    position: relative;
    overflow: hidden;
    border-radius: 1.5rem;
    cursor: pointer;
    transition: all 0.5s ease;
    border: 1px solid rgba(212, 175, 55, 0.1);
}
.category-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    z-index: 10;
}
.category-card:hover {
    transform: translateY(-5px);
    border-color: #C5A028;
}
.category-card:hover img {
    transform: scale(1.1);
}

/* Marquee Effect */
.marquee-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}
.marquee-content {
    display: inline-flex;
    white-space: nowrap;
    will-change: transform;
}
.animate-marquee {
    animation: marquee-scroll 10s linear infinite;
}
@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(50%); }
}

/* Gold Effects */
.gold-gradient-text {
    background: linear-gradient(to right, #D4AF37, #FBF5B7, #D4AF37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent; /* Fallback */
}

.shimmer-btn {
    background: linear-gradient(90deg, #B08D23, #D4AF37, #B08D23);
    background-size: 200% 100%;
    animation: gold-shimmer 3s infinite linear;
    transition: all 0.3s ease;
}
.shimmer-btn:hover {
    transform: scale(1.02);
    opacity: 0.9;
}
@keyframes gold-shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* Hero Section */
.hero-overlay {
    background: linear-gradient(to top, #050505 5%, transparent 80%);
}

/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
}
.floating-whatsapp:hover {
    transform: scale(1.1) rotate(10deg);
}

/* Form Inputs */
.contact-input {
    background: #0f0f0f;
    border: 1px solid #2a2a2a;
    color: white;
    transition: all 0.3s ease;
}
.contact-input:focus {
    border-color: #C5A028;
    outline: none;
    box-shadow: 0 0 0 2px rgba(197, 160, 40, 0.1);
}

/* Cart Animation */
.cart-count-anim {
    animation: pulse 0.3s ease-out;
}
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.4); }
    100% { transform: scale(1); }
}

/* Slider Content Transitions */
#slider-content {
    transition: opacity 0.5s ease, transform 0.5s ease;
}
