/* COMPLETE STYLE.CSS - GREEN THEME */
:root {
    --primary: #2e7d32;
    --primary-dark: #1b5e20;
    --secondary: #4caf50;
    --accent: #8bc34a;
    --success: #4caf50;
    --warning: #ff9800;
    --danger: #f44336;
    --light: #f8f9fa;
    --dark: #212529;
    --gray: #6c757d;
    --light-gray: #e9ecef;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.12);
    --radius: 16px;
    --radius-sm: 10px;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Cairo', sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
    color: var(--dark);
    line-height: 1.7;
    min-height: 100vh;
    padding-bottom: 100px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* شريط الإشعارات */
.notice-bar {
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    text-align: center;
    padding: 18px;
    font-size: 17px;
    font-weight: 600;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(46, 125, 50, 0.2);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.fas, fa-shipping-fast {
    margin-left: 5px;
}

/* زر الطلب الثابت في الأسفل */
.sticky-order-btn-container {
    position: fixed;
    bottom: 0;
    right: 0;
    width: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.95) 100%);
    padding: 15px 20px;
    box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.15);
    z-index: 999;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    /* REMOVE this line: */
    /* transition: transform 0.3s ease; */
    /* ADD this instead: */
    transform: translateY(0) !important;
}
.sticky-summary {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 500px;
    margin-bottom: 10px;
    padding: 10px 15px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.sticky-count, .sticky-total {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.sticky-total {
    color: var(--primary);
    font-size: 18px;
}

.sticky-order-btn {
    width: 100%;
    max-width: 500px;
    padding: 20px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    border: none;
    border-radius: var(--radius);
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 10px 25px rgba(46, 125, 50, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.sticky-order-btn:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(46, 125, 50, 0.4);
    background: linear-gradient(90deg, var(--primary-dark) 0%, var(--secondary) 100%);
}

/* .sticky-order-btn:disabled {
    background: linear-gradient(90deg, #adb5bd 0%, #6c757d 100%);
    cursor: not-allowed;
    opacity: 0.7;
    transform: none;
    box-shadow: none;
} */

.form-order-btn, .sticky-order-btn {
    cursor: pointer;
}

/* Keep the hover effects */
.form-order-btn:hover, .sticky-order-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(46, 125, 50, 0.4);
    background: linear-gradient(90deg, var(--primary-dark) 0%, var(--secondary) 100%);
}

/* زر الطلب داخل النموذج */
.form-order-btn {
    width: 100%;
    padding: 22px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 22px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 30px;
    box-shadow: 0 10px 25px rgba(46, 125, 50, 0.3);
}

.form-order-btn:hover:not(:disabled) {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(46, 125, 50, 0.4);
    background: linear-gradient(90deg, var(--primary-dark) 0%, var(--secondary) 100%);
}

/* .form-order-btn:disabled {
    background: linear-gradient(90deg, #adb5bd 0%, #6c757d 100%);
    cursor: not-allowed;
    opacity: 0.7;
    transform: none;
    box-shadow: none;
} */

/* قسم المنتجات */
.products-section {
    margin: 40px 0;
}

.section-title {
    text-align: center;
    color: var(--dark);
    margin-bottom: 40px;
    padding-bottom: 20px;
    position: relative;
    font-size: 32px;
    font-weight: 700;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 50%;
    transform: translateX(50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 2px;
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* بطاقة المنتج */
.product-card {
    background-color: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 30px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

/* ===== SELECTED PRODUCT GREEN HIGHLIGHT ===== */
.product-card.selected {
    border: 2px solid #2e7d32;
    box-shadow: 0 15px 35px rgba(46, 125, 50, 0.25);
    background: linear-gradient(135deg, #a5f0af 0%, #8cda97 100%);
}

.product-card.selected::before {
    background: linear-gradient(90deg, #2e7d32, #4caf50);
    height: 8px;
}

.product-card.selected .product-title,
.product-card.selected .product-title i {
    color: #1b5e20;
}

.product-card.selected .current-price .price-value {
    color: #2e7d32;
}

.product-card.selected .checkbox-container {
    background: linear-gradient(90deg, rgba(46, 125, 50, 0.1) 0%, rgba(76, 175, 80, 0.1) 100%);
    border: 1px solid rgba(46, 125, 50, 0.2);
}

.product-card.selected .checkbox-container:hover {
    background: linear-gradient(90deg, rgba(46, 125, 50, 0.15) 0%, rgba(76, 175, 80, 0.15) 100%);
}

.product-card.selected .checkbox-container label {
    color: #1b5e20;
}

.product-card.selected .checkbox-container i {
    color: #2e7d32;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    z-index: 1;
}

.product-title {
    color: var(--dark);
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 700;
    padding: 25px 25px 0;
    position: relative;
    display: flex;
    align-items: center;
}

.product-title i {
    margin-left: 12px;
    color: var(--primary);
    font-size: 22px;
}

/* Product Badge */
.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(90deg, #f44336, #ff9800);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 3px 10px rgba(244, 67, 54, 0.3);
}

/* عرض الصور والفيديو */
.image-container {
    position: relative;
    width: 100%;
    height: 300px;
    margin-bottom: 20px;
    overflow: hidden;
    background-color: var(--light);
    border-radius: var(--radius-sm);
    margin: 0 25px 25px;
    /* cursor: default; */
    cursor: pointer;
}

.product-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.product-media {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity 0.5s ease, transform 0.5s ease;
    padding: 20px;
    position: absolute;
    top: 0;
    right: 0;
    opacity: 0;
    transform: scale(0.95);
}

.product-media.active {
    opacity: 1;
    transform: scale(1);
    position: relative;
}



.image-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--primary);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.image-nav:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    right: 15px;
}

.next-btn {
    left: 15px;
}

.image-indicator {
    position: absolute;
    bottom: 15px;
    right: 50%;
    transform: translateX(50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.indicator-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    transition: var(--transition);
    cursor: pointer;
}

.indicator-dot.active {
    background-color: white;
    transform: scale(1.2);
}

.fullscreen-btn {
    position: absolute;
    bottom: 15px;
    left: 20px;
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--primary);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.fullscreen-btn:hover {
    background-color: var(--primary);
    color: white;
    transform: scale(1.1);
}

/* Product Price Container */
.product-price-container {
    padding: 15px 25px;
    margin: 10px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.current-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 5px;
}

.current-price .price-value {
    font-size: 28px;
}

.current-price .currency {
    font-size: 18px;
    color: #666;
}

.original-price {
    font-size: 16px;
    color: #999;
    text-decoration: line-through;
    margin-top: 5px;
}

/* Product Features */
.product-features {
    padding: 15px 25px;
    margin: 10px 0;
}

.product-features h4 {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-features h4 i {
    color: #ff9800;
}

.product-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-features li {
    padding: 5px 0;
    font-size: 14px;
    color: #555;
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-features li i {
    color: #4caf50;
    font-size: 12px;
}

/* خانة الاختيار */
.checkbox-container {
    display: flex;
    align-items: center;
    margin: 20px 25px;
    padding: 18px 20px;
    background: linear-gradient(90deg, rgba(46, 125, 50, 0.05) 0%, rgba(76, 175, 80, 0.05) 100%);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(46, 125, 50, 0.1);
    transition: var(--transition);
    cursor: pointer;
}

.checkbox-container:hover {
    background: linear-gradient(90deg, rgba(46, 125, 50, 0.1) 0%, rgba(76, 175, 80, 0.1) 100%);
    transform: translateX(-5px);
}

.checkbox-container input {
    width: 24px;
    height: 24px;
    margin-left: 15px;
    cursor: pointer;
    accent-color: var(--primary);
}

.checkbox-container label {
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    font-size: 18px;
    flex-grow: 1;
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-container i {
    color: var(--primary);
    font-size: 20px;
}

.add-to-cart-text, .added-to-cart-text {
    transition: all 0.3s ease;
}

.added-to-cart-text {
    color: #4caf50;
}

.added-to-cart-text i {
    margin-right: 5px;
}

/* وصف المنتج */
.product-description {
    background-color: var(--light);
    padding: 25px;
    border-radius: var(--radius-sm);
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray);
    margin: 0 25px 25px;
    border-right: 4px solid var(--primary);
    position: relative;
    overflow: hidden;
}

/* المنتجات المختارة */
.selected-products {
    text-align: right;
    margin: 40px 0;
    padding: 25px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 249, 250, 0.9) 100%);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.selected-products h3 {
    color: var(--dark);
    margin-bottom: 20px;
    font-size: 22px;
    display: flex;
    align-items: center;
}

.selected-products h3 i {
    margin-left: 10px;
    color: var(--primary);
}

.selected-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.selected-count {
    font-size: 16px;
    color: #333;
}

.count-number {
    font-weight: 700;
    color: var(--primary);
    font-size: 20px;
    margin-left: 5px;
}

.selected-total-display {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
    gap: 5px;
}

.selected-total-display .total-price {
    color: var(--primary);
    font-size: 24px;
}

.selected-total-display .currency {
    color: #666;
    font-size: 16px;
}

.selected-list {
    max-height: 300px;
    overflow-y: auto;
    margin-bottom: 20px;
}

.selected-item {
    padding: 12px 15px;
    margin-bottom: 8px;
    background: white;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.selected-item .item-name {
    font-weight: 500;
    color: #333;
}

.selected-item .item-price {
    font-weight: 600;
    color: var(--primary);
}

.selected-total-item {
    padding: 15px;
    margin-top: 15px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    color: white;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 18px;
}

.selected-total-item .total-amount {
    font-size: 22px;
    font-weight: 700;
}

.empty-message {
    padding: 30px 20px;
    text-align: center;
    color: #666;
    font-style: italic;
    background: white;
    border-radius: 8px;
    border: 2px dashed #e9ecef;
}

/* Order Summary */
.order-summary {
    margin-top: 20px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    border: 2px solid var(--primary);
}

.order-summary h4 {
    color: #333;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.summary-details {
    margin-top: 15px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    font-size: 16px;
}

.summary-row:last-child {
    border-bottom: none;
}

.total-row {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-top: 10px;
    padding-top: 15px;
    border-top: 2px solid var(--primary);
}

.final-total {
    color: var(--primary);
    font-size: 22px;
}

/* نموذج الطلب */
.order-form {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.95) 100%);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 40px;
    margin-top: 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.order-form::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
}

.form-title {
    color: var(--dark);
    margin-bottom: 35px;
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.form-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 50%;
    transform: translateX(50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 2px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--dark);
    font-size: 17px;
    display: flex;
    align-items: center;
}

.form-group label i {
    margin-left: 10px;
    color: var(--primary);
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid var(--light-gray);
    border-radius: var(--radius-sm);
    font-size: 16px;
    transition: var(--transition);
    font-family: 'Cairo', sans-serif;
    background-color: white;
}

.form-group input:focus, .form-group textarea:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 4px rgba(46, 125, 50, 0.1);
}

textarea {
    resize: vertical;
    min-height: 120px;
}

.order-submit-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.order-total-display {
    font-size: 20px;
    font-weight: 600;
    color: #333;
}

.form-total-price {
        color: var(--primary);
    font-size: 24px;
    font-weight: 700;
    margin-right: 10px;
}

/* نافذة منبثقة */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    backdrop-filter: blur(5px);
}

.popup-content {
    background: linear-gradient(135deg, white 0%, #f8f9fa 100%);
    padding: 40px;
    border-radius: var(--radius);
    max-width: 90%;
    width: 450px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.popup-content::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, var(--warning) 0%, var(--danger) 100%);
}

.popup-icon {
    font-size: 70px;
    color: var(--warning);
    margin-bottom: 25px;
}

.popup-title {
    color: var(--dark);
    margin-bottom: 20px;
    font-size: 26px;
    font-weight: 700;
}

.popup-message {
    color: var(--gray);
    margin-bottom: 30px;
    font-size: 18px;
    line-height: 1.6;
}

.popup-btn {
    padding: 16px 35px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 8px 20px rgba(46, 125, 50, 0.3);
}

.popup-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(46, 125, 50, 0.4);
}

/* صفحة الشكر */
.thank-you-page {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.95) 100%);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 60px 40px;
    margin-top: 40px;
    text-align: center;
    display: block;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.thank-you-page::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, #4caf50 0%, #2e7d32 100%);
}

.thank-you-icon {
    font-size: 100px;
    color: #4caf50;
    margin-bottom: 30px;
    animation: bounce 1s ease;
}

@keyframes bounce {
    0%, 20%, 60%, 100% { transform: translateY(0); }
    40% { transform: translateY(-20px); }
    80% { transform: translateY(-10px); }
}

.thank-you-title {
    color: var(--dark);
    margin-bottom: 25px;
    font-size: 36px;
    font-weight: 700;
}

.thank-you-message {
    color: var(--gray);
    font-size: 19px;
    max-width: 700px;
    margin: 0 auto 35px;
    line-height: 1.8;
}

.order-number {
    background: linear-gradient(90deg, #4caf50 0%, #2e7d32 100%);
    color: white;
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 22px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 30px;
    box-shadow: 0 8px 20px rgba(76, 175, 80, 0.3);
}

/* شاشة عرض الصورة/فيديو كاملة */
.fullscreen-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    padding: 20px;
}

.fullscreen-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    height: 100%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.fullscreen-media-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.fullscreen-media {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    display: none;
}

.fullscreen-media video {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.close-fullscreen {
    position: absolute;
    top: 10px;
    left: 10px;
    color: white;
    font-size: 30px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    backdrop-filter: blur(5px);
    z-index: 10;
}

.close-fullscreen:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.fullscreen-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: var(--transition);
    backdrop-filter: blur(5px);
    z-index: 10;
}

.fullscreen-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.fullscreen-prev {
    right: 20px;
}

.fullscreen-next {
    left: 20px;
}

.fullscreen-indicator {
    position: absolute;
    bottom: 20px;
    right: 50%;
    transform: translateX(50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.fullscreen-indicator-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    transition: var(--transition);
    cursor: pointer;
}

.fullscreen-indicator-dot.active {
    background-color: white;
    transform: scale(1.2);
}

/* تصميم متجاوب للهواتف */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .notice-bar {
        padding: 15px;
        font-size: 16px;
    }
    
    .sticky-order-btn {
        padding: 18px;
        font-size: 18px;
    }
    
    .section-title {
        font-size: 26px;
        margin-bottom: 30px;
    }
    
    .product-card {
        margin-bottom: 25px;
    }
    
    .product-title {
        font-size: 22px;
        padding: 20px 20px 0;
    }
    
    .image-container {
        height: 250px;
        margin: 0 20px 20px;
    }
    
    .checkbox-container, .product-description {
        margin: 20px;
        padding: 16px;
    }
    
    .order-form, .thank-you-page {
        padding: 30px 20px;
    }
    
    .form-title {
        font-size: 24px;
    }
    
    .form-order-btn {
        padding: 20px;
        font-size: 20px;
    }
    
    .fullscreen-nav {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .fullscreen-prev {
        right: 10px;
    }
    
    .fullscreen-next {
        left: 10px;
    }
    
    .close-fullscreen {
        top: 10px;
        left: 10px;
        width: 50px;
        height: 50px;
        font-size: 25px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .order-submit-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .order-total-display {
        font-size: 18px;
    }
    
    .form-total-price {
        font-size: 22px;
    }
}


@media (max-width: 991px) {
    .product-media {
        cursor: pointer;
    }
    
    .image-container {
        cursor: default;
    }
}
/* Hide sticky button on desktop */
@media (min-width: 992px) {
    .product-media {
        cursor: default;
    }
    .sticky-order-btn-container {
        display: none !important;
    }
}

/* Alert Styles */
.alert {
    border-radius: 10px;
    margin: 20px 0;
    padding: 15px 20px;
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.alert-danger {
    background: linear-gradient(90deg, #f8d7da, #f5c6cb);
    color: #721c24;
    border-right: 5px solid #e63946;
}

.alert-success {
    background: linear-gradient(90deg, #d4edda, #c3e6cb);
    color: #155724;
    border-right: 5px solid #4caf50;
}

.btn-close {
    padding: 1rem;
}

/* Order Details Styling */
.customer-info {
    background: white;
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.info-item {
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.info-item:last-child {
    border-bottom: none;
}

.info-item i {
    margin-left: 15px;
    color: var(--primary);
    font-size: 20px;
}

.price-summary {
    background: white;
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.price-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.price-row:last-child {
    border-bottom: none;
}

.price-row.total {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-top: 10px;
    padding-top: 15px;
    border-top: 2px solid var(--primary);
}

.total-price {
       color: var(--primary);
    font-size: 22px;
}