/* ==========================================================================
   El Kaid Store - Main Luxury Arabian Stylesheet
   Direction: RTL
   Palette: Imperial Emerald (#0c3823), Royal Gold (#c59b27), Warm Linen (#faf8f5)
   ========================================================================== */

:root {
    --primary: #0c3823;
    --primary-light: #134e32;
    --primary-dark: #072517;
    --gold: #c59b27;
    --gold-light: #dfb74a;
    --gold-hover: #b68822;
    --gold-subtle: #f9f5ea;
    --gold-border: #e8dbb8;
    --bg-base: #faf8f5;
    --bg-surface: #ffffff;
    --bg-card: #ffffff;
    --text-main: #1d2521;
    --text-muted: #5e6962;
    --text-light: #8e9a93;
    --border-light: #eae5dc;
    --border-gold: #d8c491;
    --danger: #d9383a;
    --success: #1f9d55;
    --shadow-sm: 0 2px 6px rgba(12, 56, 35, 0.05);
    --shadow-md: 0 6px 20px rgba(12, 56, 35, 0.08);
    --shadow-lg: 0 12px 36px rgba(12, 56, 35, 0.12);
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-full: 9999px;
    --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    direction: rtl;
    text-align: right;
    font-family: 'Cairo', system-ui, -apple-system, sans-serif;
    background-color: var(--bg-base);
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cairo', 'Amiri', serif;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.3;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

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

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Announcement Bar */
.top-bar {
    background: linear-gradient(90deg, #072517 0%, #0c3823 50%, #072517 100%);
    color: #f7eedb;
    font-size: 0.85rem;
    padding: 9px 0;
    border-bottom: 1px solid rgba(197, 155, 39, 0.3);
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.announcement-text {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.top-bar-contact {
    display: flex;
    align-items: center;
    gap: 16px;
}

.top-bar-contact a {
    color: #e2d5be;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
}

.top-bar-contact a:hover {
    color: var(--gold-light);
}

/* Header & Navigation */
.site-header {
    background: var(--bg-surface);
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.header-logo:hover {
    opacity: 0.95;
}

.header-logo-img {
    width: 54px;
    height: 54px;
    aspect-ratio: 1 / 1;
    flex-shrink: 0;
    border-radius: 50%;
    object-fit: cover;
    border: 2.5px solid var(--gold);
    box-shadow: 0 4px 14px rgba(12, 56, 35, 0.18);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
}

.header-logo:hover .header-logo-img {
    transform: scale(1.06);
    box-shadow: 0 6px 20px rgba(197, 155, 39, 0.45);
}

.header-brand-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.header-brand-name {
    font-family: 'Cairo', 'Amiri', serif;
    font-size: 1.45rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1.15;
    letter-spacing: 0.5px;
}

.header-brand-slogan {
    font-family: 'Cairo', sans-serif;
    font-size: 0.76rem;
    font-weight: 700;
    color: var(--gold-hover);
    letter-spacing: 0.2px;
    margin-top: 2px;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.header-nav a {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-main);
    position: relative;
    padding: 6px 2px;
}

.header-nav a:hover,
.header-nav a.active {
    color: var(--gold-hover);
}

.header-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0%;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-header-order {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-hover) 100%);
    color: #fff !important;
    padding: 8px 18px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(197, 155, 39, 0.25);
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-header-order:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(197, 155, 39, 0.35);
}

/* Hero Section */
.hero-section {
    position: relative;
    background: #072517;
    overflow: hidden;
    color: #fff;
    min-height: 480px;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.7) contrast(1.1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(7, 37, 23, 0.9) 0%, rgba(12, 56, 35, 0.75) 45%, rgba(7, 37, 23, 0.4) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 680px;
    padding: 60px 0;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(197, 155, 39, 0.25);
    color: var(--gold-light);
    border: 1px solid rgba(223, 183, 74, 0.5);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 18px;
    backdrop-filter: blur(8px);
}

.hero-title {
    font-size: 2.7rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.25;
    margin-bottom: 16px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: #f1e9dc;
    line-height: 1.7;
    margin-bottom: 28px;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    color: #072517;
    font-weight: 800;
    font-size: 1rem;
    padding: 13px 30px;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 20px rgba(223, 183, 74, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(223, 183, 74, 0.55);
    background: #fff;
    color: var(--primary);
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-weight: 600;
    font-size: 1rem;
    padding: 13px 26px;
    border-radius: var(--radius-full);
    backdrop-filter: blur(8px);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
}

/* Trust Badges Bar */
.trust-bar {
    background: #fff;
    border-bottom: 1px solid var(--border-light);
    padding: 24px 0;
    box-shadow: var(--shadow-sm);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 8px 12px;
}

.trust-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: var(--gold-subtle);
    border: 1px solid var(--gold-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--gold-hover);
    flex-shrink: 0;
}

.trust-text h4 {
    font-size: 0.98rem;
    margin-bottom: 2px;
    color: var(--primary);
}

.trust-text p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Section Common Styling */
.section {
    padding: 60px 0;
}

.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 40px;
}

.section-tag {
    color: var(--gold-hover);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    display: block;
}

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

.section-desc {
    color: var(--text-muted);
    font-size: 1rem;
}

/* Category Filter Tabs */
.category-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 36px;
}

.cat-tab-btn {
    background: #fff;
    border: 1px solid var(--border-light);
    color: var(--text-main);
    padding: 10px 22px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.92rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-sm);
}

.cat-tab-btn:hover {
    border-color: var(--gold);
    color: var(--gold-hover);
}

.cat-tab-btn.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(12, 56, 35, 0.25);
}

/* Product Cards Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 28px;
}

.product-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold-border);
}

.product-card-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-hover) 100%);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    z-index: 5;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.product-card-img {
    position: relative;
    padding-top: 100%; /* 1:1 Aspect */
    overflow: hidden;
    background: #f4efe6;
}

.product-card-img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-card-img img {
    transform: scale(1.06);
}

.product-card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-card-cat {
    font-size: 0.8rem;
    color: var(--gold-hover);
    font-weight: 700;
    margin-bottom: 6px;
}

.product-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 10px;
    color: var(--primary);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 48px;
}

.product-card-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card-price-row {
    margin-top: auto;
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 16px;
}

.price-current {
    font-size: 1.45rem;
    font-weight: 900;
    color: var(--primary);
}

.price-regular, del.price-regular {
    position: relative;
    display: inline-flex;
    align-items: center;
    font-size: 1rem;
    color: #8c9791;
    text-decoration: none !important;
    opacity: 0.82;
    margin-right: 8px;
    line-height: 1;
}

.price-regular::after, del.price-regular::after {
    content: '';
    position: absolute;
    left: -4px;
    right: -4px;
    top: 50%;
    height: 2px;
    background-color: #d9383a;
    transform: translateY(-50%);
    pointer-events: none;
    border-radius: 1px;
    z-index: 2;
}

.price-saving {
    background: #ffebe9;
    color: var(--danger);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
}

.product-card-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
}

.btn-card-order {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-hover) 100%);
    color: #fff;
    font-weight: 700;
    font-size: 0.92rem;
    padding: 10px 16px;
    border-radius: var(--radius-md);
    text-align: center;
    border: none;
    cursor: pointer;
    box-shadow: 0 3px 10px rgba(197, 155, 39, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-card-order:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(12, 56, 35, 0.3);
}

/* Single Product Page & 1-Press Direct Order Layout */
.single-product-container {
    padding: 40px 0 80px;
}

.breadcrumbs {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.breadcrumbs a:hover {
    color: var(--gold-hover);
}

.single-product-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Gallery Column */
.product-gallery {
    background: #fff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    padding: 16px;
    box-shadow: var(--shadow-sm);
}

.gallery-main-img {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: #fbf7ee;
    margin-bottom: 16px;
}

.gallery-main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-features-box {
    margin-top: 24px;
    background: var(--gold-subtle);
    border: 1px solid var(--gold-border);
    border-radius: var(--radius-md);
    padding: 18px;
}

.product-features-box h4 {
    font-size: 1.05rem;
    color: var(--primary);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.product-features-box ul {
    list-style: none;
    padding: 0;
}

.product-features-box li {
    font-size: 0.9rem;
    color: var(--text-main);
    padding: 6px 0;
    border-bottom: 1px dashed rgba(197, 155, 39, 0.3);
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-features-box li:last-child {
    border-bottom: none;
}

.product-features-box li::before {
    content: "✓";
    color: var(--gold-hover);
    font-weight: bold;
}

/* Product Info & Direct COD Order Form Column */
.product-info-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product-title-wrap h1 {
    font-size: 1.9rem;
    font-weight: 800;
    line-height: 1.35;
    margin-bottom: 12px;
}

.product-meta-strip {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.in-stock-badge {
    background: #e8f7ee;
    color: var(--success);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: var(--radius-full);
}

.stars-rating {
    color: #f5a623;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 4px;
}

.stars-rating span {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.product-price-banner {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    display: flex;
    align-items: baseline;
    gap: 14px;
    box-shadow: var(--shadow-sm);
}

.product-price-banner .price-current {
    font-size: 2.1rem;
    color: var(--primary);
}

.product-price-banner .price-regular, .product-price-banner del.price-regular {
    font-size: 1.25rem;
    margin-right: 14px;
}

/* Express 1-Press Direct COD Order Box */
.direct-order-box {
    background: #ffffff;
    border: 2px solid var(--gold);
    border-radius: var(--radius-lg);
    padding: 26px 24px;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.direct-order-box::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
}

.direct-order-header {
    text-align: center;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 14px;
}

.direct-order-header h3 {
    font-size: 1.35rem;
    color: var(--primary);
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.direct-order-header p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.form-group {
    margin-bottom: 14px;
}

.form-label {
    display: block;
    font-size: 0.88rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text-main);
}

.form-label span.req {
    color: var(--danger);
}

.form-control {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--border-light);
    border-radius: var(--radius-sm);
    background: #fdfbf7;
    color: var(--text-main);
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--gold);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(197, 155, 39, 0.15);
}

/* Delivery Type Selector (Home vs Desk) */
.delivery-type-selector {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 4px;
}

@media (max-width: 480px) {
    .delivery-type-selector {
        grid-template-columns: 1fr;
    }
}

.delivery-card {
    position: relative;
    display: block;
    cursor: pointer;
    background: #fdfbf7;
    border: 2px solid var(--border-light);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    transition: var(--transition);
}

.delivery-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.delivery-card:hover {
    border-color: var(--gold);
    background: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(197, 155, 39, 0.12);
}

.delivery-card.active {
    border-color: var(--primary);
    background: #f5f9f6;
    box-shadow: 0 0 0 2px rgba(12, 56, 35, 0.15);
}

.delivery-card-inner {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.delivery-card-title {
    display: flex;
    align-items: center;
    gap: 8px;
}

.delivery-card-icon {
    font-size: 1.4rem;
    line-height: 1;
}

.delivery-card-heading {
    display: flex;
    flex-direction: column;
}

.delivery-card-heading strong {
    font-size: 0.95rem;
    color: var(--text-main);
    line-height: 1.3;
}

.delivery-card.active .delivery-card-heading strong {
    color: var(--primary);
}

.delivery-card-heading small {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.delivery-badge {
    align-self: flex-start;
    display: inline-block;
    background: #f0ebe1;
    color: var(--primary);
    font-size: 0.82rem;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 6px;
    border: 1px solid rgba(197, 155, 39, 0.3);
    transition: var(--transition);
}

.delivery-card.active .delivery-badge {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary-light);
}

/* Quantity Stepper */
.qty-stepper-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-base);
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-light);
}

.qty-stepper {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.qty-btn {
    width: 38px;
    height: 38px;
    background: #f9f6ee;
    border: none;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.qty-btn:hover {
    background: var(--gold);
    color: #fff;
}

.qty-input {
    width: 46px;
    height: 38px;
    border: none;
    text-align: center;
    font-weight: 800;
    font-size: 1rem;
    background: #fff;
    color: var(--primary);
}

/* Order Calculation Summary */
.order-calc-summary {
    background: #f7f3ea;
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    margin: 18px 0;
    font-size: 0.9rem;
}

.calc-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
    color: var(--text-muted);
}

.calc-row.total-row {
    border-top: 1.5px dashed #d5c7a4;
    padding-top: 10px;
    margin-top: 8px;
    margin-bottom: 0;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--primary);
}

.calc-row.total-row .total-amount {
    color: var(--gold-hover);
    font-size: 1.35rem;
}

/* Submit Big Button */
.btn-submit-order {
    width: 100%;
    background: linear-gradient(135deg, #10492e 0%, #072517 100%);
    color: #fff;
    border: 2px solid var(--gold);
    font-size: 1.15rem;
    font-weight: 800;
    padding: 15px 20px;
    border-radius: var(--radius-md);
    cursor: pointer;
    box-shadow: 0 4px 18px rgba(7, 37, 23, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
}

.btn-submit-order:hover {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-hover) 100%);
    color: #fff;
    border-color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(197, 155, 39, 0.45);
}

.btn-submit-order:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.order-guarantee-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* WhatsApp Alternate Button */
.btn-whatsapp-direct {
    width: 100%;
    margin-top: 12px;
    background: #25d366;
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 12px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
}

.btn-whatsapp-direct:hover {
    background: #1eb956;
    color: #fff;
}

/* Modal Popup Confirmation */
.elkaid-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(4px);
}

.elkaid-modal-content {
    background: #fff;
    max-width: 520px;
    width: 100%;
    border-radius: var(--radius-lg);
    border: 2px solid var(--gold);
    box-shadow: var(--shadow-lg);
    padding: 30px 26px;
    text-align: center;
    position: relative;
    animation: modalSlideUp 0.3s ease-out;
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-icon-success {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #e6f7ed;
    color: var(--success);
    font-size: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    border: 2px solid var(--success);
}

.modal-order-details {
    background: var(--bg-base);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 16px;
    margin: 18px 0;
    text-align: right;
    font-size: 0.9rem;
}

.modal-order-details p {
    margin-bottom: 6px;
}

.modal-order-details p:last-child {
    margin-bottom: 0;
}

.modal-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Reviews Section */
.reviews-section {
    background: #f4efe6;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.review-card {
    background: #fff;
    padding: 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
}

.review-stars {
    color: #f5a623;
    margin-bottom: 10px;
}

.review-text {
    font-size: 0.92rem;
    color: var(--text-main);
    line-height: 1.6;
    margin-bottom: 14px;
}

.reviewer-name {
    font-weight: 700;
    color: var(--primary);
    font-size: 0.88rem;
}

.reviewer-city {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* Site Footer */
.site-footer {
    background: #072517;
    color: #e5ddd0;
    padding: 60px 0 20px;
    border-top: 3px solid var(--gold);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 36px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: var(--gold-light);
    font-size: 1.15rem;
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 8px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 32px;
    height: 2px;
    background: var(--gold);
}

.footer-col p {
    font-size: 0.88rem;
    line-height: 1.7;
    color: #cfc6b8;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #d1c8bb;
    font-size: 0.88rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-links a:hover {
    color: var(--gold-light);
    transform: translateX(-4px);
}

.footer-bottom {
    border-top: 1px solid rgba(197, 155, 39, 0.2);
    padding-top: 20px;
    text-align: center;
    font-size: 0.82rem;
    color: #a49d91;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 999;
    background: #25d366;
    color: #fff;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
    transition: var(--transition);
    animation: waPulse 2s infinite;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    color: #fff;
}

.floating-whatsapp svg {
    width: 32px;
    height: 32px;
    fill: #ffffff;
}

@keyframes waPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    }
    70% {
        box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.2rem;
    }
    .single-product-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .top-bar-inner {
        justify-content: center;
        text-align: center;
    }
    .top-bar-contact {
        display: none;
    }
    .hero-title {
        font-size: 1.8rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .header-nav {
        display: none;
    }
    .header-logo-img {
        width: 46px;
        height: 46px;
    }
    .header-brand-name {
        font-size: 1.25rem;
    }
    .header-brand-slogan {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .header-logo-img {
        width: 40px;
        height: 40px;
    }
    .header-brand-name {
        font-size: 1.1rem;
    }
    .header-brand-slogan {
        font-size: 0.62rem;
    }
}

/* Price Typography & RTL Bidi isolation */
.price-num {
    display: inline-block;
    direction: ltr !important;
    unicode-bidi: isolate !important;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.5px;
}

.price-curr {
    display: inline-block;
    font-size: 0.82em;
    font-weight: 700;
    margin-right: 4px;
    color: inherit;
}

.price-current, .price-regular, .total-amount, .calc-row {
    unicode-bidi: isolate;
    white-space: nowrap;
}
