:root {
    --primary-color: #d4af37; /* Gold */
    --secondary-color: #1a1a1a; /* Dark Gray */
    --text-color: #333;
    --light-bg: #f4f4f4;
    --white: #ffffff;
    --transition: all 0.3s ease;
    --font-main: 'Tajawal', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--light-bg);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Offers Banner - شريط العروض المتحرك (ماركوي) */
.offers-banner {
    background: linear-gradient(90deg, var(--primary-color) 0%, #c9a227 50%, var(--primary-color) 100%);
    color: var(--secondary-color);
    padding: 14px 0;
    font-weight: 700;
    font-size: 0.95rem;
    overflow: hidden;
    position: relative;
}

.offers-marquee-wrap {
    display: flex;
    width: max-content;
    animation: offers-marquee 22s linear infinite;
}

.offers-text {
    flex-shrink: 0;
    padding: 0 80px;
    white-space: nowrap;
}

@keyframes offers-marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

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

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

.logo-area {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo {
    height: 50px;
    width: auto;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition);
    color: var(--secondary-color);
    position: relative;
    padding: 5px 0;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0; /* RTL */
    width: 0;
    height: 3px;
    background-color: var(--primary-color);
    transition: var(--transition);
    border-radius: 2px;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.menu-toggle {
    display: none; /* Only visible on mobile */
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--secondary-color);
    transition: var(--transition);
}

.menu-toggle:hover {
    color: var(--primary-color);
}

/* Floating Cart Button */
.cart-floating-btn {
    position: fixed;
    bottom: 30px;
    left: 30px; /* RTL layout */
    background-color: var(--primary-color);
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 999;
    font-size: 1.5rem;
    transition: var(--transition);
}

.cart-floating-btn:hover {
    transform: scale(1.1);
}

/* WhatsApp Floating Icon - على يمين الواجهة */
.whatsapp-float {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    z-index: 998;
    transition: var(--transition);
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6);
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: red;
    color: white;
    font-size: 0.8rem;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
}

/* Hero Slider */
.hero-slider {
    height: 500px;
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
}

.slider-container {
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.slide.active {
    opacity: 1;
}

.slide-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
    padding: 20px;
}

.slide-content h2 {
    font-size: 3rem;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.slide-content p {
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.cta-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    font-weight: bold;
    border-radius: 5px;
    transition: var(--transition);
}

.cta-btn:hover {
    background-color: #fff;
    color: var(--primary-color);
}

.prev-slide, .next-slide {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    padding: 15px;
    cursor: pointer;
    font-size: 1.5rem;
    z-index: 2;
    transition: var(--transition);
}

.prev-slide:hover, .next-slide:hover {
    background: var(--primary-color);
}

.prev-slide { left: 20px; }
.next-slide { right: 20px; }

/* Stories Section - أعلى التصنيفات */
.stories-section {
    margin: 0 0 32px;
    padding: 24px 0;
    background: #fff;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.stories-scroll-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    padding: 8px 0;
}

.stories-scroll-wrapper::-webkit-scrollbar {
    height: 6px;
}

.stories-scroll-wrapper::-webkit-scrollbar-thumb {
    background: rgba(212, 175, 55, 0.4);
    border-radius: 3px;
}

.stories-scroll-container {
    display: flex;
    gap: 24px;
    padding: 8px 15px;
    width: max-content;
}

.story-item {
    text-align: center;
    cursor: pointer;
    width: 100px;
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.story-item:hover {
    transform: scale(1.05);
}

.story-circle {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    border: 3px solid var(--primary-color);
    padding: 3px;
    margin: 0 auto 10px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.25);
}

.story-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.story-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--secondary-color);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* مودال عرض فيديو الستوري */
.story-video-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.9);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.story-video-modal.active {
    opacity: 1;
    visibility: visible;
}

.story-modal-close {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.2);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 10001;
    line-height: 1;
    transition: background 0.2s;
}

.story-modal-close:hover {
    background: rgba(255,255,255,0.35);
}

.story-modal-content {
    max-width: 90vw;
    max-height: 90vh;
    text-align: center;
}

.story-modal-title {
    color: #fff;
    margin-bottom: 16px;
    font-size: 1.2rem;
}

.story-video-modal video {
    max-width: 100%;
    max-height: 75vh;
    border-radius: 12px;
}

/* Products Section */
#products-section {
    padding: 40px 15px;
}

/* Page Headers (Cart, Parties) */
.page-header, .parties-page-header {
    height: 320px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    margin-bottom: 48px;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.75) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.header-content, .parties-header-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
}

.header-content h1, .parties-header-content h1 {
    font-size: 2.5rem;
    margin-bottom: 12px;
    font-weight: 800;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.header-content p, .parties-header-content p {
    font-size: 1.15rem;
    opacity: 0.95;
}

.header-icon, .parties-header-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: rgba(212, 175, 55, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary-color);
}

/* ===== Cart Page - تصميم احترافي ===== */
.cart-page-container {
    padding-bottom: 80px;
    margin-top: -28px;
}

.cart-layout {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    align-items: flex-start;
}

.cart-layout.cart-is-empty .cart-items-section {
    flex: 1;
    max-width: 100%;
}

.cart-layout.cart-is-empty .cart-items-card {
    max-width: 560px;
    margin: 0 auto;
}

.cart-items-section {
    flex: 2;
    min-width: 300px;
}

.cart-items-card {
    background: #fff;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.04);
}

.cart-section-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.cart-section-title i {
    color: var(--primary-color);
}

.cart-summary-section {
    flex: 1;
    min-width: 280px;
    position: sticky;
    top: 100px;
}

.loading-cart {
    padding: 48px;
    text-align: center;
    color: #999;
    font-size: 1rem;
}

/* Mobile Responsive Media Queries */
@media (max-width: 768px) {
    /* تحسين تصميم الهيدر في عرض الموبايل فقط */
    .topbar {
        padding: 12px 0;
        box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    }

    .topbar-content {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .topbar .logo-area {
        justify-content: center;
        padding-bottom: 10px;
        border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    }

    .topbar .nav-logo {
        height: 42px;
        width: auto;
    }

    .topbar .brand-name {
        font-size: 1.05rem;
        letter-spacing: -0.3px;
    }

    .topbar .nav-links {
        position: static;
        width: auto;
        background: transparent;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-between;
        padding: 0;
        gap: 6px;
        border-top: none;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        pointer-events: all;
    }

    .topbar .nav-links li {
        flex: 1;
    }

    .topbar .nav-links a {
        display: block;
        text-align: center;
        padding: 10px 6px;
        font-size: 0.8rem;
        color: var(--secondary-color);
        background: rgba(212, 175, 55, 0.06);
        border-radius: 10px;
    }

    .topbar .nav-links a:hover,
    .topbar .nav-links a.active {
        background: rgba(212, 175, 55, 0.15);
        color: var(--primary-color);
    }

    .topbar .nav-links a::after {
        display: none;
    }

    .brand-name {
        font-size: 1.1rem;
    }

    .nav-logo {
        height: 40px;
    }

    .nav-links {
        position: static;
        width: auto;
        background-color: transparent;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        padding: 10px 0;
        gap: 15px;
        border-top: none;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        pointer-events: all;
    }

    .nav-links a {
        color: var(--secondary-color);
        font-size: 0.9rem;
    }

    .hero-slider {
        height: 300px;
    }

    .slide-content h2 {
        font-size: 1.8rem;
    }

    .slide-content p {
        font-size: 1rem;
    }
    
    .prev-slide, .next-slide {
        padding: 10px;
        font-size: 1.2rem;
    }
}

/* ===== Products Page - تصميم احترافي ===== */
.products-page-main {
    padding-bottom: 60px;
}

/* Control Card */
.products-control-card {
    background: #fff;
    border-radius: 20px;
    padding: 28px 32px;
    margin-bottom: 40px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.04);
}

/* 1. Control Bar (Search + Filters) */
.products-control-bar,
.products-control-card {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
}

/* Enhanced Search Box */
.search-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
}

.search-box {
    display: flex;
    align-items: center;
    background: #fff;
    border: 2px solid transparent; /* Prepare for focus */
    border-radius: 50px;
    padding: 8px 25px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    width: 100%;
    max-width: 700px; /* Wider search bar */
    height: 60px; /* Taller */
}

.search-box:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
    transform: translateY(-2px);
}

.search-box input {
    flex: 1;
    border: none;
    outline: none;
    padding: 0 15px;
    font-size: 1.1rem; /* Larger text */
    font-family: inherit;
    background: transparent;
    color: #333;
}

.search-box button {
    background: var(--primary-color);
    border: none;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    transition: transform 0.2s, background-color 0.2s;
    margin-left: -10px; /* Pull closer if RTL, check direction */
}
/* Fix for RTL direction since we are in RTL */
html[dir="rtl"] .search-box button {
    margin-left: 0;
    margin-right: -10px;
}

.search-box button:hover {
    transform: scale(1.1);
    background-color: #d4a017; /* Slightly darker gold */
}

/* Horizontal Scrollable Filters */
.categories-filter-wrapper {
    width: 100%;
    overflow-x: auto;
    padding: 10px 5px 20px 5px; /* Bottom padding for scrollbar space/shadow */
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
}

.categories-filter-wrapper::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.category-filter-pills {
    display: flex;
    gap: 12px;
    justify-content: center;
    min-width: max-content; /* Ensure items don't wrap */
    margin: 0 auto;
}

.category-pill {
    padding: 12px 26px;
    background: #f8f9fa;
    border: 1px solid #eee;
    border-radius: 50px;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    color: #555;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.category-pill:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.category-pill.active {
    background: linear-gradient(135deg, var(--primary-color) 0%, #b89628 100%);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* Empty State */
.products-empty-state {
    text-align: center;
    padding: 80px 24px;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.05);
    border: 2px dashed rgba(212, 175, 55, 0.3);
}

.products-empty-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 24px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    color: var(--primary-color);
}

.products-empty-state h3 {
    font-size: 1.6rem;
    color: var(--secondary-color);
    margin-bottom: 12px;
}

.products-empty-state p {
    color: #666;
    margin-bottom: 28px;
    font-size: 1.05rem;
}

.products-empty-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #b89628 100%);
    color: #fff;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
}

.products-empty-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.35);
}

.products-error-message {
    background: #fef5f5;
    border: 1px solid rgba(231, 76, 60, 0.3);
    color: #c0392b;
    padding: 16px 20px;
    border-radius: 12px;
    margin-bottom: 24px;
}

/* 2. Products Grid Layout */
.products-main-content {
    width: 100%;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 28px;
    padding-bottom: 50px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .products-control-card {
        padding: 20px 16px;
    }
    .products-control-bar,
    .products-control-card {
        gap: 18px;
    }
    .search-box {
        height: 52px;
        padding: 5px 18px;
    }
    .search-box input {
        font-size: 1rem;
    }
    .category-filter-pills {
        justify-content: flex-start;
        padding: 0 5px;
    }
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 18px;
    }
    .products-empty-state {
        padding: 48px 20px;
    }
}

.category-section-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
    border-right: 4px solid var(--primary-color);
    padding-right: 15px;
}

/* Responsive for Products Page */
@media (max-width: 992px) {
    .products-page-layout {
        flex-direction: column;
    }
    
    .categories-sidebar {
        flex: none;
        width: 100%;
        position: static;
        overflow-x: auto;
    }

    .category-filter-list {
        display: flex;
        gap: 10px;
        padding-bottom: 5px;
    }

    .category-filter-list li {
        margin-bottom: 0;
        flex: 0 0 auto;
    }

    .category-filter-btn {
        white-space: nowrap;
        text-align: center;
    }
    
    .category-filter-btn:hover,
    .category-filter-btn.active {
        transform: none;
        transform: translateY(-2px);
    }
}

/* ===== التصنيفات والمنتجات بالرئيسية ===== */
.home-categories-bar {
    padding: 28px 0 36px;
}

.categories-bar-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.categories-bar-title i {
    color: var(--primary-color);
}

.home-categories-list {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}

.home-category-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    padding: 10px 18px;
    border-radius: 14px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition);
}

.home-category-item:hover {
    color: var(--primary-color);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.pill-name {
    font-weight: 700;
}

.pill-count {
    color: #888;
    font-size: 0.9rem;
    font-weight: 600;
}

.home-category-viewall {
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.home-category-viewall:hover {
    color: #b89628;
}

.category-block {
    margin-bottom: 48px;
}

.category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid rgba(212, 175, 55, 0.25);
}

.category-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin: 0;
}

.category-viewall-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    padding: 8px 18px;
    border-radius: 12px;
    background: rgba(212, 175, 55, 0.12);
    transition: var(--transition);
}

.category-viewall-btn:hover {
    background: var(--primary-color);
    color: #fff;
}

@media (max-width: 768px) {
    .home-categories-bar {
        padding: 20px 0 28px;
    }
    .home-categories-list {
        gap: 12px;
    }
    .home-category-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 12px 16px;
    }
}

/* --- Professional Redesign Overrides --- */

/* 1. Enhanced Product Card */
.product-card, .product-item {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06), 0 2px 8px rgba(0,0,0,0.04);
    transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(212, 175, 55, 0.15);
    overflow: hidden;
    position: relative;
}

.product-card:hover, .product-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.1), 0 0 0 1px rgba(212, 175, 55, 0.2);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 320px;
    background: linear-gradient(180deg, #fafafa 0%, #f2f2f2 50%, #eee 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img,
.product-item:hover .product-image img {
    transform: scale(1.04);
}

.product-info {
    padding: 24px 22px;
}

.product-info h3 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--secondary-color);
    line-height: 1.4;
}

.product-info p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* بطاقة تفاصيل المنتج عند تمرير الماوس */
.product-has-hover {
    overflow: visible;
}

.product-hover-card {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(26, 26, 26, 0.97) 0%, rgba(40, 35, 25, 0.98) 100%);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    z-index: 10;
    display: flex;
    align-items: stretch;
    overflow: hidden;
}

.product-has-hover:hover .product-hover-card {
    opacity: 1;
    visibility: visible;
}

/* إخفاء بطاقة التفاصيل عندما المنتج في السلة لتمكين أزرار +/- */
.product-card.in-cart .product-hover-card,
.product-item.in-cart .product-hover-card {
    display: none !important;
}

.hover-card-content {
    display: flex;
    flex-direction: column;
    width: 100%;
    overflow-y: auto;
    scrollbar-width: thin;
}

.hover-card-content::-webkit-scrollbar {
    width: 5px;
}

.hover-card-content::-webkit-scrollbar-thumb {
    background: rgba(212, 175, 55, 0.5);
    border-radius: 4px;
}

.hover-card-header {
    display: flex;
    gap: 14px;
    align-items: center;
    margin-bottom: 12px;
    flex-shrink: 0;
}

.hover-card-img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 14px;
    border: 2px solid rgba(212, 175, 55, 0.5);
}

.hover-card-title-block {
    flex: 1;
    min-width: 0;
}

.hover-card-title-block h4 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 800;
    margin: 0 0 6px 0;
    line-height: 1.3;
}

.hover-category {
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 600;
}

.hover-category i {
    margin-left: 4px;
}

.hover-desc {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.92rem;
    line-height: 1.6;
    margin: 0 0 12px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hover-details-block {
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    padding: 12px 14px;
    margin-bottom: 14px;
    flex: 1;
    min-height: 0;
    overflow-y: auto;
}

.hover-details-label {
    color: var(--primary-color);
    font-size: 0.8rem;
    font-weight: 700;
    display: block;
    margin-bottom: 8px;
}

.hover-details-label i {
    margin-left: 6px;
}

.hover-details {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 0;
    white-space: pre-line;
}

.hover-variants-block {
    margin-bottom: 12px;
}

.hover-variants-list {
    list-style: none;
    padding: 0;
    margin: 8px 0 0;
}

.hover-variants-list li {
    display: flex;
    justify-content: space-between;
    padding: 6px 12px;
    background: rgba(255,255,255,0.08);
    border-radius: 8px;
    margin-bottom: 6px;
    font-size: 0.9rem;
}

.hover-variants-list .v-name {
    color: rgba(255,255,255,0.95);
}

.hover-variants-list .v-price {
    color: var(--primary-color);
    font-weight: 700;
}

.hover-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    flex-shrink: 0;
}

.hover-price {
    color: var(--primary-color);
    font-weight: 800;
    font-size: 1.2rem;
}

.hover-add-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, #b89628 100%);
    color: #fff;
    border: none;
    padding: 10px 18px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s ease;
}

.hover-add-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.5);
}

/* على الشاشات الصغيرة - إظهار البطاقة بالضغط بدل التمرير */
@media (max-width: 768px) {
    .product-hover-card {
        opacity: 0;
        pointer-events: none;
    }
    .product-has-hover.hover-card-open .product-hover-card {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
}

.price {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.98);
    color: var(--secondary-color);
    padding: 10px 16px;
    border-radius: 14px;
    font-weight: 800;
    font-size: 1rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.25);
}

/* 2. Professional Add to Cart Button */
.add-to-cart-btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #b89628 100%);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    margin-top: 30px; /* Increased spacing */
    position: relative;
    overflow: hidden;
}

.add-to-cart-btn:hover {
    background: linear-gradient(135deg, #e5bd3c 0%, #cba52b 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.add-to-cart-btn:active {
    transform: translateY(0);
}

/* Added State */
.add-to-cart-btn.added {
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    pointer-events: none;
}

/* ===== مودال طلب الكيك ===== */
.cake-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 99999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.cake-modal.active {
    display: flex;
}

.cake-modal-content {
    background: #fff;
    border-radius: 24px;
    padding: 32px;
    max-width: 480px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 24px 60px rgba(0,0,0,0.2);
}

.cake-modal-close {
    position: absolute;
    top: 16px;
    left: 16px;
    font-size: 2rem;
    cursor: pointer;
    color: #999;
}

.cake-modal-close:hover {
    color: var(--secondary-color);
}

.cake-modal-content h3 {
    margin-bottom: 8px;
    color: var(--secondary-color);
    font-size: 1.4rem;
}

.cake-modal-product-name {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 24px;
}

.cake-modal .form-group {
    margin-bottom: 20px;
}

.cake-modal .form-group label {
    display: block;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--secondary-color);
}

.cake-modal .required {
    color: #e74c3c;
}

.cake-modal .field-hint {
    display: block;
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 8px;
}

.cake-modal select,
.cake-modal input[type="datetime-local"],
.cake-modal textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-size: 1rem;
}

.cake-modal .file-upload-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cake-modal .file-input {
    display: none;
}

.cake-modal .file-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: #f5f5f5;
    border: 2px dashed #ccc;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
}

.cake-modal .file-label:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--primary-color);
}

.cake-modal .file-name {
    font-size: 0.9rem;
    color: #666;
}

.cake-submit-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #b89628 100%);
    color: #fff;
    border: none;
    border-radius: 14px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.variant-options-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 16px 0;
}

.variant-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: #f8f9fa;
    border: 2px solid transparent;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
}

.variant-option:hover,
.variant-option:has(input:checked) {
    border-color: var(--primary-color);
    background: rgba(212, 175, 55, 0.1);
}

.variant-option input {
    width: 20px;
    height: 20px;
    accent-color: var(--primary-color);
}

.variant-option .v-opt-name {
    font-weight: 700;
    flex: 1;
}

.variant-option .v-opt-price {
    color: var(--primary-color);
    font-weight: 800;
}

.cart-item-variant {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 4px;
}

.cake-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.4);
}

.cart-item-cake-options {
    margin-top: 6px;
    color: #666;
    font-size: 0.85rem;
}

/* 3. Fly Animation Item */
.fly-item {
    position: fixed;
    z-index: 9999;
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
    pointer-events: none;
    opacity: 0.8;
}

/* 4. Cart Page Professional Redesign */
.cart-summary-card {
    background: #fff;
    padding: 32px;
    border-radius: 24px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.07);
    border: 1px solid rgba(0,0,0,0.04);
}

.cart-summary-card h3 {
    font-size: 1.35rem;
    margin-bottom: 24px;
    border-bottom: 2px solid rgba(212, 175, 55, 0.2);
    padding-bottom: 18px;
    color: var(--secondary-color);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 14px;
    color: #555;
    font-size: 1rem;
}

.cart-summary-card hr {
    border: none;
    height: 1px;
    background: rgba(0,0,0,0.08);
    margin: 12px 0;
}

.summary-row.total {
    color: var(--secondary-color);
    font-weight: 800;
    font-size: 1.35rem;
    margin-top: 20px;
    border-top: 2px solid rgba(212, 175, 55, 0.2);
    padding-top: 20px;
}

.checkout-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff;
    border: none;
    border-radius: 14px;
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.checkout-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.continue-shopping {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 18px;
    color: var(--primary-color);
    font-weight: 600;
    transition: all 0.2s;
}

.continue-shopping:hover {
    color: var(--secondary-color);
}

.cart-item-row {
    background: #fafafa;
    border-radius: 18px;
    padding: 20px 22px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 24px;
    border: 1px solid #eee;
    transition: all 0.25s ease;
}

.cart-item-row:hover {
    background: #fff;
    box-shadow: 0 6px 24px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

.cart-item-image {
    flex-shrink: 0;
}

.cart-item-img {
    width: 96px;
    height: 96px;
    border-radius: 16px;
    object-fit: cover;
}

.cart-item-details {
    flex: 1;
    min-width: 0;
}

.cart-item-details h4 {
    margin-bottom: 6px;
    font-size: 1.1rem;
    font-weight: 700;
}

.item-price-unit {
    color: #666;
    font-size: 0.95rem;
}

.cart-item-actions {
    flex-shrink: 0;
}

.cart-item-subtotal {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--secondary-color);
    min-width: 90px;
    text-align: left;
}

.remove-btn {
    color: #e74c3c;
    background: rgba(231, 76, 60, 0.08);
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
}

.remove-btn:hover {
    background: #e74c3c;
    color: #fff;
}

/* 5. Empty Cart State - احترافي */
.empty-cart-state {
    text-align: center;
    padding: 56px 32px;
    background: linear-gradient(180deg, #fafafa 0%, #fff 100%);
    border-radius: 24px;
    border: 2px dashed rgba(212, 175, 55, 0.3);
    margin: 0 auto;
}

.empty-cart-icon-wrap {
    width: 110px;
    height: 110px;
    margin: 0 auto 28px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.12) 0%, rgba(212, 175, 55, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    color: var(--primary-color);
}

.empty-cart-state h3 {
    font-size: 1.65rem;
    margin-bottom: 14px;
    color: var(--secondary-color);
}

.empty-cart-state p {
    color: #666;
    margin-bottom: 32px;
    font-size: 1.05rem;
    line-height: 1.7;
}

.empty-cart-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.empty-cart-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s;
    text-decoration: none;
}

.empty-cart-btn.primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, #b89628 100%);
    color: #fff;
}

.empty-cart-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.35);
}

.empty-cart-btn.secondary {
    background: #f0f0f0;
    color: var(--secondary-color);
}

.empty-cart-btn.secondary:hover {
    background: #e5e5e5;
    transform: translateY(-1px);
}

/* 7. Quantity Controls - تصميم احترافي لأزرار + و - */
.qty-control-widget, 
.qty-selector {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #fff;
    border-radius: 16px;
    padding: 8px 14px;
    border: 1px solid rgba(212, 175, 55, 0.35);
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    width: fit-content;
    margin: 20px auto 0;
    min-width: 160px;
}

.qty-btn {
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 1rem;
}

.qty-btn.minus {
    background: linear-gradient(180deg, #fff 0%, #f8f8f8 100%);
    color: #c0392b;
    border: 1px solid rgba(192, 57, 43, 0.25);
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}

.qty-btn.minus:hover {
    background: linear-gradient(180deg, #fef5f5 0%, #fde8e8 100%);
    color: #e74c3c;
    border-color: rgba(231, 76, 60, 0.5);
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.2);
}

.qty-btn.minus:active {
    transform: scale(0.95);
}

.qty-btn.plus {
    background: linear-gradient(135deg, var(--primary-color) 0%, #b89628 100%);
    color: #fff;
    border: none;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

.qty-btn.plus:hover {
    background: linear-gradient(135deg, #e5bd3c 0%, #cba52b 100%);
    box-shadow: 0 6px 18px rgba(212, 175, 55, 0.5);
}

.qty-btn.plus:active {
    transform: scale(0.95);
}

.qty-display, 
.qty-val {
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--secondary-color);
    min-width: 40px;
    text-align: center;
}

/* Update Product Card Actions */
.product-actions {
    min-height: 50px; /* Prevent layout jump */
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Ensure add-to-cart button hides properly */
.product-card.in-cart .add-to-cart-btn {
    display: none !important;
}

.product-card.in-cart .qty-control-widget {
    display: flex !important;
}

/* ===== Parties Page - قسم الحفلات ===== */
.parties-container {
    padding-bottom: 80px;
}

.parties-intro {
    text-align: center;
    margin-bottom: 48px;
}

.parties-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.15);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.parties-section-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 12px;
}

.parties-section-desc {
    color: #666;
    font-size: 1.1rem;
    max-width: 560px;
    margin: 0 auto;
}

.parties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    margin-bottom: 60px;
}

.service-card-pro {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.06);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-card-pro:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(0,0,0,0.12);
}

.service-card-img {
    height: 200px;
    background: var(--card-img, #f0f0f0) center/cover no-repeat;
    position: relative;
}

.service-card-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(transparent, rgba(255,255,255,0.95));
}

.service-card-body {
    padding: 28px 24px;
    text-align: center;
}

.service-icon-wrapper {
    width: 64px;
    height: 64px;
    margin: -44px auto 20px;
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, var(--primary-color) 0%, #b89628 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #fff;
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.4);
    transition: all 0.3s;
}

.service-card-pro:hover .service-icon-wrapper {
    transform: scale(1.08);
}

.service-card-pro h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 12px;
}

.service-card-pro p {
    color: #666;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Booking Section */
.booking-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    border-radius: 24px;
    padding: 56px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.booking-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #b89628);
}

.booking-content h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
}

.booking-content p {
    color: rgba(255,255,255,0.85);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 28px;
    line-height: 1.8;
}

.whatsapp-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff;
    padding: 18px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.15rem;
    transition: all 0.3s;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
}

.whatsapp-cta-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.45);
}

/* Cart & Parties Responsive */
@media (max-width: 768px) {
    .cart-summary-section {
        position: static;
    }
    .cart-item-row {
        flex-wrap: wrap;
    }
    .cart-item-subtotal {
        width: 100%;
        text-align: right;
        margin-top: 8px;
    }
    .empty-cart-actions {
        flex-direction: column;
    }
    .empty-cart-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ===== آراء العملاء - الدمام والخبر والقطيف ===== */
.reviews-section {
    padding: 72px 15px 80px;
    background: linear-gradient(180deg, #fafafa 0%, #f0f0f0 100%);
    margin-top: 60px;
}

.reviews-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.15);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.reviews-badge i {
    margin-left: 8px;
}

.reviews-section-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 12px;
    line-height: 1.3;
}

.reviews-section-desc {
    color: #666;
    font-size: 1.05rem;
    margin-bottom: 44px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto;
}

.review-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px 28px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.06);
    border: 1px solid rgba(212, 175, 55, 0.12);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, transparent 100%);
    border-radius: 0 20px 0 60px;
}

.review-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.1);
    border-color: rgba(212, 175, 55, 0.3);
}

.review-city {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.12) 0%, rgba(212, 175, 55, 0.06) 100%);
    color: var(--primary-color);
    padding: 6px 14px;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 18px;
}

.review-city i {
    font-size: 0.8rem;
}

.review-stars {
    color: #f5a623;
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 18px;
}

.review-text {
    font-size: 1rem;
    line-height: 1.85;
    color: #444;
    margin: 0 0 24px;
    padding: 0;
    border: none;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid rgba(0,0,0,0.06);
}

.review-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #b89628 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
}

.review-author h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0;
}

@media (max-width: 992px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .reviews-section {
        padding: 48px 15px 60px;
    }
    .reviews-section-title {
        font-size: 1.5rem;
    }
    .review-card {
        padding: 24px 20px;
    }
}

/* ===== Footer - تذييل الصفحة احترافي ===== */
.main-footer {
    background: linear-gradient(180deg, #1a1a1a 0%, #0f0f0f 100%);
    color: #ccc;
    margin-top: 60px;
    padding: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
    padding: 48px 15px 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-col h3 {
    color: #fff;
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(212, 175, 55, 0.4);
    display: inline-block;
}

.footer-col p {
    color: #b0b0b0;
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 12px;
}

.footer-col p i {
    color: var(--primary-color);
    margin-left: 10px;
    width: 20px;
    text-align: center;
}

.footer-col ul {
    margin: 0;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #b0b0b0;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
    transform: translateX(-4px);
}

.footer-col ul li a::before {
    content: '•';
    margin-left: 8px;
    color: var(--primary-color);
    font-size: 0.8rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 15px;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    color: #888;
    font-size: 0.9rem;
}

.footer-bottom p a {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 36px 15px 28px;
    }
    .footer-col h3 {
        margin-bottom: 16px;
    }
}
