/* Simple Smart Women's Fashion Style */

:root {
    /* Clean Color Palette */
    --primary: #D4A5A5;
    --primary-dark: #B88A8A;
    --secondary: #9B8B8B;
    --accent: #E8D5D5;
    --dark: #2D2D2D;
    --text: #333333;
    --text-light: #6B6B6B;
    --bg: #FAFAFA;
    --white: #FFFFFF;
    --border: #E5E5E5;

    /* Simple Spacing */
    --radius: 8px;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 4px 12px rgba(0, 0, 0, 0.12);
}

/* Clean Body */
body.luxury-theme {
    background: var(--bg);
    font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', sans-serif;
}

/* Login Container */
.luxury-login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

/* Simple Card */
.luxury-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 3rem;
    box-shadow: var(--shadow);
    max-width: 420px;
    width: 100%;
}

/* Logo */
.luxury-logo {
    text-align: center;
    margin-bottom: 2rem;
}

.luxury-logo-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.luxury-logo-icon svg {
    width: 28px;
    height: 28px;
    color: white;
}

.luxury-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.luxury-subtitle {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* Form */
.luxury-form-group {
    margin-bottom: 1.5rem;
}

.luxury-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.luxury-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.95rem;
    color: var(--text);
    background: var(--white);
    transition: all 0.2s;
}

.luxury-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(212, 165, 165, 0.1);
}

/* Button */
.luxury-btn {
    width: 100%;
    padding: 0.875rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: var(--radius);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.luxury-btn:hover {
    background: var(--primary-dark);
    box-shadow: var(--shadow-hover);
}

/* Link */
.luxury-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.luxury-link:hover {
    color: var(--primary-dark);
}

/* Divider */
.luxury-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 1.5rem 0;
    color: var(--text-light);
    font-size: 0.875rem;
}

.luxury-divider::before,
.luxury-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid var(--border);
}

.luxury-divider::before {
    margin-right: 0.75rem;
}

.luxury-divider::after {
    margin-left: 0.75rem;
}

/* Dashboard */
.luxury-dashboard {
    background: var(--bg);
    min-height: 100vh;
    padding-bottom: 3rem;
}

/* Hero */
.luxury-hero {
    background: var(--primary);
    padding: 2.5rem 2rem;
    margin-bottom: 2rem;
    color: white;
}

.luxury-hero h1 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.luxury-hero p {
    font-size: 1rem;
    opacity: 0.95;
}

/* Stats Grid */
.luxury-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.25rem;
    margin-bottom: 2rem;
    padding: 0 1.5rem;
}

.luxury-stat-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.75rem;
    box-shadow: var(--shadow);
    transition: all 0.2s;
}

.luxury-stat-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

.luxury-stat-icon {
    width: 48px;
    height: 48px;
    background: var(--accent);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.luxury-stat-number {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.luxury-stat-label {
    font-size: 0.875rem;
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Action Grid */
.luxury-action-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
    padding: 0 1.5rem;
    margin-bottom: 2rem;
}

.luxury-action-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.5rem;
    border: 1px solid var(--border);
    transition: all 0.2s;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.luxury-action-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

.luxury-action-icon {
    width: 56px;
    height: 56px;
    background: var(--primary);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.luxury-action-content h3 {
    font-size: 1.125rem;
    color: var(--dark);
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.luxury-action-content p {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* Item Grid */
.luxury-item-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1.25rem;
    padding: 0 1.5rem;
}

.luxury-item-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.2s;
    cursor: pointer;
    text-decoration: none;
}

.luxury-item-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.luxury-item-image {
    aspect-ratio: 3/4;
    overflow: hidden;
    position: relative;
    background: var(--bg);
}

.luxury-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.luxury-item-card:hover .luxury-item-image img {
    transform: scale(1.05);
}

.luxury-item-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--primary);
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
}

.luxury-item-info {
    padding: 1rem;
}

.luxury-item-name {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.luxury-item-category {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* Section Title */
.luxury-section-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 1.25rem;
    padding-left: 1.5rem;
}

/* Fade Animation */
.luxury-fade-in {
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Simple Upload Zone */
.smart-upload:hover {
    border-color: var(--primary) !important;
    background: white !important;
}

/* Responsive */
@media (max-width: 768px) {
    .luxury-card {
        padding: 2rem 1.5rem;
    }

    .luxury-hero h1 {
        font-size: 1.5rem;
    }

    .luxury-stats-grid,
    .luxury-action-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }

    .luxury-item-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 0 1rem;
    }

    .luxury-section-title {
        padding-left: 1rem;
    }
}

/* Image Lightbox / Zoom */
.image-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-lightbox.active {
    display: flex !important;
    opacity: 1;
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    cursor: pointer;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    z-index: 10000;
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-image {
    max-width: 90vw;
    max-height: 90vh;
    width: auto;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    display: block;
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: 2px solid #E5E5E5;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.lightbox-close:hover {
    background: #D4A5A5;
    border-color: #D4A5A5;
    transform: scale(1.1);
}

.lightbox-close:hover svg {
    color: white;
}

/* Zoom Controls */
.lightbox-zoom-controls {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    background: white;
    padding: 10px;
    border-radius: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.lightbox-zoom-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: 2px solid #E5E5E5;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.lightbox-zoom-btn:hover {
    background: #D4A5A5;
    border-color: #D4A5A5;
    transform: scale(1.1);
}

.lightbox-zoom-btn:hover svg {
    color: white;
}

.lightbox-image-container {
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 90vw;
    max-height: 90vh;
    cursor: grab;
}

.lightbox-image-container.dragging {
    cursor: grabbing;
}

.lightbox-image-container .lightbox-image {
    transition: transform 0.3s ease;
    transform-origin: center center;
}

/* Mobile responsive for lightbox */
@media (max-width: 768px) {
    .lightbox-close {
        top: 10px;
        right: 10px;
    }

    .lightbox-image {
        max-width: 95vw;
        max-height: 85vh;
    }

    .lightbox-zoom-controls {
        bottom: -70px;
    }
}
