/* FlexiShop Premium Minimalist Luxury Stylesheet */
:root {
    --bg-cream: 36 30% 97%;
    --bg-white: 0 0% 100%;
    --text-charcoal: 20 15% 15%;
    --text-muted: 20 10% 45%;
    --accent-gold: 38 40% 50%;
    --accent-gold-hover: 38 45% 40%;
    --border: 30 10% 88%;
    --border-dark: 20 10% 20%;
    
    --font-sans: 'Plus Jakarta Sans', sans-serif;
    --font-serif: 'Cormorant Garamond', serif;
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: hsl(var(--bg-cream));
    color: hsl(var(--text-charcoal));
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography & luxury accent */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 500;
    letter-spacing: -0.01em;
}

.luxury-accent {
    font-family: var(--font-serif);
    font-style: italic;
    color: hsl(var(--accent-gold));
}

/* Header & Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 90;
    background-color: hsla(var(--bg-cream), 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid hsl(var(--border));
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.nav-logo {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 600;
    text-decoration: none;
    color: hsl(var(--text-charcoal));
}

.nav-search-bar {
    position: relative;
    width: 320px;
}

.nav-search-bar input {
    width: 100%;
    background-color: hsl(var(--bg-white));
    border: 1px solid hsl(var(--border));
    padding: 0.5rem 1rem 0.5rem 2.5rem;
    border-radius: 4px;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    color: hsl(var(--text-charcoal));
    transition: var(--transition);
}

.nav-search-bar input:focus {
    outline: none;
    border-color: hsl(var(--accent-gold));
}

.search-icon {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    color: hsl(var(--text-muted));
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    color: hsl(var(--text-charcoal));
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: var(--transition);
}

.nav-link:hover {
    color: hsl(var(--accent-gold));
}

.cart-trigger {
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    color: hsl(var(--text-charcoal));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    transition: var(--transition);
}

.cart-trigger:hover {
    color: hsl(var(--accent-gold));
}

.cart-trigger i {
    width: 24px;
    height: 24px;
}

.cart-count {
    position: absolute;
    top: -2px;
    right: -2px;
    background-color: hsl(var(--accent-gold));
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.875rem 2rem;
    border-radius: 4px;
    border: 1px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
}

.btn-sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.75rem;
}

.btn-full {
    width: 100%;
}

.btn-luxury {
    background-color: hsl(var(--text-charcoal));
    color: hsl(var(--bg-cream));
}

.btn-luxury:hover {
    background-color: hsl(var(--accent-gold));
    transform: translateY(-1px);
}

.btn-luxury:disabled {
    background-color: hsl(var(--border));
    color: hsl(var(--text-muted));
    cursor: not-allowed;
    transform: none;
}

/* Hero Section */
.hero-section {
    padding-top: 160px;
    padding-bottom: 80px;
    background-color: hsl(var(--bg-white));
    border-bottom: 1px solid hsl(var(--border));
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-subtitle {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: hsl(var(--accent-gold));
    font-weight: 600;
    margin-bottom: 1rem;
}

.hero-section h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-desc {
    font-size: 1.15rem;
    color: hsl(var(--text-muted));
    margin-bottom: 2.5rem;
    max-width: 500px;
}

/* Abstract CSS Scene */
.hero-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.abstract-scene {
    position: relative;
    width: 320px;
    height: 380px;
    border-radius: 160px 160px 0 0;
    background-color: hsl(var(--bg-cream));
    border: 1px solid hsl(var(--border));
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scene-circle {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 1px dashed hsl(var(--accent-gold));
    top: 50px;
    animation: rotateCircle 30s linear infinite;
}

.scene-blob {
    position: absolute;
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, hsla(var(--accent-gold), 0.25) 0%, transparent 70%);
    border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
    bottom: 80px;
    right: 30px;
}

.scene-item-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 40px;
    transform: scale(0.9);
}

.lamp-shade {
    width: 100px;
    height: 50px;
    background-color: hsl(var(--text-charcoal));
    border-radius: 50px 50px 0 0;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.lamp-stick {
    width: 4px;
    height: 120px;
    background-color: hsl(var(--accent-gold));
}

.lamp-base {
    width: 80px;
    height: 10px;
    background-color: hsl(var(--text-charcoal));
    border-radius: 4px;
}

@keyframes rotateCircle {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Catalog section */
.catalog-section {
    padding: 80px 0;
}

.catalog-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 3rem;
}

/* Sidebar filter widgets */
.filter-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.filter-widget h3 {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 1.25rem;
    border-bottom: 1px solid hsl(var(--border));
    padding-bottom: 0.5rem;
}

.category-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.category-item {
    font-size: 0.95rem;
    color: hsl(var(--text-muted));
    cursor: pointer;
    transition: var(--transition);
}

.category-item:hover, .category-item.active {
    color: hsl(var(--text-charcoal));
    font-weight: 600;
    padding-left: 5px;
}

.price-slider-container {
    padding: 0.5rem 0;
}

.slider {
    -webkit-appearance: none;
    width: 100%;
    height: 2px;
    background: hsl(var(--border));
    outline: none;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: hsl(var(--text-charcoal));
    border: 2px solid hsl(var(--accent-gold));
    cursor: pointer;
    transition: var(--transition);
}

.slider::-webkit-slider-thumb:hover {
    background: hsl(var(--accent-gold));
}

.price-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: hsl(var(--text-muted));
    margin-top: 0.5rem;
}

.promo-widget {
    background-color: hsl(var(--bg-white));
    border: 1px solid hsl(var(--border));
    padding: 1.5rem;
    border-radius: 4px;
}

.promo-widget h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.promo-widget p {
    font-size: 0.85rem;
    color: hsl(var(--text-muted));
}

/* Product grid */
.product-grid-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.grid-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid hsl(var(--border));
    padding-bottom: 1rem;
}

.results-count {
    font-size: 0.9rem;
    color: hsl(var(--text-muted));
}

.sort-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.sort-selector select {
    background-color: hsl(var(--bg-white));
    border: 1px solid hsl(var(--border));
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-family: var(--font-sans);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 2rem;
}

/* Product Cards */
.product-card {
    background-color: hsl(var(--bg-white));
    border: 1px solid hsl(var(--border));
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    border-color: hsl(var(--accent-gold));
}

.product-img-box {
    height: 240px;
    background-color: hsl(var(--bg-cream));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-visual-placeholder {
    width: 80px;
    height: 100px;
    border-radius: 4px;
    background: linear-gradient(135deg, hsl(var(--accent-gold)), hsl(var(--text-charcoal)));
    opacity: 0.85;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
}

.product-card:hover .product-visual-placeholder {
    transform: scale(1.05) rotate(2deg);
}

.product-info-box {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

.product-title {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.product-desc {
    font-size: 0.85rem;
    color: hsl(var(--text-muted));
    margin-bottom: 1rem;
    height: 40px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.product-price {
    font-family: var(--font-sans);
    font-size: 1.15rem;
    font-weight: 600;
}

.btn-add-cart {
    background: none;
    border: 1px solid hsl(var(--text-charcoal));
    color: hsl(var(--text-charcoal));
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.btn-add-cart:hover {
    background-color: hsl(var(--text-charcoal));
    color: hsl(var(--bg-white));
    border-color: hsl(var(--text-charcoal));
}

.btn-add-cart i {
    width: 16px;
    height: 16px;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background-color: hsl(var(--bg-white));
    border-top: 1px solid hsl(var(--border));
}

.about-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
}

.about-text {
    flex: 1.2;
}

.about-text h2 {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
}

.about-text p {
    color: hsl(var(--text-muted));
    font-size: 1.1rem;
}

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

.story-badge {
    background-color: hsl(var(--bg-cream));
    border: 1px solid hsl(var(--border));
    border-radius: 4px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.story-badge i {
    width: 28px;
    height: 28px;
    color: hsl(var(--accent-gold));
}

.story-badge h5 {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 600;
}

/* Cart Drawer */
.cart-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.4);
    backdrop-filter: blur(4px);
    z-index: 150;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.cart-drawer-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: -450px;
    width: 450px;
    max-width: 100%;
    height: 100%;
    background-color: hsl(var(--bg-white));
    box-shadow: -10px 0 40px rgba(0,0,0,0.1);
    z-index: 160;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.cart-drawer.active {
    right: 0;
}

.cart-header {
    padding: 2rem;
    border-bottom: 1px solid hsl(var(--border));
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h3 {
    font-size: 1.5rem;
}

.cart-close {
    background: none;
    border: none;
    cursor: pointer;
    color: hsl(var(--text-charcoal));
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-close i {
    width: 24px;
    height: 24px;
}

.cart-items {
    flex-grow: 1;
    overflow-y: auto;
    padding: 2rem;
}

.empty-cart-message {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 1rem;
    color: hsl(var(--text-muted));
}

.empty-icon {
    width: 48px;
    height: 48px;
    stroke-width: 1px;
}

.cart-item-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid hsl(var(--border));
    align-items: center;
}

.cart-item-img {
    width: 60px;
    height: 70px;
    background-color: hsl(var(--bg-cream));
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-item-img-placeholder {
    width: 25px;
    height: 35px;
    border-radius: 2px;
    background: linear-gradient(135deg, hsl(var(--accent-gold)), hsl(var(--text-charcoal)));
}

.cart-item-details {
    flex-grow: 1;
}

.cart-item-details h4 {
    font-size: 1.05rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.cart-item-price {
    font-size: 0.9rem;
    font-weight: 600;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.qty-btn {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 1px solid hsl(var(--border));
    background: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-val {
    font-size: 0.85rem;
    font-weight: 600;
}

.cart-item-delete {
    background: none;
    border: none;
    color: hsl(var(--text-muted));
    cursor: pointer;
    transition: var(--transition);
}

.cart-item-delete:hover {
    color: hsl(var(--accent-gold));
}

.cart-item-delete i {
    width: 18px;
    height: 18px;
}

.cart-footer {
    padding: 2rem;
    border-top: 1px solid hsl(var(--border));
    background-color: hsl(var(--bg-cream));
}

.summary-line {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.cart-divider {
    border: none;
    border-top: 1px solid hsl(var(--border));
    margin: 1rem 0;
}

.summary-line.total {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

/* Modal Checkout */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    backdrop-filter: blur(6px);
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-container {
    background-color: hsl(var(--bg-white));
    border-radius: 8px;
    width: 600px;
    max-width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    padding: 3rem;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    color: hsl(var(--text-charcoal));
}

.modal-close i {
    width: 20px;
    height: 20px;
}

.checkout-modal-content h2 {
    font-size: 2.25rem;
    text-align: center;
    margin-bottom: 0.5rem;
}

.modal-subtitle {
    text-align: center;
    color: hsl(var(--text-muted));
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.form-section {
    margin-bottom: 2rem;
}

.form-section h4 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border-bottom: 1px solid hsl(var(--border));
    padding-bottom: 0.25rem;
}

.form-row {
    display: flex;
    gap: 1rem;
}

.flex-1 { flex: 1; }
.flex-2 { flex: 2; }

.form-group {
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 600;
    color: hsl(var(--text-muted));
}

.form-group input {
    background-color: hsl(var(--bg-cream));
    border: 1px solid hsl(var(--border));
    border-radius: 4px;
    padding: 0.65rem 1rem;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: hsl(var(--text-charcoal));
    transition: var(--transition);
}

.form-group input:focus {
    outline: none;
    border-color: hsl(var(--accent-gold));
}

.input-icon-wrapper {
    position: relative;
}

.input-icon-wrapper input {
    width: 100%;
    padding-right: 2.5rem;
}

.input-icon-wrapper i {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: hsl(var(--text-muted));
}

/* Success View inside Modal */
.checkout-success-view {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: hsl(var(--bg-white));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem;
    z-index: 5;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.checkout-success-view.active {
    opacity: 1;
    pointer-events: auto;
}

.success-icon {
    width: 64px;
    height: 64px;
    color: #10b981;
    margin-bottom: 1.5rem;
}

.checkout-success-view h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.order-summary-box {
    background-color: hsl(var(--bg-cream));
    border: 1px solid hsl(var(--border));
    border-radius: 4px;
    padding: 1.5rem;
    width: 100%;
    max-width: 320px;
    margin: 2rem 0;
    text-align: left;
}

.order-summary-box p {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

/* Footer general styles */
.footer {
    border-top: 1px solid hsl(var(--border));
    background-color: hsl(var(--bg-white));
    padding: 4rem 0 2rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(2, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-brand p {
    color: hsl(var(--text-muted));
    font-size: 0.9rem;
    max-width: 250px;
}

.footer-links-col {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links-col h4 {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: var(--font-sans);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.footer-links-col a {
    color: hsl(var(--text-muted));
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links-col a:hover {
    color: hsl(var(--accent-gold));
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid hsl(var(--border));
    padding-top: 1.5rem;
    font-size: 0.8rem;
    color: hsl(var(--text-muted));
}

/* AI Stylist Widget */
.ai-stylist-trigger {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 140;
    background-color: hsl(var(--text-charcoal));
    color: hsl(var(--bg-cream));
    border: 1px solid hsl(var(--accent-gold));
    border-radius: 50px;
    padding: 0.8rem 1.5rem;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
}

.ai-stylist-trigger:hover {
    background-color: hsl(var(--accent-gold));
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.2);
}

.ai-stylist-trigger i {
    width: 16px;
    height: 16px;
}

.ai-stylist-window {
    position: fixed;
    bottom: 6rem;
    right: 2rem;
    width: 380px;
    max-width: calc(100vw - 4rem);
    height: 500px;
    background-color: hsl(var(--bg-white));
    border: 1px solid hsl(var(--border));
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    z-index: 140;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    pointer-events: none;
    transition: var(--transition);
}

.ai-stylist-window.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.ai-stylist-header {
    background-color: hsl(var(--bg-cream));
    border-bottom: 1px solid hsl(var(--border));
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stylist-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.stylist-avatar {
    width: 36px;
    height: 36px;
    background-color: hsl(var(--accent-gold));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
}

.stylist-info h4 {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 600;
}

.stylist-status {
    font-size: 0.75rem;
    color: #2e7d32;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.stylist-status::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: #2e7d32;
    border-radius: 50%;
}

.ai-stylist-close {
    background: none;
    border: none;
    cursor: pointer;
    color: hsl(var(--text-muted));
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.ai-stylist-close:hover {
    color: hsl(var(--text-charcoal));
}

.ai-stylist-close i {
    width: 20px;
    height: 20px;
}

.ai-stylist-messages {
    flex-grow: 1;
    overflow-y: auto;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.message {
    max-width: 80%;
    padding: 0.8rem 1rem;
    border-radius: 12px;
    font-size: 0.9rem;
    line-height: 1.4;
}

.message.incoming {
    background-color: hsl(var(--bg-cream));
    color: hsl(var(--text-charcoal));
    align-self: flex-start;
    border-top-left-radius: 2px;
}

.message.outgoing {
    background-color: hsl(var(--text-charcoal));
    color: hsl(var(--bg-cream));
    align-self: flex-end;
    border-top-right-radius: 2px;
}

.stylist-recommendation-card {
    border: 1px solid hsl(var(--border));
    background-color: hsl(var(--bg-white));
    border-radius: 6px;
    padding: 0.75rem;
    margin-top: 0.5rem;
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.stylist-recommendation-card .rec-img {
    width: 45px;
    height: 55px;
    border-radius: 4px;
    background-color: hsl(var(--bg-cream));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.rec-img-placeholder {
    width: 20px;
    height: 28px;
    border-radius: 2px;
}

.stylist-recommendation-card .rec-details {
    flex-grow: 1;
}

.stylist-recommendation-card h5 {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.15rem;
    color: hsl(var(--text-charcoal));
}

.stylist-recommendation-card .rec-price {
    font-size: 0.8rem;
    font-weight: 700;
    color: hsl(var(--accent-gold));
}

.btn-rec-add {
    background: none;
    border: 1px solid hsl(var(--text-charcoal));
    color: hsl(var(--text-charcoal));
    border-radius: 50%;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
}

.btn-rec-add:hover {
    background-color: hsl(var(--text-charcoal));
    color: white;
}

.btn-rec-add i {
    width: 12px;
    height: 12px;
}

.ai-stylist-chips {
    display: flex;
    gap: 0.5rem;
    padding: 0 1.5rem 0.75rem 1.5rem;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none;
}

.ai-stylist-chips::-webkit-scrollbar {
    display: none;
}

.chip-btn {
    background-color: hsl(var(--bg-cream));
    border: 1px solid hsl(var(--border));
    color: hsl(var(--text-muted));
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.4rem 0.8rem;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
}

.chip-btn:hover {
    border-color: hsl(var(--accent-gold));
    color: hsl(var(--text-charcoal));
}

.ai-stylist-input-area {
    padding: 1rem 1.5rem;
    border-top: 1px solid hsl(var(--border));
    display: flex;
    gap: 0.75rem;
    background-color: hsl(var(--bg-white));
}

.ai-stylist-input-area input {
    flex-grow: 1;
    border: 1px solid hsl(var(--border));
    background-color: hsl(var(--bg-cream));
    border-radius: 6px;
    padding: 0.6rem 1rem;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    color: hsl(var(--text-charcoal));
    outline: none;
    transition: var(--transition);
}

.ai-stylist-input-area input:focus {
    border-color: hsl(var(--accent-gold));
}

.ai-stylist-input-area button {
    background-color: hsl(var(--text-charcoal));
    color: white;
    border: none;
    border-radius: 6px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.ai-stylist-input-area button:hover {
    background-color: hsl(var(--accent-gold));
}

.ai-stylist-input-area button i {
    width: 16px;
    height: 16px;
}

.typing-indicator {
    display: flex;
    gap: 4px;
    align-items: center;
    padding: 0.25rem 0.5rem;
}

.typing-indicator span {
    width: 6px;
    height: 6px;
    background-color: hsl(var(--text-muted));
    border-radius: 50%;
    animation: bounce 1.4s infinite ease-in-out both;
}

.typing-indicator span:nth-child(1) { animation-delay: -0.32s; }
.typing-indicator span:nth-child(2) { animation-delay: -0.16s; }

@keyframes bounce {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1); }
}

@media (max-width: 600px) {
    .ai-stylist-window {
        bottom: 5rem;
        right: 1rem;
        left: 1rem;
        width: auto;
        height: 400px;
    }
}

/* Responsive */
@media (max-width: 968px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-content {
        align-items: center;
    }
    
    .catalog-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .filter-sidebar {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 2rem;
    }
    
    .filter-widget {
        flex: 1;
        min-width: 200px;
    }
    
    .about-container {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }
}

@media (max-width: 600px) {
    .navbar {
        height: auto;
        padding: 1rem 0;
    }
    
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-search-bar {
        width: 100%;
    }
    
    .hero-section {
        padding-top: 220px;
    }
    
    .hero-section h1 {
        font-size: 2.75rem;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
    }
}
