:root { 
    --primary: #0f172a; --accent: #f97316; --whatsapp: #22c55e; --error: #e11d48; --success: #10b981; 
    --bg: #f8fafc; --card-bg: #ffffff; --text: #1e293b; --plyr-color-main: #f97316;
}
body.dark-mode { --bg: #0f172a; --card-bg: #1e293b; --text: #f8fafc; --primary: #000000; }
body { font-family: 'Segoe UI', Tahoma, sans-serif; background: var(--bg); color: var(--text); margin: 0; transition: 0.3s; overflow-x: hidden; }

/* Header */
header { background: var(--primary); color: white; padding: 40px 20px 60px 20px; text-align: center; border-bottom: 5px solid var(--accent); position: relative; z-index: 10; }
.site-logo { width: 150px; height: 150px; object-fit: cover; border-radius: 50%; margin-bottom: 15px; box-shadow: 0 4px 15px rgba(0,0,0,0.2); border: 3px solid white; }
.header-contact { margin-top: 25px; display: flex; flex-direction: column; align-items: center; gap: 10px; }

/* Phone Button */
.phone-link { display: flex; align-items: center; gap: 15px; background: rgba(255,255,255,0.15); border: none; padding: 10px 25px; border-radius: 50px; text-decoration: none; color: white; transition: 0.3s; backdrop-filter: blur(5px); width: fit-content; }
.phone-link:hover { background: white; color: var(--primary); transform: scale(1.05); }

.icon-circle { font-size: 1.4rem; animation: pulse 2s infinite; color: var(--accent); }
.text-group { display: flex; flex-direction: column; text-align: right; }
.label { font-size: 0.75rem; opacity: 0.8; font-weight: normal; }
.number { font-size: 1.2rem; font-weight: 900; letter-spacing: 1px; direction: ltr; }
.email-display-text { color: white; font-size: 1rem; margin-top: 10px; display: flex; align-items: center; gap: 8px; opacity: 0.9; text-decoration: none; transition: 0.3s; background: rgba(0,0,0,0.2); padding: 5px 15px; border-radius: 20px; }
.email-display-text:hover { color: var(--accent); background: rgba(0,0,0,0.4); }

/* Facebook Button */
.fb-btn-header { display: inline-flex; align-items: center; gap: 10px; background: #1877F2; color: white; padding: 12px 30px; border-radius: 50px; text-decoration: none; font-weight: bold; font-size: 1rem; margin-top: 20px; box-shadow: 0 5px 15px rgba(24, 119, 242, 0.4); transition: 0.3s; border: none; }
.fb-btn-header:hover { transform: scale(1.05); background: #166fe5; box-shadow: 0 8px 25px rgba(24, 119, 242, 0.6); }

/* Instagram Button */
.insta-btn-header { display: inline-flex; align-items: center; gap: 10px; background: #E1306C; background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); color: white; padding: 12px 30px; border-radius: 50px; text-decoration: none; font-weight: bold; font-size: 1rem; margin-top: 10px; box-shadow: 0 5px 15px rgba(225, 48, 108, 0.4); transition: 0.3s; border: none; }
.insta-btn-header:hover { transform: scale(1.05); box-shadow: 0 8px 25px rgba(225, 48, 108, 0.6); }

/* Animation */
@keyframes pulse { 0% { transform: scale(1); } 50% { transform: scale(1.1); } 100% { transform: scale(1); } }
@keyframes blinker { 50% { opacity: 0; } }
@keyframes slideDown { from { opacity: 0; transform: translateY(-30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slideUp { from { transform: translateY(50px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
@keyframes floating-btn { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes scroll-loop { 0% { transform: translateX(0); } 100% { transform: translateX(calc(-100% - 20px)); } }
@keyframes scroll-seamless { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes shine { 0% { left: -100%; } 20% { left: 100%; } 100% { left: 100%; } }

/* Bars & Controls */
.marquee-bar { background: #000; color: #fff; overflow: hidden; padding: 10px 0; font-size: 0.85rem; position: relative; z-index: 2001; display: flex; }
.marquee-content { display: flex; gap: 50px; animation: scroll-seamless 60s linear infinite; width: max-content; }
.top-bar { background: var(--accent); color: white; text-align: center; padding: 10px; font-weight: bold; position: sticky; top: 0; z-index: 2000; font-size: 0.9rem;}
.blink { animation: blinker 1.5s linear infinite; }
.controls { position: fixed; top: 70px; right: 20px; z-index: 2000; }
.theme-btn { background: var(--card-bg); border: 2px solid var(--accent); color: var(--text); padding: 10px; border-radius: 50%; cursor: pointer; box-shadow: 0 4px 10px rgba(0,0,0,0.1); }

/* Floating Contact & Cart */
.floating-contact { position: fixed; bottom: 30px; right: 20px; display: flex; flex-direction: column; gap: 15px; z-index: 2000; }
.contact-btn { width: 55px; height: 55px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; text-decoration: none; font-size: 24px; box-shadow: 0 4px 15px rgba(0,0,0,0.3); transition: 0.3s transform; }
.contact-btn:hover { transform: scale(1.1); }
.btn-phone { background-color: #007bff; }
.btn-whatsapp-float { background-color: #25d366; }
.cart-trigger { position: fixed; bottom: 30px; left: 30px; background: linear-gradient(135deg, #ff6a00, #ee0979); padding: 12px 25px; border-radius: 50px; display: flex; align-items: center; gap: 12px; cursor: pointer; z-index: 2000; box-shadow: 0 10px 25px rgba(238, 9, 121, 0.4); border: 2px solid rgba(255, 255, 255, 0.2); transition: 0.4s; color: white; animation: floating-btn 3s ease-in-out infinite; }
.cart-trigger:hover { transform: scale(1.05); }
.cart-text { color: white; font-weight: 800; font-size: 1.05rem; }

/* Sidebar */
#sidebar { position: fixed; top: 0; left: -400px; width: 380px; height: 100%; background: var(--card-bg); z-index: 5000; transition: 0.4s; display: flex; flex-direction: column; box-shadow: 10px 0 50px rgba(0,0,0,0.2); }
#sidebar.active { left: 0; }
.cart-header { padding: 20px; background: var(--primary); color: white; display: flex; justify-content: space-between; align-items: center; }
.cart-body { flex: 1; padding: 20px; overflow-y: auto; padding-bottom: 100px; display: flex; flex-direction: column; }
.cart-body label { display: block; margin-top: 15px; margin-bottom: 5px; font-weight: 700; color: var(--primary); font-size: 0.95rem; }
body.dark-mode .cart-body label { color: #fff; }
.sidebar-input { width: 100%; padding: 12px 15px; border: 1px solid #cbd5e1; border-radius: 10px; box-sizing: border-box; font-size: 1rem; background: #fff; color: #333; }
.sidebar-input:focus { border-color: var(--accent); outline: none; }
select.sidebar-input { height: 50px; cursor: pointer; }
.sidebar-input:disabled { background-color: #e2e8f0; cursor: not-allowed; opacity: 0.7; }
.calc-box { background: #fff7ed; padding: 15px; border-radius: 15px; border: 1px solid #ffedd5; color: #1e293b; margin-top: 20px; }
.currency-toggle { background: #f1f5f9; padding: 5px; border-radius: 8px; display: flex; gap: 5px; margin-bottom: 10px; }
.cur-btn { flex: 1; border: none; padding: 6px; border-radius: 5px; cursor: pointer; font-size: 0.8rem; font-weight: bold; transition: 0.2s; }
.cur-btn.active { background: var(--accent); color: white; }
.track-link-btn { display: block; width: 100%; text-align: center; padding: 12px; background: #3b82f6; color: white; text-decoration: none; border-radius: 10px; margin-bottom: 15px; font-weight: bold; border: 1px solid #2563eb; }
.track-link-btn:hover { background: #2563eb; }
.final-sum { font-size: 1.6rem; font-weight: 800; text-align: center; color: #b91c1c; margin-top: 15px; border-top: 2px dashed #ccc; padding-top: 10px; }
.confirm-box { margin: 20px 0; display: flex; align-items: center; gap: 10px; background: #f1f5f9; padding: 15px; border-radius: 10px; }
.confirm-box input { width: 20px; height: 20px; }
.confirm-box label { margin: 0; display: inline; cursor: pointer; font-weight:bold; font-size:0.9rem; }
.link-input-group { display: flex; gap: 5px; align-items: center; margin: 8px 0; }
.link-input-group input { margin: 0; flex: 1; } 
.paste-btn { background: #e2e8f0; color: #334155; border: 1px solid #cbd5e1; padding: 12px; border-radius: 10px; cursor: pointer; transition: 0.3s; font-size: 1rem; }
.paste-btn:hover { background: #cbd5e1; color: var(--primary); }
.help-btn { background: #3b82f6; color: white; border: none; padding: 12px 15px; border-radius: 10px; cursor: pointer; white-space: nowrap; font-size: 0.9rem; font-weight: bold; display: flex; align-items: center; gap: 5px; box-shadow: 0 2px 5px rgba(0,0,0,0.1); }
.help-btn:hover { background: #2563eb; }
.progress-section { margin: 10px 0; background: #fff; padding: 8px; border-radius: 10px; border: 1px solid #eee; display: none; }
.progress-bar-bg { background: #e2e8f0; height: 8px; border-radius: 10px; overflow: hidden; }
.progress-bar-fill { background: var(--success); height: 100%; width: 0%; transition: 0.5s; }

/* Main Content */
.official-rules { max-width: 900px; margin: 40px auto; padding: 30px; background: #fff; border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); border: 1px solid #e2e8f0; border-right: 6px solid var(--accent); }
.rule-box h2 { font-size: 1.5rem; margin-bottom: 20px; color: var(--primary); border-bottom: 2px solid #f1f5f9; padding-bottom: 15px; }
.rule-text h3 { font-size: 1.1rem; color: var(--accent); margin-top: 20px; margin-bottom: 10px; }
.rule-text p { line-height: 1.7; color: #475569; margin-bottom: 10px; font-size: 0.95rem; }
.rule-text ul { padding-right: 20px; margin-bottom: 15px; list-style-type: disc; }
.rule-text li { margin-bottom: 8px; color: #334155; }

.hero-video-box { max-width: 900px; margin: 20px auto 30px auto; background: var(--card-bg); border-radius: 20px; padding: 25px; box-shadow: 0 15px 40px rgba(0,0,0,0.15); text-align: center; position: relative; z-index: 50; border: 3px solid var(--accent); animation: slideDown 0.8s ease-out; }
.hero-video-title { color: var(--primary); font-size: 1.4rem; font-weight: 900; margin-bottom: 15px; background: #fff7ed; display: inline-block; padding: 10px 20px; border-radius: 30px; border: 1px dashed var(--accent); }
.plyr { border-radius: 15px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.2); }
.plyr--video { aspect-ratio: 16/9; }

/* Steps Section */
.steps-section { padding: 50px 20px; background: var(--card-bg); text-align: center; margin: 40px auto; max-width: 1100px; border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); border: 1px solid #eee; }
.steps-title { color: var(--primary); font-size: 1.8rem; margin-bottom: 40px; font-weight: 900; position: relative; display: inline-block; }
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; margin-top: 20px; }
.step-box { background: #fff; padding: 30px 20px; border-radius: 15px; border: 1px solid #f1f5f9; box-shadow: 0 5px 15px rgba(0,0,0,0.03); transition: 0.3s; display: flex; flex-direction: column; align-items: center; position: relative; }
.step-box:hover { transform: translateY(-8px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); }
.step-icon-circle { width: 80px; height: 80px; background: #fff7ed; color: var(--accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2rem; margin-bottom: 20px; border: 2px dashed var(--accent); position: relative; }
.step-number { position: absolute; top: -5px; right: -5px; background: var(--primary); color: white; width: 30px; height: 30px; border-radius: 50%; font-size: 1rem; display: flex; align-items: center; justify-content: center; font-weight: bold; border: 3px solid white; }
.step-head { font-weight: 800; font-size: 1.3rem; margin-bottom: 10px; color: var(--primary); }
.step-desc { font-size: 0.95rem; color: #64748b; line-height: 1.6; max-width: 90%; }

/* Filter & Grid */
.filter-container { text-align:center; margin: 30px 0; }
.filter-btn { padding: 10px 20px; margin: 5px; border: 1px solid var(--accent); background: white; color: var(--accent); border-radius: 20px; cursor: pointer; font-weight: bold; transition: 0.3s; }
.filter-btn.active, .filter-btn:hover { background: var(--accent); color: white; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 25px; max-width: 1200px; margin: 40px auto; padding: 0 20px; }
.card { background: var(--card-bg); border-radius: 20px; overflow: hidden; box-shadow: 0 4px 15px rgba(0,0,0,0.05); text-align: center; border: 1px solid #eee; transition: 0.3s; position: relative; }
.card:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0,0,0,0.1); }
.card img { width: 100%; height: 250px; object-fit: cover; }
.card-badge { position: absolute; top: 10px; right: 10px; background: #ef4444; color: white; padding: 5px 12px; border-radius: 20px; font-size: 0.8rem; font-weight: bold; }
.card-price { font-size: 1.4rem; color: var(--primary); font-weight: 900; margin: 10px 0; }
.title-clamp { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; text-overflow: ellipsis; min-height: 2.8em; line-height: 1.4em; margin: 10px 0; }

/* FAQ */
.faq-section { max-width: 900px; margin: 40px auto; padding: 20px; }
.faq-item { background: #fff; border-radius: 12px; margin-bottom: 12px; border: 1px solid #e2e8f0; overflow: hidden; }
.faq-question { width: 100%; padding: 18px; text-align: right; background: #f8fafc; border: none; display: flex; justify-content: space-between; align-items: center; font-weight: 700; cursor: pointer; transition: 0.3s; }
.faq-question:hover { background: #eff6ff; }
.faq-question.active { background: #eff6ff; color: var(--accent); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out; background: #fff; }
.faq-answer p { padding: 20px; margin: 0; line-height: 1.6; color: #475569; }

/* Reviews */
.reviews-section { margin: 40px auto; text-align: center; }
.reviews-container { width: 100%; overflow: hidden; position: relative; padding: 20px 0; background: rgba(0,0,0,0.02); }
.reviews-track { display: flex; gap: 20px; width: max-content; animation: scroll-loop 40s linear infinite; padding-left: 100%; }
.reviews-track:hover { animation-play-state: paused; }
.review-card { background: var(--card-bg); padding: 20px; border-radius: 15px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); width: 300px; border: 1px solid #eee; flex-shrink: 0; }
.add-review-box { max-width: 500px; margin: 20px auto; background: var(--card-bg); padding: 25px; border-radius: 15px; box-shadow: 0 5px 15px rgba(0,0,0,0.1); border: 1px solid var(--accent); }
.review-input { width: 100%; padding: 10px; margin-bottom: 10px; border: 1px solid #ccc; border-radius: 8px; box-sizing: border-box; }
.star-rating { display: flex; gap: 5px; justify-content: center; margin-bottom: 10px; flex-direction: row-reverse; }
.star-rating input { display: none; }
.star-rating label { font-size: 25px; color: #ccc; cursor: pointer; transition: 0.2s; }
.star-rating input:checked ~ label, .star-rating label:hover, .star-rating label:hover ~ label { color: #fbbf24; }
.review-media { max-width: 100%; border-radius: 10px; margin-top: 10px; border: 2px solid #fff; box-shadow: 0 2px 5px rgba(0,0,0,0.1); max-height: 200px; }
.file-upload label { background: #f1f5f9; padding: 10px 20px; border-radius: 5px; cursor: pointer; border: 1px solid #ccc; display: inline-block; font-size: 0.9rem; }

/* Modals & Popups */
.invoice-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.85); z-index: 6000; display: none; align-items: center; justify-content: center; backdrop-filter: blur(5px); }
.invoice-ticket { background: white; color: #333; width: 320px; padding: 25px; border-radius: 0; position: relative; font-family: 'Courier New', Courier, monospace; box-shadow: 0 20px 50px rgba(0,0,0,0.5); }
.invoice-ticket::after { content: ""; position: absolute; bottom: -15px; left: 0; width: 100%; height: 20px; background: radial-gradient(circle, transparent, transparent 50%, white 50%, white) 0 0 / 20px 20px repeat-x; }
.ticket-header { text-align: center; border-bottom: 2px dashed #ccc; padding-bottom: 15px; margin-bottom: 15px; }

.video-modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.9); z-index: 4000; display: none; align-items: center; justify-content: center; backdrop-filter: blur(5px); }
.video-content { background: #000; padding: 0; border-radius: 15px; width: 90%; max-width: 400px; position: relative; box-shadow: 0 10px 30px rgba(0,0,0,0.5); overflow: hidden; }
.video-content video { width: 100%; display: block; }
.close-video { position: absolute; top: 10px; right: 10px; background: rgba(255,255,255,0.8); color: #000; width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; font-weight: bold; z-index: 10; }

.otp-modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.85); z-index: 7000; display: none; align-items: center; justify-content: center; backdrop-filter: blur(8px); }
.otp-modal-box { background: var(--card-bg); width: 90%; max-width: 400px; padding: 30px; border-radius: 20px; text-align: center; box-shadow: 0 25px 50px rgba(0,0,0,0.5); animation: slideUp 0.4s ease; position: relative; }
.otp-icon { font-size: 3rem; color: var(--accent); margin-bottom: 15px; }
.otp-modal-box h3 { margin: 10px 0; color: var(--primary); }
.otp-modal-box p { color: #64748b; font-size: 0.95rem; margin-bottom: 20px; }
.otp-input-field { width: 100%; padding: 15px; font-size: 1.5rem; letter-spacing: 10px; text-align: center; border: 2px solid #e2e8f0; border-radius: 10px; margin-bottom: 20px; outline: none; transition: 0.3s; }
.otp-input-field:focus { border-color: var(--accent); box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.1); }
.otp-action-btn { width: 100%; padding: 15px; background: var(--primary); color: white; border: none; border-radius: 12px; font-size: 1.1rem; font-weight: bold; cursor: pointer; transition: 0.3s; }
.otp-action-btn:hover { opacity: 0.9; transform: scale(1.02); }
.close-otp { position: absolute; top: 15px; left: 15px; cursor: pointer; font-size: 1.2rem; color: #94a3b8; transition: 0.3s; }
.close-otp:hover { color: var(--error); }

.captcha-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.95); z-index: 10000; display: none; align-items: center; justify-content: center; backdrop-filter: blur(10px); }
.captcha-box { background: white; padding: 35px 25px; border-radius: 25px; box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); text-align: center; max-width: 380px; width: 90%; position: relative; overflow: hidden; }
.captcha-box::before { content: ''; position: absolute; top: -50px; left: -50px; width: 100px; height: 100px; background: var(--accent); opacity: 0.1; border-radius: 50%; }
.captcha-box h2 { color: var(--primary); margin-bottom: 10px; font-size: 1.6rem; }
.security-icon { font-size: 3.5rem; color: var(--success); margin-bottom: 15px; display: inline-block; background: #ecfdf5; padding: 20px; border-radius: 50%; box-shadow: 0 10px 20px rgba(16, 185, 129, 0.1); }
.code-display { background: #f1f5f9; font-family: 'Courier New', monospace; font-size: 2.2rem; letter-spacing: 8px; font-weight: 900; padding: 15px; border-radius: 12px; border: 2px dashed #cbd5e1; margin: 20px 0; color: #334155; position: relative; display: flex; align-items: center; justify-content: center; gap: 15px; }
.refresh-btn { font-size: 1.2rem; cursor: pointer; color: #64748b; background: none; border: none; transition: 0.3s; }
.refresh-btn:hover { color: var(--accent); transform: rotate(180deg); }
.captcha-input { width: 100%; padding: 15px; font-size: 1.3rem; text-align: center; border: 2px solid #e2e8f0; border-radius: 12px; margin-bottom: 15px; box-sizing: border-box; transition: 0.3s; letter-spacing: 3px; }
.captcha-input:focus { border-color: var(--accent); box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.1); outline: none; }
.captcha-btn { width: 100%; padding: 15px; background: linear-gradient(135deg, var(--primary), #1e293b); color: white; border: none; border-radius: 12px; font-size: 1.1rem; font-weight: bold; cursor: pointer; transition: 0.3s; box-shadow: 0 4px 15px rgba(0,0,0,0.2); }
.captcha-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,0.3); }

.social-notification { position: fixed; bottom: 100px; left: 30px; background: white; padding: 15px; border-radius: 12px; box-shadow: 0 5px 20px rgba(0,0,0,0.15); display: flex; align-items: center; gap: 12px; z-index: 2999; transform: translateX(-150%); transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275); max-width: 320px; border-right: 4px solid var(--accent); }
.social-notification.show { transform: translateX(0); }
.sn-img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; border: 2px solid #f1f5f9; }
.sn-content h4 { margin: 0; font-size: 0.9rem; color: var(--primary); }
.sn-content p { margin: 2px 0 0; font-size: 0.8rem; color: #64748b; }
.sn-time { font-size: 0.75rem; color: var(--success); font-weight: bold; }

.verify-btn { width: 100%; padding: 12px; background: #3b82f6; color: white; border: none; border-radius: 10px; cursor: pointer; font-weight: bold; margin-bottom: 10px; }
.verify-btn:hover { background: #2563eb; }

/* SEO Text Block (Subtle for Google) */
.seo-text-block {
    max-width: 900px;
    margin: 30px auto 10px auto;
    font-size: 0.85rem;
    line-height: 1.6;
    text-align: justify;
    opacity: 0.8;
    color: #94a3b8;
    padding: 0 20px;
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 20px;
}
.seo-text-block h3 { font-size: 1rem; margin-bottom: 8px; color: var(--primary); opacity: 0.7; }
body.dark-mode .seo-text-block { color: #cbd5e1; border-top: 1px solid rgba(255,255,255,0.05); }

/* Footer */
.site-footer { background: #f8fafc; padding: 40px 20px 100px 20px; text-align: center; border-top: 1px solid #e2e8f0; }
.footer-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; margin-bottom: 30px; }
.footer-link { background: white; border: 1px solid #e2e8f0; padding: 10px 20px; border-radius: 30px; color: #475569; text-decoration: none; font-weight: 600; font-size: 0.9rem; display: inline-flex; align-items: center; gap: 8px; transition: 0.3s; }
.footer-link:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-3px); box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.copyright-box { background: rgba(255,255,255,0.5); border: 1px dashed #cbd5e1; padding: 15px; border-radius: 15px; display: inline-block; max-width: 90%; }
.copyright-text { color: #64748b; font-size: 0.9rem; line-height: 1.6; margin: 0; }
.copyright-text b { color: var(--primary); }
.heart-icon { color: #e11d48; animation: heartbeat 1.5s infinite ease-in-out; display: inline-block; }
@keyframes heartbeat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.3); } }

/* ✅ Mobile Sticky Bar (تم حذف كل المربعات والألوان، لا خلفية) */
.mobile-sticky-bar { display: none; }

/* ✅ تنسيق الأزرار (لتظهر عائمة وملونة) */
.sticky-btn { 
    flex: 1; 
    padding: 12px; 
    border-radius: 50px; 
    text-align: center; 
    text-decoration: none; 
    font-weight: 800; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    gap: 8px; 
    border: none !important; 
    cursor: pointer; 
    font-size: 1rem; 
    color: white !important; 
    pointer-events: auto; /* تفعيل الضغط على الأزرار */
    box-shadow: 0 4px 15px rgba(0,0,0,0.2); 
    opacity: 1 !important; 
}

/* ✅ زر الواتساب (أخضر إجباري) */
.whatsapp-btn { 
    background-color: #25d366 !important; 
    background-image: linear-gradient(45deg, #25d366, #128c7e) !important;
}

/* ✅ زر احسب تكلفتك (برتقالي إجباري) */
.cart-btn { 
    background-color: #f97316 !important;
    background-image: linear-gradient(45deg, #f97316, #e11d48) !important;
}

@media (max-width: 768px) {
    #sidebar { width: 100%; left: -100%; }
    
    /* ✅ إعادة تفعيل الشريط فقط في الهاتف ولكن بدون خلفية */
    .mobile-sticky-bar { 
        display: flex; 
        position: fixed; 
        bottom: 10px; 
        left: 50%; 
        transform: translateX(-50%); 
        width: 95%; 
        max-width: 450px; 
        background: none !important; /* لا لون خلفية */
        backdrop-filter: none !important; /* لا تأثير ضبابي */
        box-shadow: none !important; /* لا ظل للشريط */
        border: none !important; /* لا حدود */
        z-index: 3000; 
        padding: 0; 
        justify-content: space-between; 
        gap: 10px; 
        pointer-events: none; /* الشريط نفسه لا يمنع اللمس */
    }
    
    .social-notification { bottom: 110px; left: 10px; max-width: 260px; padding: 10px; font-size: 0.85rem; z-index: 2900; }
    .sn-img { width: 40px; height: 40px; }
    .floating-contact { bottom: 160px; right: 15px; gap: 12px; z-index: 2000; transition: opacity 0.3s; }
    .contact-btn { width: 48px; height: 48px; font-size: 22px; }
    .captcha-box { width: 90%; padding: 25px 20px; }
    .code-display { font-size: 2rem; letter-spacing: 5px; }
    .controls { top: 15px; right: 15px; }
    .invoice-ticket { width: 92%; }
    .add-review-box { width: 95%; margin: 15px auto; }
    .site-logo { width: 110px; height: 110px; }
    header { padding: 30px 15px; }
    header h1 { font-size: 1.6rem; }
    .hero-video-box { width: 92%; margin: -25px auto 25px; padding: 15px; }
    .footer-links { flex-direction: column; padding: 0 10px; }
    .footer-link { justify-content: center; width: 100%; }
}

/* Secret Admin Button */
#secret-admin-btn {
    position: fixed; bottom: 90px; left: 20px; z-index: 9999;
    background: #e11d48; color: white; padding: 12px 25px; border-radius: 50px;
    font-weight: bold; text-decoration: none; box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    border: none; display: none; animation: slideUp 0.4s ease-out;
}
#secret-admin-btn:hover { transform: scale(1.1); background: #be123c; }