:root {
    --primary: #146cf0;
    --primary-dark: #0f55bd;
    --primary-soft: #eaf2ff;
    --primary-glow: rgba(20, 108, 240, 0.16);
    --gold: #b68a35;
    --gold-soft: #fff7e4;
    --ink: #172033;
    --heading: #111827;
    --muted: #667085;
    --border: #e5eaf3;
    --surface: #ffffff;
    --surface-soft: #f7f9fd;
    --surface-warm: #fffaf1;
    --success: #169b6b;
    --danger: #e5484d;
    --warning: #b87900;
    --shadow-sm: 0 10px 25px rgba(17, 24, 39, 0.06);
    --shadow-md: 0 18px 45px rgba(17, 24, 39, 0.10);
    --shadow-lg: 0 28px 80px rgba(17, 24, 39, 0.14);
    --radius-sm: 14px;
    --radius-md: 22px;
    --radius-lg: 34px;
    --transition: 0.25s ease;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

html[dir="rtl"] body,
html[dir="rtl"] button,
html[dir="rtl"] input,
html[dir="rtl"] textarea,
html[dir="rtl"] select {
    font-family: "IBM Plex Sans Arabic", "IBM Plex Sans", Tahoma, Arial, sans-serif;
}

html[dir="ltr"] body,
html[dir="ltr"] button,
html[dir="ltr"] input,
html[dir="ltr"] textarea,
html[dir="ltr"] select {
    font-family: "IBM Plex Sans", "IBM Plex Sans Arabic", system-ui, sans-serif;
}

body {
    margin: 0;
    color: var(--ink);
    background:
        radial-gradient(circle at 12% 8%, rgba(20, 108, 240, 0.08), transparent 28%),
        radial-gradient(circle at 86% 0%, rgba(182, 138, 53, 0.08), transparent 26%),
        linear-gradient(180deg, #ffffff 0%, #f8fbff 42%, #ffffff 100%);
    line-height: 1.85;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

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

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

img,
svg,
video,
iframe {
    max-width: 100%;
}

img {
    display: block;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

.container {
    width: min(var(--container-width, 1180px), calc(100% - 40px));
    margin-inline: auto;
}

.section {
    padding: 86px 0;
    position: relative;
}

.section-white {
    background: rgba(255, 255, 255, 0.76);
}

.section-soft {
    background:
        radial-gradient(circle at 12% 12%, rgba(20, 108, 240, 0.08), transparent 28%),
        linear-gradient(135deg, #ffffff 0%, #f6f9ff 52%, #fffaf1 100%);
    border-block: 1px solid var(--border);
}

.section-luxury {
    background:
        radial-gradient(circle at 90% 10%, rgba(182, 138, 53, 0.10), transparent 30%),
        linear-gradient(135deg, #ffffff, #f8fbff);
}

.section-head {
    width: min(760px, 100%);
    margin: 0 auto 42px;
    text-align: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 34px;
    padding: 7px 14px;
    margin-bottom: 14px;
    color: var(--primary);
    background: var(--primary-soft);
    border: 1px solid #dbe9ff;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    box-shadow: 0 8px 20px rgba(20, 108, 240, 0.08);
}

.eyebrow::before,
.eyebrow::after {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: currentColor;
    opacity: 0.55;
}

.section-title,
.page-hero h1,
.hero-title {
    color: var(--heading);
    letter-spacing: -0.7px;
}

.section-title {
    margin: 0 0 12px;
    font-size: clamp(28px, 3.2vw, 46px);
    line-height: 1.25;
}

.section-text {
    max-width: 680px;
    margin: 0 auto;
    color: var(--muted);
}

.btn,
.btn-primary,
.btn-outline,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: var(--button-height, 48px);
    padding: 12px 22px;
    border-radius: var(--button-radius, 999px);
    border: 1px solid transparent;
    font-weight: 800;
    cursor: pointer;
    white-space: nowrap;
    transition: var(--transition);
}

.btn:hover,
.btn-primary:hover,
.btn-outline:hover,
.btn-secondary:hover {
    transform: translateY(-2px);
}

.btn-primary {
    color: #ffffff;
    background: linear-gradient(135deg, var(--primary), #5ba0ff);
    box-shadow: 0 15px 34px rgba(20, 108, 240, 0.26);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    box-shadow: 0 18px 40px rgba(20, 108, 240, 0.32);
}

.btn-outline,
.btn-secondary {
    color: var(--primary);
    background: #ffffff;
    border-color: var(--border);
    box-shadow: var(--shadow-sm);
}

.btn-outline:hover,
.btn-secondary:hover {
    background: var(--primary-soft);
    border-color: #cfe2ff;
}

.top-bar {
    position: relative;
    z-index: 1002;
    color: var(--muted);
    background: #ffffff;
    border-bottom: 1px solid var(--border);
    font-size: 13px;
}

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

.top-info {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.top-info span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.top-info i,
.social-mini a {
    width: 25px;
    height: 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: var(--primary-soft);
    border-radius: 999px;
    font-style: normal;
    font-weight: 800;
    font-size: 12px;
}

.social-mini,
.social-footer,
.contact-social-icons {
    display: flex;
    align-items: center;
    gap: 9px;
    flex-wrap: wrap;
}

.social-mini svg,
.social-footer svg,
.contact-social-icons svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.header {
    position: sticky;
    top: 0;
    z-index: 1001;
    background: rgba(255, 255, 255, 0.90);
    border-bottom: 1px solid rgba(229, 234, 243, 0.90);
    box-shadow: 0 10px 30px rgba(17, 24, 39, 0.04);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.header-inner {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.logo {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
}

.image-logo img {
    width: auto;
    height: 58px;
    max-width: 165px;
    object-fit: contain;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-inline: auto;
}

.nav > li {
    position: relative;
}

.nav > li > a {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 9px 13px;
    color: var(--muted);
    border-radius: 999px;
    font-weight: 800;
    font-size: 14px;
}

.nav > li:hover > a,
.nav > li.active > a {
    color: var(--primary);
    background: var(--primary-soft);
}

.dropdown-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
    background: transparent !important;
    box-shadow: none !important;
    border: 0 !important;
    color: currentColor;
    line-height: 1;
    font-size: 12px;
    margin-top: 1px;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    inset-inline-start: 0;
    min-width: 255px;
    display: grid;
    gap: 6px;
    padding: 12px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 22px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
}

.dropdown:hover .dropdown-menu,
.dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 11px 13px;
    color: var(--ink);
    background: #ffffff;
    border-radius: 15px;
    font-weight: 800;
}

.dropdown-menu a:hover {
    color: var(--primary);
    background: var(--surface-soft);
}

.dropdown-menu a span {
    min-width: 27px;
    height: 27px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: var(--primary-soft);
    border-radius: 999px;
    font-size: 12px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 9px;
    flex: 0 0 auto;
}

.icon-btn {
    width: 43px;
    height: 43px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: 15px;
    color: var(--primary);
    background: #ffffff;
    box-shadow: var(--shadow-sm);
    font-weight: 900;
}

.icon-btn:hover {
    color: #ffffff;
    background: var(--primary);
    border-color: var(--primary);
}

.lang-mini {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 4px;
    background: var(--surface-soft);
    border: 1px solid var(--border);
    border-radius: 999px;
}

.lang-mini a {
    min-width: 35px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
}

.lang-mini a.active,
.lang-mini a:hover {
    color: #ffffff;
    background: var(--primary);
}

.mobile-toggle {
    display: none;
}

.hero-slider {
    position: relative;
    min-height: 650px;
    overflow: hidden;
    background: linear-gradient(135deg, #ffffff, #eef5ff 58%, #fffaf1);
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.8s ease;
}

.hero-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.hero-slide > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.28;
    filter: saturate(1.04) contrast(1.02);
}

.hero-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(20, 108, 240, 0.10), transparent 32%),
        linear-gradient(90deg, rgba(255,255,255,0.96) 0%, rgba(255,255,255,0.86) 48%, rgba(255,255,255,0.52) 100%);
}

html[dir="rtl"] .hero-slide::after {
    background:
        radial-gradient(circle at 85% 20%, rgba(20, 108, 240, 0.10), transparent 32%),
        linear-gradient(270deg, rgba(255,255,255,0.96) 0%, rgba(255,255,255,0.86) 48%, rgba(255,255,255,0.52) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 84px 0;
}

.hero-box {
    width: min(700px, 100%);
    padding: 34px;
    border: 1px solid rgba(229, 234, 243, 0.86);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.site-brand-line,
.hero-label {
    display: inline-flex;
    align-items: center;
    width: max-content;
    max-width: 100%;
}

.site-brand-line {
    color: var(--gold);
    font-weight: 900;
    letter-spacing: 0.04em;
}

.hero-label {
    margin: 13px 0 10px;
    padding: 7px 13px;
    color: var(--primary);
    background: var(--primary-soft);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 900;
}

.hero-title {
    margin: 0 0 18px;
    font-size: clamp(38px, 5vw, 68px);
    line-height: 1.14;
}

.hero-text {
    max-width: 610px;
    margin: 0;
    color: var(--muted);
    font-size: 18px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.hero-dots {
    position: absolute;
    z-index: 4;
    left: 50%;
    bottom: 28px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
}

.hero-dot {
    width: 11px;
    height: 11px;
    border: 0;
    border-radius: 999px;
    background: #c8d3e3;
    transition: var(--transition);
}

.hero-dot.active {
    width: 34px;
    background: var(--primary);
}

.feature-strip {
    position: relative;
    z-index: 5;
    margin-top: -42px;
    padding-bottom: 36px;
}

.feature-grid,
.grid-3 {
    display: grid;
    gap: 22px;
}

.feature-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-item,
.category-card,
.product-card,
.article-card,
.review-box,
.info-card,
.contact-form,
.detail-panel,
.gallery,
.cart-box,
.checkout-box {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--border);
    border-radius: var(--card-radius, var(--radius-md));
    box-shadow: var(--shadow-sm);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: var(--primary-soft);
    border-radius: 17px;
    font-size: 20px;
    font-weight: 900;
}

.feature-item h4 {
    margin: 0 0 2px;
    color: var(--heading);
}

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

.grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.category-card,
.product-card,
.article-card {
    overflow: hidden;
    transition: var(--transition);
}

.category-card:hover,
.product-card:hover,
.article-card:hover,
.review-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.category-card > img,
.card-image img,
.article-image img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background: var(--surface-soft);
}

.category-content,
.card-body {
    padding: 22px;
}

.category-content h3,
.card-title {
    margin: 0 0 10px;
    color: var(--heading);
    font-size: 22px;
    line-height: 1.35;
}

.category-content p,
.card-desc {
    min-height: 54px;
    margin: 0 0 18px;
    color: var(--muted);
}

.card-image {
    position: relative;
    overflow: hidden;
    background: var(--surface-soft);
}

.card-image a {
    display: block;
}

.card-image img {
    transition: transform 0.45s ease;
}

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

.badge {
    position: absolute;
    z-index: 2;
    top: 14px;
    inset-inline-start: 14px;
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 5px 12px;
    color: var(--primary);
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid #dbe9ff;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    box-shadow: var(--shadow-sm);
}

.card-price,
.price {
    display: block;
    color: var(--primary);
    font-size: 22px;
    font-weight: 900;
}

.old-price {
    color: var(--muted);
    margin-inline-start: 8px;
    font-size: 0.82em;
    text-decoration: line-through;
    font-weight: 700;
}

.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.card-footer .btn {
    min-height: 42px;
    padding-inline: 16px;
    font-size: 14px;
}

.card-date {
    color: var(--muted);
    font-weight: 800;
    font-size: 14px;
}

.reviews-area {
    overflow: hidden;
}

.reviews-track {
    display: flex;
    transition: transform 0.35s ease;
}

.review-slide-card {
    min-width: 33.333%;
    padding: 0 10px;
}

.review-box {
    padding: 24px;
    height: 100%;
}

.review-text {
    margin: 0 0 22px;
    color: var(--ink);
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatar {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: linear-gradient(135deg, var(--primary), #5ba0ff);
    border-radius: 16px;
    font-weight: 900;
}

.stars {
    display: block;
    color: var(--gold);
    letter-spacing: 2px;
    line-height: 1.2;
}

.review-source {
    color: var(--muted);
    font-size: 13px;
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
}

.slider-arrow {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: 16px;
    color: var(--primary);
    background: #ffffff;
    box-shadow: var(--shadow-sm);
    font-size: 26px;
    font-weight: 900;
}

.slider-arrow:hover {
    color: #ffffff;
    background: var(--primary);
    border-color: var(--primary);
}

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 86px 0;
    color: var(--ink);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(247, 250, 255, 0.94)),
        radial-gradient(circle at 90% 15%, rgba(20, 108, 240, 0.10), transparent 32%),
        linear-gradient(135deg, #ffffff, #eef5ff);
    background-size: cover;
    background-position: center;
    border-bottom: 1px solid var(--border);
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.90), rgba(255,255,255,0.78)),
        radial-gradient(circle at 12% 18%, rgba(182, 138, 53, 0.10), transparent 28%);
    pointer-events: none;
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 9px;
    flex-wrap: wrap;
    margin-bottom: 16px;
    color: var(--muted);
    font-weight: 800;
}

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

.page-hero h1 {
    width: min(820px, 100%);
    margin: 0 0 14px;
    font-size: clamp(34px, 5vw, 60px);
    line-height: 1.15;
}

.page-hero p {
    width: min(740px, 100%);
    margin: 0;
    color: var(--muted);
    font-size: 18px;
}

.category-intro {
    margin-bottom: 26px;
    padding: 26px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.category-intro h2 {
    margin: 0 0 8px;
    color: var(--heading);
}

.category-intro p {
    margin: 0;
    color: var(--muted);
}

.filter-strip {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 26px;
}

.filter-strip a {
    padding: 10px 15px;
    color: var(--muted);
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 999px;
    font-weight: 800;
}

.filter-strip a:hover,
.filter-strip a.active {
    color: #ffffff;
    background: var(--primary);
    border-color: var(--primary);
}

.detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
    gap: 30px;
    align-items: start;
}

.gallery-block {
    display: grid;
    gap: 18px;
}

.gallery {
    padding: 16px;
}

.gallery-main img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 24px;
    cursor: zoom-in;
    background: var(--surface-soft);
}

.gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(82px, 1fr));
    gap: 10px;
    margin-top: 12px;
}

.gallery-thumbs button {
    border: 2px solid transparent;
    border-radius: 16px;
    padding: 3px;
    background: var(--surface-soft);
    overflow: hidden;
}

.gallery-thumbs button.active,
.gallery-thumbs button:hover {
    border-color: var(--primary);
}

.gallery-thumbs img {
    width: 100%;
    height: 76px;
    object-fit: cover;
    border-radius: 12px;
}

.detail-panel {
    padding: 28px;
    position: sticky;
    top: 110px;
}

.detail-panel h2 {
    margin: 4px 0 14px;
    color: var(--heading);
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.22;
}

.rich-content {
    color: var(--muted);
    margin: 22px 0;
}

.rich-content p {
    margin-top: 0;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.form-field,
.contact-form label,
.order-form label {
    display: grid;
    gap: 8px;
    color: var(--ink);
    font-weight: 800;
}

.form-field span {
    color: var(--ink);
}

input,
textarea,
select {
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    color: var(--ink);
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 16px;
    outline: none;
    transition: var(--transition);
}

textarea {
    resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
    border-color: rgba(20, 108, 240, 0.60);
    box-shadow: 0 0 0 4px rgba(20, 108, 240, 0.10);
}

.order-form,
.contact-form {
    display: grid;
    gap: 16px;
}

.product-action-strip,
.article-action-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
    padding: 18px;
    background: linear-gradient(135deg, #ffffff, var(--primary-soft));
    border: 1px solid #dbe9ff;
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
}

.related-section {
    padding: 72px 0;
    background: var(--surface-soft);
    border-top: 1px solid var(--border);
}

.article-panel {
    width: min(980px, 100%);
    margin: 0 auto;
}

.article-image {
    overflow: hidden;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    margin-bottom: 28px;
}

.article-image img {
    width: 100%;
    height: auto;
}

.article-comment-actions,
.share-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.share-actions span {
    color: var(--muted);
    font-weight: 900;
}

.share-actions a {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 14px;
    font-weight: 900;
    box-shadow: var(--shadow-sm);
}

.share-actions a:hover {
    color: #ffffff;
    background: var(--primary);
    border-color: var(--primary);
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
    gap: 28px;
    align-items: start;
}

.contact-form,
.contact-side,
.contact-social-box,
.map-box,
.cart-box,
.checkout-box {
    padding: 26px;
}

.contact-side {
    display: grid;
    gap: 20px;
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0;
}

.contact-info-grid {
    display: grid;
    gap: 14px;
}

.info-card {
    padding: 18px;
}

.info-card strong {
    display: block;
    color: var(--heading);
    margin-bottom: 6px;
}

.info-card p {
    margin: 0;
    color: var(--muted);
}

.contact-social-box {
    background: linear-gradient(135deg, #ffffff, #f6faff);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.contact-social-box h2 {
    margin: 8px 0 18px;
    color: var(--heading);
}

.contact-social-icons a,
.social-footer a {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: var(--primary-soft);
    border: 1px solid #dbe9ff;
    border-radius: 16px;
}

.contact-social-icons a:hover,
.social-footer a:hover {
    color: #ffffff;
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px);
}

.map-box {
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.map-box iframe {
    width: 100%;
    min-height: 380px;
    border: 0;
    border-radius: 18px;
}

.reviews-page-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.modal,
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 18px;
    background: rgba(17, 24, 39, 0.35);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.modal.active,
.lightbox.active {
    display: flex;
}

.modal-dialog {
    width: min(760px, 100%);
    max-height: calc(100vh - 36px);
    overflow-y: auto;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 28px;
    box-shadow: var(--shadow-lg);
}

.modal-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 22px;
    border-bottom: 1px solid var(--border);
}

.modal-head h3 {
    margin: 0;
    color: var(--heading);
}

.modal-body {
    padding: 22px;
}

.close-modal {
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 14px;
    color: var(--ink);
    background: var(--surface-soft);
    font-size: 24px;
    line-height: 1;
}

.close-modal:hover {
    color: #ffffff;
    background: var(--danger);
}

.comment-card {
    padding: 16px;
    margin-bottom: 12px;
    background: var(--surface-soft);
    border: 1px solid var(--border);
    border-radius: 18px;
}

.comment-card strong {
    display: block;
    color: var(--heading);
}

.comment-card p {
    margin: 6px 0 0;
    color: var(--muted);
}

.lightbox img {
    max-height: 86vh;
    max-width: min(1100px, 94vw);
    border-radius: 22px;
    box-shadow: var(--shadow-lg);
}

.lightbox .close-modal {
    position: absolute;
    top: 20px;
    inset-inline-end: 20px;
}

.empty-state {
    grid-column: 1 / -1;
    padding: 28px;
    color: var(--muted);
    background: #ffffff;
    border: 1px dashed #cfd8e8;
    border-radius: var(--radius-md);
    text-align: center;
    font-weight: 800;
}

.pagination-wrap {
    display: flex;
    justify-content: center;
    margin-top: 32px;
}

.pagination-wrap nav,
.pagination-wrap nav > div,
.pagination-wrap .flex {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    flex-wrap: wrap !important;
}

.pagination-wrap a,
.pagination-wrap span {
    min-width: 40px !important;
    height: 40px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 12px !important;
    margin: 0 !important;
    color: var(--primary) !important;
    background: #ffffff !important;
    border: 1px solid var(--border) !important;
    border-radius: 14px !important;
    box-shadow: var(--shadow-sm) !important;
    font-weight: 900 !important;
}

.pagination-wrap [aria-current="page"] span,
.pagination-wrap span[aria-current="page"] {
    color: #ffffff !important;
    background: var(--primary) !important;
    border-color: var(--primary) !important;
}

.premium-footer {
    padding: 58px 0 28px;
}

.footer-center {
    display: grid;
    justify-items: center;
    gap: 20px;
    text-align: center;
}

.footer-logo-img {
    max-width: 160px;
    max-height: 84px;
    object-fit: contain;
}

.footer-contact-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    width: 100%;
}

.footer-contact-card {
    padding: 16px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: var(--shadow-sm);
}

.footer-contact-card strong,
.footer-contact-card span {
    display: block;
}

.footer-contact-card span {
    color: var(--muted);
    margin-top: 4px;
}

.footer-line {
    width: 100%;
    height: 1px;
    background: var(--border);
}

.premium-footer p {
    margin: 0;
    color: var(--muted);
}

.wa-float {
    position: fixed;
    z-index: 2500;
    inset-inline-end: 22px;
    bottom: 22px;
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: #20b15a;
    border-radius: 20px;
    box-shadow: 0 18px 35px rgba(32, 177, 90, 0.28);
}

.wa-float svg {
    width: 30px;
    height: 30px;
    fill: currentColor;
}

.cart-box,
.checkout-box {
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 1180px) {
    .nav {
        gap: 2px;
    }

    .header-actions .btn-primary {
        display: none;
    }

    .feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .grid-3,
    .reviews-page-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .detail-grid,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .detail-panel {
        position: static;
    }
}

@media (max-width: 1024px) {
    .mobile-toggle {
        display: inline-flex;
    }

    .nav {
        position: fixed;
        top: 92px;
        inset-inline: 16px;
        z-index: 1200;
        display: none;
        flex-direction: column;
        align-items: stretch;
        max-height: calc(100vh - 110px);
        padding: 14px;
        overflow-y: auto;
        background: rgba(255, 255, 255, 0.98);
        border: 1px solid var(--border);
        border-radius: 24px;
        box-shadow: var(--shadow-lg);
    }

    .top-bar + .header .nav {
        top: 124px;
    }

    .nav.active {
        display: flex;
    }

    .nav > li > a {
        justify-content: space-between;
        width: 100%;
        border-radius: 16px;
        padding: 13px 14px;
    }

    .dropdown-menu {
        position: static;
        display: none;
        min-width: 0;
        margin: 6px 0 8px;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: var(--surface-soft);
        border-radius: 18px;
    }

    .dropdown.open .dropdown-menu {
        display: grid;
    }

    .review-slide-card {
        min-width: 50%;
    }
}

@media (max-width: 760px) {
    .container {
        width: min(100% - 24px, var(--container-width, 1180px));
    }

    .top-bar {
        display: none;
    }

    .header-inner {
        min-height: 72px;
    }

    .image-logo img {
        height: 50px;
        max-width: 138px;
    }

    .lang-mini {
        display: none;
    }

    .nav,
    .top-bar + .header .nav {
        top: 82px;
    }

    .hero-slider {
        min-height: 620px;
    }

    .hero-content {
        padding: 54px 0 86px;
    }

    .hero-box {
        padding: 24px;
        border-radius: 26px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-text,
    .page-hero p {
        font-size: 16px;
    }

    .hero-actions,
    .card-footer,
    .product-action-strip,
    .article-action-strip {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .btn,
    .card-footer .btn,
    .product-action-strip .btn,
    .article-action-strip .btn,
    .contact-form .btn,
    .order-form .btn {
        width: 100%;
    }

    .feature-strip {
        margin-top: 0;
        padding-top: 20px;
    }

    .section {
        padding: 58px 0;
    }

    .feature-grid,
    .grid-3,
    .reviews-page-grid,
    .form-grid,
    .footer-contact-cards {
        grid-template-columns: 1fr;
    }

    .category-card > img,
    .card-image img {
        height: 220px;
    }

    .review-slide-card {
        min-width: 100%;
    }

    .page-hero {
        padding: 58px 0;
    }

    .page-hero h1 {
        font-size: 34px;
    }

    .gallery-main img {
        height: 360px;
    }

    .contact-form,
    .contact-social-box,
    .map-box,
    .detail-panel,
    .cart-box,
    .checkout-box {
        padding: 20px;
        border-radius: 22px;
    }

    .modal {
        padding: 10px;
    }

    .modal-dialog {
        border-radius: 22px;
    }
}

@media (max-width: 460px) {
    .header-actions {
        gap: 6px;
    }

    .icon-btn {
        width: 40px;
        height: 40px;
        border-radius: 13px;
    }

    .hero-title {
        font-size: 31px;
    }

    .section-title,
    .page-hero h1 {
        font-size: 29px;
    }

    .feature-item {
        align-items: flex-start;
    }

    .category-card > img,
    .card-image img {
        height: 190px;
    }

    .gallery-main img {
        height: 280px;
    }
}


/* ===== Phase 14 premium public UI fixes ===== */
:root {
    --hero-bg: url('https://images.unsplash.com/photo-1513519245088-0e12902e5a38?auto=format&fit=crop&w=1800&q=80');
}

html[dir="rtl"] body,
html[dir="rtl"] button,
html[dir="rtl"] input,
html[dir="rtl"] textarea,
html[dir="rtl"] select,
html[dir="rtl"] a {
    font-family: "IBM Plex Sans Arabic", "IBM Plex Sans", Tahoma, Arial, sans-serif !important;
}

html[dir="ltr"] body,
html[dir="ltr"] button,
html[dir="ltr"] input,
html[dir="ltr"] textarea,
html[dir="ltr"] select,
html[dir="ltr"] a {
    font-family: "IBM Plex Sans", "IBM Plex Sans Arabic", system-ui, sans-serif !important;
}

h1,
.hero-title,
.page-hero h1 {
    font-size: clamp(30px, 4vw, 48px) !important;
    line-height: 1.16 !important;
}

h2,
.section-title,
.detail-panel h2,
.contact-social-box h2 {
    font-size: clamp(23px, 2.5vw, 34px) !important;
    line-height: 1.22 !important;
}

h3,
.category-content h3,
.card-title,
.modal-head h3 {
    font-size: clamp(18px, 1.6vw, 21px) !important;
    line-height: 1.35 !important;
}

.top-bar {
    background: linear-gradient(90deg, #ffffff, #f8fbff);
}

.header {
    top: 0;
    background: rgba(255,255,255,.94);
    box-shadow: 0 14px 34px rgba(17,24,39,.07);
}

.header-inner {
    min-height: 78px;
}

.nav {
    gap: 7px;
    padding: 7px;
    border: 1px solid rgba(229,234,243,.86);
    border-radius: 999px;
    background: rgba(255,255,255,.82);
    box-shadow: 0 12px 30px rgba(17,24,39,.05);
}

.nav > li > a {
    min-height: 40px;
    padding: 9px 14px;
    color: #344054;
}

.nav > li:hover > a,
.nav > li.active > a,
.nav > li.dropdown.open > a {
    color: #fff;
    background: linear-gradient(135deg, var(--primary), #5ba0ff);
    box-shadow: 0 12px 24px rgba(20,108,240,.18);
}

.dropdown-menu {
    min-width: 285px;
    max-height: min(70vh, 460px);
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-width: thin;
    border-radius: 24px;
    padding: 10px;
}

.dropdown-menu a {
    border: 1px solid transparent;
}

.dropdown-menu a:hover {
    border-color: #dbe9ff;
    background: linear-gradient(135deg, #ffffff, var(--primary-soft));
}

.nav-backdrop {
    position: fixed;
    inset: 0;
    z-index: 1190;
    display: none;
    background: rgba(17,24,39,.18);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

body.menu-open .nav-backdrop {
    display: block;
}

.hero-slider {
    min-height: 640px;
    background: #f8fbff;
}

.hero-slide > img {
    opacity: 1 !important;
    filter: saturate(1.04) contrast(1.02) brightness(.96);
}

.hero-slide::after {
    background:
        radial-gradient(circle at 16% 22%, rgba(20,108,240,.16), transparent 32%),
        linear-gradient(90deg, rgba(255,255,255,.90) 0%, rgba(255,255,255,.78) 45%, rgba(255,255,255,.24) 100%) !important;
}

html[dir="rtl"] .hero-slide::after {
    background:
        radial-gradient(circle at 84% 22%, rgba(20,108,240,.16), transparent 32%),
        linear-gradient(270deg, rgba(255,255,255,.90) 0%, rgba(255,255,255,.78) 45%, rgba(255,255,255,.24) 100%) !important;
}

.hero-box {
    max-width: 650px;
    background: rgba(255,255,255,.72);
    border-color: rgba(255,255,255,.72);
    box-shadow: 0 30px 90px rgba(17,24,39,.16);
}

.page-hero {
    --hero-bg: url('https://images.unsplash.com/photo-1513519245088-0e12902e5a38?auto=format&fit=crop&w=1800&q=80');
    min-height: 320px;
    display: flex;
    align-items: center;
    padding: 76px 0;
    background-image:
        linear-gradient(135deg, rgba(15,32,63,.34), rgba(20,108,240,.18)),
        var(--hero-bg) !important;
    background-size: cover !important;
    background-position: center !important;
    color: #ffffff;
}

.page-hero-about { --hero-bg: url('https://images.unsplash.com/photo-1523413651479-597eb2da0ad6?auto=format&fit=crop&w=1800&q=80'); }
.page-hero-contact { --hero-bg: url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1800&q=80'); }
.page-hero-products { --hero-bg: url('https://images.unsplash.com/photo-1610701596007-11502861dcfa?auto=format&fit=crop&w=1800&q=80'); }
.page-hero-blog { --hero-bg: url('https://images.unsplash.com/photo-1455390582262-044cdead277a?auto=format&fit=crop&w=1800&q=80'); }
.page-hero-cart,
.page-hero-checkout { --hero-bg: url('https://images.unsplash.com/photo-1512436991641-6745cdb1723f?auto=format&fit=crop&w=1800&q=80'); }
.page-hero-reviews { --hero-bg: url('https://images.unsplash.com/photo-1556742049-0cfed4f6a45d?auto=format&fit=crop&w=1800&q=80'); }

.page-hero::before {
    background: linear-gradient(135deg, rgba(255,255,255,.10), rgba(255,255,255,.02)) !important;
}

.page-hero .container {
    width: min(920px, calc(100% - 40px));
    margin-inline: auto;
    padding: 26px 30px;
    border: 1px solid rgba(255,255,255,.34);
    border-radius: 30px;
    background: rgba(255,255,255,.22);
    box-shadow: 0 24px 70px rgba(17,24,39,.22);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.page-hero h1 {
    width: min(760px, 100%);
    margin: 0;
    color: #fff !important;
    text-shadow: 0 10px 30px rgba(17,24,39,.26);
}

.page-hero p,
.category-intro {
    display: none !important;
}

.page-hero .breadcrumbs {
    color: rgba(255,255,255,.84);
}

.page-hero .breadcrumbs a {
    color: #ffffff;
}

.article-panel {
    width: min(1180px, 100%) !important;
    padding: 30px;
}

.article-image img {
    width: 100%;
    height: min(560px, 56vw);
    min-height: 360px;
    object-fit: cover;
    border-radius: 24px;
}

.rich-content {
    font-size: 17px;
    line-height: 2;
}

.contact-layout {
    grid-template-columns: minmax(0, 1fr) minmax(360px, .8fr);
}

.luxury-contact-cards {
    gap: 16px;
}

.contact-method-card {
    position: relative;
    display: flex !important;
    align-items: flex-start;
    gap: 14px;
    padding: 20px !important;
    overflow: hidden;
    background: linear-gradient(135deg, #ffffff, #f7fbff) !important;
    border: 1px solid #dfe8f5 !important;
    border-radius: 24px !important;
    box-shadow: 0 16px 36px rgba(17,24,39,.07) !important;
}

.contact-method-card::after {
    content: "";
    position: absolute;
    inset-inline-end: -28px;
    bottom: -32px;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(20,108,240,.13), transparent 68%);
}

.contact-card-icon {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), #5ba0ff);
    border-radius: 16px;
    box-shadow: 0 12px 26px rgba(20,108,240,.22);
    font-weight: 900;
}

.contact-method-card strong {
    margin: 0 0 4px;
}

.luxury-social-box {
    padding: 22px !important;
    background: linear-gradient(135deg, #ffffff, #f8fbff) !important;
}

.luxury-social-box .contact-social-icons {
    justify-content: center;
}

.luxury-social-box .contact-social-icons a {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: var(--shadow-sm);
}

.share-wa svg,
.wa-float svg,
.contact-social-icons svg,
.social-footer svg,
.social-mini svg {
    display: block;
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.wa-float {
    background: #25d366 !important;
    border-radius: 18px;
}

@media (max-width: 1024px) {
    .nav {
        top: 92px;
        inset-inline: 16px;
        z-index: 1200;
        display: none;
        padding: 14px;
        border-radius: 26px;
        background: rgba(255,255,255,.98);
        box-shadow: 0 28px 80px rgba(17,24,39,.18);
        max-height: calc(100vh - 116px);
        overflow-y: auto;
    }

    .nav.active {
        display: flex;
    }

    .nav > li > a {
        color: #243044;
        background: #fff;
        border: 1px solid var(--border);
    }

    .nav > li:hover > a,
    .nav > li.active > a,
    .nav > li.dropdown.open > a {
        color: var(--primary);
        background: var(--primary-soft);
        box-shadow: none;
    }

    .dropdown-menu {
        max-height: 310px;
        overflow-y: auto;
        border: 1px solid #e3edf9;
        background: #f8fbff;
    }
}

@media (max-width: 760px) {
    h1,
    .hero-title,
    .page-hero h1 {
        font-size: 30px !important;
    }

    h2,
    .section-title,
    .detail-panel h2 {
        font-size: 25px !important;
    }

    .page-hero {
        min-height: 250px;
        padding: 54px 0;
    }

    .page-hero .container {
        width: min(100% - 24px, 920px);
        padding: 20px;
        border-radius: 24px;
    }

    .article-panel {
        padding: 20px;
    }

    .article-image img {
        height: 340px;
        min-height: 280px;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 460px) {
    .hero-slider {
        min-height: 570px;
    }

    .hero-box {
        padding: 20px;
    }

    h1,
    .hero-title,
    .page-hero h1 {
        font-size: 28px !important;
    }
}

/* ===== Phase 15 final public UI corrections ===== */
:root {
    --primary: #146cf0;
    --primary-soft: #eaf2ff;
    --ink: #172033;
    --heading: #101828;
    --muted: #667085;
    --border: #dfe8f5;
    --shadow-sm: 0 12px 30px rgba(16, 24, 40, 0.06);
    --shadow-md: 0 20px 55px rgba(16, 24, 40, 0.10);
}

html[dir="rtl"] body,
html[dir="rtl"] button,
html[dir="rtl"] input,
html[dir="rtl"] textarea,
html[dir="rtl"] select,
html[dir="rtl"] a,
html[dir="rtl"] p,
html[dir="rtl"] h1,
html[dir="rtl"] h2,
html[dir="rtl"] h3,
html[dir="rtl"] h4,
html[dir="rtl"] h5,
html[dir="rtl"] h6 {
    font-family: "IBM Plex Sans Arabic", "IBM Plex Sans", Tahoma, Arial, sans-serif !important;
}

html[dir="ltr"] body,
html[dir="ltr"] button,
html[dir="ltr"] input,
html[dir="ltr"] textarea,
html[dir="ltr"] select,
html[dir="ltr"] a,
html[dir="ltr"] p,
html[dir="ltr"] h1,
html[dir="ltr"] h2,
html[dir="ltr"] h3,
html[dir="ltr"] h4,
html[dir="ltr"] h5,
html[dir="ltr"] h6 {
    font-family: "IBM Plex Sans", "IBM Plex Sans Arabic", system-ui, sans-serif !important;
}

h1,
.hero-title,
.page-hero h1 {
    font-size: clamp(26px, 3.2vw, 42px) !important;
    line-height: 1.18 !important;
    letter-spacing: -0.35px !important;
}

h2,
.section-title,
.detail-panel h2,
.contact-social-box h2 {
    font-size: clamp(21px, 2vw, 30px) !important;
    line-height: 1.25 !important;
}

h3,
.category-content h3,
.card-title,
.modal-head h3,
.info-card h3 {
    font-size: clamp(17px, 1.35vw, 19px) !important;
    line-height: 1.35 !important;
}

.header {
    top: 0 !important;
    z-index: 1500 !important;
    background: rgba(255, 255, 255, 0.96) !important;
    border-bottom: 1px solid rgba(223, 232, 245, 0.95) !important;
    box-shadow: 0 16px 42px rgba(16, 24, 40, 0.07) !important;
}

.header-inner {
    min-height: 78px !important;
}

.nav-backdrop {
    display: none !important;
    pointer-events: none !important;
}

.nav {
    position: static !important;
    z-index: 1520 !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 6px !important;
    max-height: none !important;
    padding: 6px !important;
    overflow: visible !important;
    border: 1px solid rgba(223, 232, 245, 0.95) !important;
    border-radius: 999px !important;
    background: rgba(255, 255, 255, 0.88) !important;
    box-shadow: 0 12px 32px rgba(16, 24, 40, 0.06) !important;
}

.nav > li > a {
    min-height: 40px !important;
    padding: 9px 14px !important;
    color: #344054 !important;
    border: 0 !important;
    border-radius: 999px !important;
    background: transparent !important;
}

.nav > li:hover > a,
.nav > li.active > a,
.nav > li.dropdown.open > a {
    color: #ffffff !important;
    background: linear-gradient(135deg, var(--primary), #5ba0ff) !important;
    box-shadow: 0 12px 24px rgba(20, 108, 240, 0.18) !important;
}

.dropdown-menu {
    top: calc(100% + 14px) !important;
    min-width: 300px !important;
    max-height: min(62vh, 430px) !important;
    padding: 10px !important;
    overflow-y: auto !important;
    overscroll-behavior: contain !important;
    border: 1px solid var(--border) !important;
    border-radius: 24px !important;
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 28px 80px rgba(16, 24, 40, 0.14) !important;
    scrollbar-width: thin !important;
}

.dropdown-menu a {
    min-height: 46px;
    padding: 11px 13px !important;
    border: 1px solid transparent !important;
    border-radius: 16px !important;
    color: #243044 !important;
}

.dropdown-menu a:hover {
    color: var(--primary) !important;
    border-color: #dbe9ff !important;
    background: linear-gradient(135deg, #ffffff, var(--primary-soft)) !important;
}

.hero-slider {
    min-height: 610px !important;
    background: #f8fbff !important;
}

.hero-slide > img {
    opacity: 1 !important;
    filter: saturate(1.06) contrast(1.04) brightness(.93) !important;
}

.hero-slide::after {
    background:
        radial-gradient(circle at 18% 24%, rgba(20, 108, 240, .18), transparent 32%),
        linear-gradient(90deg, rgba(255, 255, 255, .92) 0%, rgba(255, 255, 255, .78) 45%, rgba(255, 255, 255, .18) 100%) !important;
}

html[dir="rtl"] .hero-slide::after {
    background:
        radial-gradient(circle at 82% 24%, rgba(20, 108, 240, .18), transparent 32%),
        linear-gradient(270deg, rgba(255, 255, 255, .92) 0%, rgba(255, 255, 255, .78) 45%, rgba(255, 255, 255, .18) 100%) !important;
}

.hero-box {
    max-width: 610px !important;
    padding: 28px !important;
    background: rgba(255, 255, 255, 0.76) !important;
    border: 1px solid rgba(255, 255, 255, 0.72) !important;
    box-shadow: 0 30px 90px rgba(16, 24, 40, 0.16) !important;
}

.hero-text {
    font-size: 16px !important;
}

.page-hero {
    min-height: 300px !important;
    padding: 68px 0 !important;
    background-image:
        linear-gradient(135deg, rgba(10, 22, 42, .40), rgba(20, 108, 240, .20)),
        var(--hero-bg) !important;
    background-size: cover !important;
    background-position: center !important;
}

.page-hero::before {
    background: linear-gradient(135deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .02)) !important;
}

.page-hero .container {
    width: min(900px, calc(100% - 40px)) !important;
    margin-inline: auto !important;
    padding: 24px 28px !important;
    border-radius: 28px !important;
    border: 1px solid rgba(255, 255, 255, .34) !important;
    background: rgba(255, 255, 255, .20) !important;
    box-shadow: 0 24px 70px rgba(16, 24, 40, .22) !important;
    backdrop-filter: blur(14px) !important;
    -webkit-backdrop-filter: blur(14px) !important;
}

.page-hero p,
.category-intro {
    display: none !important;
}

.page-hero h1 {
    margin: 0 !important;
    color: #ffffff !important;
    text-shadow: 0 10px 30px rgba(16, 24, 40, .28) !important;
}

.page-hero .breadcrumbs {
    margin-bottom: 12px !important;
    color: rgba(255, 255, 255, .86) !important;
}

.page-hero .breadcrumbs a {
    color: #ffffff !important;
}

.article-detail-container {
    width: min(1320px, calc(100% - 40px)) !important;
}

.article-panel {
    width: 100% !important;
    max-width: none !important;
    padding: 32px !important;
}

.article-image img {
    width: 100% !important;
    height: min(600px, 54vw) !important;
    min-height: 380px !important;
    object-fit: cover !important;
    border-radius: 24px !important;
}

.rich-content {
    font-size: 16px !important;
    line-height: 1.95 !important;
}

.contact-layout {
    grid-template-columns: minmax(0, 1fr) minmax(360px, .78fr) !important;
    gap: 30px !important;
}

.contact-form,
.contact-social-box,
.contact-method-card,
.map-box {
    border-radius: 26px !important;
    box-shadow: 0 18px 45px rgba(16, 24, 40, .07) !important;
}

.contact-method-card {
    display: flex !important;
    align-items: flex-start !important;
    gap: 15px !important;
    padding: 22px !important;
    background: linear-gradient(135deg, #ffffff, #f7fbff) !important;
    border: 1px solid var(--border) !important;
}

.contact-card-icon {
    width: 50px !important;
    height: 50px !important;
    flex: 0 0 50px !important;
    border-radius: 17px !important;
}

.luxury-social-box {
    padding: 24px !important;
    background: linear-gradient(135deg, #ffffff, #f8fbff) !important;
}

.contact-social-icons {
    justify-content: center !important;
    gap: 12px !important;
}

.contact-social-icons a,
.social-footer a {
    width: 52px !important;
    height: 52px !important;
    border-radius: 18px !important;
    background: #ffffff !important;
    box-shadow: var(--shadow-sm) !important;
}

.contact-social-icons a:hover,
.social-footer a:hover {
    color: #ffffff !important;
    background: var(--primary) !important;
}

.wa-float {
    width: 58px !important;
    height: 58px !important;
    border-radius: 50% !important;
    color: #ffffff !important;
    background: #25d366 !important;
    box-shadow: 0 18px 40px rgba(37, 211, 102, .32) !important;
}

.wa-float svg,
.share-wa svg,
.contact-social-icons svg,
.social-footer svg,
.social-mini svg {
    display: block !important;
    width: 23px !important;
    height: 23px !important;
    fill: currentColor !important;
}

@media (max-width: 1100px) {
    .mobile-toggle {
        display: inline-flex !important;
    }

    .nav {
        position: fixed !important;
        top: 88px !important;
        inset-inline: 16px !important;
        z-index: 1700 !important;
        display: none !important;
        flex-direction: column !important;
        align-items: stretch !important;
        max-height: calc(100vh - 108px) !important;
        overflow-y: auto !important;
        padding: 14px !important;
        border-radius: 26px !important;
        background: rgba(255, 255, 255, .98) !important;
        box-shadow: 0 30px 90px rgba(16, 24, 40, .18) !important;
    }

    .top-bar + .header .nav {
        top: 124px !important;
        max-height: calc(100vh - 144px) !important;
    }

    .nav.active {
        display: flex !important;
    }

    body.menu-open .nav-backdrop {
        display: block !important;
        pointer-events: auto !important;
        background: rgba(16, 24, 40, .18) !important;
        backdrop-filter: blur(6px) !important;
        -webkit-backdrop-filter: blur(6px) !important;
    }

    .nav > li > a {
        width: 100% !important;
        justify-content: space-between !important;
        color: #243044 !important;
        background: #ffffff !important;
        border: 1px solid var(--border) !important;
        border-radius: 16px !important;
        box-shadow: none !important;
    }

    .nav > li:hover > a,
    .nav > li.active > a,
    .nav > li.dropdown.open > a {
        color: var(--primary) !important;
        background: var(--primary-soft) !important;
        box-shadow: none !important;
    }

    .dropdown-menu {
        position: static !important;
        display: none !important;
        min-width: 0 !important;
        max-height: 330px !important;
        margin: 8px 0 !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        background: #f8fbff !important;
        box-shadow: none !important;
    }

    .dropdown.open .dropdown-menu {
        display: grid !important;
    }

    .contact-layout {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 760px) {
    h1,
    .hero-title,
    .page-hero h1 {
        font-size: 28px !important;
    }

    h2,
    .section-title,
    .detail-panel h2 {
        font-size: 23px !important;
    }

    h3,
    .category-content h3,
    .card-title,
    .modal-head h3,
    .info-card h3 {
        font-size: 18px !important;
    }

    .nav,
    .top-bar + .header .nav {
        top: 82px !important;
        max-height: calc(100vh - 98px) !important;
    }

    .hero-slider {
        min-height: 560px !important;
    }

    .hero-box {
        padding: 20px !important;
    }

    .page-hero {
        min-height: 240px !important;
        padding: 48px 0 !important;
    }

    .page-hero .container,
    .article-detail-container {
        width: min(100% - 24px, 1320px) !important;
    }

    .page-hero .container {
        padding: 19px !important;
        border-radius: 22px !important;
    }

    .article-panel {
        padding: 20px !important;
    }

    .article-image img {
        height: 330px !important;
        min-height: 260px !important;
    }
}
