:root {
    --primary-color: #e83a6c;
    --primary-dark: #c71e56;
    --secondary-color: #ffd4e0;
    --accent-color: #ffb6c1;
    --dark: #2d1e25;
    --light: #fff9fb;
    --gray-light: #f8f9fa;
    --text-dark: #2c3e50;
    --text-muted: #6c757d;
    --border-radius: 20px;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --box-shadow-hover: 0 20px 40px rgba(232, 58, 108, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    background-color: #ffffff;
    overflow-x: hidden;
    padding-top: 76px; /* Account for fixed navbar */
}

h1, h2, h3, h4, h5, h6, .display-font {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: var(--text-dark);
}

/* Main content spacing */
.main-content {
    min-height: 100vh;
    background-color: #ffffff;
}

/* Desktop Navigation - Fixed */
.desktop-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    padding: 15px 0;
    transition: all 0.3s ease;
    z-index: 1050;
}

.desktop-nav.scrolled {
    padding: 10px 0;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--primary-color) !important;
}

.nav-link {
    font-weight: 500;
    margin: 0 5px;
    padding: 8px 15px !important;
    color: var(--text-dark) !important;
    position: relative;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color) !important;
}

.nav-link.active {
    background-color: var(--primary-color);
    color: white !important;
}

/* Mobile Bottom Navigation */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px 10px 20px;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    z-index: 1050;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #999;
    font-size: 0.75rem;
    transition: all 0.2s ease;
    padding: 8px 15px;
    border-radius: 30px;
}

.mobile-nav-item i {
    font-size: 1.4rem;
    margin-bottom: 3px;
}

.mobile-nav-item.active {
    color: var(--primary-color);
    background: var(--secondary-color);
}

.mobile-nav-item span {
    font-size: 0.7rem;
    font-weight: 500;
}

/* Floating Order Button */
.floating-order-btn {
    position: fixed;
    bottom: 100px;
    right: 20px;
    z-index: 1040;
}

@media (min-width: 992px) {
    .floating-order-btn {
        bottom: 30px;
    }
    body {
        padding-bottom: 0;
    }
}

@media (max-width: 991px) {
    body {
        padding-bottom: 80px;
    }
    .desktop-nav {
        display: none;
    }
}

.floating-order-btn .btn {
    background: linear-gradient(135deg, var(--primary-color), #ff6b9d);
    border: none;
    padding: 12px 24px;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 30px rgba(232, 58, 108, 0.3);
}

.floating-order-btn .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(232, 58, 108, 0.4);
}

/* Page Header */
.page-header {
    position: relative;
    margin-top: 0;
}

/* Video Hero Section */
.video-hero {
    position: relative;
    height: 90vh;
    min-height: 600px;
    width: 100%;
    overflow: hidden;
    margin-top: -76px;
}

.video-hero video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(45, 30, 37, 0.7), rgba(232, 58, 108, 0.4));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    color: white;
    padding: 0 8%;
}

.hero-content h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 1.1;
    color: white;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.2);
}

.hero-content .shop-now-btn {
    background: white;
    color: var(--primary-color);
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin-top: 30px;
}

.hero-content .shop-now-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    background: var(--primary-color);
    color: white;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: white;
    text-align: center;
    animation: bounce 2s infinite;
    cursor: pointer;
}

.scroll-indicator span {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 5px;
}

.scroll-indicator i {
    font-size: 1.2rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Section Styles */
section {
    padding: 60px 0;
    position: relative;
    background: #ffffff;
}

.bg-light {
    background-color: var(--gray-light) !important;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    color: var(--text-dark);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Category Tabs */
.category-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 30px 0;
}

.category-tab {
    padding: 10px 25px;
    background: white;
    border: 1px solid #eee;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.category-tab:hover,
.category-tab.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Product Cards */
.product-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-hover);
}

.product-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    background: #f5f5f5;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-info {
    padding: 20px;
    background: white;
}

.product-name {
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.product-price {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.3rem;
}

.product-category {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

/* Three.js Canvas Container */
.canvas-container {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 30px;
    overflow: hidden;
    background: linear-gradient(135deg, #fff9fb, #ffe4ec);
}

#three-canvas {
    width: 100%;
    height: 100%;
    display: block;
}

/* Testimonial Cards */
.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    height: 100%;
}

.testimonial-card i {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 20px;
    opacity: 0.5;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-color);
}

/* Instagram Grid */
.instagram-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.insta-item {
    aspect-ratio: 1;
    background: var(--gray-light);
    border-radius: 15px;
    overflow: hidden;
}

.insta-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.insta-item:hover img {
    transform: scale(1.1);
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, var(--secondary-color), #fff);
    border-radius: 40px;
    padding: 50px;
}

.newsletter-form .form-control {
    padding: 15px 25px;
    border-radius: 50px;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.newsletter-form .btn {
    padding: 15px 35px;
    border-radius: 50px;
    background: var(--primary-color);
    border: none;
    font-weight: 600;
    color: white;
}

.newsletter-form .btn:hover {
    background: var(--primary-dark);
}

/* Footer */
.footer {
    background-color: var(--gray-light) !important;
    padding-bottom: 80px !important;
}

@media (min-width: 992px) {
    .footer {
        padding-bottom: 30px !important;
    }
}

.footer h5, .footer h6 {
    color: var(--text-dark);
}

.footer a {
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--primary-color);
}

/* Filter Bar - Sticky */
.sticky-top {
    position: sticky;
    background: white;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Form Controls */
.form-control, .form-select {
    padding: 12px 20px;
    border-radius: 30px;
    border: 1px solid #e0e0e0;
    background: white;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(232, 58, 108, 0.1);
    outline: none;
}

/* Buttons */
.btn-primary {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

/* Cards */
.card {
    background: white;
    border: none;
}

/* Rating Stars */
.text-warning {
    color: #ffc107 !important;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content {
        align-items: center;
        text-align: center;
        padding: 0 20px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .newsletter-section {
        padding: 30px 20px;
    }
    
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .floating-order-btn {
        bottom: 100px;
    }
    
    section {
        padding: 40px 0;
    }
}

/* Animation Classes */
.fade-up {
    opacity: 1 !important; /* Ensure visibility */
    transform: none !important;
}

/* Ensure all content is visible */
.container {
    position: relative;
    z-index: 5;
}

/* Badge styles */
.badge.bg-primary {
    background-color: var(--primary-color) !important;
}

.bg-primary-soft {
    background-color: #ffe4ec !important;
}

/* Accordion */
.accordion-button:not(.collapsed) {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.accordion-button:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(232, 58, 108, 0.1);
}

/* Modal */
.modal-content {
    border: none;
    background: white;
}

.modal-header {
    background: white;
}

/* Product Item Visibility */
.product-item {
    display: block !important;
}

/* Loading */
.loader {
    width: 50px;
    height: 50px;
    border: 3px solid var(--secondary-color);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Filter Badges */
.filter-badge {
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.filter-badge:hover {
    background-color: #ffe4ec !important;
    border-color: var(--primary-color);
}

.filter-badge.active {
    background-color: var(--primary-color) !important;
    color: white !important;
    border-color: var(--primary-color);
}

/* Breadcrumb */
.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

.breadcrumb-item a:hover {
    color: white;
}

.breadcrumb-item.active {
    color: white;
}

/* Quick Order Button */
.quick-order {
    transition: all 0.3s ease;
}

.quick-order:hover {
    background: var(--primary-color) !important;
}

.quick-order:hover i {
    color: white !important;
}
/* Three.js Canvas Container - Add to your existing style.css */
.canvas-container {
    position: relative;
    width: 100%;
    min-height: 450px;
    height: 500px;
    border-radius: 30px;
    overflow: hidden;
    background: linear-gradient(135deg, #fff9fb 0%, #ffe4ec 50%, #ffd4e0 100%);
    box-shadow: 0 20px 40px rgba(232, 58, 108, 0.15);
}

#three-canvas {
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    outline: none;
}

/* Responsive canvas height */
@media (max-width: 768px) {
    .canvas-container {
        height: 400px;
        min-height: 350px;
    }
}

@media (max-width: 576px) {
    .canvas-container {
        height: 350px;
        min-height: 300px;
    }
}