:root {
    --green-dark: #05504d;
    --green-mid: #0f6f6a;
    --green-soft: #1da67a;
    --white: #ffffff;
    --yellow: #e6c54a;
    --red: #c8322a;
    --text: #234049;
    --muted: #56676d;
    --bg: #f5f5f5;
    --border: #e7e7e7;
    --shadow-soft: 0 6px 18px rgba(0, 0, 0, 0.12);
    --shadow-image: 0 8px 18px rgba(0, 0, 0, 0.18);
    --radius: 4px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    direction: rtl;
    font-family: 'Cairo', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.9;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
.container { width: min(100% - 28px, 1120px); margin-inline: auto; }
.site-main { overflow: clip; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: rgba(245, 245, 245, 0.98);
}
.header-wrap {
    display: grid;
    grid-template-columns: 1fr 48px 1fr;
    align-items: center;
    gap: 10px;
    padding: 18px 0 10px;
}
.header-col-call { justify-self: start; }
.header-col-menu { justify-self: center; }
.header-col-brand { justify-self: end; }
.brand-logo { max-height: 46px; width: auto; }
.brand-text { color: var(--red); font-size: 1.1rem; font-weight: 800; }
.call-button {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--red);
    color: var(--white);
    border-radius: 999px;
    padding: 8px 14px;
    font-weight: 800;
    line-height: 1;
    box-shadow: 0 6px 16px rgba(200, 50, 42, 0.22);
}
.call-icon { font-size: 1rem; transform: rotate(35deg); }
.call-number { font-size: 0.95rem; direction: ltr; }
.menu-toggle {
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
}
.menu-toggle span {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: var(--green-mid);
}
.header-phone-row { display: none; }
.header-phone {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--white);
    border-radius: 999px;
    padding: 8px 14px;
    box-shadow: var(--shadow-soft);
    font-weight: 700;
}
.phone-code { color: var(--green-mid); }
.primary-nav {
    display: none;
    padding: 0 0 14px;
}
.primary-nav.is-open,
.primary-nav-inline { display: block; }
.menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}
.menu a {
    display: block;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 10px 12px;
    font-weight: 700;
}

.hero-section { padding: 26px 0 20px; }
.hero-layout { display: grid; gap: 18px; }
.hero-media-card {
    position: relative;
    width: min(100%, 250px);
    margin-inline: auto;
    padding: 18px;
}
.hero-media-frame {
    position: relative;
    z-index: 2;
    background: var(--white);
    padding: 8px;
    box-shadow: var(--shadow-image);
}
.hero-image,
.hero-placeholder {
    width: 100%;
    aspect-ratio: 1 / 1.08;
    object-fit: cover;
    background: #ddd;
}
.hero-placeholder {
    display: grid;
    place-items: center;
    color: var(--white);
    background: linear-gradient(135deg, #0d5d59, #c8a536);
    text-align: center;
    padding: 20px;
}
.hero-decor {
    position: absolute;
    pointer-events: none;
}
.hero-decor-dashed {
    top: 0;
    left: -2px;
    width: 98px;
    height: 118px;
    border: 2px dashed var(--yellow);
}
.hero-decor-dots {
    right: -8px;
    bottom: 6px;
    width: 88px;
    height: 88px;
    background-image: radial-gradient(rgba(5, 80, 77, 0.2) 1px, transparent 1px);
    background-size: 7px 7px;
}
.hero-copy {
    text-align: center;
    max-width: 560px;
    margin-inline: auto;
}
.flag-wrap {
    width: min(100%, 220px);
    margin: 0 auto 14px;
}
.flag-image { width: 100%; }
.hero-title {
    margin: 0;
    color: #0b6a8a;
    font-size: clamp(2rem, 6.7vw, 3rem);
    line-height: 1.15;
    font-weight: 800;
}
.hero-title-line {
    display: block;
    width: 86px;
    height: 4px;
    background: var(--yellow);
    margin: 12px auto 18px;
}
.hero-text {
    color: #49555b;
    font-size: 1rem;
}
.hero-text p { margin: 0 0 10px; }
.hero-features {
    display: grid;
    gap: 4px;
    justify-content: center;
    margin: 18px 0 20px;
}
.feature-item-simple {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 700;
    color: #33464d;
}
.feature-icon { color: #1d9f63; font-weight: 800; }
.hero-whatsapp-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #35c36c;
    color: var(--white);
    border-radius: 999px;
    padding: 8px 16px;
    font-weight: 800;
    box-shadow: 0 10px 16px rgba(53, 195, 108, 0.26);
}
.hero-whatsapp-icon { font-size: 0.95rem; }

.logos-section { padding: 6px 0 18px; }
.section-icons-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    text-align: center;
}
.section-icon-card {
    display: grid;
    gap: 6px;
    align-content: start;
    transition: transform .25s ease;
}
.section-icon-card:hover { transform: translateY(-3px); }
.section-icon-image {
    width: 40px;
    height: 40px;
    margin-inline: auto;
    display: grid;
    place-items: center;
}
.section-icon-image img { max-height: 40px; width: auto; }
.section-icon-fallback { font-size: 1.7rem; }
.section-icon-title {
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1.4;
    color: #6d3e25;
}

.products-section { padding: 12px 0 30px; }
.section-title-bar {
    background: var(--green-dark);
    color: var(--white);
    text-align: center;
    padding: 10px 16px;
    margin-bottom: 14px;
    box-shadow: var(--shadow-soft);
}
.section-title-bar h2 {
    margin: 0;
    font-size: 1.85rem;
    line-height: 1.2;
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}
.product-card {
    background: var(--white);
    border: 1px solid #dedede;
    box-shadow: 0 2px 9px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform .28s ease, box-shadow .28s ease;
}
.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 22px rgba(0,0,0,0.16);
}
.product-thumb-wrap {
    position: relative;
    display: block;
    overflow: hidden;
}
.product-thumb {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    transition: transform .4s ease;
}
.product-card:hover .product-thumb { transform: scale(1.08); }
.product-price-badge {
    position: absolute;
    left: 6px;
    bottom: 8px;
    background: #d62b22;
    color: #ffef5c;
    font-weight: 800;
    font-size: 0.78rem;
    line-height: 1;
    padding: 6px 7px;
    border-radius: 2px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.16);
}
.product-card-meta {
    padding: 6px 8px 10px;
    text-align: center;
}
.product-title {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.5;
    color: #8f7050;
}
.empty-products {
    grid-column: 1 / -1;
    background: var(--white);
    border: 1px solid var(--border);
    padding: 18px;
    text-align: center;
}

.site-footer {
    padding: 16px 0 80px;
    color: var(--muted);
    text-align: center;
    font-size: 0.92rem;
}
.whatsapp-float {
    position: fixed;
    right: 14px;
    bottom: 18px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #2fc15d;
    color: var(--white);
    box-shadow: 0 12px 25px rgba(47, 193, 93, 0.34);
    z-index: 50;
}
.whatsapp-float-icon { font-size: 1.45rem; }

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .55s ease, transform .55s ease;
}
.reveal.is-visible {
    opacity: 1;
    transform: none;
}

.screen-reader-text { position: absolute; width: 1px; height: 1px; overflow: hidden; }

@media (min-width: 768px) {
    .container { width: min(100% - 40px, 1180px); }
    .header-wrap { grid-template-columns: 1fr auto 1fr; padding-top: 22px; }
    .header-phone-row { display: block; padding-bottom: 8px; }
    .hero-layout { grid-template-columns: 320px 1fr; gap: 34px; align-items: center; }
    .hero-media-card { width: 100%; }
    .hero-copy { text-align: right; margin: 0; }
    .hero-title-line, .flag-wrap { margin-right: 0; margin-left: 0; }
    .hero-features { justify-content: start; }
    .feature-item-simple { justify-content: flex-start; }
    .section-icons-row { gap: 20px; }
    .section-icon-title { font-size: 1rem; }
    .products-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
    .section-title-bar h2 { font-size: 2rem; }
}
