/* Apple-inspired Design System */
:root {
    /* Colors - More sophisticated palette */
    --primary-color: #1D1D1F;
    --secondary-color: #6E6E73;
    --accent-color: #0071E3;
    --text-primary: #1D1D1F;
    --text-secondary: #86868B;
    --background-light: #FBFBFD;
    --background-white: #FFFFFF;
    --background-dark: #F5F5F7;
    --border-light: #E8E8ED;
    --luxury-gold: #B8860B;
    --warm-gray: #F2F2F7;
    
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-family-display: 'Space Grotesk', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-weight-light: 300;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extra-bold: 800;
    
    /* Spacing */
    --section-padding: 80px 0;
    --container-padding: 0 20px;
    
    /* Animations */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.4s ease;
    --transition-slow: 0.6s ease;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    color: var(--text-primary);
    line-height: 1.6;
    font-weight: var(--font-weight-regular);
    scroll-behavior: smooth;
}

html {
    scroll-behavior: smooth;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: var(--font-weight-semibold);
    line-height: 1.2;
    color: var(--text-primary);
}

.hero-title {
    font-family: var(--font-family-display);
    font-size: 4rem;
    font-weight: var(--font-weight-extra-bold);
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.section-title {
    font-family: var(--font-family-display);
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    font-weight: var(--font-weight-regular);
    margin-bottom: 3rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: var(--font-weight-regular);
    margin-bottom: 2rem;
    line-height: 1.5;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition-medium);
    padding: 1rem 0;
}

/* Active navigation link styling */
.nav-link.active {
    color: #DBAB35 !important;
    font-weight: 600;
    position: relative;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: #DBAB35;
    border-radius: 1px;
}

.nav-link:hover {
    color: #DBAB35 !important;
    transition: color 0.3s ease;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: var(--font-weight-semibold);
    color: var(--text-primary) !important;
    text-decoration: none;
}

.lotus-logo {
    margin-right: 0.7rem;
    transition: var(--transition-medium);
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.navbar-brand .lotus-logo {
    margin-right: 0.8rem;
}

.navbar-brand:hover .lotus-logo {
    transform: rotate(360deg) scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(255, 215, 0, 0.3));
}

.footer-brand .lotus-logo {
    vertical-align: middle;
    margin-right: 0.5rem;
}

.footer-brand h5 {
    background: linear-gradient(135deg, white 70%, #DAA520 85%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: var(--font-weight-semibold);
    display: flex;
    align-items: center;
}

/* Adjust navbar brand font size to complement larger logo */
.navbar-brand {
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--text-primary) 60%, #DAA520 80%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: var(--font-weight-semibold);
}

.navbar-brand:hover {
    background: linear-gradient(135deg, var(--text-primary) 40%, #DAA520 70%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-link {
    color: var(--text-primary) !important;
    font-weight: var(--font-weight-medium);
    transition: var(--transition-fast);
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition-fast);
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 100%;
}

/* Buttons */
.btn {
    border-radius: 12px;
    font-weight: var(--font-weight-medium);
    padding: 12px 24px;
    border: none;
    transition: var(--transition-fast);
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: var(--accent-color);
    color: white;
    box-shadow: 0 4px 16px rgba(0, 113, 227, 0.3);
    font-weight: var(--font-weight-semibold);
}

.btn-primary:hover {
    background: #005BB5;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 113, 227, 0.4);
    color: white;
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
    background: transparent;
}

.btn-outline-light:hover {
    background: white;
    color: var(--text-primary);
    border-color: white;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Flash Messages */
.flash-messages {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 1050;
    width: 400px;
    max-width: calc(100vw - 40px);
}

.alert {
    border-radius: 12px;
    border: none;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, 
        rgba(29, 29, 31, 0.9) 0%, 
        rgba(46, 46, 48, 0.8) 50%, 
        rgba(72, 72, 74, 0.7) 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><linearGradient id="grad" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%23f7f7f7;stop-opacity:0.1"/><stop offset="100%" style="stop-color:%23e8e8ed;stop-opacity:0.05"/></linearGradient></defs><rect width="100%" height="100%" fill="url(%23grad)"/></svg>');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    color: white;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-buttons {
    margin-top: 2rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Product Cards */
.products-section {
    padding: var(--section-padding);
    background: var(--background-light);
}

.collection-title {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 2rem;
    font-weight: var(--font-weight-semibold);
    letter-spacing: -0.01em;
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    transition: var(--transition-medium);
    height: 100%;
    border: 1px solid var(--border-light);
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    border-color: rgba(0, 113, 227, 0.2);
}

.product-image {
    height: 300px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.product-photo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    padding: 1rem;
    transition: var(--transition-medium);
}

.clickable-image {
    cursor: pointer !important;
    z-index: 10;
    position: relative;
}

.clickable-image:hover {
    transform: scale(1.02);
}

/* Product Modal Gallery Styles */
.product-modal-gallery {
    position: relative;
}

.gallery-main {
    position: relative;
    background: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.gallery-main-image {
    width: 100%;
    height: auto;
    display: block;
    transition: opacity 0.3s ease;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    font-size: 18px;
}

.gallery-nav:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: translateY(-50%) scale(1.1);
}

.gallery-nav-prev {
    left: 15px;
}

.gallery-nav-next {
    right: 15px;
}

.gallery-counter {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

.gallery-thumbnails {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 15px;
}

.gallery-thumbnail {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.gallery-thumbnail:hover {
    opacity: 1;
    transform: scale(1.05);
}

.gallery-thumbnail.active {
    border-color: var(--accent-color);
    opacity: 1;
}

.gallery-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-medium);
    pointer-events: none; /* Allow clicks to pass through to the image */
}

.product-card:hover .product-overlay {
    opacity: 1;
    pointer-events: auto; /* Allow interaction with overlay content when visible */
}

.product-actions .btn {
    padding: 0.5rem 1.5rem;
    font-weight: var(--font-weight-medium);
    border-radius: 20px;
}

.product-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        transparent 25%, 
        rgba(255, 255, 255, 0.1) 25%, 
        rgba(255, 255, 255, 0.1) 50%, 
        transparent 50%, 
        transparent 75%, 
        rgba(255, 255, 255, 0.1) 75%);
    background-size: 20px 20px;
    opacity: 0.3;
}

.large-card .product-image {
    height: 300px;
}

.placeholder-image {
    text-align: center;
    color: var(--text-secondary);
    position: relative;
    z-index: 1;
    transition: var(--transition-medium);
}

.product-card:hover .placeholder-image {
    transform: scale(1.1);
    color: var(--accent-color);
}

.placeholder-image.large {
    background: linear-gradient(135deg, var(--warm-gray) 0%, var(--background-light) 100%);
    padding: 4rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.05);
}

.product-info {
    padding: 1.5rem;
}

.product-info h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.product-info p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.feature-tag {
    background: linear-gradient(135deg, var(--background-light), var(--warm-gray));
    color: var(--text-primary);
    padding: 0.4rem 0.9rem;
    border-radius: 16px;
    font-size: 0.85rem;
    font-weight: var(--font-weight-medium);
    border: 1px solid var(--border-light);
    transition: var(--transition-fast);
}

.feature-tag:hover {
    background: linear-gradient(135deg, var(--accent-color), #0056CC);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 113, 227, 0.2);
}

.product-price {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.current-price {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    background: linear-gradient(135deg, var(--accent-color), #DAA520);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-right: 0.5rem;
}

.current-price-cad {
    font-size: 1.2rem;
    font-weight: var(--font-weight-semibold);
    color: #666;
    margin-left: 0.5rem;
}

.dual-currency {
    margin-top: 0.5rem;
}

.currency-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: var(--font-weight-medium);
}

.limited-offer-note {
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    text-align: center;
    font-size: 0.9rem;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

.limited-offer-note i {
    margin-right: 0.5rem;
}

.original-price {
    font-size: 1.1rem;
    color: var(--text-secondary);
    text-decoration: line-through;
}

.discount-badge {
    background: #28a745;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: var(--font-weight-semibold);
}

/* Features Section */
.features-section {
    padding: var(--section-padding);
    background: var(--background-light);
}

.feature-card {
    padding: 2rem 1rem;
    transition: var(--transition-medium);
}

.feature-card:hover {
    transform: translateY(-4px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--accent-color), #0056CC);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 8px 24px rgba(0, 113, 227, 0.25);
    transition: var(--transition-medium);
}

.feature-icon:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 32px rgba(0, 113, 227, 0.35);
}

.feature-card h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.feature-card p {
    color: var(--text-secondary);
}

/* About Section */
.about-section {
    padding: var(--section-padding);
}

.about-content .lead {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.about-stats {
    margin-top: 2rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--primary-color);
    line-height: 1;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: var(--font-weight-medium);
}

/* Testimonials */
.testimonials-section {
    padding: var(--section-padding);
    background: var(--background-light);
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: var(--transition-medium);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.testimonial-stars {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-author strong {
    color: var(--text-primary);
    font-weight: var(--font-weight-semibold);
}

.testimonial-author small {
    color: var(--text-secondary);
    display: block;
    margin-top: 0.25rem;
}

/* Contact Section */
.contact-section {
    padding: var(--section-padding);
}

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.form-control {
    border: 2px solid var(--border-light);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 122, 255, 0.25);
}

.form-label {
    font-weight: var(--font-weight-medium);
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

/* Newsletter Section */
.newsletter-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--text-primary) 0%, #2c2c2e 100%);
    position: relative;
}

.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" patternUnits="userSpaceOnUse" width="100" height="100"><circle cx="50" cy="50" r="0.5" fill="white" opacity="0.03"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.newsletter-content h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.newsletter-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

.newsletter-form .form-control {
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(10px);
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form .form-control:focus {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--primary-color);
    color: white;
}

/* Footer */
.footer {
    background: var(--text-primary) !important;
    padding: 3rem 0 1rem;
}

.footer-brand h5 {
    color: white;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact h6,
.footer-social h6 {
    color: white;
    margin-bottom: 1rem;
    font-weight: var(--font-weight-semibold);
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

.footer-contact i {
    width: 20px;
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition-fast);
}

.social-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-left: 1rem;
    transition: var(--transition-fast);
}

.footer-link:hover {
    color: white;
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-slow);
}

.fade-in-up.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .navbar-collapse {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        border-radius: 12px;
        margin-top: 1rem;
        padding: 1rem;
    }
    
    .btn-lg {
        padding: 14px 28px;
        font-size: 1rem;
    }
    
    .flash-messages {
        width: calc(100vw - 40px);
        right: 20px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .hero-buttons .btn:last-child {
        margin-bottom: 0;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .scroll-indicator {
        animation: none;
    }
}

/* Pre-Order Section */
.preorder-section {
    background: linear-gradient(135deg, var(--background-white) 0%, var(--background-light) 100%);
    padding: var(--section-padding);
}

.preorder-card {
    background: white;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.preorder-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), #DAA520, #FFD700);
}

.preorder-badge {
    display: inline-block;
}

.badge-text {
    background: linear-gradient(135deg, var(--accent-color), #DAA520);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: var(--font-weight-semibold);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.preorder-title {
    font-family: var(--font-family-display);
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    background: linear-gradient(135deg, var(--accent-color), #DAA520);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.preorder-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.preorder-details {
    margin-top: 2rem;
}

.detail-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.detail-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-color), #0056CC);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 1rem;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.detail-text {
    font-size: 1rem;
    line-height: 1.5;
}

.preorder-form-container {
    background: var(--background-light);
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
}

.form-title {
    font-family: var(--font-family-display);
    font-weight: var(--font-weight-semibold);
    color: var(--text-primary);
    text-align: center;
}

.preorder-summary {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border: 1px solid var(--border-light);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.summary-item:last-child {
    margin-bottom: 0;
}

.summary-item.discount {
    color: #28a745;
    font-weight: var(--font-weight-medium);
}

.summary-item.total {
    border-top: 2px solid var(--border-light);
    padding-top: 0.75rem;
    margin-top: 1rem;
    font-weight: var(--font-weight-semibold);
    font-size: 1.1rem;
}

.price-original {
    text-decoration: line-through;
    color: var(--text-secondary);
}

.price-discount {
    color: #28a745;
    font-weight: var(--font-weight-semibold);
}

.price-final {
    font-size: 1.3rem;
    font-weight: var(--font-weight-bold);
    background: linear-gradient(135deg, var(--accent-color), #DAA520);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-preorder {
    background: linear-gradient(135deg, var(--accent-color), #0056CC);
    border: none;
    color: white;
    font-weight: var(--font-weight-semibold);
    padding: 1rem 2rem;
    border-radius: 12px;
    transition: var(--transition-medium);
    box-shadow: 0 8px 24px rgba(0, 113, 227, 0.3);
}

.btn-preorder:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 113, 227, 0.4);
    background: linear-gradient(135deg, #005BB5, #003d82);
    color: white;
}

.preorder-note {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 1rem;
    margin-bottom: 0;
}

/* Our Journey Section */
.our-journey-section {
    background: var(--background-white);
    padding: var(--section-padding);
}

.journey-header {
    margin-bottom: 3rem;
}

.journey-icon-container {
    margin-bottom: 1.5rem;
}

.journey-icon {
    animation: gentle-pulse 3s ease-in-out infinite;
}

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

.journey-title {
    font-family: var(--font-family-display);
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.journey-subtitle {
    font-size: 1.2rem;
    color: var(--luxury-gold);
    font-weight: var(--font-weight-medium);
    font-style: italic;
}

.journey-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.journey-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.journey-opening {
    font-size: 1.3rem;
    font-weight: var(--font-weight-medium);
    color: var(--text-primary);
    margin-bottom: 2rem;
    text-align: center;
    font-style: italic;
}

.journey-reflection {
    background: var(--warm-gray);
    padding: 2rem;
    border-radius: 16px;
    margin: 2rem 0;
    border-left: 4px solid var(--luxury-gold);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.reflection-icon {
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.journey-reflection p {
    margin: 0;
    font-style: italic;
}

.journey-idea {
    background: linear-gradient(135deg, var(--luxury-gold), #DAA520);
    color: white;
    padding: 1.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    margin: 2rem 0;
    font-size: 1.2rem;
    box-shadow: 0 8px 30px rgba(184, 134, 11, 0.3);
}

.journey-conclusion {
    text-align: center;
    margin: 3rem 0 2rem 0;
    padding: 2rem;
    background: var(--background-light);
    border-radius: 16px;
}

.conclusion-highlight {
    font-size: 1.3rem;
    font-weight: var(--font-weight-semibold);
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.hope-message {
    font-size: 1.1rem;
    color: var(--luxury-gold);
    font-style: italic;
    margin-bottom: 0;
}

.founder-signature {
    font-size: 1rem;
    color: var(--text-secondary);
    text-align: center;
    margin-top: 2rem;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .journey-title {
        font-size: 2rem;
    }
    
    .journey-subtitle {
        font-size: 1rem;
    }
    
    .journey-text p {
        font-size: 1rem;
    }
    
    .journey-opening {
        font-size: 1.1rem;
    }
    
    .journey-reflection {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .journey-idea {
        font-size: 1.1rem;
        padding: 1.2rem 1.5rem;
    }
    
    .conclusion-highlight {
        font-size: 1.2rem;
    }
}

/* Our Journey Page */
.journey-hero-section {
    background: linear-gradient(135deg, var(--background-light), var(--warm-gray));
    padding: 120px 0 80px 0;
    min-height: 50vh;
    display: flex;
    align-items: center;
}

.journey-hero-title {
    font-family: var(--font-family-display);
    font-size: 3rem;
    font-weight: var(--font-weight-bold);
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.journey-hero-subtitle {
    font-size: 1.4rem;
    color: var(--luxury-gold);
    font-weight: var(--font-weight-medium);
    font-style: italic;
}

.journey-story-section {
    background: var(--background-white);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.floating-logo-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
    will-change: transform;
}

.floating-logo {
    transition: transform 0.1s ease-out;
    opacity: 0.45;
    filter: blur(0.5px) brightness(1.2) saturate(2.5) hue-rotate(-10deg) contrast(1.3);
}

.journey-content {
    position: relative;
    z-index: 10;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(8px);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
    .floating-logo {
        width: 400px;
        height: 400px;
    }
    
    .journey-content {
        padding: 2rem;
        margin: 1rem;
    }
}

.journey-cta-section {
    background: var(--warm-gray);
    padding: 80px 0;
}

.cta-title {
    font-family: var(--font-family-display);
    font-size: 2.2rem;
    font-weight: var(--font-weight-bold);
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .journey-hero-title {
        font-size: 2.2rem;
    }
    
    .journey-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 200px;
    }
}

/* About Section */
.about-section {
    background: var(--background-white);
    padding: var(--section-padding);
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    font-weight: var(--font-weight-medium);
}

.feature-item i {
    font-size: 1.2rem;
}

.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-icon-grid {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-main-icon.golden-lotus {
    animation: gentle-rotate 8s linear infinite;
}

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

.founder-signature {
    border-top: 2px solid var(--primary);
    padding-top: 1.5rem;
    font-style: italic;
    color: var(--text-secondary);
}

.founder-signature strong {
    color: var(--primary);
    font-weight: 600;
}

@media (max-width: 768px) {
    .about-features {
        margin-top: 2rem;
    }
    
    .about-main-icon {
        width: 150px;
        height: 150px;
    }
}

/* Steve Jobs Inspiration Section */
.steve-jobs-section {
    background: #f5f5f7;
    padding: var(--section-padding);
}

.inspiration-header {
    margin-bottom: 3rem;
}

.inspiration-badge {
    display: inline-block;
    margin-bottom: 1rem;
}

.inspiration-badge .badge-text {
    background: linear-gradient(135deg, var(--accent-color), #DAA520);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: var(--font-weight-semibold);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.inspiration-main-title {
    font-family: var(--font-family-display);
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--text-primary);
    margin: 0;
    letter-spacing: -0.02em;
}

.steve-jobs-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.inspiration-card {
    display: flex;
    align-items: flex-start;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e5e7;
    transition: all 0.3s ease;
}

.inspiration-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 1.5rem;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.zen-icon {
    background: linear-gradient(135deg, #007AFF, #5856D6);
}

.lifestyle-icon {
    background: linear-gradient(135deg, #34C759, #30D158);
}

.health-icon {
    background: linear-gradient(135deg, #FF3B30, #FF6482);
}

.card-content h4 {
    font-family: var(--font-family-display);
    font-weight: var(--font-weight-semibold);
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.card-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

.steve-jobs-photo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.photo-frame {
    position: relative;
    max-width: 500px;
    width: 100%;
}

.steve-jobs-photo {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.steve-jobs-photo:hover {
    transform: scale(1.02);
}

.photo-credit {
    text-align: center;
    margin-top: 0.75rem;
    font-size: 0.85rem;
    color: #666;
    font-style: italic;
    opacity: 0.8;
}

.photo-caption {
    display: none;
}

@media (max-width: 991px) {
    .inspiration-main-title {
        font-size: 2rem;
    }
    
    .steve-jobs-cards {
        margin-bottom: 3rem;
    }
    
    .inspiration-card {
        padding: 1.5rem;
    }
    
    .card-icon {
        width: 50px;
        height: 50px;
        margin-right: 1rem;
    }
    
    .photo-frame {
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .inspiration-card {
        flex-direction: column;
        text-align: center;
    }
    
    .card-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}

/* Exit Intent Feedback Popup */
.exit-feedback-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.exit-feedback-overlay.active {
    opacity: 1;
    visibility: visible;
}

.exit-feedback-popup {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    transform: translateY(50px) scale(0.95);
    transition: all 0.3s ease;
    position: relative;
}

.exit-feedback-overlay.active .exit-feedback-popup {
    transform: translateY(0) scale(1);
}

.exit-feedback-header {
    padding: 2rem 2rem 1rem;
    text-align: center;
    border-bottom: 1px solid var(--border-light);
}

.exit-feedback-header h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.exit-feedback-header p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.95rem;
}

.exit-feedback-body {
    padding: 2rem;
}

.feedback-question {
    margin-bottom: 1.5rem;
}

.feedback-question label {
    display: block;
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.feedback-question textarea {
    width: 100%;
    min-height: 80px;
    padding: 0.75rem;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.9rem;
    resize: vertical;
    transition: border-color 0.2s ease;
}

.feedback-question textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(219, 171, 53, 0.1);
}

.exit-feedback-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    padding: 0 2rem 2rem;
}

.feedback-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.9rem;
}

.feedback-btn-primary {
    background: var(--primary);
    color: white;
}

.feedback-btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.feedback-btn-secondary {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border-light);
}

.feedback-btn-secondary:hover {
    background: var(--bg-light);
    color: var(--text-primary);
}

.exit-feedback-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-secondary);
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.exit-feedback-close:hover {
    background: var(--bg-light);
    color: var(--text-primary);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .exit-feedback-popup {
        width: 95%;
        max-height: 90vh;
    }
    
    .exit-feedback-header,
    .exit-feedback-body {
        padding: 1.5rem 1.5rem 1rem;
    }
    
    .exit-feedback-actions {
        padding: 0 1.5rem 1.5rem;
        flex-direction: column;
    }
    
    .feedback-btn {
        width: 100%;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --border-light: #000000;
        --text-secondary: #000000;
    }
}

/* Research Page Styles */
.research-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding-top: 120px;
}

.research-hero .hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.research-hero .hero-subtitle {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
}

.scientific-caution {
    border-left: 5px solid #ffc107;
}

.scientific-caution h4 {
    color: #856404;
    font-weight: 600;
    margin-bottom: 1rem;
}

.scientific-caution p,
.scientific-caution li {
    color: #856404;
    font-size: 1rem;
}

.research-findings {
    background-color: #fff;
}

.research-card {
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    height: 100%;
}

.research-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
    border-color: #DBAB35;
}

.research-title {
    color: #2c3e50;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.research-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.research-card .btn-outline-primary {
    border-color: #DBAB35;
    color: #DBAB35;
    transition: all 0.3s ease;
}

.research-card .btn-outline-primary:hover {
    background-color: #DBAB35;
    border-color: #DBAB35;
    color: white;
}

.conclusion-section .section-title {
    color: #DBAB35;
    font-weight: 700;
    font-size: 2.2rem;
}

.conclusion-section .list-unstyled li {
    color: #2c3e50;
    font-weight: 500;
    font-size: 1.1rem;
}

.conclusion-section .btn-primary {
    background: linear-gradient(135deg, #DBAB35, #E6C55A);
    border: none;
    padding: 15px 30px;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.conclusion-section .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(219, 171, 53, 0.3);
}

/* Payment Buttons */
.payment-options {
    margin-top: 1rem;
}

.btn-paypal {
    background: #0070ba;
    border: none;
    color: white;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.btn-paypal:hover {
    background: #005ea6;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 112, 186, 0.3);
}

.btn-preorder {
    background: linear-gradient(135deg, #DBAB35, #E6C55A);
    border: none;
    color: white;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.btn-preorder:hover {
    background: linear-gradient(135deg, #B8941F, #DBAB35);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(219, 171, 53, 0.3);
}

/* Stripe Elements styling */
.stripe-card-element {
    background: white;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    margin: 15px 0;
    transition: border-color 0.3s ease;
}

.stripe-card-element:focus {
    border-color: #DBAB35;
    box-shadow: 0 0 0 3px rgba(219, 171, 53, 0.1);
}

.payment-loading {
    opacity: 0.6;
    pointer-events: none;
}

.payment-loading .btn {
    position: relative;
}

.payment-loading .btn::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    margin: auto;
    border: 2px solid transparent;
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Product Image Modal Styles */
.product-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    animation: fadeIn 0.3s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.product-modal {
    background: white;
    border-radius: 16px;
    max-width: 1200px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    animation: scaleIn 0.3s ease forwards;
}

@keyframes scaleIn {
    to {
        transform: scale(1);
    }
}

.product-modal-header {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
}

.product-modal-close {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    color: #333;
    backdrop-filter: blur(10px);
}

.product-modal-close:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
}

.product-modal-body {
    padding: 0;
    max-height: 90vh;
    overflow-y: auto;
}

.product-modal-image {
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    padding: 20px;
}

.product-modal-image img {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.product-modal-info {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 400px;
}

.product-modal-info h3 {
    font-size: 2rem;
    font-weight: var(--font-weight-bold);
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.modal-price-info {
    margin-bottom: 2rem;
}

.modal-current-price {
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    background: linear-gradient(135deg, var(--accent-color), #DAA520);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.modal-cad-price {
    font-size: 1.5rem;
    font-weight: var(--font-weight-semibold);
    color: var(--text-secondary);
}

.modal-actions {
    margin-top: auto;
}

.modal-actions .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: var(--font-weight-semibold);
    border-radius: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.modal-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 113, 227, 0.3);
}

/* Responsive Design for Modal */
@media (max-width: 768px) {
    .product-modal {
        margin: 10px;
        max-height: 95vh;
    }
    
    .product-modal-body .row {
        flex-direction: column;
    }
    
    .product-modal-info {
        padding: 20px;
        min-height: auto;
    }
    
    .product-modal-info h3 {
        font-size: 1.5rem;
    }
    
    .modal-current-price {
        font-size: 2rem;
    }
    
    .modal-cad-price {
        font-size: 1.2rem;
    }
}
