/* =========================================
   Glutax 9Gs - Professional Beauty Edition
   Color Scheme: Soft Rose, Warm Terracotta, Cream, Deep Charcoal
   Font Icons: Font Awesome 6
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Montserrat:wght@300;400;500;600;700&display=swap');

/* Font Awesome 6 (Free CDN) */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css');

:root {
    /* Professional Beauty Color Palette */
    --primary: #b85c4a;
    --primary-dark: #8b3e30;
    --primary-light: #d4856f;
    --secondary: #7a6b5d;
    --secondary-light: #b0a094;
    --accent: #c76e5a;
    --rose: #e8cbc0;
    --rose-dark: #d4afa0;
    --cream: #fdf8f5;
    --cream-dark: #f5ede6;
    --dark: #2c241f;
    --dark-muted: #4a3b33;
    --gray: #8a7e76;
    --gray-light: #c5b9b0;
    --gray-bg: #faf7f4;
    --white: #ffffff;
    --black: #1c1612;
    --success: #2e7d32;
    --danger: #c62828;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #b85c4a 0%, #d4856f 100%);
    --gradient-secondary: linear-gradient(135deg, #7a6b5d 0%, #b0a094 100%);
    --gradient-soft: linear-gradient(135deg, #fdf8f5 0%, #f5ede6 100%);
    --gradient-warm: linear-gradient(135deg, #e8cbc0 0%, #d4afa0 100%);
    --gradient-dark: linear-gradient(135deg, #2c241f 0%, #4a3b33 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(44, 36, 31, 0.04);
    --shadow: 0 8px 30px rgba(44, 36, 31, 0.06);
    --shadow-lg: 0 15px 40px rgba(44, 36, 31, 0.08);
    --shadow-primary: 0 12px 30px rgba(184, 92, 74, 0.15);
    --shadow-hover: 0 20px 40px rgba(184, 92, 74, 0.12);
    
    --border-radius: 20px;
    --border-radius-sm: 12px;
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--cream);
    color: var(--dark);
    overflow-x: hidden;
    line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }
ul { list-style: none; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--cream-dark); }
::-webkit-scrollbar-thumb { background: var(--primary-light); border-radius: 10px; }

/* ===== TOP ANNOUNCEMENT BAR ===== */
.top-bar {
    background: var(--gradient-dark);
    color: var(--rose);
    text-align: center;
    padding: 10px 20px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.8px;
    position: relative;
    overflow: hidden;
}
.top-bar::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(232,203,192,0.1), transparent);
    animation: shimmer 4s infinite;
}
@keyframes shimmer { to { left: 100%; } }
.top-bar i { margin-right: 5px; }
.top-bar a { color: var(--rose); font-weight: 600; text-decoration: none; }

/* ===== HEADER ===== */
header {
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(184, 92, 74, 0.08);
}
.header-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo img { height: 50px; width: auto; }
.logo-text { display: flex; flex-direction: column; }
.logo-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 600;
    color: var(--primary);
    line-height: 1;
    letter-spacing: -0.5px;
}
.logo-tagline {
    font-size: 9px;
    color: var(--secondary);
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 500;
}
nav { display: flex; align-items: center; gap: 6px; }
nav a {
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 500;
    color: var(--dark);
    transition: var(--transition);
    position: relative;
}
nav a i { margin-right: 6px; }
nav a:hover { color: var(--primary); background: rgba(184, 92, 74, 0.05); }
.nav-order-btn {
    background: var(--gradient-primary) !important;
    color: var(--white) !important;
    padding: 10px 24px !important;
    border-radius: 40px !important;
    font-weight: 600 !important;
    box-shadow: var(--shadow-primary);
}
.nav-order-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
}
.hamburger span {
    width: 24px; height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: var(--transition);
    display: block;
}
.mobile-nav {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(44,36,31,0.98);
    z-index: 9999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
}
.mobile-nav.active { display: flex; }
.mobile-nav a {
    color: var(--rose);
    font-size: 22px;
    font-weight: 500;
    font-family: 'Cormorant Garamond', serif;
    padding: 12px 30px;
    border-bottom: 1px solid rgba(232,203,192,0.15);
    width: 80%;
    text-align: center;
    transition: var(--transition);
}
.mobile-nav a i { margin-right: 10px; }
.mobile-nav a:hover { color: var(--primary-light); }
.mobile-nav-close {
    position: absolute;
    top: 24px; right: 24px;
    color: var(--rose);
    font-size: 28px;
    cursor: pointer;
    background: none;
    border: none;
}

/* ===== HERO SLIDER ===== */
.hero-slider {
    position: relative;
    height: 85vh;
    min-height: 550px;
    overflow: hidden;
}
.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease;
    display: flex;
    align-items: center;
}
.slide.active { opacity: 1; }
.slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    transition: transform 8s ease;
}
.slide.active .slide-bg { transform: scale(1); }
.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(44,36,31,0.7) 0%, rgba(184,92,74,0.3) 60%, transparent 100%);
}
.slide-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    padding: 40px 60px;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.9s ease 0.3s;
}
.slide.active .slide-content {
    opacity: 1;
    transform: translateY(0);
}
.slide-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--white);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 30px;
    margin-bottom: 20px;
}
.slide-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 5vw, 62px);
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 16px;
    font-weight: 600;
}
.slide-title span { color: var(--rose); font-style: italic; }
.slide-subtitle {
    font-size: 15px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 32px;
    line-height: 1.7;
    font-weight: 400;
}
.slide-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-primary);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.btn-whatsapp {
    background: #25d366;
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.btn-whatsapp:hover { background: #128c7e; transform: translateY(-2px); }
.slider-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}
.slider-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: var(--transition);
    border: none;
}
.slider-dot.active { background: var(--primary-light); width: 28px; border-radius: 20px; }
.slider-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 24px;
    z-index: 10;
}
.slider-arrow {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.25);
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}
.slider-arrow:hover { background: var(--primary); border-color: var(--primary); }

/* ===== SECTIONS ===== */
section { padding: 80px 0; }
.container { max-width: 1300px; margin: 0 auto; padding: 0 24px; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-label {
    display: inline-block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 500;
    font-style: italic;
    color: var(--primary-light);
    margin-bottom: 8px;
}
.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(30px, 4vw, 44px);
    color: var(--dark);
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 18px;
}
.section-divider .line {
    width: 50px; height: 1px;
    background: var(--primary-light);
}
.section-divider .diamond {
    width: 6px; height: 6px;
    background: var(--primary);
    transform: rotate(45deg);
}
.section-subtitle {
    color: var(--gray);
    font-size: 15px;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
}

/* ===== FEATURES STRIP ===== */
.features-strip {
    background: var(--gradient-dark);
    padding: 28px 0;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 20px;
    border-right: 1px solid rgba(232,203,192,0.12);
}
.feature-item:last-child { border-right: none; }
.feature-icon {
    width: 44px; height: 44px;
    background: rgba(232,203,192,0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    border: 1px solid rgba(232,203,192,0.2);
    color: var(--rose);
}
.feature-text h4 {
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 2px;
    letter-spacing: 0.3px;
}
.feature-text p { color: rgba(255,255,255,0.55); font-size: 11px; }

/* ===== PRODUCTS SECTION ===== */
.products-section { background: var(--cream); }
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}
.product-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(184,92,74,0.06);
}
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.product-badge {
    position: absolute;
    top: 16px; left: 16px;
    background: var(--gradient-primary);
    color: white;
    font-size: 10px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 30px;
    z-index: 2;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 5px;
}
.product-badge.sale { background: var(--gradient-warm); color: var(--primary-dark); }
.product-image {
    height: 250px;
    overflow: hidden;
    background: var(--gray-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}
.product-card:hover .product-image img { transform: scale(1.03); }
.product-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    font-size: 60px;
    color: var(--primary-light);
    opacity: 0.4;
}
.product-info { padding: 22px; }
.product-category {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-light);
    font-weight: 600;
    margin-bottom: 6px;
}
.product-category i { margin-right: 4px; }
.product-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
    line-height: 1.3;
}
.product-desc {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 14px;
    line-height: 1.65;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}
.price-current {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    font-family: 'Cormorant Garamond', serif;
}
.price-original {
    font-size: 14px;
    color: var(--gray-light);
    text-decoration: line-through;
}
.price-save {
    background: var(--cream-dark);
    color: var(--primary);
    font-size: 10px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.product-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.product-actions .btn-sm {
    padding: 10px 12px;
    border-radius: 40px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.btn-order {
    background: var(--gradient-primary);
    color: white;
}
.btn-order:hover { opacity: 0.9; transform: translateY(-1px); }
.btn-view {
    background: var(--cream-dark);
    color: var(--dark);
}
.btn-view:hover { background: var(--rose-dark); color: var(--white); }
.btn-full-order {
    grid-column: 1 / -1;
    background: #25d366;
    color: white;
}
.btn-full-order:hover { background: #128c7e; }

/* ===== QUANTITY SELECTOR ===== */
.quantity-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.qty-input-modern {
    display: flex;
    align-items: center;
    border: 1.5px solid var(--cream-dark);
    border-radius: 12px;
    overflow: hidden;
    background: var(--white);
}
.qty-btn-modern {
    width: 44px;
    height: 48px;
    background: var(--cream);
    border: none;
    font-size: 16px;
    cursor: pointer;
    color: var(--primary);
    font-weight: 600;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.qty-btn-modern:hover {
    background: var(--primary);
    color: white;
}
.qty-num-modern {
    flex: 1;
    text-align: center;
    font-weight: 600;
    font-size: 18px;
    color: var(--dark);
    border: none;
    background: transparent;
    outline: none;
    padding: 0;
    width: 60px;
}
.qty-num-modern::-webkit-inner-spin-button,
.qty-num-modern::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.qty-presets-modern {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.qty-preset-btn-modern {
    padding: 8px 16px;
    background: var(--cream);
    border: 1.5px solid var(--cream-dark);
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    color: var(--dark);
}
.qty-preset-btn-modern:hover,
.qty-preset-btn-modern.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-2px);
}

/* ===== QUICK ORDER FORM ===== */
.quick-order-section {
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}
.quick-order-section::before {
    content: '';
    position: absolute;
    top: -30%; right: -15%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(184,92,74,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.order-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.order-info-side .section-label { color: var(--rose); font-style: italic; }
.order-info-side .section-title { color: var(--white); }
.order-info-side .section-subtitle { color: rgba(255,255,255,0.65); text-align: left; }
.order-features { margin-top: 32px; display: flex; flex-direction: column; gap: 16px; }
.order-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.8);
    font-size: 14px;
}
.order-feature .icon {
    width: 34px; height: 34px;
    background: rgba(232,203,192,0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
    border: 1px solid rgba(232,203,192,0.2);
    color: var(--rose);
}
.order-form-wrapper {
    background: var(--white);
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
}
.order-form-wrapper h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 24px;
    text-align: center;
}
.order-form-wrapper h3 i { margin-right: 10px; }
.form-group { margin-bottom: 18px; }
.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 6px;
    letter-spacing: 0.3px;
}
.form-group label i { margin-right: 5px; color: var(--primary); }
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--cream-dark);
    border-radius: var(--border-radius-sm);
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    color: var(--dark);
    background: var(--white);
    transition: var(--transition);
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(184,92,74,0.08);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.qty-input {
    display: flex;
    align-items: center;
    border: 1.5px solid var(--cream-dark);
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    background: var(--white);
}
.qty-btn {
    width: 40px; height: 44px;
    background: var(--cream);
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: var(--primary);
    font-weight: 600;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}
.qty-btn:hover { background: var(--primary-light); color: white; }
.qty-num {
    flex: 1;
    text-align: center;
    font-weight: 600;
    font-size: 15px;
    color: var(--dark);
    border: none;
    background: transparent;
    outline: none;
    padding: 0;
}
.total-display {
    background: var(--cream);
    border-radius: var(--border-radius-sm);
    padding: 14px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border: 1px solid var(--cream-dark);
}
.total-display .label { font-size: 13px; color: var(--gray); font-weight: 500; }
.total-display .label i { margin-right: 5px; }
.total-display .amount {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    font-family: 'Cormorant Garamond', serif;
}
.form-btns { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-btns .btn { 
    padding: 14px; 
    border-radius: 50px; 
    font-weight: 600; 
    font-size: 13px; 
    cursor: pointer; 
    border: none; 
    transition: var(--transition); 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    gap: 8px; 
}
.btn-primary-custom {
    background: var(--gradient-primary);
    color: white;
}
.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
}
.btn-wa-custom {
    background: #25d366;
    color: white;
}
.btn-wa-custom:hover {
    background: #128c7e;
    transform: translateY(-2px);
}

/* ===== WHY CHOOSE US ===== */
.why-section { background: var(--white); }
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.why-card {
    text-align: center;
    padding: 38px 28px;
    border-radius: var(--border-radius);
    border: 1px solid var(--cream-dark);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    background: var(--white);
}
.why-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition);
}
.why-card:hover::before { transform: scaleX(1); }
.why-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.why-icon {
    width: 70px; height: 70px;
    margin: 0 auto 20px;
    background: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    border: 2px solid var(--primary-light);
    color: var(--primary);
}
.why-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 10px;
}
.why-card p { font-size: 13px; color: var(--gray); line-height: 1.7; }

/* ===== TESTIMONIALS ===== */
.testimonials-section { background: var(--gray-bg); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testimonial-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 28px;
    box-shadow: var(--shadow);
    border: 1px solid var(--cream-dark);
    position: relative;
}
.testimonial-card::before {
    content: '"';
    font-family: 'Cormorant Garamond', serif;
    font-size: 70px;
    color: var(--primary-light);
    position: absolute;
    top: 10px; left: 24px;
    line-height: 1;
    pointer-events: none;
    opacity: 0.2;
}
.stars { color: #f5b042; font-size: 13px; margin-bottom: 14px; margin-top: 28px; }
.stars i { margin-right: 2px; }
.testimonial-text {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 18px;
    font-style: italic;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid var(--cream-dark);
    padding-top: 14px;
}
.author-avatar {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--white);
    font-size: 16px;
    flex-shrink: 0;
}
.author-name { font-weight: 600; font-size: 13px; color: var(--dark); }
.author-tag { font-size: 11px; color: var(--primary-light); }
.author-tag i { margin-right: 3px; }

/* ===== PRODUCT MODAL ===== */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(44,36,31,0.85);
    z-index: 10000;
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.modal-overlay.active { display: flex; }
.modal-box {
    background: var(--white);
    border-radius: 24px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: var(--shadow-lg);
    animation: modalIn 0.35s ease;
}
@keyframes modalIn {
    from { opacity: 0; transform: scale(0.96) translateY(15px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}
.modal-close {
    position: absolute;
    top: 18px; right: 18px;
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--cream);
    border: none;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    transition: var(--transition);
    color: var(--dark);
}
.modal-close:hover { background: var(--cream-dark); }
.modal-content { display: grid; grid-template-columns: 1fr 1fr; }
.modal-image {
    height: 100%;
    min-height: 400px;
    background: var(--gray-bg);
    border-radius: 24px 0 0 24px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.modal-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    font-size: 80px;
    color: var(--primary-light);
    opacity: 0.4;
}
.modal-details { padding: 36px; }
.modal-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--cream);
    color: var(--primary);
    font-size: 10px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.modal-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 10px;
    line-height: 1.3;
}
.modal-price { margin: 16px 0; }
.modal-desc { 
    font-size: 13px; 
    color: var(--gray); 
    line-height: 1.8; 
    margin-bottom: 22px; 
}
.modal-qty { 
    display: flex; 
    align-items: center; 
    gap: 14px; 
    margin-bottom: 22px; 
    flex-wrap: wrap;
}
.modal-qty label { 
    font-weight: 600; 
    font-size: 13px; 
}
.modal-qty label i { margin-right: 5px; }
.modal-btns { display: grid; gap: 12px; }
.modal-btns .btn { 
    padding: 14px; 
    border-radius: 50px; 
    font-size: 13px; 
    font-weight: 600; 
    cursor: pointer; 
    border: none; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    gap: 8px; 
    transition: var(--transition); 
    text-decoration: none;
}
.btn-primary-modal {
    background: var(--gradient-primary);
    color: white;
}
.btn-primary-modal:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
}
.btn-wa-modal {
    background: #25d366;
    color: white;
}
.btn-wa-modal:hover {
    background: #128c7e;
    transform: translateY(-2px);
}
.btn-detail-modal {
    background: var(--cream);
    color: var(--primary);
    border: 1px solid var(--cream-dark);
}
.btn-detail-modal:hover {
    background: var(--cream-dark);
    transform: translateY(-2px);
}
.qty-presets {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}
.qty-preset-btn {
    padding: 6px 14px;
    background: var(--cream);
    border: 1px solid var(--cream-dark);
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    color: var(--dark);
}
.qty-preset-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* ===== ORDER SUCCESS ===== */
.order-success {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(44,36,31,0.9);
    z-index: 99999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.order-success.show { display: flex; }
.success-box {
    background: white;
    border-radius: 24px;
    padding: 48px 40px;
    text-align: center;
    max-width: 450px;
    width: 100%;
    animation: modalIn 0.4s ease;
}
.success-icon { font-size: 64px; margin-bottom: 20px; color: var(--primary); }
.success-box h3 { 
    font-family: 'Cormorant Garamond', serif; 
    font-size: 28px; 
    font-weight: 600; 
    color: var(--dark); 
    margin-bottom: 10px; 
}
.success-box p { color: var(--gray); margin-bottom: 6px; font-size: 13px; }
.order-id { 
    background: var(--cream); 
    border-radius: 12px; 
    padding: 12px; 
    margin: 16px 0; 
    font-weight: 600; 
    color: var(--primary); 
    font-size: 15px; 
}
.order-id i { margin-right: 8px; }
.continue-btn {
    margin-top: 20px;
    background: var(--gradient-primary);
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    border: none;
    cursor: pointer;
    font-weight: 700;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.continue-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
}

/* ===== FOOTER ===== */
footer {
    background: var(--gradient-dark);
    color: rgba(255,255,255,0.75);
    padding: 60px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 45px;
    padding-bottom: 45px;
    border-bottom: 1px solid rgba(232,203,192,0.1);
    margin-bottom: 30px;
}
.footer-brand .logo-name { color: var(--rose); font-size: 28px; }
.footer-brand .logo-tagline { color: var(--rose-dark); }
.footer-desc { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.8; margin: 16px 0; }
.social-links { display: flex; gap: 12px; flex-wrap: wrap; }
.social-link {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(232,203,192,0.1);
    border: 1px solid rgba(232,203,192,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: var(--transition);
    color: var(--rose);
}
.social-link:hover { background: var(--primary); color: var(--white); transform: translateY(-3px); border-color: var(--primary); }
.footer-col h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 10px;
}
.footer-col h4 i { margin-right: 8px; }
.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 35px; height: 2px;
    background: var(--primary-light);
    border-radius: 2px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { 
    font-size: 12px; 
    color: rgba(255,255,255,0.6); 
    transition: var(--transition); 
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.footer-col ul li a i { font-size: 10px; }
.footer-col ul li a:hover { color: var(--rose); padding-left: 4px; }
.footer-contact-item { 
    display: flex; 
    gap: 10px; 
    margin-bottom: 12px; 
    font-size: 12px; 
    color: rgba(255,255,255,0.65); 
    align-items: flex-start;
}
.footer-contact-item i { 
    color: var(--rose); 
    font-size: 14px; 
    margin-top: 2px;
    width: 18px;
}
.whatsapp-footer-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25d366;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 700;
    transition: all 0.3s;
    text-decoration: none;
}
.whatsapp-footer-btn:hover {
    background: #128c7e;
    transform: translateY(-2px);
}
.footer-bottom {
    text-align: center;
    padding: 20px;
    font-size: 11px;
    color: rgba(255,255,255,0.4);
    border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-bottom span { color: var(--rose); }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 28px; right: 28px;
    z-index: 9998;
}
.wa-btn {
    width: 56px; height: 56px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 6px 20px rgba(37,211,102,0.35);
    transition: var(--transition);
    cursor: pointer;
    color: white;
    text-decoration: none;
}
.wa-btn:hover { transform: scale(1.08) !important; }
.wa-tooltip {
    position: absolute;
    bottom: 68px; right: 0;
    background: var(--white);
    border-radius: 10px;
    padding: 8px 14px;
    font-size: 12px;
    font-weight: 600;
    color: var(--dark);
    white-space: nowrap;
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(8px);
    transition: var(--transition);
    pointer-events: none;
}
.whatsapp-float:hover .wa-tooltip { opacity: 1; transform: translateY(0); }

/* ===== ALERTS ===== */
.alert {
    padding: 12px 18px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.alert-success { background: #e8f5e9; color: #2e7d32; border-left: 4px solid #4caf50; }
.alert-error { background: #fde8e8; color: #c62828; border-left: 4px solid #ef5350; }
.alert i { font-size: 16px; }

/* ===== LOADING ===== */
.loading { 
    display: inline-block; 
    width: 40px; 
    height: 40px; 
    border: 3px solid rgba(184, 92, 74, 0.2); 
    border-radius: 50%; 
    border-top-color: var(--primary); 
    animation: spin 0.8s linear infinite; 
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ===== ANIMATIONS ===== */
.fade-up {
    opacity: 0;
    transform: translateY(25px);
    transition: all 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ===== PRODUCT PAGE ===== */
.page-hero {
    background: var(--gradient-dark);
    padding: 55px 0;
    text-align: center;
}
.page-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    font-weight: 600;
    color: var(--rose);
    margin-bottom: 15px;
}
.breadcrumb { display: flex; justify-content: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,0.55); }
.breadcrumb a { color: var(--rose); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { color: var(--rose); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .order-layout { grid-template-columns: 1fr; gap: 40px; }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .modal-content { grid-template-columns: 1fr; }
    .modal-image { min-height: 280px; border-radius: 24px 24px 0 0; }
}
@media (max-width: 768px) {
    nav { display: none; }
    .hamburger { display: flex; }
    .hero-slider { height: 70vh; }
    .slide-content { padding: 20px 28px; }
    .slide-btns { flex-direction: column; align-items: flex-start; }
    .features-grid { grid-template-columns: 1fr; }
    .feature-item { border-right: none; border-bottom: 1px solid rgba(232,203,192,0.12); }
    .products-grid { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }
    .why-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-col h4::after { left: 50%; transform: translateX(-50%); }
    .form-row { grid-template-columns: 1fr; }
    .form-btns { grid-template-columns: 1fr; }
    section { padding: 55px 0; }
    .social-links { justify-content: center; }
    .order-form-wrapper { padding: 24px; }
}
@media (max-width: 480px) {
    .product-actions { grid-template-columns: 1fr; }
    .header-inner { height: 70px; padding: 0 16px; }
    .logo-name { font-size: 22px; }
    .logo img { height: 40px; }
    .order-form-wrapper { padding: 20px; }
    .modal-details { padding: 24px; }
    .modal-name { font-size: 24px; }
    .success-box { padding: 32px 24px; }
    .qty-presets-modern { justify-content: center; }
    .qty-preset-btn-modern { padding: 6px 12px; font-size: 12px; }
}

/* ===== ADDITIONAL BEAUTY TOUCHES ===== */
.product-card:hover .product-name { color: var(--primary); }
:focus-visible {
    outline: 2px solid var(--primary-light);
    outline-offset: 2px;
    border-radius: 4px;
}
::selection {
    background: var(--primary-light);
    color: var(--white);
}
.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.btn-primary, .btn-order, .btn-whatsapp, .nav-order-btn {
    transition: all 0.3s ease;
}
.product-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 70%, rgba(44,36,31,0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}
.product-card:hover .product-image::after { opacity: 1; }
@media (min-width: 1600px) { .container { max-width: 1400px; } }