/* Final Al-Ittihad visual refinement layer. */
:root {
    --brand-ink: #101214;
    --brand-charcoal: #202428;
    --brand-gold: #cda438;
    --brand-gold-light: #e5c46b;
    --brand-ivory: #fbfaf7;
    --brand-line: rgba(16, 18, 20, .11);
    --primary-color: var(--brand-gold);
    --accent-color: var(--brand-gold-light);
    --text-dark: var(--brand-ink);
    --light-bg: #f4f2ed;
    --border-color: #dedbd3;
    --gradient-gold: linear-gradient(135deg, #b98c20 0%, #d9b452 52%, #f0d789 100%);
    --gradient-dark: linear-gradient(145deg, #0d0f10 0%, #24282b 100%);
    --shadow-sm: 0 10px 28px rgba(16, 18, 20, .08);
    --shadow-md: 0 18px 45px rgba(16, 18, 20, .13);
}

html { color-scheme: light; }

body {
    background: var(--brand-ivory);
    font-feature-settings: "kern" 1;
    text-rendering: optimizeLegibility;
}

::selection { background: rgba(205, 164, 56, .3); color: var(--brand-ink); }

.container { max-width: 1280px; padding-inline: clamp(18px, 3vw, 36px); }

a, button, input, select, textarea { -webkit-tap-highlight-color: transparent; }

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid rgba(205, 164, 56, .48);
    outline-offset: 3px;
}

.topbar { padding-block: 7px; }
.topbar-contact a { color: rgba(255, 255, 255, .82); }

.header { background: rgba(13, 15, 16, .92); }
.navbar { padding-block: 8px; }
.logo { height: 72px; border-radius: 50%; }
.nav-menu { gap: clamp(14px, 1.55vw, 24px); }
.nav-link { font-size: 14px; letter-spacing: .01em; }
.nav-icon-btn { border: 1px solid rgba(255, 255, 255, .08); }

.hero {
    min-height: auto;
    height: auto;
    padding-top: clamp(50px, 7vh, 85px);
    padding-bottom: clamp(60px, 8vh, 95px);
    isolation: isolate;
    position: relative;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Cinematic Hero Video Background with Increased Height */
.hero-video-cinematic {
    position: relative;
    overflow: hidden;
    padding: clamp(110px, 16vh, 180px) 0 clamp(90px, 14vh, 160px) !important;
    min-height: clamp(650px, 85vh, 850px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.hero-video-wrapper {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}
.hero-video-wrapper .hero-video-element {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(1.0) contrast(1.05);
    display: block;
}
.hero-video-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(1.0) contrast(1.05);
}
.hero-video-overlay {
    position: absolute;
    inset: 0;
    /* Ultra-light, crystal transparent overlay so video is vivid, luminous, and 100% visible */
    background: radial-gradient(circle at 50% 45%, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.22) 100%),
                linear-gradient(180deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.35) 100%);
    z-index: 2;
}
.hero-heritage-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(15, 23, 42, 0.75);
    border: 1.5px solid #c8a43d;
    padding: 10px 28px;
    border-radius: 50px;
    color: #e5c46b;
    font-weight: 800;
    font-size: 14.5px;
    margin-bottom: 24px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
}
.hero-title {
    text-shadow: 0 3px 18px rgba(0, 0, 0, 0.85);
}
.hero-subtitle {
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.85);
}
.hero-description {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
}
.dynamic-slide-item {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: clamp(70px, 10vh, 120px) 0 clamp(60px, 8vh, 100px);
}
.dynamic-slide-item.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(16, 18, 20, 0.65);
    border: 1.5px solid rgba(200, 164, 61, 0.4);
    color: #e5c46b;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
    backdrop-filter: blur(4px);
}
.slider-arrow:hover {
    background: #c8a43d;
    color: #101214;
    border-color: #c8a43d;
    transform: translateY(-50%) scale(1.08);
}
[dir="rtl"] .slider-prev { right: 25px; left: auto; }
[dir="rtl"] .slider-next { left: 25px; right: auto; }
[dir="ltr"] .slider-prev { left: 25px; right: auto; }
[dir="ltr"] .slider-next { right: 25px; left: auto; }

.slider-dots-container {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
    align-items: center;
}
.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}
.slider-dot.active {
    width: 32px;
    border-radius: 20px;
    background: #c8a43d;
    box-shadow: 0 0 10px rgba(200, 164, 61, 0.5);
}

.hero-overlay {
    background:
        linear-gradient(90deg, rgba(7, 9, 10, .82), rgba(7, 9, 10, .5), rgba(7, 9, 10, .82)),
        linear-gradient(180deg, rgba(7, 9, 10, .2), rgba(7, 9, 10, .7));
}

.hero-content {
    max-width: 960px;
    margin-inline: auto;
    position: relative;
    z-index: 5;
}

.hero-title {
    font-size: clamp(32px, 4.2vw, 56px);
    line-height: 1.15;
    letter-spacing: -.025em;
    margin-bottom: 16px;
}

.hero-subtitle {
    font-size: clamp(19px, 2.2vw, 28px);
    line-height: 1.35;
    margin-bottom: 16px;
}

.hero-description {
    max-width: 780px;
    font-size: clamp(15px, 1.2vw, 18px);
    line-height: 1.65;
    margin: 0 auto 28px;
    color: rgba(255, 255, 255, 0.92);
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 10;
    margin-top: 8px;
    margin-bottom: 0;
}

.btn {
    min-height: 48px;
    padding: 13px 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    line-height: 1.2;
    font-weight: 700;
}

.btn-primary { color: #111; box-shadow: 0 12px 28px rgba(185, 140, 32, .25); }
.btn-secondary { backdrop-filter: blur(10px); background: rgba(13, 15, 16, .38); }

section { padding-block: clamp(70px, 9vw, 112px); }
.section-header { margin-bottom: clamp(36px, 5vw, 58px); }
.section-tag { padding: 7px 18px; color: #171717; letter-spacing: .04em; }
.section-title { font-size: clamp(30px, 4vw, 46px); letter-spacing: -.025em; }

.page-hero {
    padding-block: clamp(44px, 5vw, 62px);
    border-bottom: 1px solid rgba(185, 140, 32, .18);
}

.page-hero-content h1 { font-size: clamp(34px, 4.5vw, 54px); letter-spacing: -.035em; margin-block: 10px; }
.breadcrumb { font-weight: 600; }

.banner-card,
.service-card,
.why-card,
.product-card,
.contact-form,
.cart-summary,
.checkout-form,
.order-summary {
    border: 1px solid var(--brand-line);
}

.product-card {
    border-radius: 18px;
    box-shadow: var(--shadow-sm);
    transform: translateZ(0);
    position: relative;
    border: 1px solid var(--brand-line);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 0;
}

/* Animated golden border on hover via ::before pseudo-element */
.product-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 20px;
    background: conic-gradient(
        from var(--angle, 0deg),
        transparent 0deg,
        transparent 60deg,
        #f2d77f 90deg,
        #d5a52e 120deg,
        #fff5c0 150deg,
        #d5a52e 180deg,
        transparent 210deg,
        transparent 360deg
    );
    opacity: 0;
    z-index: -1;
    transition: opacity 0.35s ease;
}

.product-card:hover::before {
    opacity: 1;
    animation: spin-border 2.4s linear infinite;
}

.product-card::after {
    content: '';
    position: absolute;
    inset: 1px;
    border-radius: 18px;
    background: #fff;
    z-index: -1;
}

@property --angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

@keyframes spin-border {
    to { --angle: 360deg; }
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 44px rgba(0,0,0,0.13), 0 0 0 0 transparent;
    border-color: transparent;
}

/* ===== product-image reset ===== */
.product-image {
    position: relative;
    overflow: hidden;
    border-radius: 17px 17px 0 0;
}


.product-image.is-placeholder { padding: 34px; }
.product-image.is-placeholder::after {
    content: '';
    position: absolute;
    inset: 18px;
    border: 1px dashed rgba(16, 18, 20, .13);
    border-radius: 14px;
    pointer-events: none;
}
.product-image.is-placeholder img {
    width: min(58%, 170px);
    height: auto;
    max-height: 170px;
    object-fit: contain;
    filter: grayscale(1) contrast(.92);
    opacity: .72;
    border-radius: 50%;
}

.product-main-image.is-placeholder {
    background: linear-gradient(145deg, #eeece7, #fbfaf7);
    border: 1px solid var(--brand-line);
}
.product-main-image.is-placeholder img {
    width: min(56%, 310px);
    height: auto;
    object-fit: contain;
    filter: grayscale(1);
    opacity: .75;
    border-radius: 50%;
}

.product-thumbnails { flex-wrap: wrap; }
.product-thumbnails .thumb {
    padding: 0;
    appearance: none;
}

.catalog-categories {
    padding: 34px 0 8px;
    background: #f7f5f0;
}
.catalog-category-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}
.catalog-category-card {
    position: relative;
    min-height: 148px;
    overflow: hidden;
    border: 1px solid var(--brand-line);
    border-radius: 18px;
    background: #17191b;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 3px;
    padding: 18px;
    box-shadow: 0 12px 30px rgba(18, 20, 22, .08);
    isolation: isolate;
}
.catalog-category-card::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(180deg, rgba(10, 11, 12, .08), rgba(10, 11, 12, .9));
}
.catalog-category-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    transition: transform .35s ease;
}
.catalog-category-card:hover img { transform: scale(1.04); }
.catalog-category-card span { font-weight: 800; font-size: 17px; }
.catalog-category-card small { color: rgba(255,255,255,.72); }
.catalog-category-card.active {
    border-color: var(--brand-gold);
    box-shadow: 0 0 0 2px rgba(205, 164, 56, .2), 0 14px 34px rgba(18, 20, 22, .12);
}
.catalog-category-card:first-child {
    background: linear-gradient(145deg, #111315, #25282b);
    justify-content: center;
    align-items: center;
    text-align: center;
}
.catalog-category-icon {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(205, 164, 56, .14);
    color: var(--brand-gold-light);
}

.product-title { line-height: 1.45; }
.product-price { color: #8e6913; font-size: 20px; }
.product-action:disabled,
.action-btn:disabled,
.ajax-cart-btn:disabled {
    cursor: not-allowed;
    opacity: .4;
    filter: grayscale(1);
    transform: none !important;
}

input,
select,
textarea,
.form-control {
    border-radius: 12px !important;
    border-color: #d5d1c8 !important;
    background: rgba(255, 255, 255, .92) !important;
}

input:focus,
select:focus,
textarea:focus,
.form-control:focus {
    border-color: var(--brand-gold) !important;
    box-shadow: 0 0 0 4px rgba(205, 164, 56, .13) !important;
}

.footer { background: linear-gradient(145deg, #0c0e0f, #1d2022 55%, #111314); }
.footer-logo { border-radius: 50%; }
.footer a:hover { color: var(--brand-gold-light); }

/* Quote Request System Styling */
.product-price.quote-price,
.compare-price.quote-price {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13.5px;
    font-weight: 700;
    color: #a47a1f;
    background: rgba(201, 169, 97, 0.14);
    border: 1px solid rgba(201, 169, 97, 0.28);
    padding: 6px 12px;
    border-radius: 50px;
}

.product-price-tag.quote-price-banner {
    display: flex;
    align-items: center;
    gap: 14px;
    background: linear-gradient(135deg, rgba(20, 23, 26, 0.96), rgba(35, 39, 42, 0.98));
    border: 1px solid rgba(201, 169, 97, 0.35);
    padding: 16px 20px;
    border-radius: 16px;
    color: #fff;
    margin-bottom: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.product-price-tag.quote-price-banner i {
    font-size: 28px;
    color: #f4d77b;
    flex: 0 0 28px;
}

.product-price-tag.quote-price-banner div {
    display: flex;
    flex-direction: column;
}

.product-price-tag.quote-price-banner strong {
    font-size: 18px;
    font-weight: 800;
    color: #f4d77b;
}

.product-price-tag.quote-price-banner span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.78);
    margin-top: 3px;
}

.badge-quote-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 700;
    color: #6d5419;
    background: rgba(201, 169, 97, 0.15);
    border: 1px solid rgba(201, 169, 97, 0.35);
    padding: 5px 12px;
    border-radius: 30px;
}

@media (min-width: 993px) and (max-width: 1180px) {
    .logo { height: 62px; }
    .nav-menu { gap: 11px; }
    .nav-link { font-size: 12.5px; }
    .nav-actions { gap: 6px; }
}

@media (max-width: 992px) {
    .logo { height: 60px; }
    .hero { min-height: calc(100svh - 82px); padding-block: 104px; }
    .hero-scroll { display: none; }
    .catalog-category-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
    .topbar-contact a:nth-child(2), .topbar-social { display: none; }
    .topbar-inner { gap: 10px; }
    .hero { padding-block: 88px 72px; }
    .hero-title { font-size: clamp(36px, 11vw, 52px); }
    .hero-subtitle { font-size: 22px; }
    .hero-description { font-size: 16px; line-height: 1.7; }
    .hero-buttons { gap: 12px; }
    .hero-buttons .btn { width: 100%; }
    .product-image { height: 225px; }
    .product-meta { align-items: stretch; flex-direction: column; }
    .product-meta .btn { width: 100%; }
    .catalog-category-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .catalog-category-card { min-height: 126px; padding: 13px; }
    .catalog-category-card span { font-size: 14px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
    }
}

/* Final interaction, contrast and responsive refinements */
.header { position: relative; top: auto; }
.product-detail .product-info,
.product-detail .product-info h1,
.product-detail .product-info h2,
.product-detail .product-info h3,
.product-detail .product-info h4,
.product-detail .product-full-desc,
.product-detail .spec-label,
.product-detail .spec-value { color: #17191b !important; }
.product-purchase { display:grid; gap:14px; }
.quantity-picker { display:flex; align-items:center; gap:12px; color:#17191b; font-weight:800; }
.product-qty { width:88px; min-height:46px; padding:8px 12px; color:#17191b !important; background:#fff !important; border:1px solid #b9bec2; border-radius:12px; font:inherit; text-align:center; }
.ajax-compare-btn.compared { color:#17191b !important; background:linear-gradient(135deg,#d5a52e,#f2d77f) !important; }
.compare-section { padding:50px 0 80px; }
.compare-toolbar { display:flex; justify-content:space-between; gap:12px; margin-bottom:20px; }
.compare-grid { display:grid; grid-template-columns:repeat(var(--compare-columns),minmax(0,1fr)); gap:16px; }
.compare-card { position:relative; display:flex; flex-direction:column; gap:14px; padding:18px; color:#17191b; background:#fff; border:1px solid #d7dbde; border-radius:20px; box-shadow:0 15px 40px #1112; }
.compare-card > a img { width:100%; aspect-ratio:1/1; object-fit:contain; border-radius:14px; background:#f6f7f7; }
.compare-card h2 { color:#17191b; font-size:clamp(16px,2vw,21px); line-height:1.4; }
.compare-card dl { display:grid; gap:8px; margin:0; }
.compare-card dt { font-weight:800; color:#555d61; }
.compare-card dd { margin:0 0 8px; color:#17191b; line-height:1.55; }
.compare-price { color:#987014; font-size:20px; font-weight:900; }
.compare-remove { position:absolute; inset-block-start:10px; inset-inline-end:10px; z-index:2; width:36px; height:36px; border:0; border-radius:50%; cursor:pointer; }
.empty-state { padding:70px 20px; text-align:center; color:#17191b; }
.empty-state > i { font-size:52px; color:#c69521; margin-bottom:18px; }
.company-intro-video .video-overlay { border:0; width:100%; }
.company-intro-video .video-placeholder { width:100%; height:100%; object-fit:contain; background:#050505; }
.service-shell { max-width:1050px; margin:auto; padding:clamp(24px,5vw,64px) 20px; }
.service-intro { max-width:760px; margin:0 auto 24px; text-align:center; }
.service-intro h1 { color:#17191b; font-size:clamp(30px,5vw,50px); }
.service-intro p { color:#5e666b; line-height:1.8; }
.service-card { max-width:920px; margin:auto; padding:clamp(20px,4vw,36px); background:#fff; border:1px solid #dadddf; border-radius:24px; box-shadow:0 18px 50px #20242818; }
.service-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:16px; }
.service-field label { display:block; margin-bottom:7px; color:#17191b; font-weight:800; }
.service-field input,.service-field select,.service-field textarea { width:100%; min-height:48px; padding:12px 14px; color:#17191b; background:#fff; border:1px solid #cbd0d3; border-radius:12px; }
.service-field textarea { min-height:130px; resize:vertical; }
.service-grid .form-response,.service-grid .span-2 { grid-column:1/-1; }
.service-actions { display:flex; flex-wrap:wrap; gap:10px; margin-top:18px; }
.notice,.form-response { padding:14px 16px; border-radius:12px; margin-bottom:16px; }
.notice.ok,.alert-success { background:#e8f7ef; color:#176843; }.notice.err,.alert-error { background:#fff0f0; color:#9f2727; }
.track-card dl { display:grid; grid-template-columns:minmax(150px,220px) 1fr; gap:12px; }.track-card dt { font-weight:800; }.track-card dd { margin:0; }.reference { font-size:clamp(20px,4vw,30px); font-weight:900; direction:ltr; text-align:start; }
[dir="ltr"] .nav-menu,[dir="ltr"] .footer,[dir="ltr"] .product-card,[dir="ltr"] .service-card { text-align:left; }
[dir="ltr"] .product-actions { left:auto; right:12px; }

@media (max-width: 760px) {
    .compare-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
    .compare-card { padding:11px; gap:9px; }.compare-card dd { font-size:13px; }.compare-card .btn { padding:9px 7px; font-size:12px; }
    .service-grid { grid-template-columns:1fr; }.service-grid .span-2,.service-grid .form-response { grid-column:auto; }.track-card dl { grid-template-columns:1fr; }
}

@media (max-width: 640px) {
    .shop-grid { grid-template-columns:repeat(2,minmax(0,1fr)) !important; gap:10px !important; }
    .product-card { min-width:0; border-radius:15px; }
    .product-card .product-image { height:auto !important; aspect-ratio:1/1; min-height:0; }
    .product-card .product-body { padding:10px !important; gap:6px; }
    .product-card .product-title { min-height:2.8em; margin:0; font-size:14px; line-height:1.4; display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden; }
    .product-card .product-desc { display:-webkit-box; -webkit-line-clamp:1; -webkit-box-orient:vertical; overflow:hidden; margin:0; font-size:11px; min-height:1.45em; }
    .product-card .product-meta { flex-direction:column; align-items:stretch; gap:7px; }
    .product-card .product-price { font-size:14px; }
    .product-card .btn-sm { width:100%; min-height:34px; padding:7px 6px; font-size:11px; }
    .product-actions { gap:5px; }.product-action,.action-btn { width:32px !important; height:32px !important; font-size:12px !important; }
    .catalog-category-card { min-height:112px; }
    .product-detail-actions { display:grid; grid-template-columns:1fr repeat(3,48px); gap:8px; }
}

/* Premium mobile header and navigation */
.mobile-menu-brand,
.mobile-menu-footer,
.mobile-menu-backdrop {
    display: none;
}

@media (max-width: 992px) {
    .header {
        z-index: 1100;
        backdrop-filter: none;
        border-bottom: 1px solid rgba(213, 170, 56, .25);
        box-shadow: 0 14px 38px rgba(0, 0, 0, .28);
    }

    .navbar {
        padding-block: 8px;
    }

    .navbar .container {
        position: relative;
        min-height: 92px;
        padding-inline: 16px;
    }

    .logo-container {
        position: absolute;
        inset-inline-start: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        z-index: 3;
    }

    [dir="rtl"] .logo-container {
        transform: translate(50%, -50%);
    }

    .logo-container a {
        display: grid;
        place-items: center;
        width: 84px;
        height: 84px;
        border-radius: 50%;
        background: radial-gradient(circle at 35% 25%, rgba(255,255,255,.11), rgba(255,255,255,.02) 48%, rgba(0,0,0,.18));
        border: 1px solid rgba(226, 190, 89, .42);
        box-shadow: 0 0 0 5px rgba(208, 163, 44, .06), 0 10px 28px rgba(0,0,0,.4), inset 0 0 18px rgba(255,255,255,.06);
    }

    .logo-container .logo {
        width: 76px !important;
        height: 76px !important;
        object-fit: contain;
        border-radius: 50%;
        filter: drop-shadow(0 3px 9px rgba(226, 190, 89, .2));
    }

    .mobile-menu-toggle {
        position: absolute;
        inset-inline-start: 16px;
        top: 50%;
        transform: translateY(-50%);
        width: 48px;
        height: 48px;
        padding: 0;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(218, 176, 61, .32);
        border-radius: 16px;
        background: linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.025));
        box-shadow: inset 0 1px rgba(255,255,255,.1), 0 8px 22px rgba(0,0,0,.25);
    }

    .mobile-menu-toggle span {
        width: 22px;
        height: 2px;
        background: linear-gradient(90deg, #c9971f, #f4dc8c);
    }

    .mobile-menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .mobile-menu-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .mobile-menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .nav-actions {
        position: absolute;
        inset-inline-end: 16px;
        top: 50%;
        transform: translateY(-50%);
        gap: 7px;
    }

    .nav-actions #compareBtn {
        display: none;
    }

    .nav-icon-btn {
        width: 42px;
        height: 42px;
        font-size: 17px;
        background: linear-gradient(145deg, rgba(211,169,56,.16), rgba(255,255,255,.035));
        border-color: rgba(224, 184, 72, .28);
        box-shadow: inset 0 1px rgba(255,255,255,.08), 0 7px 18px rgba(0,0,0,.22);
    }

    .mobile-menu-backdrop {
        display: block;
        position: fixed;
        inset: 0;
        z-index: 1090;
        background: rgba(2, 3, 4, .72);
        backdrop-filter: blur(8px);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity .32s ease, visibility .32s ease;
    }

    .mobile-menu-backdrop.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transition: none;
    }

    body.mobile-nav-open {
        overflow: hidden;
    }

    /* Traditional Luxury Side Navigation Drawer */
    .nav-menu {
        display: flex;
        position: fixed;
        top: 0;
        bottom: 0;
        height: 100vh;
        height: 100dvh;
        width: min(320px, 86vw);
        margin: 0;
        padding: 20px 16px 28px;
        gap: 6px;
        flex-direction: column;
        overflow-x: hidden;
        overflow-y: auto;
        overscroll-behavior: contain;
        scrollbar-width: none;
        -ms-overflow-style: none;
        border-radius: 0;
        background: #111417;
        box-shadow: 0 0 60px rgba(0, 0, 0, 0.85);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        z-index: 1400;
        transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease, visibility 0.3s ease;
    }

    .nav-menu::-webkit-scrollbar {
        display: none;
    }

    [dir="rtl"] .nav-menu {
        right: 0;
        left: auto;
        border-left: 1px solid rgba(205, 164, 56, 0.25);
        transform: translateX(100%);
    }

    [dir="ltr"] .nav-menu {
        left: 0;
        right: auto;
        border-right: 1px solid rgba(205, 164, 56, 0.25);
        transform: translateX(-100%);
    }

    .nav-menu.active {
        display: flex;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateX(0) !important;
    }

    .mobile-menu-brand {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        margin-bottom: 10px;
        padding: 4px 2px 16px;
        border-bottom: 1px solid rgba(205, 164, 56, 0.2);
    }

    .mobile-menu-brandmark {
        display: flex;
        align-items: center;
        gap: 10px;
        min-width: 0;
    }

    .mobile-menu-brandmark img {
        width: 52px;
        height: 52px;
        object-fit: contain;
        flex: 0 0 52px;
        border-radius: 50%;
        border: 1px solid rgba(205, 164, 56, 0.35);
    }

    .mobile-menu-brandmark div {
        display: flex;
        flex-direction: column;
        min-width: 0;
    }

    .mobile-menu-brandmark strong {
        color: #fff;
        font-size: 13.5px;
        font-weight: 700;
        line-height: 1.35;
    }

    .mobile-menu-brandmark span {
        color: #c9a961;
        font-size: 11px;
        margin-top: 2px;
    }

    .mobile-menu-close {
        width: 38px;
        height: 38px;
        flex: 0 0 38px;
        display: grid;
        place-items: center;
        border-radius: 10px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        background: rgba(255, 255, 255, 0.06);
        color: #f4d77b;
        font-size: 18px;
        cursor: pointer;
        transition: background 0.2s ease;
    }

    .mobile-menu-close:hover {
        background: rgba(205, 164, 56, 0.2);
    }

    .nav-menu > li:not(.mobile-menu-brand):not(.mobile-menu-footer) > .nav-link {
        width: 100%;
        min-height: 46px;
        padding: 10px 14px;
        gap: 12px;
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.05);
        background: rgba(255, 255, 255, 0.03);
        color: rgba(255, 255, 255, 0.92);
        font-size: 14.5px;
        font-weight: 700;
        transition: all 0.25s ease;
    }

    .nav-menu > li > .nav-link i:first-child {
        width: 28px;
        height: 28px;
        display: grid;
        place-items: center;
        flex: 0 0 28px;
        border-radius: 8px;
        background: rgba(205, 164, 56, 0.15);
        color: #e4bd50;
        font-size: 13px;
    }

    .nav-menu > li > .nav-link .nav-dropdown-icon {
        margin-inline-start: auto;
        transition: transform 0.3s ease;
    }

    .nav-menu > li > .nav-link::after {
        display: none;
    }

    .nav-menu > li > .nav-link.active,
    .nav-menu > li > .nav-link:hover {
        color: #fff;
        border-color: rgba(205, 164, 56, 0.4);
        background: rgba(205, 164, 56, 0.12);
    }

    /* Submenu Accordion on Mobile */
    .nav-dropdown {
        position: static;
    }

    .nav-dropdown .dropdown-menu {
        display: none;
        flex-direction: column;
        gap: 2px;
        padding: 6px 8px 10px;
        margin-top: 4px;
        background: rgba(0, 0, 0, 0.35);
        border-radius: 12px;
        border: 1px solid rgba(205, 164, 56, 0.15);
        box-shadow: none;
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        min-width: 0;
    }

    .nav-dropdown.open .dropdown-menu {
        display: flex;
    }

    .nav-dropdown .dropdown-menu li {
        width: 100%;
    }

    .nav-dropdown .dropdown-menu a {
        display: flex;
        align-items: center;
        gap: 9px;
        padding: 8px 12px;
        border-radius: 8px;
        background: transparent;
        color: rgba(255, 255, 255, 0.82);
        font-size: 13px;
        font-weight: 500;
        line-height: 1.35;
        transition: all 0.2s ease;
    }

    .nav-dropdown .dropdown-menu a:hover {
        color: #f4d77b;
        background: rgba(205, 164, 56, 0.12);
    }

    .nav-dropdown .dropdown-menu a i {
        color: #c9a961;
        font-size: 12px;
    }

    .mobile-menu-footer {
        display: grid;
        grid-template-columns: 1fr 1.3fr;
        gap: 8px;
        margin-top: auto;
        padding-top: 14px;
        border-top: 1px solid rgba(205, 164, 56, 0.2);
    }

    .mobile-menu-footer a {
        min-height: 42px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        padding: 8px 10px;
        border-radius: 10px;
        border: 1px solid rgba(205, 164, 56, 0.25);
        background: rgba(205, 164, 56, 0.08);
        color: #f4d77b;
        font-size: 12.5px;
        font-weight: 700;
    }

    /* Services Section on Mobile: Compact, 2-lines, hide long bullet points */
    .services-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 14px !important;
    }

    .service-card {
        padding: 18px 12px !important;
        border-radius: 16px !important;
    }

    .service-icon {
        width: 48px !important;
        height: 48px !important;
        font-size: 20px !important;
        margin-bottom: 10px !important;
    }

    .service-title {
        font-size: 16px !important;
        margin-bottom: 6px !important;
    }

    .service-description {
        font-size: 12px !important;
        line-height: 1.4 !important;
        margin-bottom: 0 !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
    }

    .service-card .service-list {
        display: none !important;
    }

    /* Stats Section on Mobile: 2 Cards per row */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }

    .stat-item {
        padding: 20px 10px !important;
        border-radius: 14px !important;
    }

    .stat-icon {
        font-size: 32px !important;
        margin-bottom: 8px !important;
    }

    .stat-label {
        font-size: 15px !important;
        margin-bottom: 4px !important;
    }

    .stat-desc {
        font-size: 11.5px !important;
        line-height: 1.3 !important;
    }
}

@media (max-width: 480px) {
    .navbar .container { min-height: 84px; }
    .logo-container a { width: 74px; height: 74px; }
    .logo-container .logo { width: 68px !important; height: 68px !important; }
    .mobile-menu-toggle { inset-inline-start: 12px; width: 42px; height: 42px; }
    .nav-actions { inset-inline-end: 12px; gap: 5px; }
    .nav-icon-btn { width: 38px; height: 38px; font-size: 15px; }
    .services-grid { gap: 10px !important; }
    .service-card { padding: 15px 10px !important; }
    .service-title { font-size: 14.5px !important; }
    .stats-grid { gap: 10px !important; }
    .stat-item { padding: 16px 8px !important; }
    .stat-label { font-size: 14px !important; }
}

@media (max-width: 355px) {
    .nav-actions #wishlistBtn { display: none; }
    .logo-container a { width: 70px; height: 70px; }
    .logo-container .logo { width: 64px !important; height: 64px !important; }
}

/* ==========================================================================
   Horizontal Compact Contact Form
   ========================================================================== */
.horizontal-contact-section {
    padding: 70px 0;
    background: linear-gradient(180deg, #fbfaf7 0%, #f1eee4 100%);
}

.horizontal-contact-header {
    margin-bottom: 30px;
    text-align: center;
}

.horizontal-contact-card {
    max-width: 1080px;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid var(--brand-line, #e2d8c3);
    border-radius: 20px;
    box-shadow: 0 16px 40px rgba(18, 20, 22, 0.07);
    padding: 36px 40px;
}

.horizontal-form-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 24px;
}

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

.form-label-compact {
    font-size: 13px;
    font-weight: 600;
    color: #333;
}

.input-icon-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon-wrap i {
    position: absolute;
    inset-inline-start: 14px;
    color: #c9a961;
    font-size: 14px;
    pointer-events: none;
    z-index: 1;
}

.input-icon-wrap input,
.input-icon-wrap select {
    width: 100%;
    height: 48px;
    padding-inline-start: 40px;
    padding-inline-end: 14px;
    border: 1.5px solid #e0dbce;
    border-radius: 12px;
    background: #fdfdfc;
    font-size: 14px;
    font-family: inherit;
    color: #222;
    transition: all 0.25s ease;
}

.input-icon-wrap input:focus,
.input-icon-wrap select:focus {
    outline: none;
    border-color: #c9a961;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.15);
}

.horizontal-form-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #eee8dc;
}

.compact-checkbox {
    margin: 0;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: #444;
}

.btn-submit-compact {
    min-width: 180px;
    height: 50px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #c9a961 0%, #b89345 100%);
    color: #fff;
    border: none;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(184, 147, 69, 0.35);
    transition: all 0.3s ease;
}

.btn-submit-compact:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(184, 147, 69, 0.45);
}

@media (max-width: 900px) {
    .horizontal-form-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .horizontal-contact-card {
        padding: 24px 20px;
    }
    .horizontal-form-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .horizontal-form-bottom {
        flex-direction: column;
        align-items: stretch;
    }
    .btn-submit-compact {
        width: 100%;
    }
}

/* ==========================================================================
   Footer Banners
   ========================================================================== */
.footer-banners-wrapper {
    background: #111315;
    padding: 35px 0 35px;
    margin-top: 55px;
    border-bottom: 1px solid rgba(201, 169, 97, 0.15);
}

.footer-banner-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.footer-banner-grid .banner-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(201, 169, 97, 0.2);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.footer-banner-grid .banner-card:hover {
    transform: translateY(-4px);
    border-color: rgba(201, 169, 97, 0.5);
}

.footer-banner-grid .banner-icon {
    font-size: 28px;
    color: #f2d160;
    min-width: 52px;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 169, 97, 0.16);
    border: 1px solid rgba(201, 169, 97, 0.3);
    border-radius: 14px;
    flex-shrink: 0;
    filter: drop-shadow(0 0 8px rgba(242, 209, 96, 0.35));
    transition: filter 0.3s ease, transform 0.3s ease;
}

.footer-banner-grid .banner-card:hover .banner-icon {
    filter: drop-shadow(0 0 14px rgba(242, 209, 96, 0.6));
    transform: scale(1.08);
}

.footer-banner-grid .banner-content h3 {
    font-size: 16px;
    color: #fff;
    margin: 4px 0 6px;
    font-weight: 700;
}

.footer-banner-grid .banner-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    color: #f2d160;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-banner-grid .banner-content p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.72);
    margin: 0;
    line-height: 1.55;
}

@media (max-width: 900px) {
    .footer-banner-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Product Image Links & Brands Dropdown
   ========================================================================== */
.product-image-link {
    display: block;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.product-image-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover .product-image-link img {
    transform: scale(1.05);
}

.brands-dropdown {
    min-width: 220px;
}

.brands-dropdown li a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brands-dropdown li a i {
    color: #c9a961;
    font-size: 13px;
}

.nav-dropdown-icon {
    font-size: 10px;
    opacity: 0.7;
    margin-inline-start: 4px;
}

/* ==========================================================================
   Home Categories & Products Layout Refinement (Proper Spacing & Elegance)
   ========================================================================== */
.home-categories-section {
    padding: 70px 0 60px;
    background: #0f1113;
    border-bottom: 1px solid rgba(205, 164, 56, 0.15);
    position: relative;
    z-index: 2;
}

.home-categories-section .section-header {
    margin-bottom: 40px;
}

.home-categories-section .section-title {
    color: #fff;
}

.home-categories-section .section-description {
    color: rgba(255, 255, 255, 0.7);
}

.home-category-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.home-category-card {
    position: relative;
    min-height: 160px;
    border-radius: 18px;
    overflow: hidden;
    background: #181b1e;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 18px;
    text-decoration: none;
    color: #fff;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease, box-shadow 0.35s ease;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
}

.home-category-card:hover {
    transform: translateY(-6px);
    border-color: var(--brand-gold);
    box-shadow: 0 16px 36px rgba(201, 169, 97, 0.25);
}

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

.home-category-card:hover img {
    transform: scale(1.08);
}

.home-category-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(15, 17, 19, 0.15) 0%, rgba(15, 17, 19, 0.88) 100%);
    transition: background 0.3s ease;
}

.home-category-card:hover .home-category-overlay {
    background: linear-gradient(180deg, rgba(15, 17, 19, 0.1) 0%, rgba(15, 17, 19, 0.75) 100%);
}

.home-category-info {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.home-category-info .cat-name {
    font-size: 15px;
    font-weight: 800;
    line-height: 1.35;
    color: #fff;
}

.home-category-info .cat-count,
.home-category-info .cat-link-hint {
    font-size: 11px;
    color: var(--brand-gold-light);
    font-weight: 600;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 4px;
}

.home-category-card.all-card {
    background: linear-gradient(145deg, #1c1f22, #292d32);
    border-color: rgba(201, 169, 97, 0.3);
    justify-content: center;
    align-items: center;
    text-align: center;
}

.home-category-card.all-card .home-category-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(201, 169, 97, 0.15);
    color: var(--brand-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 10px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.home-category-card.all-card:hover .home-category-icon {
    transform: scale(1.1);
    background: var(--brand-gold);
    color: #111;
}

/* Home Products Section */
.home-products-section {
    padding: 85px 0 95px;
    background: #fdfbf7;
    position: relative;
}

.home-products-section .section-header {
    margin-bottom: 50px;
}

.home-products-section .shop-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
}

.home-products-section .product-card {
    background: #fff;
    border: 1px solid #ebe5d8;
    border-radius: 18px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
}

.home-products-section .product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(184, 147, 69, 0.14);
    border-color: rgba(184, 147, 69, 0.4);
}

@media (max-width: 1200px) {
    .home-category-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .home-products-section .shop-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 800px) {
    .home-category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .home-category-card {
        min-height: 130px;
        padding: 14px;
    }
    .home-products-section .shop-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .home-categories-section {
        padding: 50px 0 40px;
    }
    .home-products-section {
        padding: 60px 0 70px;
    }
}

@media (max-width: 520px) {
    .home-products-section .shop-grid {
        grid-template-columns: 1fr;
    }
}

