/* CSS Variables */
:root {
    --main-blue: #C9A227;
    --main-blue-dark: #a8841f;
    --dark: #07111F;
    --black: #050505;
    --white: #FFFFFF;
    --light-bg: #F4F7FB;
    --card-bg: #FFFFFF;
    --text: #111827;
    --muted-text: #6B7280;
    --warning: #FFD43B;
    --warning-dark: #FFC107;
    --border-radius: 20px;
    --border-radius-sm: 14px;
    --border-radius-lg: 28px;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cairo', 'Tajawal', system-ui, -apple-system, sans-serif;
    background-color: var(--light-bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

body.rtl {
    direction: rtl;
}

body.ltr {
    direction: ltr;
}

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

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
}

/* Logo */
.site-logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 44px;
    width: auto;
    object-fit: contain;
}

.logo-light { display: block; }
.logo-dark  { display: none; }

body.black-theme .logo-light { display: none; }
body.black-theme .logo-dark  { display: block; }

/* Header */
.header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.lang-switch {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.lang-switch a {
    color: var(--muted-text);
    transition: color 0.3s;
}

.lang-switch a.active,
.lang-switch a:hover {
    color: var(--main-blue);
    font-weight: 600;
}

.lang-switch span {
    color: var(--muted-text);
}

.color-switch {
    display: flex;
    align-items: center;
    gap: 15px;
}

.color-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: var(--border-radius-sm);
    background: var(--light-bg);
    color: var(--muted-text);
    transition: all 0.3s;
    font-size: 14px;
}

.color-option:hover,
.color-option.active {
    background: var(--main-blue);
    color: var(--white);
}

.color-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid rgba(0, 0, 0, 0.1);
}

.color-dot.black {
    background: var(--black);
}

.color-dot.white {
    background: var(--white);
}

/* Hero Section */
.hero {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--light-bg) 0%, #e8f0fe 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.top-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.badge {
    display: inline-block;
    padding: 8px 16px;
    background: var(--white);
    color: var(--main-blue);
    border-radius: var(--border-radius-sm);
    font-size: 13px;
    font-weight: 600;
    box-shadow: var(--shadow);
}

.hero-headline {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--dark);
}

.hero-subheadline {
    font-size: 18px;
    color: var(--muted-text);
    line-height: 1.8;
}

.price-section {
    display: flex;
    align-items: center;
    gap: 20px;
}

.old-price {
    font-size: 24px;
    color: var(--muted-text);
    text-decoration: line-through;
}

.new-price {
    font-size: 36px;
    font-weight: 800;
    color: var(--main-blue);
}

.hero-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: var(--border-radius);
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--main-blue) 0%, var(--main-blue-dark) 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(201, 162, 39, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 162, 39, 0.5);
}

.btn-secondary {
    background: var(--white);
    color: var(--main-blue);
    border: 2px solid var(--main-blue);
}

.btn-secondary:hover {
    background: var(--main-blue);
    color: var(--white);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-hero-img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

/* Trust Badges */
.trust-badges {
    padding: 40px 0;
    background: var(--white);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.trust-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--light-bg);
    border-radius: var(--border-radius);
    transition: transform 0.3s;
}

.trust-item:hover {
    transform: translateY(-5px);
}

.trust-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.trust-item h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
}

/* Real Product Section */
.real-product {
    padding: 80px 0;
    background: var(--light-bg);
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--dark);
    text-align: center;
    margin-bottom: 15px;
}

.section-text {
    font-size: 18px;
    color: var(--muted-text);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
}

.product-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.gallery-item {
    background: var(--white);
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: contain;
    border-radius: var(--border-radius-sm);
}

/* Quality Section */
.quality-section {
    padding: 80px 0;
    background: var(--white);
}

.quality-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.quality-item {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.quality-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.quality-info h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.quality-info p {
    color: var(--muted-text);
    font-size: 16px;
}

.quality-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.quality-feature {
    display: flex;
    gap: 20px;
    align-items: start;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: var(--main-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 5px;
}

.feature-text p {
    color: var(--muted-text);
    font-size: 14px;
}

/* Color Pill Selector (inside form) */
.color-pill-selector {
    display: flex;
    align-items: center;
    width: 100%;
    background: #ffffff;
    border-radius: 22px;
    padding: 6px;
    gap: 8px;
    box-shadow: 0 10px 30px rgba(7, 17, 31, 0.08);
    border: 1px solid rgba(7, 17, 31, 0.06);
    margin-bottom: 14px;
}

.color-option {
    position: relative;
    flex: 1;
    height: 58px;
    border: 0;
    border-radius: 17px;
    background: #f8fafc;
    color: #111827;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 17px;
    font-weight: 800;
    cursor: pointer;
    transition: all .25s ease;
    overflow: hidden;
    font-family: 'Cairo', 'Tajawal', sans-serif;
}

.color-option img {
    width: 48px;
    height: 38px;
    object-fit: contain;
    flex-shrink: 0;
}

.color-label {
    font-size: 17px;
    font-weight: 800;
}

.color-option.active {
    background: linear-gradient(135deg, #07111F, #111827);
    color: #ffffff;
    box-shadow: 0 12px 28px rgba(7, 17, 31, 0.22);
}

.color-option .check-dot {
    display: none;
    position: absolute;
    right: 12px;
    top: 10px;
    width: 22px;
    height: 22px;
    border-radius: 999px;
    background: #C9A227;
    color: #ffffff;
    font-size: 13px;
    line-height: 22px;
    text-align: center;
    font-weight: 900;
}

html[dir="rtl"] .color-option .check-dot {
    right: auto;
    left: 12px;
}

.color-option.active .check-dot {
    display: block;
}

.size-row {
    display: flex;
    gap: 8px;
    width: 100%;
}

.size-option {
    flex: 1;
    height: 48px;
    min-width: 0;
    border-radius: 14px;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    color: #111827;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    transition: all .2s ease;
    font-family: 'Cairo', 'Tajawal', sans-serif;
}

.size-option:hover {
    border-color: #C9A227;
    color: #C9A227;
}

.size-option.active {
    background: #07111F;
    color: #ffffff;
    border-color: #07111F;
    box-shadow: 0 8px 18px rgba(7, 17, 31, 0.18);
}

@media (max-width: 360px) {
    .color-option {
        font-size: 15px;
        gap: 6px;
    }
    .color-option img {
        width: 40px;
    }
    .size-row {
        gap: 6px;
    }
    .size-option {
        font-size: 15px;
    }
}

/* Offer Section */
.offer-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--main-blue) 0%, var(--main-blue-dark) 100%);
}

.offer-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 60px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    max-width: 700px;
    margin: 0 auto;
}

.offer-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 30px;
}

.offer-prices {
    margin-bottom: 30px;
}

.offer-old {
    font-size: 24px;
    color: var(--muted-text);
    text-decoration: line-through;
    margin-bottom: 10px;
}

.offer-new {
    font-size: 48px;
    font-weight: 800;
    color: var(--main-blue);
    margin-bottom: 10px;
}

.offer-limited {
    font-size: 18px;
    color: var(--warning-dark);
    font-weight: 600;
}

.countdown {
    margin: 40px 0;
}

.countdown-label {
    font-size: 18px;
    color: var(--muted-text);
    margin-bottom: 15px;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.time-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--light-bg);
    padding: 15px 20px;
    border-radius: var(--border-radius-sm);
    min-width: 80px;
}

.time-value {
    font-size: 36px;
    font-weight: 800;
    color: var(--main-blue);
}

.time-label {
    font-size: 14px;
    color: var(--muted-text);
    font-weight: 600;
}

.time-separator {
    font-size: 36px;
    font-weight: 800;
    color: var(--muted-text);
    align-self: center;
}

.btn-offer {
    background: linear-gradient(135deg, var(--warning) 0%, var(--warning-dark) 100%);
    color: var(--dark);
    font-size: 18px;
    padding: 18px 40px;
}

.btn-offer:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 196, 7, 0.5);
}

/* Order Form Section */
.order-form-section {
    padding: 80px 0;
    background: var(--light-bg);
    padding-bottom: 120px;
}

.form-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 50px;
    box-shadow: var(--shadow-lg);
    max-width: 700px;
    margin: 0 auto;
}

.form-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--dark);
    text-align: center;
    margin-bottom: 30px;
}

.success-message {
    background: #d4edda;
    color: #155724;
    padding: 15px 20px;
    border-radius: var(--border-radius-sm);
    margin-bottom: 30px;
    text-align: center;
    font-weight: 600;
}

.order-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
}

.form-group input,
.form-group textarea {
    padding: 16px 20px;
    border: 2px solid #e0e0e0;
    border-radius: var(--border-radius-sm);
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--main-blue);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Form color/size selectors now use .color-pill-selector and .size-row */

.delivery-options {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.delivery-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border: 2px solid #e0e0e0;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: all 0.3s;
}

.delivery-option:hover {
    border-color: var(--main-blue);
}

.delivery-option input[type="radio"] {
    width: 20px;
    height: 20px;
    accent-color: var(--main-blue);
}

.delivery-note {
    font-size: 14px;
    color: var(--muted-text);
    font-style: italic;
}

.btn-submit {
    background: linear-gradient(135deg, var(--main-blue) 0%, var(--main-blue-dark) 100%);
    color: var(--white);
    font-size: 18px;
    padding: 18px 40px;
    margin-top: 10px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 162, 39, 0.5);
}

.submit-note {
    text-align: center;
    font-size: 14px;
    color: var(--muted-text);
    margin-top: 10px;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: var(--white);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #e0e0e0;
}

.faq-question {
    width: 100%;
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
    text-align: left;
}

.faq-icon {
    font-size: 24px;
    color: var(--main-blue);
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding-bottom: 25px;
    color: var(--muted-text);
    line-height: 1.8;
}

/* Sticky Bar (Mobile Only) */
.sticky-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    padding: 15px 20px;
    z-index: 999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.sticky-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.sticky-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.sticky-color,
.sticky-size,
.sticky-price {
    font-size: 14px;
    color: var(--white);
}

.sticky-price {
    font-weight: 700;
    color: var(--warning);
}

.btn-sticky {
    background: var(--main-blue);
    color: var(--white);
    padding: 12px 24px;
    font-size: 14px;
}

/* Theme Variations - Night Mode */
.white-theme .color-dot.white {
    border-color: var(--main-blue);
}

.black-theme .color-dot.black {
    border-color: var(--main-blue);
}

/* Dark Theme (Night Mode) - When black is selected */
body.black-theme {
    background-color: #0a0a0a;
    color: #ffffff;
}

body.black-theme .header {
    background: #0a0a0a;
    box-shadow: 0 2px 10px rgba(255, 255, 255, 0.05);
}

body.black-theme .hero {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
}

body.black-theme .hero-headline {
    color: #ffffff;
}

body.black-theme .hero-subheadline {
    color: #b0b0b0;
}

body.black-theme .badge {
    background: #1a1a2e;
    color: #C9A227;
    border: 1px solid #2a2a4e;
}

body.black-theme .trust-badges {
    background: #0a0a0a;
}

body.black-theme .trust-item {
    background: #1a1a2e;
}

body.black-theme .trust-item h3 {
    color: #ffffff;
}

body.black-theme .real-product {
    background: #0a0a0a;
}

body.black-theme .section-title {
    color: #ffffff;
}

body.black-theme .section-text {
    color: #b0b0b0;
}

body.black-theme .gallery-item {
    background: #1a1a2e;
    border: 1px solid #2a2a4e;
}

body.black-theme .quality-section {
    background: #0a0a0a;
}

body.black-theme .quality-info h3 {
    color: #ffffff;
}

body.black-theme .quality-info p {
    color: #b0b0b0;
}

body.black-theme .feature-text h4 {
    color: #ffffff;
}

body.black-theme .feature-text p {
    color: #b0b0b0;
}

/* Dark theme pill selector overrides */

body.black-theme .color-pill-selector {
    background: #1a1a2e;
    border-color: #2a2a4e;
}

body.black-theme .color-option {
    background: #0d0d1a;
    color: #b0b0b0;
}

body.black-theme .color-option.active {
    background: linear-gradient(135deg, #C9A227, #a8841f);
    color: #ffffff;
}

body.black-theme .size-option {
    background: #1a1a2e;
    border-color: #2a2a4e;
    color: #ffffff;
}

body.black-theme .size-option:hover {
    border-color: var(--main-blue);
    color: var(--main-blue);
}

body.black-theme .size-option.active {
    background: var(--main-blue);
    border-color: var(--main-blue);
    color: #ffffff;
}

body.black-theme .checkmark {
    background: var(--main-blue);
    color: var(--white);
}

body.black-theme .offer-card {
    background: #1a1a2e;
    border: 1px solid #2a2a4e;
}

body.black-theme .offer-title {
    color: #ffffff;
}

body.black-theme .offer-old {
    color: #b0b0b0;
}

body.black-theme .countdown-label {
    color: #b0b0b0;
}

body.black-theme .time-block {
    background: #0a0a0a;
    border: 1px solid #2a2a4e;
}

body.black-theme .time-label {
    color: #b0b0b0;
}

body.black-theme .order-form-section {
    background: #0a0a0a;
}

body.black-theme .form-card {
    background: #1a1a2e;
    border: 1px solid #2a2a4e;
}

body.black-theme .form-title {
    color: #ffffff;
}

body.black-theme .form-group label {
    color: #ffffff;
}

body.black-theme .form-group input,
body.black-theme .form-group textarea {
    background: #0a0a0a;
    border-color: #2a2a4e;
    color: #ffffff;
}

body.black-theme .form-group input:focus,
body.black-theme .form-group textarea:focus {
    border-color: var(--main-blue);
}

body.black-theme .form-size-btn,
body.black-theme .form-color-btn {
    background: #0a0a0a;
    border-color: #2a2a4e;
    color: #ffffff;
}

body.black-theme .form-size-btn:hover,
body.black-theme .form-color-btn:hover,
body.black-theme .form-size-btn.active,
body.black-theme .form-color-btn.active {
    background: var(--main-blue);
    border-color: var(--main-blue);
    color: #ffffff;
}

body.black-theme .delivery-option {
    background: #0a0a0a;
    border-color: #2a2a4e;
    color: #ffffff;
}

body.black-theme .delivery-option:hover {
    border-color: var(--main-blue);
}

body.black-theme .delivery-note {
    color: #b0b0b0;
}

body.black-theme .submit-note {
    color: #b0b0b0;
}

body.black-theme .faq-section {
    background: #0a0a0a;
}

body.black-theme .faq-item {
    border-bottom-color: #2a2a4e;
}

body.black-theme .faq-question {
    color: #ffffff;
}

body.black-theme .faq-answer p {
    color: #b0b0b0;
}

body.black-theme .sticky-bar {
    background: #0a0a0a;
    border-top: 1px solid #2a2a4e;
}

body.black-theme .color-option {
    background: #1a1a2e;
    color: #ffffff;
}

body.black-theme .color-option:hover,
body.black-theme .color-option.active {
    background: var(--main-blue);
    color: #ffffff;
}

body.black-theme .lang-switch a {
    color: #b0b0b0;
}

body.black-theme .lang-switch a.active,
body.black-theme .lang-switch a:hover {
    color: var(--main-blue);
}

body.black-theme .lang-switch span {
    color: #b0b0b0;
}

body.black-theme .btn-secondary {
    background: #1a1a2e;
    color: #ffffff;
    border-color: var(--main-blue);
}

body.black-theme .btn-secondary:hover {
    background: var(--main-blue);
    color: #ffffff;
}

/* Responsive Design - Tablet */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text {
        align-items: center;
    }
    
    .top-badges {
        justify-content: center;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .price-section {
        justify-content: center;
    }
    
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .product-gallery {
        grid-template-columns: 1fr;
    }
    
    .quality-grid {
        grid-template-columns: 1fr;
    }
    
    .selector-grid {
        grid-template-columns: 1fr;
    }
    
    .offer-card {
        padding: 40px;
    }
    
    .form-card {
        padding: 40px;
    }
}

/* Responsive Design - Mobile */
@media (max-width: 767px) {
    .container {
        padding: 0 15px;
    }
    
    .header-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero {
        padding: 40px 0;
    }
    
    .hero-headline {
        font-size: 32px;
    }
    
    .hero-subheadline {
        font-size: 16px;
    }
    
    .price-section {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .old-price {
        font-size: 20px;
    }
    
    .new-price {
        font-size: 28px;
    }
    
    .hero-cta {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        padding: 14px 24px;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .trust-item {
        padding: 20px 15px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-text {
        font-size: 16px;
        padding: 0 10px;
    }
    
    .product-gallery {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .gallery-item img {
        height: 200px;
    }
    
    .quality-grid {
        gap: 40px;
    }
    
    .quality-features {
        gap: 20px;
    }
    
    .offer-card {
        padding: 30px 20px;
    }
    
    .offer-title {
        font-size: 28px;
    }
    
    .offer-new {
        font-size: 32px;
    }
    
    .countdown-timer {
        gap: 10px;
    }
    
    .time-block {
        min-width: 60px;
        padding: 10px 15px;
    }
    
    .time-value {
        font-size: 24px;
    }
    
    .form-card {
        padding: 30px 20px;
    }
    
    .form-title {
        font-size: 24px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 14px 16px;
        font-size: 16px;
    }
    
    .form-size-selector,
    .form-color-selector {
        gap: 8px;
    }
    
    .form-size-btn,
    .form-color-btn {
        padding: 10px 16px;
        font-size: 14px;
    }
    
    .delivery-options {
        flex-direction: column;
    }
    
    .delivery-option {
        width: 100%;
    }
    
    .faq-question {
        font-size: 16px;
        padding: 20px 0;
    }
    
    /* Show sticky bar on mobile */
    .sticky-bar {
        display: block;
    }
    
    /* Add padding to body to account for sticky bar */
    body {
        padding-bottom: 80px;
    }
    
    .order-form-section {
        padding-bottom: 160px;
    }
}

/* RTL Support */
.rtl .hero-content {
    direction: rtl;
}

.rtl .color-switch,
.rtl .lang-switch {
    direction: rtl;
}

.rtl .faq-question {
    text-align: right;
}

.rtl .sticky-content {
    direction: rtl;
}

/* Admin Styles */
.admin-login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-bg);
    padding: 20px;
}

.admin-login-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 50px;
    box-shadow: var(--shadow-lg);
    max-width: 450px;
    width: 100%;
}

.admin-login-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--dark);
    text-align: center;
    margin-bottom: 30px;
}

.admin-dashboard {
    min-height: 100vh;
    background: var(--light-bg);
}

.admin-header {
    background: var(--dark);
    color: var(--white);
    padding: 20px 0;
}

.admin-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.admin-logo {
    font-size: 24px;
    font-weight: 800;
}

.admin-nav {
    display: flex;
    gap: 20px;
}

.admin-nav a {
    color: var(--white);
    opacity: 0.8;
    transition: opacity 0.3s;
}

.admin-nav a:hover {
    opacity: 1;
}

.admin-stats {
    padding: 40px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.stat-card {
    background: var(--white);
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.stat-value {
    font-size: 32px;
    font-weight: 800;
    color: var(--main-blue);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: var(--muted-text);
}

.admin-orders {
    padding: 0 0 40px;
}

.orders-table-container {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.orders-filters {
    padding: 20px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    border-bottom: 1px solid #e0e0e0;
}

.filter-input {
    padding: 10px 15px;
    border: 1px solid #e0e0e0;
    border-radius: var(--border-radius-sm);
    font-size: 14px;
}

.filter-select {
    padding: 10px 15px;
    border: 1px solid #e0e0e0;
    border-radius: var(--border-radius-sm);
    font-size: 14px;
    background: var(--white);
}

.orders-table {
    width: 100%;
    border-collapse: collapse;
}

.orders-table th,
.orders-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.orders-table th {
    background: var(--light-bg);
    font-weight: 600;
    color: var(--dark);
    font-size: 14px;
}

.orders-table td {
    font-size: 14px;
}

.status-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: var(--border-radius-sm);
    font-size: 12px;
    font-weight: 600;
}

.status-new {
    background: #e3f2fd;
    color: #1976d2;
}

.status-confirmed {
    background: #e8f5e9;
    color: #388e3c;
}

.status-shipped {
    background: #f3e5f5;
    color: #7b1fa2;
}

.status-delivered {
    background: #1b5e20;
    color: #ffffff;
}

.status-cancelled {
    background: #ffebee;
    color: #d32f2f;
}

.status-returned {
    background: #fff3e0;
    color: #e65100;
}

.action-btn {
    padding: 8px 16px;
    border-radius: var(--border-radius-sm);
    font-size: 12px;
    font-weight: 600;
    margin-right: 5px;
    transition: all 0.3s;
}

.btn-view {
    background: var(--main-blue);
    color: var(--white);
}

.btn-view:hover {
    background: var(--main-blue-dark);
}

.order-view-container {
    padding: 40px 0;
}

.order-view-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    max-width: 800px;
    margin: 0 auto;
}

.order-view-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.order-view-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--dark);
}

.order-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 30px;
}

.detail-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.detail-label {
    font-size: 14px;
    color: var(--muted-text);
    font-weight: 600;
}

.detail-value {
    font-size: 16px;
    color: var(--dark);
    font-weight: 500;
}

.order-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
}

.btn-call {
    background: #25d366;
    color: var(--white);
}

.btn-whatsapp {
    background: #25d366;
    color: var(--white);
}

.btn-back {
    background: var(--muted-text);
    color: var(--white);
}

@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .orders-table-container {
        overflow-x: auto;
    }
    
    .order-details-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .admin-login-card {
        padding: 30px 20px;
    }
    
    .admin-header-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .orders-filters {
        flex-direction: column;
    }
    
    .filter-input,
    .filter-select {
        width: 100%;
    }
    
    .order-view-card {
        padding: 30px 20px;
    }
    
    .order-view-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .order-actions {
        flex-direction: column;
    }
    
    .action-btn {
        width: 100%;
    }
}
