/* Font Imports */
@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://use.typekit.net/gkr3qos.css');

/* Luminay Skincare - Main Styles */

/* Luminay Header Navigation */
.luminay-header {
    background: #FDF0E6;
    border-bottom: 1px solid #e9ecef;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
}

.logo-section .logo-link {
    text-decoration: none;
    color: inherit;
}

.logo-title {
    font-family: orpheus-pro, serif;
    font-size: 1.8em;
    font-weight: 300;
    color: hsl(7.5, 78.87%, 72.15%);
    margin: 0;
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 1em;
    transition: color 0.3s ease;
    cursor: pointer;
}

.nav-link:hover {
    color: hsl(7.5, 78.87%, 72.15%);
}

/* Dropdown Styles */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 160px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    z-index: 1;
    top: 100%;
    left: 0;
    padding: 10px 0;
    border: 1px solid #e9ecef;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    color: #333;
    padding: 10px;
    text-decoration: none;
    display: block;
    font-size: 0.95em;
    transition: background-color 0.3s ease;
}

.dropdown-content a:hover {
    background-color: #f8f9fa;
    color: hsl(7.5, 78.87%, 72.15%);
}

/* Book Appointment Button */
.book-appointment-btn {
    background: hsl(7.5, 78.87%, 72.15%);
    color: white;
    padding: 12px 12px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.book-appointment-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3);
    color: white;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .luminay-header {
        position: static !important;
        top: auto;
        z-index: auto;
    }

    .nav-container {
        flex-direction: column;
        gap: 10px;
        padding: 10px;
    }
    
    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    
    .logo-title {
        font-size: 1.5em;
    }
    
    .nav-link {
        font-size: 0.9em;
    }
    
    .book-appointment-btn {
        padding: 10px;
        font-size: 0.9em;
    }

    /* Mobile container - use full width to minimize background */
    .main-content {
        padding: 0 !important;
    }
    
    .container {
        max-width: 100% !important;
        margin: 0 !important;
        border-radius: 0 !important;
    }
}

/* Base Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: orpheus-pro, serif;
    font-weight: 400;
    font-style: normal;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter Tight", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    background: hsl(7.5, 78.87%, 72.15%);
    min-height: 100vh;
    padding: 0;
    margin: 0;
}

.main-content {
    padding: 10px;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* Header */
.header {
    background: #AB0033;
    padding: 10px;
    text-align: center;
    color: white;
}

.header h1 {
    font-size: 2.5em;
    font-weight: 300;
    margin-bottom: 5px;
}

.header p {
    font-size: 1.1em;
    opacity: 0.9;
}

/* Utility Classes */
.demo-notice {
    background: rgba(255, 255, 255, 0.15);
    padding: 10px;
    border-radius: 10px;
    margin-top: 15px;
    font-size: 0.9em;
    opacity: 0.8;
}

.step-count {
    background: rgba(255, 255, 255, 0.2);
    display: inline-block;
    padding: 10px;
    border-radius: 25px;
    margin-top: 10px;
    font-weight: 500;
}

/* Loading States */
.loading {
    text-align: center;
    padding: 60px;
    color: #666;
    font-size: 1.2em;
}

.loading::after {
    content: '';
    animation: loading-dots 1.5s infinite;
}

@keyframes loading-dots {
    0%, 20% { content: '.'; }
    40% { content: '..'; }
    60%, 100% { content: '...'; }
}

.error {
    text-align: center;
    padding: 60px;
    color: #dc3545;
    font-size: 1.2em;
}

/* Product Images */
.product-image {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 12px;
    flex-shrink: 0;
    border: 3px solid hsl(26.09, 85.19%, 94.71%);
    transition: all 0.3s ease;
    cursor: pointer;
}

.product-image:hover {
    transform: scale(1.05);
    border-color: hsl(7.5, 78.87%, 72.15%);
}

.image-container {
    position: relative;
    width: 120px;
    height: 120px;
    flex-shrink: 0;
}

.image-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, hsl(26.09, 85.19%, 96%) 0%, hsl(26.09, 85.19%, 90%) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: hsl(238.64, 80%, 21.57%);
    font-size: 0.8em;
    text-align: center;
    border: 2px solid hsl(26.09, 85.19%, 94.71%);
}

.no-image {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, hsl(26.09, 85.19%, 94.71%) 0%, hsl(7.5, 78.87%, 85%) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: hsl(238.64, 80%, 21.57%);
    font-size: 0.9em;
    text-align: center;
    flex-shrink: 0;
}
