/* ==========================================================================
   STYLE-MINI.CSS (CLEANED)
   Contains only essential styles for secondary pages (Privacy, Terms, Contact)
   ========================================================================== */

/* 1. Base Fonts */
body {
    font-family: 'Inter', sans-serif;
}

.lang-ar {
    font-family: 'Cairo', sans-serif;
}

/* 2. Language Switcher Logic */
.lang-content {
    display: none;
}

.lang-content.active {
    display: block;
}

/* 3. Header Styles (Adapted for standard responsive layout) */
.header-sec {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 20px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.header-logo img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid #f8b500;
    object-fit: cover;
}

.header-logo-name {
    font-size: 28px;
    font-weight: 900;
    color: white;
    line-height: 1.1;
    font-family: 'Cairo', sans-serif;
}

.header-logo-sub {
    font-size: 16px;
    font-weight: 600;
    color: #f8b500;
    font-family: 'Cairo', sans-serif;
}

.lang-switcher-wrap {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 40px;
    padding: 6px;
    display: flex;
    gap: 5px;
}

.lang-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.65);
    font-family: 'Cairo', sans-serif;
    font-size: 18px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 30px;
    cursor: pointer;
    transition: background 0.25s, color 0.25s;
}

.lang-btn:hover,
.lang-btn.active {
    background: #f8b500;
    color: #1a1a2e;
}

/* Header Responsive Tweaks */
@media (max-width: 768px) {
    .header-sec {
        flex-direction: column;
        gap: 15px;
        padding: 15px 5%;
    }

    .header-logo img {
        width: 50px;
        height: 50px;
    }

    .header-logo-name {
        font-size: 24px;
    }

    .lang-switcher-wrap {
        width: 100%;
        justify-content: center;
    }

    .lang-btn {
        font-size: 16px;
        padding: 6px 12px;
        flex: 1;
    }
}

/* 4. Direction Utilities */
.ltr {
    direction: ltr;
}

.rtl {
    direction: rtl;
}

/* 5. Misc Resets */
#confirm-delivery-note {
    overflow-wrap: break-word;
    word-break: break-word;
}

/* full page style*/
/* Tailwind Base Resets (Critical for layout stability without CDN) */
*,
::before,
::after {
    box-sizing: border-box;
    border-width: 0;
    border-style: solid;
    border-color: #e5e7eb;
}

img,
video {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Essential Tailwind Utilities Extracted */
.hidden {
    display: none !important;
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.absolute {
    position: absolute;
}

.inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.text-center {
    text-align: center;
}

.font-bold {
    font-weight: 700;
}

.text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
}

.text-6xl {
    font-size: 3.75rem;
    line-height: 1;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-12 {
    margin-bottom: 3rem;
}

.mt-1 {
    margin-top: 0.25rem;
}

.w-20 {
    width: 5rem;
}

.h-20 {
    height: 5rem;
}

.text-orange {
    color: #e67e22;
}

.text-green {
    color: #27ae60;
}

.text-dark {
    color: #1a1a2e;
}

.text-gray-500 {
    color: #6b7280;
}

.text-gray-800 {
    color: #1f2937;
}

.text-green-400 {
    color: #4ade80;
}

/* إعدادات بيئة العمل */
html {
    overflow-x: hidden;
}

body {
    font-family: 'Cairo', sans-serif;
    background-color: #2c3e50;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* حاوية التحجيم التلقائي للشاشات */
#scale-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    transform-origin: top center;
    width: 1080px;
    transform: scale(var(--page-scale, 1));
}

.control-panel {
    background: white;
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 30px;
    width: 1080px;
    box-sizing: border-box;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.export-btn {
    background-color: #27ae60;
    color: white;
    border: none;
    padding: 20px 50px;
    font-size: 30px;
    font-family: inherit;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 900;
    transition: 0.3s;
}

.export-btn:hover {
    background-color: #2ecc71;
}

/* حاوية الصفحة الرئيسية العربية */
#main-ar {
    width: 1080px;
    background-color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

/* الإعدادات الأساسية لكل قسم مراد تصويره */
.capture-section {
    width: 1080px;
    position: relative;
    box-sizing: border-box;
    /* فاصل وهمي لبيئة العمل */
    border-bottom: 2px dashed rgba(0, 0, 0, 0.2);
    background-color: #ffffff;
}

/* تنسيقات النصوص العامة (أحجام ضخمة للموبايل) */
h1 {
    font-size: 90px;
    font-weight: 900;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

h2 {
    font-size: 75px;
    font-weight: 800;
    margin: 0 0 30px 0;
    line-height: 1.3;
}

p {
    font-size: 45px;
    font-weight: 700;
    line-height: 1.6;
    margin: 0 0 30px 0;
}

.subtitle {
    font-size: 55px;
    color: #555;
    font-weight: 700;
}

/* الألوان المستوحاة من التصميم */
.text-dark {
    color: #333;
}

.text-orange {
    color: #e67e22;
}

.text-green {
    color: #27ae60;
}

/* ---------------------------------
           تنسيقات الأقسام المخصصة (AIDA)
           --------------------------------- */

/* أشكال المنحنيات (Waves) في الخلفية */
.wave-bg-yellow {
    background: linear-gradient(180deg, #fceabb 0%, #f8b500 100%);
    border-bottom-left-radius: 50% 100px;
    border-bottom-right-radius: 50% 100px;
    padding: 100px 50px 150px 50px;
    text-align: center;
}

/* القسم 1: الانتباه */
.attention-sec {
    padding-bottom: 50px;
}

.main-image-wrapper {
    position: relative;
    margin-top: -80px;
    text-align: center;
}

/* دوائر الصور */
.circle-img {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    border: 15px solid white;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    object-fit: cover;
    background-color: #eee;
    /* لون مؤقت لحين وضع الصورة */
}

.bubble {
    background: white;
    color: #e67e22;
    padding: 20px 40px;
    border-radius: 50px;
    font-size: 40px;
    font-weight: 900;
    display: inline-block;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    top: -40px;
    border: 4px solid #f8b500;
}

/* القسم 2: الاهتمام (المشاكل) */
.interest-sec {
    padding: 100px 60px;
    text-align: center;
    background-image: radial-gradient(circle at 10% 20%, rgba(248, 181, 0, 0.1) 0%, transparent 40%);
}

.problem-list {
    text-align: right;
    display: inline-block;
    margin-top: 40px;
    width: 100%;
}

.problem-item {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #444;
    display: flex;
    align-items: center;
    gap: 25px;
    background: #fff;
    border-radius: 20px;
    padding: 20px 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
}

.problem-item::before {
    content: '❌';
    margin-left: 10px;
    font-size: 55px;
    flex-shrink: 0;
}

.problem-img {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #f8b500;
    flex-shrink: 0;
}

.bottom-line {
    background: #ffeaa7;
    padding: 30px;
    border-radius: 20px;
    color: #d35400;
    margin-top: 50px;
}

/* القسم 3: الرغبة (الحل الطبيعي) */
.desire-sec {
    padding: 100px 60px;
    background: linear-gradient(0deg, #fceabb 0%, #ffffff 100%);
    text-align: center;
}

.ingredients-grid {
    display: flex;
    justify-content: space-around;
    margin: 60px 0;
}

.ingredient {
    background: white;
    padding: 40px;
    border-radius: 30px;
    width: 40%;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.benefit-list {
    text-align: right;
    display: inline-block;
}

.benefit-item {
    font-size: 50px;
    font-weight: 800;
    margin-bottom: 30px;
    color: #27ae60;
    display: flex;
    align-items: center;
}

.benefit-item::before {
    content: '✅';
    margin-left: 20px;
    font-size: 55px;
}

/* القسم 4: الإجراء (العرض) */
.action-sec {
    padding: 100px 60px;
    text-align: center;
    background-color: #fff;
}

.offer-box {
    border: 8px dashed #e74c3c;
    border-radius: 40px;
    padding: 60px;
    margin-bottom: 50px;
    background-color: #fdf2e9;
}

.urgency-text {
    color: #c0392b;
    font-size: 55px;
    font-weight: 900;
    background: #fadbd8;
    padding: 20px;
    border-radius: 15px;
    display: inline-block;
}

/* أقسام الأزرار المستقلة (CTAs) */
.cta-section {
    height: 250px;
    /* الارتفاع المطلوب */
    background-color: #f8b500;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-btn {
    background-color: #d35400;
    /* لون برتقالي داكن للزر */
    color: white;
    font-size: 65px;
    font-weight: 900;
    padding: 30px 100px;
    border-radius: 100px;
    box-shadow: 0 15px 30px rgba(211, 84, 0, 0.4);
    border: 6px solid #fff;
    animation: pulse 2s infinite;
    will-change: transform;
    /* عزل GPU – يمنع إعادة رسم بقية الصفحة */
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    isolation: isolate;
}

@keyframes pulse {

    0%,
    100% {
        transform: translateZ(0) scale(1);
    }

    50% {
        transform: translateZ(0) scale(1.04);
    }
}

/* =============================================
           HERO SECTION (section-attention) – مطوّر
           ============================================= */

/* خلفية تدرجية احترافية */
.hero-bg {
    background: linear-gradient(160deg, #fff9e6 0%, #ffeaa0 50%, #f8b500 100%);
    padding: 80px 60px 60px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* دائرة زخرفية خلف التصميم */
.hero-bg::before {
    content: '';
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 900px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.35) 0%, transparent 70%);
    pointer-events: none;
}

/* شارات الثقة */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 40px;
}

.trust-badge {
    background: rgba(255, 255, 255, 0.85);
    border: 3px solid rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    padding: 14px 35px;
    border-radius: 60px;
    font-size: 38px;
    font-weight: 800;
    color: #6d3a00;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.10);
}

/* عنوان الهيرو */
.hero-title {
    font-size: 95px;
    font-weight: 900;
    color: #3d2000;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.highlight-red {
    color: #c0392b;
    position: relative;
    display: inline-block;
}

.highlight-red::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 12px;
    background: rgba(192, 57, 43, 0.18);
    border-radius: 6px;
}

.hero-subtitle {
    font-size: 52px;
    font-weight: 700;
    color: #5d3a00;
    margin-bottom: 10px;
}

/* صورة المنتج + تأثير التوهج */
.hero-image-wrapper {
    position: relative;
    display: inline-block;
    margin-top: 50px;
}

.glow-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 540px;
    height: 540px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(248, 181, 0, 0.45) 0%, transparent 70%);
    pointer-events: none;
}

.hero-circle-img {
    width: 460px;
    height: 460px;
    border-radius: 50%;
    border: 14px solid white;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18);
    object-fit: cover;
    position: relative;
    z-index: 1;
}

/* فقاعة التقييم */
.review-bubble {
    background: white;
    border: 4px solid #f8b500;
    border-radius: 60px;
    padding: 22px 45px;
    font-size: 40px;
    font-weight: 800;
    color: #333;
    display: inline-block;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    position: relative;
    top: -30px;
    z-index: 2;
}

.review-stars {
    color: #f8b500;
    font-size: 44px;
    display: block;
    margin-bottom: 6px;
    letter-spacing: 4px;
}

/* =============================================
           HERITAGE SECTION – حكاية الدغموس
           ============================================= */
.heritage-sec {
    padding: 100px 60px;
    background: linear-gradient(135deg, #f0fff4 0%, #e8f8e9 100%);
    text-align: center;
}

.heritage-story {
    font-size: 42px;
    font-weight: 600;
    color: #2d4a2d;
    line-height: 1.8;
    text-align: right;
    background: white;
    border-right: 10px solid #27ae60;
    padding: 50px 50px 50px 40px;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(39, 174, 96, 0.08);
    margin: 50px 0;
}

.heritage-tags {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.heritage-tag {
    background: white;
    border: 3px solid #27ae60;
    color: #1a5c2a;
    padding: 20px 40px;
    border-radius: 60px;
    font-size: 40px;
    font-weight: 800;
    box-shadow: 0 6px 18px rgba(39, 174, 96, 0.12);
}

/* =============================================
           TESTIMONIALS ACCORDION - شهادات متحركة
           ============================================= */
.testimonials-sec {
    padding: 80px 60px 100px;
    background: linear-gradient(0deg, #fff9e6 0%, #ffffff 100%);
    text-align: center;
}

/* حاوية الأكورديون — قابلة للتمرير */
.accordion-testimonials {
    width: 100%;
    max-height: 680px;
    overflow-y: auto;
    margin-top: 55px;
    scrollbar-width: thin;
    scrollbar-color: #f8b500 #f0f0f0;
    padding-left: 10px;
}

.accordion-testimonials::-webkit-scrollbar {
    width: 10px;
}

.accordion-testimonials::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 10px;
}

.accordion-testimonials::-webkit-scrollbar-thumb {
    background: #f8b500;
    border-radius: 10px;
}

.accordion-item {
    background: white;
    border-radius: 22px;
    margin-bottom: 18px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
    border-right: 8px solid #e0e0e0;
    transition: border-color 0.35s ease, box-shadow 0.35s ease;
}

.accordion-item.active {
    border-right-color: #f8b500;
    box-shadow: 0 10px 35px rgba(248, 181, 0, 0.22);
}

.accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 40px;
    cursor: pointer;
    user-select: none;
}

.accordion-header-info {
    text-align: right;
}

.accordion-name {
    font-size: 44px;
    font-weight: 900;
    color: #222;
    line-height: 1.2;
}

.accordion-location {
    font-size: 34px;
    color: #999;
    font-weight: 600;
}

.accordion-mini-stars {
    color: #f8b500;
    font-size: 38px;
    letter-spacing: 3px;
}

.accordion-icon {
    font-size: 55px;
    font-weight: 300;
    color: #ccc;
    line-height: 1;
    flex-shrink: 0;
    transition: transform 0.35s ease, color 0.3s ease;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
    color: #f8b500;
}

/* المحتوى المنسدل */
.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.35s ease;
    padding: 0 40px;
}

.accordion-item.active .accordion-body {
    max-height: 400px;
    padding: 0 40px 30px;
}

.accordion-text {
    font-size: 43px;
    font-weight: 700;
    color: #444;
    line-height: 1.75;
    border-top: 2px solid #f5f5f5;
    padding-top: 22px;
    text-align: right;
}

/* شريط التقدم */
.accordion-progress {
    height: 7px;
    background: #f0f0f0;
    overflow: hidden;
    display: none;
}

.accordion-item.active .accordion-progress {
    display: block;
}

.accordion-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #f8b500, #e67e22);
    border-radius: 0 4px 4px 0;
}

/* =============================================
           HOW TO USE – خطوات الاستخدام في section-action
           ============================================= */
.steps-grid {
    display: flex;
    justify-content: space-around;
    gap: 30px;
    margin: 60px 0 50px 0;
}

.step-card {
    background: white;
    border-radius: 30px;
    padding: 40px 30px;
    flex: 1;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.step-number {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #f8b500, #e67e22);
    color: white;
    border-radius: 50%;
    font-size: 55px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px auto;
}

.step-text {
    font-size: 42px;
    font-weight: 700;
    color: #333;
    line-height: 1.5;
}

/* =============================================
           HEADER SECTION
           ============================================= */
.header-sec {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 40px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 22px;
    text-decoration: none;
}

.header-logo img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 4px solid #f8b500;
    object-fit: cover;
}

.header-logo-name {
    font-size: 48px;
    font-weight: 900;
    color: white;
    line-height: 1;
}

.header-logo-sub {
    font-size: 30px;
    font-weight: 600;
    color: #f8b500;
}

.lang-switcher-wrap {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 60px;
    padding: 12px;
    display: flex;
    gap: 10px;
}

.lang-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.65);
    font-family: 'Cairo', sans-serif;
    font-size: 34px;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 50px;
    cursor: pointer;
    transition: background 0.25s, color 0.25s;
}

.lang-btn:hover,
.lang-btn.active {
    background: #f8b500;
    color: #1a1a2e;
}

/* =============================================
           MODAL SYSTEM
           ============================================= */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    z-index: 100;
    transition: opacity 0.3s ease;
}

.modal-hidden {
    display: none !important;
}

.modal-content {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    width: 95%;
    max-width: 480px;
    border: 2px solid rgba(248, 181, 0, 0.2);
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(248, 181, 0, 0.1);
    position: relative;
    overflow: hidden;
    padding: 35px 25px;
    transform: scale(0.9) translateY(20px);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.4s ease;
}

.modal-overlay:not(.modal-hidden) .modal-content {
    transform: scale(1) translateY(0);
    opacity: 1;
}

body.overflow-hidden {
    overflow: hidden;
}

/* Modal form styles */
.modal-content h1,
.modal-content h2,
.modal-content h3 {
    font-family: 'Cairo', sans-serif;
    font-size: 24px;
    font-weight: 900;
    color: white;
    margin-bottom: 8px;
    text-align: center;
    line-height: 1.3;
}

.modal-content p {
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    font-family: 'Cairo', sans-serif;
    font-size: 15px;
    margin-bottom: 15px;
}

.modal-content label,
.modal-content legend {
    font-family: 'Cairo', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #f8b500;
    display: block;
    margin-bottom: 8px;
}

.modal-content input,
.modal-content select,
.modal-content textarea {
    font-family: 'Cairo', sans-serif;
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    font-size: 16px;
    margin-bottom: 18px;
    box-sizing: border-box;
    transition: all 0.3s ease;
    outline: none;
}

.modal-content input::placeholder,
.modal-content textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.modal-content input:focus,
.modal-content select:focus,
.modal-content textarea:focus {
    border-color: #f8b500;
    background: rgba(248, 181, 0, 0.05);
    box-shadow: 0 0 15px rgba(248, 181, 0, 0.15);
}

.modal-content select option {
    background: #1a1a2e;
    color: white;
}

.modal-btn-primary {
    font-family: 'Cairo', sans-serif;
    background: linear-gradient(135deg, #f8b500, #e67e22);
    color: #1a1a2e;
    font-weight: 900;
    font-size: 18px;
    border: none;
    border-radius: 14px;
    padding: 16px 24px;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(248, 181, 0, 0.3);
    margin-top: 10px;
}

.modal-btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 12px 25px rgba(248, 181, 0, 0.4);
}

.modal-btn-secondary {
    font-family: 'Cairo', sans-serif;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-weight: 700;
    font-size: 16px;
    border: none;
    border-radius: 14px;
    padding: 14px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

.modal-btn-green {
    font-family: 'Cairo', sans-serif;
    background: linear-gradient(135deg, #27ae60, #1e8449);
    color: white;
    font-weight: 900;
    font-size: 18px;
    border: none;
    border-radius: 14px;
    padding: 16px 24px;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(39, 174, 96, 0.3);
    margin-top: 10px;
}

.modal-btn-green:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 12px 25px rgba(39, 174, 96, 0.4);
}

.modal-close-btn {
    position: absolute;
    top: 18px;
    right: 18px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    font-size: 26px;
    color: white;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 20;
}

.modal-close-btn:hover {
    background: rgba(248, 181, 0, 0.2);
    color: #f8b500;
    transform: rotate(90deg);
}

.modal-row {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.modal-row .modal-btn-secondary {
    flex: 1;
}

.modal-row .modal-btn-primary {
    flex: 2;
}

.modal-row-equal .modal-btn-secondary,
.modal-row-equal .modal-btn-green {
    flex: 1;
}

.product-info-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(248, 181, 0, 0.3);
    border-radius: 14px;
    padding: 16px;
    margin-bottom: 20px;
}

.modal-details-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 20px;
    font-family: 'Cairo', sans-serif;
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin: 14px 0 24px 0;
    text-align: right;
}

.modal-details-box strong {
    color: #f8b500;
}

.modal-details-box p {
    text-align: right;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.required-label::after {
    content: ' *';
    color: #e74c3c;
}

.error-msg {
    color: #e74c3c;
    font-size: 13px;
    font-family: 'Cairo', sans-serif;
    margin-top: -10px;
    margin-bottom: 10px;
}

.price-display {
    font-size: 22px;
    font-weight: 900;
    color: #27ae60;
}

.price-display s {
    color: #e74c3c;
    font-size: 16px;
    font-weight: 400;
    margin-right: 8px;
}

/* =============================================
           FOOTER SECTION
           ============================================= */
.site-footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: rgba(255, 255, 255, 0.75);
    font-family: 'Cairo', sans-serif;
    padding: 60px 40px 30px;
    text-align: center;
}

.footer-help {
    font-size: 28px;
    font-weight: 700;
    color: #f8b500;
    margin-bottom: 8px;
}

.footer-whatsapp {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 6px;
}

.footer-phone-link {
    font-size: 26px;
    font-weight: 700;
    color: #27ae60;
    text-decoration: none;
}

.footer-phone-link:hover {
    color: #2ecc71;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin: 30px 0 20px;
}

.footer-links a {
    font-size: 20px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #f8b500;
}

.footer-copyright {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 16px;
}

.footer-disclaimer {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto 16px;
}

.footer-legal {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.25);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.footer-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin: 24px auto;
    width: 80%;
}

/* Medical disclaimer bar */
.medical-disclaimer-bar {
    background: #0d0d1a;
    color: rgba(255, 255, 255, 0.3);
    font-family: 'Cairo', sans-serif;
    font-size: 14px;
    padding: 20px 40px;
    text-align: center;
    line-height: 1.7;
}

/* =================================================================================
 * Native Lazy Loading + Fade-in Enhancement
 * ================================================================================= */
img.fade-transition {
    transition: opacity 0.6s ease-out, filter 0.6s ease-out, transform 0.6s ease-out;
}

img.fade-transition.is-loading {
    opacity: 0;
    filter: blur(5px);
    transform: translateY(10px);
}