/* ============================================
   Belleza Cosmetics - Main Stylesheet
   Colors: Gold #C9A03A, Cream #F5EFE7, Charcoal #2E2E2E, Black #0B0B0B, Purple #6B44A8, Mint #98C9A3
   ============================================ */

:root {
    --gold: #C9A03A;
    --gold-light: #D4B04E;
    --gold-dark: #A88530;
    --cream: #F5EFE7;
    --cream-light: #FAF8F4;
    --charcoal: #2E2E2E;
    --black: #0B0B0B;
    --purple: #6B44A8;
    --purple-light: #8B6BC0;
    --mint: #98C9A3;
    --mint-light: #B5DCC0;
    --white: #FFFFFF;
    --gray-100: #F8F9FA;
    --gray-200: #E9ECEF;
    --gray-300: #DEE2E6;
    --gray-400: #CED4DA;
    --gray-500: #ADB5BD;
    --gray-600: #6C757D;
    --gray-700: #495057;
    --gray-800: #343A40;
    --danger: #DC3545;
    --success: #28A745;
    --warning: #FFC107;
    --font-ar: 'Cairo', sans-serif;
    --font-en: 'Poppins', sans-serif;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow: 0 4px 15px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
    --radius-sm: 8px;
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --transition: all 0.3s ease;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-ar);
    font-size: 16px;
    line-height: 1.7;
    color: var(--charcoal);
    background: var(--white);
    overflow-x: hidden;
}
body.lang-en { font-family: var(--font-en); }
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select {
    font-family: inherit;
    font-size: 15px;
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    width: 100%;
    transition: var(--transition);
    background: var(--white);
    color: var(--charcoal);
}
input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201,160,58,0.15);
}
textarea { resize: vertical; min-height: 120px; }

/* Container */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
}
.btn-sm { padding: 8px 20px; font-size: 14px; }
.btn-lg { padding: 16px 36px; font-size: 17px; }
.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    border-color: var(--gold);
}
.btn-primary:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201,160,58,0.35);
}
.btn-secondary {
    background: var(--purple);
    color: var(--white);
    border-color: var(--purple);
}
.btn-secondary:hover {
    background: var(--purple-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(107,68,168,0.35);
}
.btn-outline {
    background: transparent;
    color: var(--gold);
    border-color: var(--gold);
}
.btn-outline:hover {
    background: var(--gold);
    color: var(--white);
}
.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    border-color: #25D366;
}
.btn-whatsapp:hover {
    background: #20BD5A;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37,211,102,0.35);
}
.btn-white {
    background: var(--white);
    color: var(--gold);
    border-color: var(--white);
}
.btn-white:hover {
    background: var(--cream);
    transform: translateY(-2px);
}

/* Top Bar */
.top-bar {
    background: var(--black);
    color: var(--white);
    padding: 8px 0;
    font-size: 13px;
}
.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.top-bar-left {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}
.top-bar-left span { display: flex; align-items: center; gap: 6px; }
.top-bar-left a { color: var(--gold-light); }
.top-bar-left a:hover { color: var(--gold); }
.top-bar-right { display: flex; align-items: center; gap: 15px; }
.social-links-top { display: flex; gap: 10px; }
.social-links-top a { color: var(--white); font-size: 14px; }
.social-links-top a:hover { color: var(--gold); }
.lang-switch {
    background: var(--gold);
    color: var(--white);
    padding: 4px 14px;
    border-radius: var(--radius-xl);
    font-size: 12px;
    font-weight: 600;
}
.lang-switch:hover { background: var(--gold-light); }

/* Main Header */
.main-header {
    background: var(--white);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.main-header.scrolled {
    padding: 10px 0;
    box-shadow: var(--shadow);
}
.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}
.logo img { height: 55px; width: auto; }
.main-nav { flex: 1; }
.nav-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
.nav-list > li > a {
    padding: 10px 15px;
    font-weight: 600;
    font-size: 14px;
    color: var(--charcoal);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 5px;
}
.nav-list > li > a:hover,
.nav-list > li > a.active { color: var(--gold); background: rgba(201,160,58,0.08); }
.nav-list > li > a i { font-size: 10px; }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 220px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
}
.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown li a {
    display: block;
    padding: 8px 20px;
    font-size: 14px;
    color: var(--charcoal);
}
.dropdown li a:hover { background: var(--cream); color: var(--gold); }

.header-actions { display: flex; align-items: center; gap: 12px; }

/* Mobile Toggle */
.mobile-toggle { display: none; width: 30px; height: 24px; position: relative; }
.mobile-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--charcoal);
    border-radius: 3px;
    position: absolute;
    transition: var(--transition);
}
.mobile-toggle span:nth-child(1) { top: 0; }
.mobile-toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.mobile-toggle span:nth-child(3) { bottom: 0; }

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: var(--white);
    z-index: 2000;
    transition: var(--transition);
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
}
[dir="ltr"] .mobile-menu { right: auto; left: -300px; }
.mobile-menu.active { right: 0; }
[dir="ltr"] .mobile-menu.active { left: 0; }
.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--gray-200);
}
.mobile-logo { height: 40px; }
.mobile-close { font-size: 24px; color: var(--charcoal); }
.mobile-nav-list { padding: 15px 0; }
.mobile-nav-list li a {
    display: block;
    padding: 12px 25px;
    font-weight: 500;
    font-size: 15px;
    border-bottom: 1px solid var(--gray-100);
}
.mobile-nav-list li a:hover { color: var(--gold); background: var(--cream-light); }
.mobile-menu-footer { padding: 20px; text-align: center; }
.lang-switch-mobile {
    display: inline-block;
    background: var(--gold);
    color: var(--white);
    padding: 8px 24px;
    border-radius: var(--radius-xl);
    font-weight: 600;
}
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}
.mobile-overlay.active { opacity: 1; visibility: visible; }

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--black) 0%, var(--charcoal) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
}
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201,160,58,0.15) 0%, transparent 70%);
    border-radius: 50%;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(107,68,168,0.1) 0%, transparent 70%);
    border-radius: 50%;
}
.hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 1;
}
.hero-text { flex: 1; }
.hero-text h1 {
    font-size: 42px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 20px;
}
.hero-text h1 span { color: var(--gold); }
.hero-text p {
    font-size: 18px;
    color: var(--gray-400);
    margin-bottom: 30px;
    line-height: 1.8;
}
.hero-tagline {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    padding: 8px 24px;
    border-radius: var(--radius-xl);
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 20px;
}
.hero-buttons { display: flex; gap: 15px; flex-wrap: wrap; }
.hero-image { flex: 1; text-align: center; }
.hero-image img {
    max-height: 400px;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
}

/* Sections */
.section { padding: 80px 0; }
.section-cream { background: var(--cream-light); }
.section-dark { background: var(--black); color: var(--white); }
.section-purple { background: linear-gradient(135deg, var(--purple), #5A3890); color: var(--white); }
.section-header {
    text-align: center;
    margin-bottom: 50px;
}
.section-header h2 {
    font-size: 34px;
    font-weight: 800;
    color: var(--charcoal);
    margin-bottom: 12px;
}
.section-dark .section-header h2,
.section-purple .section-header h2 { color: var(--white); }
.section-header h2 span { color: var(--gold); }
.section-header p {
    font-size: 17px;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}
.section-dark .section-header p,
.section-purple .section-header p { color: var(--gray-400); }

/* Product Cards */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 25px;
}
.product-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}
.product-card-image {
    position: relative;
    padding-top: 100%;
    background: var(--cream-light);
    overflow: hidden;
}
.product-card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.product-card:hover .product-card-image img { transform: scale(1.05); }
.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 12px;
    border-radius: var(--radius-xl);
    font-size: 12px;
    font-weight: 700;
    z-index: 2;
}
[dir="rtl"] .product-badge { left: auto; right: 12px; }
.badge-featured { background: var(--gold); color: var(--white); }
.badge-discount { background: var(--danger); color: var(--white); }
.badge-new { background: var(--purple); color: var(--white); }
.product-card-body { padding: 20px; }
.product-card-body h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.4;
    color: var(--charcoal);
}
.product-card-body h3 a:hover { color: var(--gold); }
.product-card-category {
    font-size: 13px;
    color: var(--purple);
    font-weight: 600;
    margin-bottom: 8px;
}
.product-card-price { margin-bottom: 15px; }
.product-card-price .current-price {
    font-size: 20px;
    font-weight: 800;
    color: var(--gold);
}
.product-card-price .old-price {
    font-size: 14px;
    color: var(--gray-500);
    text-decoration: line-through;
    margin: 0 8px;
}
.product-card-actions { display: flex; gap: 8px; }
.product-card-actions .btn { flex: 1; font-size: 13px; padding: 8px 12px; }

/* Bundle Cards */
.bundles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}
.bundle-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 2px solid transparent;
}
.bundle-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}
.bundle-card-image {
    padding-top: 70%;
    position: relative;
    background: linear-gradient(135deg, var(--cream), var(--cream-light));
    display: flex;
    align-items: center;
    justify-content: center;
}
.bundle-card-image .bundle-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 60px;
    color: var(--gold);
    opacity: 0.3;
}
.bundle-card-body { padding: 25px; }
.bundle-card-body h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--charcoal);
}
.bundle-card-body p {
    font-size: 14px;
    color: var(--gray-600);
    margin-bottom: 15px;
    line-height: 1.6;
}
.bundle-price { margin-bottom: 15px; }
.bundle-price .current-price {
    font-size: 22px;
    font-weight: 800;
    color: var(--gold);
}
.bundle-price .old-price {
    font-size: 15px;
    color: var(--gray-500);
    text-decoration: line-through;
    margin: 0 8px;
}
.bundle-save {
    display: inline-block;
    background: rgba(40,167,69,0.1);
    color: var(--success);
    padding: 3px 10px;
    border-radius: var(--radius-xl);
    font-size: 12px;
    font-weight: 700;
}

/* Hair Problems Section */
.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
}
.problem-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}
.problem-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 28px;
    color: var(--white);
}
.problem-card h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--charcoal);
}
.problem-card p { font-size: 13px; color: var(--gray-600); }

/* Why Belleza */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
}
.why-card {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius);
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.1);
}
.why-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-3px);
}
.why-icon {
    width: 55px;
    height: 55px;
    min-width: 55px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--white);
}
.why-card h4 { font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.why-card p { font-size: 14px; opacity: 0.8; }

/* Reviews */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}
.review-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: var(--transition);
}
.review-card:hover { box-shadow: var(--shadow); }
.review-card::before {
    content: '\201C';
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 60px;
    color: var(--gold);
    opacity: 0.2;
    font-family: serif;
    line-height: 1;
}
[dir="ltr"] .review-card::before { right: auto; left: 20px; }
.review-stars { color: var(--gold); margin-bottom: 12px; font-size: 14px; }
.review-text { font-size: 15px; color: var(--gray-700); margin-bottom: 15px; line-height: 1.7; }
.review-author { font-weight: 700; color: var(--charcoal); font-size: 15px; }

/* Blog Cards */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 25px;
}
.blog-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}
.blog-card-image {
    padding-top: 55%;
    position: relative;
    background: var(--cream);
    overflow: hidden;
}
.blog-card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.blog-card-body { padding: 25px; }
.blog-card-meta {
    display: flex;
    gap: 15px;
    font-size: 13px;
    color: var(--gray-500);
    margin-bottom: 10px;
}
.blog-card-body h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.4;
}
.blog-card-body h3 a:hover { color: var(--gold); }
.blog-card-body p { font-size: 14px; color: var(--gray-600); margin-bottom: 15px; }

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    padding: 60px 0;
    text-align: center;
}
.cta-section h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
}
.cta-section p {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
}
.cta-buttons { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }

/* Routine Finder Section on Home */
.routine-section {
    background: linear-gradient(135deg, var(--purple), #5A3890);
    padding: 60px 0;
    text-align: center;
}
.routine-section h2 { color: var(--white); font-size: 30px; margin-bottom: 12px; }
.routine-section p { color: rgba(255,255,255,0.85); font-size: 17px; margin-bottom: 30px; }

/* Page Banner */
.page-banner {
    background: linear-gradient(135deg, var(--black), var(--charcoal));
    padding: 50px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(201,160,58,0.1) 0%, transparent 70%);
    border-radius: 50%;
}
.page-banner h1 {
    font-size: 36px;
    font-weight: 800;
    color: var(--white);
    position: relative;
    z-index: 1;
}
.page-banner p {
    color: var(--gray-400);
    font-size: 16px;
    margin-top: 10px;
    position: relative;
    z-index: 1;
}
.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
    font-size: 14px;
    position: relative;
    z-index: 1;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: var(--gray-500); }

/* Products Page */
.products-page { padding: 50px 0; }
.products-layout { display: flex; gap: 30px; }
.products-sidebar {
    width: 260px;
    min-width: 260px;
}
.products-main { flex: 1; }
.filter-box {
    background: var(--white);
    border-radius: var(--radius);
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
}
.filter-box h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--charcoal);
    padding-bottom: 10px;
    border-bottom: 2px solid var(--gold);
}
.filter-list li { margin-bottom: 8px; }
.filter-list li a {
    display: flex;
    justify-content: space-between;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    color: var(--gray-700);
}
.filter-list li a:hover,
.filter-list li a.active { background: var(--cream); color: var(--gold); font-weight: 600; }
.filter-list li a .count {
    background: var(--gray-200);
    padding: 2px 8px;
    border-radius: var(--radius-xl);
    font-size: 12px;
}
.products-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 15px;
}
.products-count { font-size: 14px; color: var(--gray-600); }
.products-sort select {
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    width: auto;
}
.search-box {
    position: relative;
    margin-bottom: 20px;
}
.search-box input {
    padding-right: 45px;
    border-radius: var(--radius-xl);
}
[dir="ltr"] .search-box input { padding-right: 16px; padding-left: 45px; }
.search-box button {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-500);
    font-size: 16px;
}
[dir="ltr"] .search-box button { right: auto; left: 15px; }

/* Product Detail Page */
.product-detail { padding: 50px 0; }
.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}
.product-gallery {
    position: relative;
}
.product-main-image {
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--cream-light);
    padding-top: 100%;
    position: relative;
}
.product-main-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.product-thumbnails {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}
.product-thumbnails img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}
.product-thumbnails img:hover,
.product-thumbnails img.active { border-color: var(--gold); }
.product-info h1 {
    font-size: 28px;
    font-weight: 800;
    color: var(--charcoal);
    margin-bottom: 10px;
}
.product-info .product-category-tag {
    display: inline-block;
    background: var(--cream);
    color: var(--purple);
    padding: 4px 14px;
    border-radius: var(--radius-xl);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
}
.product-price-detail { margin-bottom: 20px; }
.product-price-detail .current-price {
    font-size: 28px;
    font-weight: 800;
    color: var(--gold);
}
.product-price-detail .old-price {
    font-size: 18px;
    color: var(--gray-500);
    text-decoration: line-through;
    margin: 0 10px;
}
.product-price-detail .discount-badge {
    display: inline-block;
    background: var(--danger);
    color: var(--white);
    padding: 4px 12px;
    border-radius: var(--radius-xl);
    font-size: 13px;
    font-weight: 700;
}
.product-short-desc {
    font-size: 16px;
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gray-200);
}
.product-meta { margin-bottom: 25px; }
.product-meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 15px;
}
.product-meta-item strong { color: var(--charcoal); min-width: 80px; }
.product-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.product-actions .btn { flex: 1; min-width: 180px; }

/* Product Tabs */
.product-tabs { margin-top: 40px; }
.tabs-nav {
    display: flex;
    gap: 5px;
    border-bottom: 2px solid var(--gray-200);
    margin-bottom: 25px;
    flex-wrap: wrap;
}
.tab-btn {
    padding: 12px 25px;
    font-weight: 600;
    font-size: 15px;
    color: var(--gray-600);
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition: var(--transition);
}
.tab-btn:hover { color: var(--gold); }
.tab-btn.active { color: var(--gold); border-bottom-color: var(--gold); }
.tab-content { display: none; }
.tab-content.active { display: block; }
.tab-content p, .tab-content li {
    font-size: 15px;
    line-height: 1.8;
    color: var(--gray-700);
}
.tab-content ul { padding: 0; }
.tab-content li {
    padding: 6px 0;
    padding-right: 20px;
    position: relative;
}
[dir="ltr"] .tab-content li { padding-right: 0; padding-left: 20px; }
.tab-content li::before {
    content: '✓';
    position: absolute;
    right: 0;
    color: var(--gold);
    font-weight: 700;
}
[dir="ltr"] .tab-content li::before { right: auto; left: 0; }

/* Order Form */
.order-page { padding: 50px 0; }
.order-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    padding: 40px;
}
.form-section { margin-bottom: 30px; }
.form-section h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--gold);
    display: flex;
    align-items: center;
    gap: 10px;
}
.form-section h3 i { color: var(--gold); }
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--charcoal);
    font-size: 14px;
}
.form-group label .required { color: var(--danger); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-error { color: var(--danger); font-size: 13px; margin-top: 5px; }

/* Order Success */
.order-success {
    text-align: center;
    padding: 50px 20px;
}
.order-success-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--success), #20BD5A);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 45px;
    color: var(--white);
}
.order-success h2 {
    font-size: 28px;
    color: var(--charcoal);
    margin-bottom: 10px;
}
.order-success p { font-size: 16px; color: var(--gray-600); margin-bottom: 15px; }
.order-success .order-num {
    display: inline-block;
    background: var(--cream);
    padding: 10px 25px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 18px;
    color: var(--gold);
    margin-bottom: 25px;
}
.order-success-actions { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }

/* Contact Page */
.contact-page { padding: 50px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contact-info-cards { display: flex; flex-direction: column; gap: 20px; }
.contact-info-card {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.contact-info-card:hover { box-shadow: var(--shadow); }
.contact-info-icon {
    width: 55px;
    height: 55px;
    min-width: 55px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--white);
}
.contact-info-card h4 { font-size: 16px; font-weight: 700; margin-bottom: 5px; }
.contact-info-card p { font-size: 14px; color: var(--gray-600); }
.contact-info-card a { color: var(--gold); font-weight: 600; }
.contact-form-box {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    padding: 30px;
}

/* FAQ */
.faq-page { padding: 50px 0; max-width: 800px; margin: 0 auto; }
.faq-item {
    background: var(--white);
    border-radius: var(--radius);
    margin-bottom: 12px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    color: var(--charcoal);
    transition: var(--transition);
    width: 100%;
    text-align: inherit;
}
.faq-question:hover { color: var(--gold); }
.faq-question i { transition: var(--transition); color: var(--gold); }
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.faq-item.active .faq-answer { max-height: 500px; padding-bottom: 20px; }
.faq-answer p { font-size: 15px; color: var(--gray-700); line-height: 1.8; }

/* Static Pages */
.static-page { padding: 50px 0; }
.static-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}
.static-content h2 { font-size: 24px; margin-bottom: 15px; color: var(--charcoal); }
.static-content h3 { font-size: 20px; margin: 25px 0 12px; color: var(--charcoal); }
.static-content p { margin-bottom: 15px; line-height: 1.8; color: var(--gray-700); }
.static-content ul { padding: 0 20px; margin-bottom: 15px; }
.static-content li { margin-bottom: 8px; line-height: 1.7; color: var(--gray-700); list-style: disc; }

/* Blog Detail */
.blog-detail { padding: 50px 0; }
.blog-detail-container { max-width: 800px; margin: 0 auto; }
.blog-cover {
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 30px;
    max-height: 400px;
}
.blog-cover img { width: 100%; height: 100%; object-fit: cover; }
.blog-meta {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 20px;
}
.blog-meta span { display: flex; align-items: center; gap: 6px; }
.blog-content { line-height: 1.9; }
.blog-content h2 { font-size: 24px; margin: 30px 0 15px; }
.blog-content h3 { font-size: 20px; margin: 25px 0 12px; }
.blog-content p { margin-bottom: 15px; color: var(--gray-700); }

/* Routine Finder */
.routine-page { padding: 50px 0; }
.routine-container {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    padding: 40px;
}
.routine-progress {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 35px;
}
.routine-step-dot {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    color: var(--gray-500);
    transition: var(--transition);
}
.routine-step-dot.active {
    background: var(--gold);
    color: var(--white);
}
.routine-step-dot.completed {
    background: var(--success);
    color: var(--white);
}
.routine-question { display: none; }
.routine-question.active { display: block; }
.routine-question h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 8px;
}
.routine-question .note {
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 20px;
}
.routine-options { display: flex; flex-direction: column; gap: 10px; }
.routine-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    font-size: 15px;
    font-weight: 500;
}
.routine-option:hover { border-color: var(--gold); background: rgba(201,160,58,0.05); }
.routine-option.selected { border-color: var(--gold); background: rgba(201,160,58,0.1); }
.routine-option input { display: none; }
.routine-option .option-radio {
    width: 22px;
    height: 22px;
    min-width: 22px;
    border-radius: 50%;
    border: 2px solid var(--gray-400);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.routine-option.selected .option-radio {
    border-color: var(--gold);
    background: var(--gold);
}
.routine-option.selected .option-radio::after {
    content: '✓';
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
}
.routine-option .option-check {
    width: 22px;
    height: 22px;
    min-width: 22px;
    border-radius: 6px;
    border: 2px solid var(--gray-400);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.routine-option.selected .option-check {
    border-color: var(--gold);
    background: var(--gold);
}
.routine-option.selected .option-check::after {
    content: '✓';
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
}
.routine-sub-questions {
    margin-top: 15px;
    padding: 20px;
    background: var(--cream-light);
    border-radius: var(--radius);
    display: none;
}
.routine-sub-questions.show { display: block; }
.routine-sub-questions h4 { font-size: 15px; margin-bottom: 10px; color: var(--charcoal); }
.routine-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    gap: 15px;
}

/* Routine Result */
.routine-result-box {
    text-align: center;
    padding: 30px 0;
}
.routine-result-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 35px;
    color: var(--white);
}
.routine-result-box h2 {
    font-size: 24px;
    color: var(--charcoal);
    margin-bottom: 15px;
}
.routine-recommended {
    background: var(--cream-light);
    padding: 25px;
    border-radius: var(--radius);
    margin: 20px 0;
    text-align: right;
}
[dir="ltr"] .routine-recommended { text-align: left; }
.routine-recommended h3 {
    font-size: 18px;
    color: var(--gold);
    margin-bottom: 10px;
}
.routine-recommended p { font-size: 15px; color: var(--gray-700); line-height: 1.7; }
.routine-result-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 25px;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-top: 40px;
}
.pagination a, .pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}
.pagination a { background: var(--white); color: var(--charcoal); border: 1px solid var(--gray-300); }
.pagination a:hover { background: var(--gold); color: var(--white); border-color: var(--gold); }
.pagination span.current { background: var(--gold); color: var(--white); border: 1px solid var(--gold); }

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(37,211,102,0.4);
    z-index: 999;
    transition: var(--transition);
}
[dir="ltr"] .whatsapp-float { right: 25px; left: auto; }
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 25px rgba(37,211,102,0.5); }

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 95px;
    right: 25px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--charcoal);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}
[dir="ltr"] .back-to-top { right: 25px; left: auto; }
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--gold); }

/* Flash Messages */
.flash-message {
    position: fixed;
    top: 100px;
    right: 20px;
    padding: 15px 25px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: var(--shadow-lg);
    animation: slideIn 0.3s ease;
}
[dir="ltr"] .flash-message { right: auto; left: 20px; }
.flash-success { background: #D4EDDA; color: #155724; border: 1px solid #C3E6CB; }
.flash-error { background: #F8D7DA; color: #721C24; border: 1px solid #F5C6CB; }
.flash-message button { font-size: 18px; color: inherit; opacity: 0.7; }

@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* Placeholder Image */
.placeholder-img {
    background: linear-gradient(135deg, var(--cream), var(--cream-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 40px;
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Loading Skeleton */
.skeleton {
    background: linear-gradient(90deg, var(--gray-200) 25%, var(--gray-100) 50%, var(--gray-200) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: var(--radius-sm);
}
@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* Smooth Image Load */
.product-card-image img,
.blog-card-image img,
.product-main-image img {
    transition: opacity 0.3s ease;
}

/* Badge pulse animation */
.product-badge, .offer-badge {
    animation: badgePulse 2s ease-in-out infinite;
}
@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Section entrance */
.section { position: relative; }

/* Better focus styles for accessibility */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

/* Selection color */
::selection {
    background: var(--gold);
    color: var(--white);
}

/* Smooth scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--gray-100); }
::-webkit-scrollbar-thumb { background: var(--gray-400); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* About Page */
.about-page { padding: 50px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.about-content h2 { font-size: 30px; font-weight: 800; margin-bottom: 15px; color: var(--charcoal); }
.about-content h2 span { color: var(--gold); }
.about-content p { font-size: 16px; line-height: 1.8; color: var(--gray-700); margin-bottom: 15px; }
.about-features { margin-top: 25px; }
.about-feature {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    align-items: flex-start;
}
.about-feature-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 16px;
}
.about-feature h4 { font-size: 15px; font-weight: 700; margin-bottom: 3px; }
.about-feature p { font-size: 14px; color: var(--gray-600); margin: 0; }

/* Offers */
.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 25px;
}
.offer-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 2px solid transparent;
}
.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}
.offer-card-image {
    padding-top: 60%;
    position: relative;
    background: linear-gradient(135deg, var(--cream), #EDE5D8);
    overflow: hidden;
}
.offer-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--danger);
    color: var(--white);
    padding: 6px 16px;
    border-radius: var(--radius-xl);
    font-weight: 700;
    font-size: 14px;
    z-index: 2;
}
[dir="rtl"] .offer-badge { left: auto; right: 15px; }
.offer-card-body { padding: 25px; }
.offer-card-body h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.offer-card-body p { font-size: 14px; color: var(--gray-600); margin-bottom: 15px; }
.offer-prices { margin-bottom: 15px; }
.offer-prices .old-price {
    font-size: 16px;
    color: var(--gray-500);
    text-decoration: line-through;
}
.offer-prices .new-price {
    font-size: 24px;
    font-weight: 800;
    color: var(--gold);
    margin: 0 10px;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-content { flex-direction: column; text-align: center; }
    .hero-text h1 { font-size: 34px; }
    .hero-buttons { justify-content: center; }
    .products-layout { flex-direction: column; }
    .products-sidebar { width: 100%; min-width: auto; }
    .product-detail-grid { grid-template-columns: 1fr; gap: 30px; }
    .about-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .top-bar-left { display: none; }
    .main-nav { display: none; }
    .mobile-toggle { display: block; }
    .header-actions .btn { display: none; }
    .hero { padding: 50px 0; min-height: auto; }
    .hero-text h1 { font-size: 28px; }
    .hero-text p { font-size: 16px; }
    .hero-image { display: none; }
    .section { padding: 50px 0; }
    .section-header h2 { font-size: 26px; }
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
    .bundles-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .reviews-grid { grid-template-columns: 1fr; }
    .offers-grid { grid-template-columns: 1fr; }
    .problems-grid { grid-template-columns: repeat(2, 1fr); }
    .order-form-container { padding: 25px; }
    .form-row { grid-template-columns: 1fr; }
    .page-banner h1 { font-size: 28px; }
    .cta-section h2 { font-size: 24px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
    .static-content { padding: 25px; }
    .routine-container { padding: 25px; }
}

@media (max-width: 480px) {
    .products-grid { grid-template-columns: 1fr; }
    .problems-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .product-card-actions { flex-direction: column; }
    .hero-buttons { flex-direction: column; align-items: center; }
}

/* Footer Grid */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Main Footer */
.main-footer {
    background: var(--black);
    color: var(--white);
    padding: 60px 0 0;
}
.footer-logo { height: 50px; margin-bottom: 15px; }
.footer-desc { font-size: 14px; color: var(--gray-500); margin-bottom: 8px; }
.footer-tagline { font-size: 15px; color: var(--gold); font-weight: 600; margin-bottom: 15px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 16px;
    transition: var(--transition);
}
.footer-social a:hover { background: var(--gold); }
.footer-col h4 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
    position: relative;
    padding-bottom: 10px;
}
.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 3px;
    background: var(--gold);
    border-radius: 3px;
}
[dir="ltr"] .footer-col h4::after { right: auto; left: 0; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: 14px; color: var(--gray-500); }
.footer-col ul li a:hover { color: var(--gold); }
.footer-contact-list li { display: flex; align-items: center; gap: 10px; }
.footer-contact-list li i { color: var(--gold); width: 18px; }
.footer-policies { margin-top: 15px; display: flex; flex-direction: column; gap: 5px; }
.footer-policies a { font-size: 13px; color: var(--gray-500); }
.footer-policies a:hover { color: var(--gold); }
.footer-bottom {
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 14px;
    color: var(--gray-500);
}
