@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Vazirmatn:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --primary: #0a0a0a;      /* Back to Black Text */
    --accent: #06b6d4;       /* Electric Cyan / Aqua */
    --accent-glow: rgba(6, 182, 212, 0.1);
    --secondary: #0ea5e9;    /* Ocean Blue */
    --bg-main: #f8fafc;
    --bg-card: #ffffff;
    --text-main: #0f172a;
    --text-muted: #64748b;
    --border-lite: #e2e8f0;
    --shadow-soft: 0 10px 30px -5px rgba(15, 23, 42, 0.05);
    --shadow-hover: 0 25px 50px -12px rgba(15, 23, 42, 0.15);
    --radius-sm: 16px;
    --radius-md: 24px;

    --radius-lg: 32px;
    --conversion: #06b6d4;    /* Modern Cyan Pro */
    --whatsapp: #25D366;
    --transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    --skeleton-bg: #f1f5f9;
}

* { margin:0; padding:0; box-sizing:border-box; -webkit-tap-highlight-color: transparent; outline: none; }

body { 
    font-family: 'Inter', 'Vazirmatn', 'Outfit', sans-serif; 
    background-color: var(--bg-main); 
    color: var(--text-main); 
    line-height: 1.5;
    overflow-x: hidden;
    font-size: 13.5px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

.white-container { 
    width: 100%; max-width: 500px; margin: 0 auto; 
    background: #ffffff; min-height: 100vh; position: relative; 
    box-shadow: 0 0 50px rgba(0,0,0,0.05);
}

/* ANIMATIONS */
@keyframes smoothRise {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.fade-in { animation: smoothRise 0.6s var(--transition) both; }

@keyframes skeletonLoading {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.skeleton {
    background: linear-gradient(90deg, #f1f5f9 25%, #f8fafc 50%, #f1f5f9 75%);
    background-size: 200% 100%;
    animation: skeletonLoading 1.5s infinite;
}

.p-image-wrap {
    position: relative;
    background: var(--skeleton-bg);
}

.p-image-wrap img {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.p-image-wrap img.loaded {
    opacity: 1;
}


/* MINIMALIST NAV - WONDERBEAUTIES STYLE */
.nav-premium { 
    position: sticky; top: 0; z-index: 1000; 
    padding: 16px 24px; display: flex; justify-content: space-between; align-items: center;
    background: rgba(255, 255, 255, 0.98); backdrop-filter: blur(10px);
    border-bottom: 1.5px solid #f1f5f9;
}
.brand-logo-main { 
    position: absolute;
    left: 50%;
    top: -5px;
    height: 110px; 
    object-fit: contain;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: logoEntrance 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
.brand-logo-main:hover { transform: translateX(-50%) scale(1.1) rotate(-2deg); }

@keyframes logoEntrance {
    0% { opacity: 0; transform: translateX(-50%) scale(0.3) translateY(-20px); }
    70% { transform: translateX(-50%) scale(1.05) translateY(0); opacity: 1; }
    100% { transform: translateX(-50%) scale(1) translateY(0); opacity: 1; }
}

.hamburger { width: 44px; height: 44px; display: flex; align-items: center; justify-content: flex-start; cursor: pointer; color: var(--primary); }
.hamburger svg { width: 20px; height: 20px; stroke-width: 2.5px; }

/* LANGUAGE SWITCHER */
.lang-switcher {
    position: relative; display: flex; align-items: center; gap: 4px; padding: 6px 12px;
    background: rgba(255, 255, 255, 0.5); border: 1px solid var(--border-lite); border-radius: 12px;
    font-size: 13px; font-weight: 800; color: #0a0a0a; cursor: pointer; user-select: none;
    z-index: 1100; transition: var(--transition);
}
.lang-switcher:hover { background: #fff; box-shadow: 0 4px 12px rgba(0,0,0,0.05); }
.lang-dropdown {
    position: absolute; top: 120%; left: 50%; transform: translateX(-50%);
    background: var(--bg-card); border-radius: 12px; box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border: 1px solid var(--border-lite); display: none; flex-direction: column; overflow: hidden;
    min-width: 60px;
}
.lang-dropdown.active { display: flex; animation: smoothRise 0.2s ease; }
.lang-dropdown div { padding: 8px 12px; text-align: center; color: var(--text-main); font-weight: 700; transition: 0.2s; }
.lang-dropdown div:hover { background: var(--bg-main); color: var(--accent); }


/* SIDEBAR */
.sidebar { 
    position: fixed; top: 0; right: 0; width: 85%; height: 100vh; 
    background: var(--bg-card); z-index: 2000; transform: translateX(100%); transition: var(--transition);
    border-left: 1px solid var(--border-lite); box-shadow: -20px 0 60px rgba(0,0,0,0.1);
}
.sidebar.active { transform: translateX(0); }
.sidebar-header { padding: 32px 24px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px dashed var(--border-lite); font-weight: 700; font-size: 22px; color: var(--primary); }
.sidebar-links { display: flex; flex-direction: column; padding: 24px; gap: 12px; }
.sidebar-links a { 
    padding: 18px 24px; text-decoration: none; color: var(--text-main); font-weight: 600; font-size: 16px; 
    background: var(--bg-main); border-radius: var(--radius-sm); border: 1px solid transparent;
    transition: var(--transition); display: flex; align-items: center; gap: 12px;
}
.sidebar-links a::before { content: ''; width: 8px; height: 8px; background: var(--border-lite); border-radius: 50%; transition: var(--transition); }
.sidebar-links a:hover { background: #eff6ff; color: var(--accent); border-color: #bfdbfe; transform: translateX(-5px); box-shadow: var(--shadow-soft); }
.sidebar-links a:hover::before { background: var(--accent); transform: scale(1.5); box-shadow: 0 0 10px var(--accent-glow); }

/* HERO - MODERN APP */
.hero-section { padding: 60px 24px 40px; text-align: center; position: relative; overflow: hidden; }
.hero-section::before { 
    content: ''; position: absolute; top: -50px; left: 50%; transform: translateX(-50%);
    width: 300px; height: 300px; background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%); border-radius: 50%; z-index: 0; pointer-events: none;
}
.hero-card { position: relative; z-index: 1; }
.hero-badge { 
    display: inline-flex; align-items: center; gap: 8px; padding: 10px 20px; 
    background: rgba(6, 182, 212, 0.1); color: var(--accent); border-radius: 100px; font-size: 13px; font-weight: 700; 
    margin-bottom: 24px; border: 1px solid var(--accent-glow); letter-spacing: 0.5px;
}
.hero-title { 
    font-size: 34px; font-weight: 900; 
    margin-bottom: 20px; line-height: 1.15; color: var(--primary); 
    letter-spacing: -1.2px; 
}
.hero-title span { color: var(--accent); text-shadow: none; }
.hero-desc { font-size: 14.5px; color: var(--text-muted); max-width: 90%; margin: 0 auto; line-height: 1.7; font-weight: 500; }

/* INFO GRID */
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; padding: 0 24px 48px; position: relative; z-index: 1; }
.info-card { 
    padding: 24px 20px; border-radius: var(--radius-md); text-align: center;
    background: var(--bg-card); border: 1px solid var(--border-lite); box-shadow: var(--shadow-soft);
    transition: var(--transition);
}
.info-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); border-color: #bfdbfe; background: #fdfefe; }
.info-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 10px; color: var(--primary); }
.info-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; font-weight: 500; }


/* TABS */
.tabs { display: flex; gap: 12px; padding: 0 24px 32px; overflow-x: auto; scrollbar-width: none; }
.tabs::-webkit-scrollbar { display: none; }
.tab-pill { 
    padding: 12px 24px; font-size: 14px; font-weight: 600; white-space: nowrap; cursor: pointer; transition: var(--transition); color: var(--text-muted); 
    background: var(--bg-main); border-radius: 100px; border: 1px solid var(--border-lite);
}
.tab-pill:hover { border-color: var(--accent); color: var(--accent); }
.tab-pill.active { background: var(--primary); color: #fff; box-shadow: 0 10px 20px rgba(30, 41, 59, 0.2); border-color: var(--primary); }

/* PRODUCT GRID - CLEAN & ELITE */
.product-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; padding: 24px; }
.p-card { 
    background: #fff; border: 1.5px solid #f1f5f9; border-radius: 16px; padding: 12px;
    display: flex; flex-direction: column; position: relative; overflow: hidden;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1); cursor: pointer;
}
.p-card:hover { transform: translateY(-5px); box-shadow: 0 15px 35px rgba(0,0,0,0.04); border-color: #e2e8f0; }

.p-top-badge {
    position: absolute; top: 12px; left: 12px; z-index: 5;
    background: #000; color: #fff; padding: 4px 10px; border-radius: 4px;
    font-size: 9px; font-weight: 900; text-transform: uppercase;
}
.p-image-wrap { width: 100%; height: 160px; display: flex; align-items: center; justify-content: center; margin-bottom: 12px; background: #fafafa; border-radius: 12px; overflow: hidden; }
.p-image-wrap img { height: 85%; width: auto; transition: 0.6s ease; }
.p-card:hover .p-image-wrap img { transform: scale(1.08); }

.p-info { display: flex; flex-direction: column; gap: 4px; }
.p-rating-lite { display: flex; align-items: center; gap: 4px; }
.p-stars-lite { color: #f59e0b; font-size: 10px; }
.p-count-lite { color: #94a3b8; font-size: 10px; font-weight: 700; }
.p-name-lite { font-size: 14px; font-weight: 800; color: #1e293b; height: 38px; overflow: hidden; line-height: 1.35; margin: 4px 0; }
.p-footer-lite { margin-top: 10px; display: flex; justify-content: space-between; align-items: center; border-top: 1px solid #f8fafc; padding-top: 8px; }
.p-price { display: block; font-size: 14.5px; font-weight: 950; color: var(--conversion); letter-spacing: -0.2px; }
.p-btn-minimal { background: #fdfdfe; color: var(--primary); border: 1.2px solid #e2e8f0; padding: 7px 14px; border-radius: 8px; font-size: 11px; font-weight: 800; cursor: pointer; transition: 0.2s; }
.p-btn-minimal:hover { background: var(--primary); color: #fff; border-color: var(--primary); }

/* FOOTER */
.footer-clean { 
    padding: 80px 24px 60px; text-align: center; background: var(--primary); color: #fff; border-radius: 40px 40px 0 0;
}
.footer-clean .f-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-bottom: 48px; text-align: right; }
.footer-clean h4 { font-size: 16px; margin-bottom: 20px; font-weight: 700; color: #fff; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 12px; }
.footer-clean .f-info { font-size: 14px; color: #cbd5e1; line-height: 1.8; margin-bottom: 40px; text-align: right; }
.footer-clean li { margin-bottom: 12px; font-size: 14px; color: #94a3b8; cursor: pointer; transition: 0.3s; font-weight: 500; }
.footer-clean li:hover { color: var(--accent); transform: translateX(-5px); }
.designer-link { color: var(--primary); background: #fff; text-decoration: none; font-weight: 700; padding: 14px 32px; border-radius: 100px; display: inline-block; margin-top: 24px; font-size: 13px; transition: var(--transition); box-shadow: 0 10px 20px rgba(0,0,0,0.2); }
.designer-link:hover { transform: translateY(-4px); background: var(--accent); color: #fff; }

/* DETAIL MODAL - IMMERSIVE CINEMATIC UI */
.m-overlay { 
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; 
    background: #ffffff; z-index: 3000; transform: translateY(100%); transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1); 
    overflow-y: auto; text-align: right; color: var(--primary);
}
.m-overlay.active { transform: translateY(0); }
.m-header { 
    padding: 16px 20px; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    position: sticky; 
    top: 0; 
    left: 0; 
    width: 100%; 
    background: #ffffff; 
    z-index: 100; 
    border-bottom: 1px solid #f1f5f9;
}
.m-back { 
    width: 38px; 
    height: 38px; 
    background: #f1f5f9; 
    border: none; 
    border-radius: 50%; 
    color: var(--primary); 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    cursor: pointer; 
    transition: 0.3s ease; 
    font-size: 14px; 
}
.m-back:hover { background: var(--primary); color: #fff; transform: rotate(90deg); }


.modal-hero { padding: 100px 24px 60px; display: flex; justify-content: center; background: #f8fafc; border-radius: 0 0 60px 60px; position: relative; border-bottom: none; }
.modal-img-card { padding: 0; background: transparent; max-width: 420px; width: 100%; transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); margin-bottom: -100px; z-index: 2; position: relative; }
.modal-img-card:hover { transform: scale(1.08) translateY(-10px); }
.modal-img-card img { width: 100%; height: auto; object-fit: contain; filter: drop-shadow(0 30px 50px rgba(0,0,0,0.12)); }

.modal-content { padding: 48px 24px 160px; max-width: 500px; margin: 0 auto; position: relative; z-index: 1; text-align: right; }

.m-info-card { padding: 0; background: transparent; border-radius: 0; border: none; margin-bottom: 40px; text-align: center; box-shadow: none; }
.modal-title { font-size: 20px !important; font-weight: 950; color: var(--primary); margin-bottom: 4px; letter-spacing: -0.5px; line-height: 1.2; }
.modal-subtitle { font-size: 11px !important; color: var(--conversion); font-weight: 850; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 0; display: block; opacity: 0.9; }

.modal-desc { font-size: 14.5px; color: #475569; line-height: 1.9; font-weight: 500; margin-bottom: 40px; }

.section-title { font-size: 17px !important; font-weight: 900; color: var(--primary); margin: 48px 0 24px; display: flex; align-items: center; justify-content: flex-start; direction: rtl; border-bottom: 1.5px solid var(--border-lite); padding-bottom: 12px; letter-spacing: -0.2px; }

/* PREMIUM MONOCHROME TABLE - INJECTED WITH BRAND COLORS */
.clinical-table { background: #ffffff; border: 1px solid var(--border-lite); border-radius: 12px; overflow: hidden; margin-bottom: 56px; }
.clinical-header, .table-header { background: #f8fafc; padding: 20px 32px; font-size: 14px; color: var(--text-muted); font-weight: 800; display: flex; justify-content: space-between; text-align: right; border-bottom: 1px solid var(--border-lite); direction: rtl; text-transform: uppercase; letter-spacing: 1px; }
.clinical-header > div, .table-header > div { flex: 1; text-align: right; }
.ing-row, .table-row { background: #ffffff; padding: 20px 24px; border-bottom: 1px solid #f2f2f2; display: flex; justify-content: space-between; align-items: center; text-align: right; transition: background-color 0.2s ease; direction: rtl; }
.ing-row .name, .table-row .name { font-size: 14.5px; font-weight: 900; color: var(--primary); flex: 1; }
.ing-row .func, .table-row .func { font-size: 13.5px; color: #64748b; flex: 2; font-weight: 500; }
.ing-row:last-child, .table-row:last-child { border-bottom: none; }
.ing-row:hover, .table-row:hover { background: #f0fdfa; }
.ing-name { font-size: 14.5px; color: var(--primary); font-weight: 800; flex: 1; text-align: right; padding-left: 12px; }
.ing-func { font-size: 12.5px; color: var(--text-muted); line-height: 1.6; font-weight: 600; flex: 1; text-align: right; padding-left: 12px; }
.ing-res { color: var(--accent); font-weight: 800; font-size: 12.5px; flex: 1; text-align: right; line-height: 1.6; }

/* ELEGANT TEXT BLOCK */
.ing-card { background: #f8fafc; border-radius: 12px; padding: 48px; color: #334155; line-height: 2.2; font-size: 18px; font-weight: 500; border: 1px solid var(--border-lite); text-align: right; margin-bottom: 56px; direction: rtl; }

/* BENEFITS - CLEAN & SHARP */
.benefits-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 48px; direction: rtl; }
.luxe-benefit-pill { background: #ffffff; padding: 18px 24px; font-size: 14.5px; color: var(--primary); font-weight: 700; border-radius: 12px; display: flex; align-items: center; justify-content: flex-start; text-align: right; transition: all 0.2s ease; border: 1px solid var(--border-lite); }
.luxe-benefit-pill::before { content: '•'; font-size: 24px; color: var(--accent); margin-left: 18px; opacity: 0.8; }
.luxe-benefit-pill:hover { border-color: var(--accent); background: #f0fdfa; color: var(--accent); }

/* PROS BOX - REFINED */
.pros-box { padding: 48px; background: #f8fafc; border-radius: 12px; border: 1px solid var(--border-lite); text-align: right; margin-bottom: 56px; direction: rtl; }
.pc-header { font-size: 22px; font-weight: 900; margin-bottom: 32px; color: var(--primary) !important; display: flex; align-items: center; justify-content: flex-start; }
.pc-list li { font-size: 18px; color: #475569; margin-bottom: 20px; line-height: 2; font-weight: 500; padding-right: 32px; position: relative; list-style: none; }
.pc-list li::before { content: ''; position: absolute; right: 0; top: 12px; width: 8px; height: 8px; background: var(--accent); border-radius: 50%; opacity: 0.8; }

/* USAGE BOX - IMMACULATE WITH DEEP BRAND COLOR */
.usage-box { background: #fafafa; border: 1px solid var(--border-lite); padding: 40px 32px; text-align: right; border-radius: 16px; margin-top: 48px; direction: rtl; }
.usage-header { font-size: 18px; font-weight: 900; margin-bottom: 12px; color: var(--primary); display: flex; align-items: center; justify-content: flex-start; text-transform: uppercase; letter-spacing: 0.5px; }
.usage-box p { color: var(--text-muted); line-height: 1.8; font-size: 14.5px; font-weight: 500; }

.scientific-glass { background: #ffffff; border: 1px solid var(--border-lite); padding: 32px 24px; border-radius: 12px; text-align: right; margin: 48px 0; border-right: 4px solid var(--accent); direction: rtl; }
.scientific-glass p { color: var(--text-main); }
.advice-gold { background: #fffbeb; border: 1px solid #fde68a; padding: 24px; text-align: center; border-radius: 12px; margin: 48px 0; direction: rtl; }
.advice-gold p { color: #b45309; font-weight: 700; font-size: 14.5px; line-height: 1.8; }

.m-close-btn { 
    width: auto; 
    margin: 60px auto 20px; 
    padding: 14px 40px; 
    border-radius: 100px; 
    border: 1.5px solid var(--border-lite); 
    background: #ffffff; 
    color: var(--text-muted); 
    font-size: 13px; 
    font-weight: 800; 
    cursor: pointer; 
    transition: all 0.3s ease; 
    text-transform: uppercase; 
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}
.m-close-btn:hover { 
    background: #f8fafc; 
    color: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.m-close-btn::before {
    content: '←';
    font-size: 16px;
}


/* FEEDBACK SECTION - EDITORIAL DESIGN */
/* FEEDBACK SECTION - LUXE EDITORIAL DESIGN */
.feedback-form-card { 
    background: #fcfdfe; 
    padding: 48px 32px; 
    border-radius: 32px; 
    border: 1px solid #f1f5f9; 
    text-align: right; 
    margin: 60px 0; 
    direction: rtl; 
    box-shadow: 0 20px 50px rgba(0,0,0,0.02), inset 0 0 0 1px rgba(255,255,255,0.8);
    position: relative;
}

.feedback-header h3 { 
    font-size: 22px; 
    font-weight: 950; 
    color: var(--primary); 
    margin-bottom: 8px; 
    letter-spacing: -0.5px; 
}
.feedback-header p { 
    font-size: 14px; 
    color: var(--text-muted); 
    margin-bottom: 40px; 
    font-weight: 500; 
    line-height: 1.6;
}


.rev-input { 
    width: 100%; padding: 14px 18px; border: 1.5px solid #e2e8f0; border-radius: 12px; 
    font-family: inherit; font-size: 14px; font-weight: 600; background: #fafafa; 
    color: var(--primary); transition: var(--transition); text-align: right; margin-bottom: 20px; 
}
.rev-input:focus { border-color: var(--accent); background: #fff; box-shadow: 0 0 0 4px var(--accent-glow); }

.file-label {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    padding: 16px; background: #f8fafc; border: 1.5px dashed #cbd5e1; border-radius: 12px;
    color: #64748b; font-size: 13px; font-weight: 800; cursor: pointer; transition: 0.3s;
    margin-bottom: 15px;
}
.file-label:hover { border-color: var(--accent); color: var(--accent); background: #f0fdfa; }
.preview-grid { display: flex; gap: 10px; margin-bottom: 20px; }
.preview-grid img { width: 60px; height: 60px; border-radius: 8px; object-fit: cover; border: 1px solid #e2e8f0; }

.review-card { 
    background: #ffffff; border: 1px solid #f1f5f9; padding: 24px; border-radius: 20px; 
    text-align: right; margin-bottom: 16px; transition: var(--transition); direction: rtl;
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}
.review-card:hover { transform: translateY(-3px); box-shadow: 0 12px 24px rgba(0,0,0,0.05); border-color: var(--accent); }

.review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.rev-avatar { 
    width: 40px; height: 40px; background: var(--primary); color: #fff; 
    border-radius: 12px; display: flex; align-items: center; justify-content: center;
    font-size: 16px; font-weight: 900;
}
.rev-user { color: var(--primary); font-weight: 850; font-size: 14.5px; opacity: 0.95; }
.rev-stars { color: #f59e0b; font-size: 10px; margin-top: 2px; }
.rev-text { color: #475569; font-size: 13.5px; line-height: 1.7; font-weight: 500; margin: 12px 0; }

.rev-gallery { display: flex; gap: 8px; margin: 12px 0; overflow-x: auto; }
.rev-img-item { width: 80px; height: 80px; border-radius: 12px; object-fit: cover; cursor: pointer; transition: 0.3s; border: 1px solid #f1f5f9; }
.rev-img-item:hover { transform: scale(1.05); border-color: var(--accent); }

.rev-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 16px; padding-top: 12px; border-top: 1px solid #f8fafc; }
.rev-date { color: #94a3b8; font-size: 11px; font-weight: 700; }
.rev-like-btn { 
    background: #f8fafc; border: 1px solid #e2e8f0; padding: 6px 12px; border-radius: 100px;
    font-size: 11px; font-weight: 800; color: #64748b; cursor: pointer; transition: 0.2s;
}
.rev-like-btn:hover { background: #fff1f2; border-color: #fecdd3; color: #e11d48; }

/* STICKY BUY BAR - MODERN FLOATING DESIGN */
.sticky-buy-bar {
    position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%) translateY(120%);
    width: 90%; max-width: 440px; height: 68px; 
    background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.5); border-radius: 100px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    display: flex; align-items: center; justify-content: space-between; padding: 0 8px;
    z-index: 6000; transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
.modal-open .sticky-buy-bar { transform: translateX(-50%) translateY(0); }

.buy-now-btn {
    flex: 1; height: 52px; background: var(--conversion); color: #fff; border: none; 
    border-radius: 100px; font-size: 15px; font-weight: 800; display: flex; align-items: center; justify-content: center; gap: 8px;
    cursor: pointer; transition: 0.3s; margin-left: 8px;
}
.buy-now-btn:active { transform: scale(0.96); }

.whatsapp-mini {
    width: 52px; height: 52px; background: var(--whatsapp); color: #fff; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; cursor: pointer; transition: 0.3s;
}

/* Clean up redundant styles that were overriding the premium design */

/* ORDER & FEEDBACK FORMS - MODERN LUXE REDESIGN */
.order-form-container, .feedback-form-card {
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 24px;
    padding: 40px 24px;
    margin: 40px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    text-align: right;
    direction: rtl;
}

.order-header h3, .feedback-header h3 { 
    font-size: 20px; 
    font-weight: 800; 
    color: var(--primary); 
    margin-bottom: 8px;
}
.order-header p, .feedback-header p { 
    font-size: 13px; 
    color: var(--text-muted); 
    margin-bottom: 30px;
    line-height: 1.5;
}

.form-group label { 
    font-size: 13px; 
    font-weight: 600; 
    color: var(--text-main); 
    margin-bottom: 8px;
    display: block;
}

.form-input, .rev-input { 
    width: 100%; 
    padding: 14px 18px; 
    border-radius: 12px; 
    border: 1px solid #e2e8f0;
    background: #fcfdfe;
    font-size: 14px; 
    transition: 0.3s ease;
}

.form-input:focus, .rev-input:focus { 
    border-color: var(--accent); 
    background: #fff; 
    box-shadow: 0 0 0 4px var(--accent-glow);
    outline: none;
}


.form-group label { 
    font-size: 14px; 
    font-weight: 700; 
    color: var(--primary); 
    margin-bottom: 12px;
    display: block;
    opacity: 0.8;
}

.form-input, .rev-input { 
    width: 100%; 
    padding: 18px 24px; 
    border-radius: 20px; 
    border: 1.5px solid #f1f5f9;
    background: #fafafa;
    font-size: 15px; 
    font-weight: 600; 
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--primary);
}

.form-input:focus, .rev-input:focus { 
    border-color: var(--conversion); 
    background: #fff; 
    box-shadow: 0 20px 40px rgba(6, 182, 212, 0.1); 
    transform: translateY(-3px);
    outline: none;
}

.q-controls {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #f1f5f9;
    padding: 6px 16px;
    border-radius: 100px;
}
.qc-btn {
    background: #fff;
    border: none;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    color: var(--primary);
    font-weight: 800;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}
.qc-btn:hover {
    background: var(--primary);
    color: #fff;
    transform: scale(1.1);
}
#qNum {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary);
    min-width: 20px;
    text-align: center;
}



.form-group { margin-bottom: 24px; }
.form-group label { display: block; font-size: 13px; font-weight: 800; color: var(--text-muted); margin-bottom: 10px; text-align: right; margin-right: 12px; }
.form-input, .rev-input { 
    width: 100%; 
    padding: 16px 20px; 
    border-radius: 14px; 
    border: 1.5px solid #f1f5f9;
    font-family: inherit; 
    font-size: 15px; 
    font-weight: 600; 
    text-align: right; 
    transition: all 0.3s ease;
    background: #f8fafc; 
    color: var(--primary);
    margin-bottom: 5px;
}
.form-input:focus, .rev-input:focus { 
    border-color: var(--conversion); 
    background: #ffffff; 
    box-shadow: 0 10px 25px rgba(6, 182, 212, 0.1); 
    outline: none;
    transform: translateY(-2px);
}


.confirm-btn, .submit-btn {
    width: 100%; 
    padding: 18px; 
    background: var(--accent); 
    color: #fff; 
    border: none;
    border-radius: 100px; 
    font-size: 15px; 
    font-weight: 700; 
    cursor: pointer; 
    transition: 0.3s ease;
    box-shadow: 0 8px 20px var(--accent-glow);
    margin-top: 15px;
}
.confirm-btn:hover, .submit-btn:hover { 
    background: #0891b2;
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(6, 182, 212, 0.3);
}


.confirm-btn:active, .submit-btn:active {
    transform: translateY(1px) scale(0.98);
}


.star-rating-form { margin: 20px 0 32px; gap: 12px; display: flex; justify-content: center; flex-direction: row-reverse; }
.star-f { font-size: 44px; color: #e2e8f0; cursor: pointer; transition: 0.2s; }
.star-f.active { color: #f59e0b; transform: scale(1.1); text-shadow: 0 0 15px rgba(245, 158, 11, 0.3); }

/* SUCCESS MODAL OVERLAY */
.success-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.6); backdrop-filter: blur(8px);
    z-index: 7000; display: none; align-items: center; justify-content: center; padding: 24px;
}
.success-card {
    background: #fff; border-radius: 32px; padding: 56px 40px; text-align: center;
    max-width: 420px; width: 100%; transform: scale(0.95); transition: 0.4s cubic-bezier(0.17, 0.89, 0.32, 1.49);
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}
.success-card h3 { color: var(--primary); margin-bottom: 12px; }
.success-card p { color: var(--text-muted); }
.success-overlay.active { display: flex; }
.success-overlay.active .success-card { transform: scale(1); }
.success-check {
    width: 88px; height: 88px; background: #10b981; color: #fff; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; font-size: 44px; margin: 0 auto 32px;
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
}

@media (max-width: 500px) {
    .sticky-buy-bar { width: 100%; left: 0; transform: translateY(100%); bottom: 0; }
    .modal-open .sticky-buy-bar { transform: translateY(0); }
    .order-form-container, .feedback-form-card { padding: 32px 24px; border-radius: 24px; }
}


/* PROFESSIONAL PRODUCT UI - NEW COMPONENTS */
.wishlist-heart {
    position: absolute; top: 15px; right: 15px; z-index: 10;
    width: 44px; height: 44px; background: rgba(255,255,255,0.95); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; font-size: 18px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08); cursor: pointer; transition: 0.3s;
}

.specs-table-container {
    display: table; width: 100%; border-collapse: separate; border-spacing: 0;
    background: #1a1a1a; border: 1.2px solid rgba(255,255,255,0.05); border-radius: 16px;
    overflow: hidden; margin: 28px 0;
}
.specs-row { display: table-row; }
.specs-cell { 
    display: table-cell; padding: 16px 8px; text-align: center; width: 33.33%;
    border-left: 1.2px solid rgba(255,255,255,0.05); vertical-align: middle;
}
.specs-cell:last-child { border-left: none; }
.specs-val { display: block; font-weight: 900; font-size: 13.5px; color: #fff; }
.specs-label { display: block; font-size: 10px; color: #64748b; font-weight: 850; margin-top: 4px; text-transform: uppercase; letter-spacing: 0.2px; }

.safety-icons-row { 
    display: flex; justify-content: center; gap: 16px; margin: 40px 0 60px; flex-wrap: wrap; 
}
.safety-item { 
    display: flex; flex-direction: column; align-items: center; gap: 10px; width: 90px;
}
.safety-circle {
    width: 64px; height: 64px; border-radius: 18px; border: 1.5px solid rgba(6, 182, 212, 0.1);
    display: flex; align-items: center; justify-content: center; background: #1a1a1a;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.safety-circle:hover { border-color: var(--conversion); transform: translateY(-5px); box-shadow: 0 10px 20px rgba(6, 182, 212, 0.3); }
.safety-circle svg { width: 30px; height: 30px; color: var(--conversion); }
.safety-text { font-size: 10.5px; font-weight: 900; color: #94a3b8; text-align: center; line-height: 1.2; text-transform: uppercase; }

.q-selector-modern {
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 24px; background: #f8fafc; border-radius: 100px; margin: 32px 0;
    border: 1.5px solid #e2e8f0;
}
.q-label { font-size: 13px; font-weight: 900; color: #64748b; }
.q-controls { display: flex; align-items: center; gap: 24px; }
.qc-btn { 
    width: 32px; height: 32px; border-radius: 50%; border: none; background: #fff;
    font-size: 18px; font-weight: 900; cursor: pointer; color: var(--primary);
    box-shadow: 0 4px 10px rgba(0,0,0,0.08); transition: 0.2s;
    display: flex; align-items: center; justify-content: center;
}
.qc-btn:active { transform: scale(0.9); }
.qc-btn:hover { background: var(--accent); color: #fff; }
