:root {
    --waxory-dark: #0F0F14;
    --waxory-pink: #FF4FA3;
    --waxory-soft-pink: #FF7FBF;
    --waxory-neon-pink: #FF2E88;
    --waxory-turquoise: #33E1E6;
    --waxory-glow: #FFD1E6;
    --waxory-text: #F5F6F8;
    --waxory-text-secondary: #C9CBD3;
}

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Quicksand:wght@300;400;500;600;700&display=swap');

body {
    background-color: var(--waxory-dark);
    color: var(--waxory-text);
    font-family: 'Quicksand', sans-serif;
    letter-spacing: 0.02em;
}

.navbar {
    padding: 1rem 0;
    background: linear-gradient(180deg, rgba(15,15,20,1) 0%, rgba(15,15,20,0.95) 100%) !important;
    border-bottom: 1px solid rgba(255,79,163,0.1);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.navbar.fixed-top {
    z-index: 1030;
}

.navbar-brand {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 2rem;
    color: var(--waxory-pink);
    letter-spacing: 0.05em;
}

.navbar-brand:hover {
    color: var(--waxory-soft-pink);
}

.nav-link {
    color: var(--waxory-text) !important;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--waxory-pink) !important;
}

/* Enhanced Navigation Menu */
.navbar-nav {
    flex: 1;
    justify-content: space-between;
    max-width: 800px;
    align-items: center;
    height: 100%;
}

.nav-item {
    flex: 1;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.nav-link {
    padding: 0.75rem 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 5px;
    margin: 0 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    width: 100%;
    text-align: center;
}

.nav-link:hover {
    background: rgba(255, 79, 163, 0.1);
    transform: translateY(-2px);
}

/* Mobile Navigation */
@media (max-width: 991.98px) {
    .navbar-nav {
        flex-direction: column;
        width: 100%;
        max-width: none;
    }
    
    .nav-item {
        width: 100%;
        flex: none;
        margin: 0.25rem 0;
    }
    
    .nav-link {
        width: 100%;
        justify-content: flex-start;
        padding: 1rem;
        border-radius: 8px;
    }
}

/* Shopping Cart Button */
.snipcart-checkout {
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    background: rgba(255, 79, 163, 0.1);
    border: 1px solid rgba(255, 79, 163, 0.3);
    transition: all 0.3s ease;
}

.snipcart-checkout:hover {
    background: rgba(255, 79, 163, 0.2);
    border-color: var(--waxory-pink);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 79, 163, 0.3);
}

.snipcart-items-count {
    background: var(--waxory-pink);
    color: var(--waxory-dark);
    border-radius: 50%;
    padding: 0.25rem 0.5rem;
    font-size: 0.8rem;
    font-weight: bold;
    margin-left: 0.5rem;
    min-width: 20px;
    text-align: center;
    display: inline-block;
}

.breadcrumb {
    background: transparent;
}

.breadcrumb-item a {
    color: var(--waxory-pink);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--waxory-text-secondary);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--waxory-text-secondary);
}

.btn-link {
    text-decoration: none;
}

.btn-link:hover {
    color: var(--waxory-pink) !important;
}

.border-pink {
    border-color: var(--waxory-pink) !important;
}

.btn-outline-pink {
    color: var(--waxory-pink);
    border-color: var(--waxory-pink);
}

.btn-outline-pink:hover {
    color: var(--waxory-dark);
    background-color: var(--waxory-pink);
    border-color: var(--waxory-pink);
}

.form-control.bg-dark::placeholder {
    color: var(--waxory-text-secondary);
}

.form-control.bg-dark:focus {
    background-color: var(--waxory-dark);
    border-color: var(--waxory-soft-pink);
    box-shadow: 0 0 0 0.25rem rgba(255, 79, 163, 0.25);
}

/* Footer Styles */
.footer {
    background: linear-gradient(0deg, rgba(15,15,20,1) 0%, rgba(15,15,20,0.95) 100%);
    border-top: 1px solid rgba(255,79,163,0.1);
    padding: 3rem 0 1rem;
}

.footer-heading {
    font-family: 'Montserrat Alternates', sans-serif;
    color: var(--waxory-pink);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--waxory-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--waxory-pink);
}

.footer-description {
    color: var(--waxory-text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid rgba(255,79,163,0.1);
    margin-top: 2rem;
    padding-top: 1rem;
}

/* Cookie Consent Banner */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(15,15,20,0.95);
    padding: 1rem;
    border-top: 1px solid var(--waxory-pink);
    z-index: 1000;
    display: none;
}

.cookie-consent.show {
    display: block;
}
.contact-info a {
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--waxory-pink) !important;
}

.accordion-button:not(.collapsed) {
    background-color: var(--waxory-dark);
    color: var(--waxory-pink);
}

.accordion-button::after {
    background-color: var(--waxory-pink);
    border-radius: 50%;
}

.table-dark {
    background: linear-gradient(135deg, var(--waxory-dark), #1a1a1f);
    border-color: var(--waxory-pink);
}

.table-dark td {
    border-color: rgba(255, 79, 163, 0.1);
}

.card.bg-gradient {
    background: linear-gradient(135deg, var(--waxory-dark), #1a1a1f);
    border: 1px solid var(--waxory-pink);
}

/* Enhanced Hero Section */
.hero-section {
    position: relative;
    overflow: hidden;
}

.carousel {
    height: 70vh;
    min-height: 500px;
}

.carousel-inner {
    height: 100%;
}

.carousel-item {
    position: relative;
    height: 100%;
}

.carousel-item img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    filter: brightness(0.9);
}

.carousel-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    background: rgba(15, 15, 20, 0.85);
    padding: 2.5rem;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 79, 163, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    width: auto;
    max-width: 90%;
    margin: 0 auto;
}

.carousel-caption h1,
.carousel-caption h2 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    margin-bottom: 1rem;
}

.carousel-caption p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.carousel-caption .btn {
    transition: all 0.3s ease;
    font-weight: 600;
    padding: 0.75rem 2rem;
}

.carousel-caption .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 79, 163, 0.4);
}

/* Enhanced Carousel Controls */

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(15, 15, 20, 0.8);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    border: 2px solid rgba(255, 79, 163, 0.3);
    transition: all 0.3s ease;
}

.carousel-control-prev {
    left: 20px;
}

.carousel-control-next {
    right: 20px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: rgba(255, 79, 163, 0.2);
    border-color: var(--waxory-pink);
    transform: translateY(-50%) scale(1.1);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 20px;
    height: 20px;
    background-size: 20px 20px;
}

/* Mobile Carousel Adjustments */
@media (max-width: 768px) {
    .carousel {
        height: 50vh;
        min-height: 300px;
    }
    
    .carousel-caption {
        padding: 1.5rem;
        margin: 0 1rem;
        max-width: 95%;
    }
    
    .carousel-caption h1,
    .carousel-caption h2 {
        font-size: 2rem;
    }
    
    .carousel-caption p {
        font-size: 1rem;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
    }
    
    .carousel-control-prev {
        left: 10px;
    }
    
    .carousel-control-next {
        right: 10px;
    }
}

/* Enhanced Cards */
.card {
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 79, 163, 0.2);
    backdrop-filter: blur(10px);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 79, 163, 0.2);
    border-color: var(--waxory-pink);
}

.card-img-top {
    transition: all 0.3s ease;
    height: 250px;
    object-fit: cover;
}

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

.card-body {
    position: relative;
    overflow: hidden;
}

.card-body::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 79, 163, 0.1), transparent);
    transition: left 0.5s ease;
}

.card:hover .card-body::before {
    left: 100%;
}

/* Enhanced Buttons */
.btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-outline-pink {
    border: 2px solid var(--waxory-pink);
    color: var(--waxory-pink);
    background: transparent;
    position: relative;
    overflow: hidden;
}

.btn-outline-pink::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--waxory-pink);
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-outline-pink:hover::after {
    left: 0;
}

.btn-outline-pink:hover {
    color: var(--waxory-dark);
    border-color: var(--waxory-pink);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 5px var(--waxory-pink);
    }
    50% {
        box-shadow: 0 0 20px var(--waxory-pink), 0 0 30px var(--waxory-pink);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

.pulse {
    animation: pulse 2s infinite;
}

.glow {
    animation: glow 2s infinite;
}

/* Enhanced Typography */
.display-4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    line-height: 1.2;
}

.lead {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--waxory-text-secondary);
}

/* Enhanced Sections */
.collections-section,
.featured-products {
    position: relative;
}

.collections-section::before,
.featured-products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 79, 163, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

/* Enhanced Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, var(--waxory-dark), #1a1a1f);
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="0.5" fill="rgba(255,79,163,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

/* Enhanced Contact Section */
.contact-section {
    background: linear-gradient(135deg, #1a1a1f, var(--waxory-dark));
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(51, 225, 230, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 79, 163, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* Enhanced Form Controls */
.form-control {
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.form-control:focus {
    border-color: var(--waxory-pink);
    box-shadow: 0 0 0 0.2rem rgba(255, 79, 163, 0.25);
    transform: translateY(-2px);
}

/* Enhanced Navigation */
.navbar {
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(15, 15, 20, 0.95) !important;
    box-shadow: 0 2px 20px rgba(255, 79, 163, 0.1);
}

/* Enhanced Footer */
.footer {
    background: linear-gradient(180deg, var(--waxory-dark), #0a0a0f);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--waxory-pink), transparent);
}

/* Responsive Enhancements */
@media (max-width: 768px) {
    .carousel-caption {
        padding: 1rem;
        margin: 0 1rem;
    }
    
    .carousel-caption h1,
    .carousel-caption h2 {
        font-size: 2rem;
    }
    
    .card:hover {
        transform: translateY(-5px);
    }
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid var(--waxory-pink);
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
