/* Romantic & Vibrant Theme Variables */
:root {
    --primary-red: #E63946;
    --primary-dark: #C92A37;
    --deep-purple: #6A0572;
    --warm-gold: #D4AF37; /* More luxurious gold */
    --soft-pink: #F8E1E7;
    --dark-bg: #121212;
    --darker-bg: #0A0A0A;
    --text-dark: #1F1F1F;
    --text-light: #F9F9F9;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
}

/* Global Styles */
body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: #FAFAFA;
    padding-top: 0;
    -webkit-font-smoothing: antialiased;
}

.font-heading {
    font-family: var(--font-heading);
}

.italic-serif {
    font-family: var(--font-heading);
    font-style: italic;
    font-weight: 400;
}

.ls-wider {
    letter-spacing: 2px;
}

.line-height-tight {
    line-height: 1.1;
}

.bg-darker {
    background-color: var(--darker-bg);
}

.text-gold {
    color: var(--warm-gold);
}

.bg-gold {
    background-color: var(--warm-gold);
}

.text-purple {
    color: var(--deep-purple);
}

.bg-purple-subtle {
    background-color: rgba(106, 5, 114, 0.1);
}

.bg-primary-subtle {
    background-color: rgba(230, 57, 70, 0.1);
}

.bg-success-subtle {
    background-color: rgba(25, 135, 84, 0.1);
}

.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary-red), #ff4d5a);
}

.bg-gradient-purple {
    background: linear-gradient(135deg, var(--deep-purple), #93129e);
}

.bg-gradient-dark {
    background: linear-gradient(135deg, #2c2c2c, #000000);
}

/* Navbar Enhancements */
.custom-navbar {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.custom-navbar .navbar-brand {
    font-family: var(--font-body);
    font-size: 1.6rem;
    color: var(--text-dark) !important;
}

.custom-navbar .nav-link {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark) !important;
    position: relative;
}

.custom-navbar .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-red);
    transition: width 0.3s ease;
}

.custom-navbar .nav-link:hover::after {
    width: 20px;
}

/* Sexy Gradients & Blurs */
.filter-blur {
    filter: blur(60px);
}
.blur-xl {
    filter: blur(40px);
}
.drop-shadow-md {
    filter: drop-shadow(0 15px 20px rgba(0,0,0,0.1));
}
.shadow-text {
    text-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.bg-gradient-to-r {
    background: linear-gradient(to right, rgba(26,26,29,0.95), transparent);
}

/* Typography Overrides */
h1, h2, h3, h4, h5, h6 {
    color: var(--text-dark);
}

/* Animations */
.fade-up-element {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-up-element.visible {
    opacity: 1;
    transform: translateY(0);
}
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }

/* Effects & Hover States */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hover-lift:hover {
    transform: translateY(-5px);
}

.hover-primary:hover {
    background-color: var(--primary-red) !important;
    border-color: var(--primary-red) !important;
    color: white !important;
}

.ripple-effect {
    position: relative;
    overflow: hidden;
}
.ripple-effect::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease-out, height 0.5s ease-out;
}
.ripple-effect:hover::after {
    width: 300px;
    height: 300px;
    opacity: 0;
}

.shrink-0 {
    flex-shrink: 0;
}

.icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-red);
    border-color: var(--primary-red);
}
.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(230, 57, 70, 0.3) !important;
}
.btn-outline-primary {
    color: var(--primary-red);
    border-color: var(--primary-red);
}
.btn-outline-primary:hover {
    background-color: var(--primary-red);
}

.backdrop-blur {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
}

/* Sexy Pulse Button */
@keyframes sexy-pulse {
    0% { box-shadow: 0 0 0 0 rgba(230, 57, 70, 0.4); transform: scale(1); }
    50% { box-shadow: 0 0 0 15px rgba(230, 57, 70, 0); transform: scale(1.05); }
    100% { box-shadow: 0 0 0 0 rgba(230, 57, 70, 0); transform: scale(1); }
}

.sexy-pulse {
    animation: sexy-pulse 3s infinite;
}

.fab-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.btn-fab {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-red);
    color: white;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    transition: all 0.3s ease;
}

.btn-fab:hover {
    background: var(--primary-dark);
    color: white;
}

/* Decorative Utils */
.translate-x-20 {
    transform: translateX(20px);
}
.border-dashed {
    border-style: dashed !important;
}
.rounded-bl-3 {
    border-bottom-left-radius: 1rem;
}

.glass-modal .modal-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
}

.trust-badge {
    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(5px);
    padding: 6px 12px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
}

.social-link {
    color: rgba(255,255,255,0.5);
    font-size: 1.2rem;
    transition: color 0.3s;
}
.social-link:hover {
    color: white;
}
.footer-link {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.3s, transform 0.3s;
    display: inline-block;
}
.footer-link:hover {
    color: white;
    transform: translateX(5px);
}

.pill-img {
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    max-height: 180px;
    object-fit: contain;
}
.product-card-luxury:hover .pill-img {
    transform: scale(1.1) rotate(5deg);
}

.filter-grayscale {
    filter: grayscale(100%);
}
