/* =========================================================
   متجرك — Landing Page Styles (Vanilla CSS)
   ========================================================= */

:root {
    --primary: #16a34a; /* Cocktail Market green */
    --primary-dark: #0f7a38;
    --primary-light: #22c55e;
    --secondary: #065f46; /* deep emerald */
    --accent: #ef4444; /* logo red */
    --accent-warm: #f97316;

    --bg: #ffffff;
    --bg-muted: #f4f9f5;
    --bg-dark: #0b1a12;

    --text: #0f1f16;
    --text-soft: #4b5b52;
    --text-muted: #94a3b8;
    --border: #e5efe8;

    --radius-sm: 12px;
    --radius: 20px;
    --radius-lg: 24px;

    --shadow-sm: 0 4px 14px rgba(6, 78, 59, 0.08);
    --shadow: 0 10px 30px -12px rgba(6, 78, 59, 0.18);
    --shadow-lg: 0 24px 60px -20px rgba(22, 163, 74, 0.45);

    --grad-primary: linear-gradient(135deg, #16a34a 0%, #065f46 100%);
    --grad-accent: linear-gradient(135deg, #ef4444 0%, #f97316 100%);
    --grad-hero:
        radial-gradient(
            1200px 600px at 90% -10%,
            rgba(239, 68, 68, 0.16),
            transparent 60%
        ),
        radial-gradient(
            900px 500px at 10% 10%,
            rgba(22, 163, 74, 0.22),
            transparent 60%
        ),
        linear-gradient(180deg, #ffffff 0%, #f2fbf5 100%);

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============ Base ============ */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: "Cairo", system-ui, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img {
    max-width: 100%;
    display: block;
}
a {
    color: inherit;
    text-decoration: none;
}
ul {
    list-style: none;
}
button {
    font-family: inherit;
    cursor: pointer;
    border: 0;
    background: none;
}

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

section {
    scroll-margin-top: 90px;
}

/* ============ Buttons ============ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 15px;
    transition: all var(--transition);
    white-space: nowrap;
}
.btn-sm {
    padding: 9px 18px;
    font-size: 14px;
}
.btn-lg {
    padding: 15px 28px;
    font-size: 16px;
}
.btn-block {
    width: 100%;
    justify-content: center;
}
.btn-primary {
    background: var(--grad-primary);
    color: #fff;
    box-shadow: var(--shadow-lg);
}
.btn-primary:hover {
    transform: translateY(-2px);
    filter: brightness(1.06);
}
.btn-ghost {
    background: rgba(14, 165, 233, 0.08);
    color: var(--primary-dark);
    border: 1px solid rgba(14, 165, 233, 0.2);
}
.btn-ghost:hover {
    background: rgba(14, 165, 233, 0.14);
    transform: translateY(-2px);
}
.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}
.btn-outline:hover {
    background: rgba(22, 163, 74, 0.08);
    transform: translateY(-2px);
}

/* ============ Text helpers ============ */
.text-gradient {
    background: var(--grad-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.eyebrow {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(14, 165, 233, 0.1);
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 13px;
    margin-bottom: 14px;
}
.eyebrow.light {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}
.section-head {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 56px;
}
.section-head h2 {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 900;
    margin-bottom: 12px;
}
.section-head p {
    color: var(--text-soft);
    font-size: 17px;
}
.section-head h2.light,
.section-head p.light {
    color: #fff;
}

/* ============ Navbar ============ */
.navbar {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 100;
    background: transparent;
    transition: all var(--transition);
}
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(18px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 20px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo-img {
    height: 79px;
    width: auto;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 4px 10px rgba(22, 163, 74, 0.2));
    transition: transform var(--transition);
}
.logo:hover .logo-img {
    transform: scale(1.04);
}
.logo-img-footer {
    height: 50px;
    filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.4));
}
@media (max-width: 640px) {
    .logo-img {
        height: 70px;
    }
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}
.nav-links a {
    display: block;
    padding: 10px 14px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    color: var(--text-soft);
    transition: all var(--transition);
}
.nav-links a:hover {
    color: var(--primary-dark);
    background: rgba(22, 163, 74, 0.08);
}
.nav-links a.active {
    color: var(--primary-dark);
    background: rgba(22, 163, 74, 0.12);
}

.nav-cta {
    display: none;
}
@media (min-width: 992px) {
    .nav-cta {
        display: inline-flex;
    }
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 12px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: #fff;
}
.hamburger span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--text);
    border-radius: 2px;
    transition: 0.3s;
}
.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
    opacity: 0;
}
.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 991px) {
    .nav-links {
        position: fixed;
        top: 74px;
        right: 0;
        left: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        background: #fff;
        padding: 16px 20px;
        box-shadow: var(--shadow);
        transform: translateY(-120%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition);
    }
    .nav-links.open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    .nav-links a {
        padding: 14px 16px;
    }
}
@media (min-width: 992px) {
    .hamburger {
        display: none;
    }
}

/* ============ Hero ============ */
.hero {
    position: relative;
    overflow: hidden;
    padding: 140px 0 90px;
    background: var(--grad-hero);
}
.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.55;
    animation: float 12s ease-in-out infinite;
}
.blob-1 {
    width: 340px;
    height: 340px;
    background: #16a34a;
    top: -80px;
    right: -60px;
}
.blob-2 {
    width: 300px;
    height: 300px;
    background: #ef4444;
    bottom: -60px;
    left: -40px;
    animation-delay: -4s;
}
.blob-3 {
    width: 260px;
    height: 260px;
    background: #f97316;
    top: 40%;
    right: 40%;
    opacity: 0.3;
    animation-delay: -8s;
}
.shape {
    position: absolute;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.7);
    animation: float 8s ease-in-out infinite;
}
.shape-1 {
    width: 80px;
    height: 80px;
    top: 25%;
    left: 8%;
    transform: rotate(15deg);
}
.shape-2 {
    width: 60px;
    height: 60px;
    bottom: 25%;
    right: 6%;
    transform: rotate(-20deg);
    animation-delay: -3s;
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-24px) rotate(6deg);
    }
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
}
@media (min-width: 992px) {
    .hero-inner {
        grid-template-columns: 1.1fr 1fr;
        gap: 40px;
    }
}

.hero-copy .chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-dark);
    border: 1px solid rgba(22, 163, 74, 0.22);
    box-shadow: var(--shadow-sm);
    margin-bottom: 20px;
}
.hero-copy h1 {
    font-size: clamp(34px, 5.5vw, 60px);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
}
.hero-copy p {
    font-size: 18px;
    color: var(--text-soft);
    margin-bottom: 32px;
    max-width: 560px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 36px;
}
.hero-meta {
    display: flex;
    align-items: center;
    gap: 16px;
}
.avatars {
    display: flex;
}
.avatars img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 3px solid #fff;
    margin-left: -12px;
    object-fit: cover;
}
.avatars img:first-child {
    margin-left: 0;
}
.stars {
    color: var(--accent);
    font-weight: 700;
}
.stars b {
    color: var(--text);
    margin-right: 6px;
}
.hero-meta small {
    color: var(--text-soft);
    font-size: 13px;
}

/* Phone mockup */
.hero-visual {
    display: grid;
    place-items: center;
}
.phone {
    position: relative;
    width: 300px;
    height: 600px;
    border-radius: 44px;
    padding: 14px;
    background: linear-gradient(145deg, #1e293b, #0f172a);
    box-shadow:
        0 40px 80px -20px rgba(22, 163, 74, 0.5),
        0 20px 40px -10px rgba(0, 0, 0, 0.3);
    animation: float 6s ease-in-out infinite;
}
.phone-notch {
    position: absolute;
    top: 22px;
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 24px;
    border-radius: 999px;
    background: #0f172a;
    z-index: 3;
}
.phone img {
    width: 100%;
    height: 100%;
    border-radius: 32px;
    object-fit: cover;
}
.phone-badge {
    position: absolute;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    padding: 10px 14px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    animation: float 5s ease-in-out infinite;
}
.phone-badge i {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: var(--grad-primary);
    color: #fff;
}
.phone-badge b {
    display: block;
    font-size: 13px;
}
.phone-badge small {
    color: var(--text-soft);
    font-size: 11px;
}
.phone-badge-top {
    top: 20%;
    right: -50px;
    animation-delay: -1s;
}
.phone-badge-bottom {
    bottom: 8%;
    left: -60px;
    animation-delay: -3s;
}

@media (max-width: 640px) {
    .phone {
        width: 240px;
        height: 480px;
    }
    .phone-badge-top {
        right: -61px;
    }
    .phone-badge-bottom {
        left: -52px;
    }
}

/* ============ Sections ============ */
.section {
    padding: 90px 0;
}
.section-muted {
    background: var(--bg-muted);
}
.section-dark {
    background: linear-gradient(135deg, #052e1a 0%, #0f7a38 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

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

/* ============ Feature cards (About) ============ */
.feature-card {
    background: #fff;
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: all var(--transition);
}
.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 22px;
    margin-bottom: 20px;
}
.icon-primary {
    background: var(--grad-primary);
}
.icon-secondary {
    background: linear-gradient(135deg, #065f46, #16a34a);
}
.icon-accent {
    background: var(--grad-accent);
}
.feature-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 800;
}
.feature-card p {
    color: var(--text-soft);
}
.check-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 6px;
}
.check-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-soft);
}
.check-list i {
    color: var(--primary);
}

/* ============ App Features ============ */
#app-features .section-head {
    max-width: none;
}
#app-features .section-head h2 {
    white-space: nowrap;
}
@media (max-width: 575px) {
    #app-features .section-head h2 {
        font-size: clamp(18px, 4.5vw, 28px);
    }
}

/* ============ Stores Slider ============ */
.stores-slider {
    background: var(--bg-muted);
    border-radius: var(--radius-lg);
    padding: 40px 24px 28px;
}
.stores-slider-viewport {
    overflow: hidden;
}
.stores-slider-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}
.store-slide {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 0 14px;
    text-align: center;
}
.store-slide-logo {
    width: 200px;
    height: auto;
    margin: 0 auto 18px;
    display: grid;
    place-items: center;
    border: 2px solid #f3f2f2;
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
}
.store-slide-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 20px;
}
.store-slide h3 {
    color: var(--primary);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    /* margin-top: 120px; */
}
.store-slide p {
    color: var(--text-soft);
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.stores-slider .slider-dots {
    margin-top: 28px;
}
@media (max-width: 1199px) {
    .store-slide {
        flex-basis: 25%;
        max-width: 25%;
    }
}
@media (max-width: 991px) {
    .store-slide {
        flex-basis: 33.333%;
        max-width: 33.333%;
    }
    .store-slide-logo {
        width: 100px;
        height: 150px;
    }
}
@media (max-width: 767px) {
    .store-slide {
        flex-basis: 50%;
        max-width: 50%;
    }
}
@media (max-width: 575px) {
    .stores-slider {
        padding: 28px 12px 20px;
    }
    .store-slide {
        flex-basis: 100%;
        max-width: 100%;
    }
    .store-slide-logo {
        width: 250px;
        height: auto;
    }
}

/* ============ Videos ============ */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}
.video-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}
.video-card.is-hidden {
    display: none;
}
.video-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.video-media {
    position: relative;
    height: 180px;
    overflow: hidden;
    background: #000;
    cursor: pointer;
}
.video-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}
.video-play {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    background: rgba(0, 0, 0, 0.18);
    color: #fff;
    transition: background var(--transition);
}
.video-play i {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: var(--primary-dark);
    display: grid;
    place-items: center;
    font-size: 18px;
    padding-right: 3px;
    box-shadow: var(--shadow);
}
.video-card:hover .video-play {
    background: rgba(0, 0, 0, 0.28);
}
.video-duration {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.72);
    color: #fff;
    padding: 3px 8px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    direction: ltr;
}
.video-body {
    padding: 16px;
    text-align: center;
}
.video-body h3 {
    font-size: 16px;
    margin-bottom: 8px;
    font-weight: 800;
}
.video-body p {
    color: var(--text-soft);
    font-size: 14px;
    margin: 0;
}
.videos-more {
    display: flex;
    justify-content: center;
    margin-top: 36px;
}
.video-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    padding: 20px;
}
.video-modal[hidden] {
    display: none;
}
.video-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
}
.video-modal-dialog {
    position: relative;
    width: min(900px, 100%);
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 20px;
    box-shadow: var(--shadow-lg);
    z-index: 1;
}
.video-modal-close {
    position: absolute;
    top: 12px;
    left: 12px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.06);
    color: var(--text);
    display: grid;
    place-items: center;
    z-index: 2;
}
.video-modal-close:hover {
    background: rgba(0, 0, 0, 0.12);
}
.video-modal-dialog video {
    width: 100%;
    max-height: 70vh;
    border-radius: var(--radius-sm);
    background: #000;
    display: block;
}
.video-modal-dialog h3 {
    margin-top: 16px;
    font-size: 18px;
    text-align: center;
}
@media (max-width: 1199px) {
    .videos-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}
@media (max-width: 991px) {
    .videos-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 575px) {
    .videos-grid {
        grid-template-columns: 1fr;
    }
}

/* ============ Choose Us ============ */
#choose-us.section {
    padding: 64px 0;
}
#choose-us .section-head {
    margin-bottom: 44px;
}
#choose-us .section-head h2 {
    font-size: clamp(24px, 3vw, 34px);
}
#choose-us .section-head p {
    font-size: 16px;
}
.choose-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 32px 24px;
}
.choose-card {
    background: transparent;
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: start;
}
.choose-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    display: grid;
    place-items: center;
    transition: transform var(--transition);
}
.choose-card:hover .choose-icon {
    transform: translateY(-3px);
}
.choose-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}
.choose-body {
    min-width: 0;
}
.choose-card h3 {
    font-size: 18px;
    margin-bottom: 6px;
    font-weight: 800;
    color: var(--text);
}
.choose-card p {
    color: var(--text-soft);
    font-size: 14px;
    margin: 0;
    line-height: 1.6;
}
@media (max-width: 991px) {
    .choose-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 575px) {
    .choose-grid {
        grid-template-columns: 1fr;
    }
}

/* ============ Own Store ============ */
.own-store-banner {
    direction: ltr;
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, #0b4d2c 0%, #0f7a38 55%, #065f46 100%);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    overflow: hidden;
}
.own-store-media {
    display: grid;
    place-items: center;
}
.own-store-media img {
    width: 100%;
    max-width: 220px;
    height: auto;
    max-height: 200px;
    object-fit: contain;
}
.own-store-copy {
    direction: rtl;
    text-align: center;
    color: #fff;
}
.own-store-copy h2 {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 900;
    margin-bottom: 12px;
    color: #fff;
}
.own-store-copy p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 auto 22px;
    max-width: 420px;
}
.own-store-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #f5c242;
    color: #1a1a1a;
    font-weight: 800;
    font-size: 15px;
    padding: 12px 26px;
    border-radius: 999px;
    transition: all var(--transition);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}
.own-store-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.05);
}
.own-store-btn i {
    font-size: 13px;
}
@media (max-width: 991px) {
    .own-store-banner {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 32px 20px;
        gap: 16px;
    }
    .own-store-media img {
        max-width: 180px;
        max-height: 160px;
    }
    .own-store-left {
        order: 1;
    }
    .own-store-copy {
        order: 2;
    }
    .own-store-right {
        order: 3;
    }
}

/* ============ Trust Bar ============ */
.section-trust {
    padding: 24px 0 40px;
}
.trust-bar {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}
.trust-item {
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    position: relative;
}
.trust-item:not(:last-child)::after {
    content: "";
    position: absolute;
    inset-inline-end: 0;
    top: 18%;
    bottom: 18%;
    width: 1px;
    background: var(--border);
}
.trust-security {
    flex-direction: row;
    align-items: center;
    gap: 16px;
    text-align: start;
}
.trust-icon {
    position: relative;
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    color: var(--primary);
    display: grid;
    place-items: center;
}
.trust-icon .fa-shield {
    font-size: 44px;
    line-height: 1;
}
.trust-icon .fa-check {
    position: absolute;
    font-size: 14px;
    color: #fff;
    top: 52%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.trust-text {
    min-width: 0;
}
.trust-item h3 {
    font-size: 15px;
    font-weight: 800;
    color: var(--text);
    margin: 0;
}
.trust-item p {
    margin: 0;
    color: var(--text-soft);
    font-size: 13px;
    line-height: 1.6;
}
.trust-register {
    align-items: center;
    text-align: center;
}
.trust-number {
    font-size: 22px;
    font-weight: 900;
    color: var(--text);
    letter-spacing: 0.5px;
    direction: ltr;
}
.trust-maroof {
    align-items: center;
    text-align: center;
    gap: 12px;
}
.maroof-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.maroof-brand img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}
.maroof-brand span {
    font-weight: 800;
    font-size: 18px;
    color: #1d4ed8;
    letter-spacing: 1px;
}
.maroof-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(22, 163, 74, 0.35);
    color: var(--primary);
    background: rgba(22, 163, 74, 0.06);
    border-radius: 999px;
    padding: 5px 14px;
    font-size: 13px;
    font-weight: 700;
}
.maroof-badge i {
    font-size: 11px;
}
@media (max-width: 991px) {
    .trust-bar {
        grid-template-columns: 1fr;
    }
    .trust-item:not(:last-child)::after {
        inset: auto;
        left: 12%;
        right: 12%;
        top: auto;
        bottom: 0;
        width: auto;
        height: 1px;
    }
    .trust-security {
        justify-content: center;
    }
}

/* ============ Categories ============ */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 180px));
    gap: 20px;
    justify-content: start;
}
@media (max-width: 1199px) {
    .categories-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 180px));
    }
}
@media (max-width: 575px) {
    .categories-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .categories-grid .cat-card {
        max-width: none;
    }
}
.cat-card {
    width: 100%;
    max-width: 180px;
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}
.cat-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.cat-media {
    height: 110px;
    position: relative;
    overflow: hidden;
}
.cat-media img {
    width: 100%;
    height: 100%;
    object-fit: scale-down;
    transition: transform 0.5s;
}
.cat-card:hover .cat-media img {
    transform: scale(1.08);
}
.cat-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.25));
}
.cat-body {
    padding: 12px;
    text-align: center;
}
.cat-body h3 {
    font-size: 14px;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ============ Download ============ */
.download-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
}
@media (min-width: 992px) {
    .download-inner {
        grid-template-columns: 1fr 1.1fr;
    }
}
.download-visual img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
}
.download-copy h2 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 900;
    margin-bottom: 16px;
}
.download-copy p {
    color: var(--text-soft);
    font-size: 17px;
    margin-bottom: 28px;
}

.store-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
}
.store-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #0f172a;
    color: #fff;
    padding: 12px 20px;
    border-radius: var(--radius);
    transition: all var(--transition);
}
.store-btn:hover {
    transform: translateY(-3px);
    background: #1e293b;
}
.store-btn i {
    font-size: 26px;
}
.store-btn small {
    display: block;
    font-size: 11px;
    color: #94a3b8;
}
.store-btn b {
    display: block;
    font-size: 15px;
}
.store-btn-sm {
    padding: 10px 14px;
    font-size: 13px;
}
.store-btn-sm b {
    display: inline;
}

.qr-row {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    border-radius: var(--radius);
    background: var(--bg-muted);
    border: 1px dashed var(--border);
}
.qr img {
    width: 96px;
    height: 96px;
    border-radius: 12px;
    background: #fff;
    padding: 4px;
}
.qr-row p {
    color: var(--text-soft);
    font-size: 14px;
    margin-top: 4px;
}

/* ============ Stats ============ */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}
.stat {
    text-align: center;
    padding: 32px 20px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    transition: all var(--transition);
}
.stat:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.1);
}
.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    margin: 0 auto 16px;
    display: grid;
    place-items: center;
    background: var(--grad-primary);
    font-size: 22px;
}
.stat b {
    display: block;
    font-size: 44px;
    font-weight: 900;
    margin-bottom: 4px;
}
.stat span {
    color: #cbd5e1;
    font-weight: 600;
}

/* ============ Reviews slider ============ */
.slider {
    position: relative;
    max-width: 780px;
    margin: 0 auto;
    padding: 0 40px;
}
.slider-track {
    overflow: hidden;
    border-radius: var(--radius-lg);
}
.review-card {
    min-width: 100%;
    background: #fff;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: opacity 0.5s;
}
.review-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}
.review-head img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}
.review-head b {
    font-size: 17px;
}
.review-head .stars {
    display: block;
    font-size: 14px;
    color: var(--accent);
}
.review-head .stars .dim {
    opacity: 0.25;
}
.review-card p {
    color: var(--text-soft);
    font-size: 16px;
    line-height: 1.9;
}
.review-card::before {
    content: "\201C";
    font-size: 80px;
    color: var(--primary);
    opacity: 0.15;
    line-height: 0.5;
    display: block;
    font-family: serif;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    color: var(--primary-dark);
    box-shadow: var(--shadow);
    display: grid;
    place-items: center;
    transition: all var(--transition);
    z-index: 3;
}
.slider-btn:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-50%) scale(1.08);
}
.slider-btn.prev {
    right: 0;
}
.slider-btn.next {
    left: 0;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}
.slider-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border);
    transition: all var(--transition);
}
.slider-dots button.active {
    background: var(--primary);
    width: 28px;
    border-radius: 999px;
}

/* ============ FAQ ============ */
.faq {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.faq-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--transition);
}
.faq-item.open {
    border-color: var(--primary);
    box-shadow: var(--shadow);
}
.faq-q {
    width: 100%;
    text-align: right;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 22px;
    font-weight: 700;
    font-size: 16px;
    gap: 12px;
}
.faq-q i {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: rgba(22, 163, 74, 0.12);
    color: var(--primary-dark);
    transition: transform var(--transition);
    flex-shrink: 0;
}
.faq-item.open .faq-q i {
    transform: rotate(180deg);
    background: var(--primary);
    color: #fff;
}
.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    color: var(--text-soft);
}
.faq-a-inner {
    padding: 0 22px 22px;
}

/* ============ Contact ============ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}
@media (min-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr 1.4fr;
    }
}

.contact-info {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
}
.ci-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: var(--grad-primary);
    color: #fff;
    font-size: 18px;
    flex-shrink: 0;
}
.contact-item p {
    color: var(--text-soft);
    font-size: 14px;
}

.contact-form {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}
@media (min-width: 640px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}
.field label {
    display: block;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 8px;
}
.field input,
.field textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: 14px;
    font-family: inherit;
    font-size: 15px;
    transition:
        border var(--transition),
        box-shadow var(--transition);
    background: var(--bg-muted);
}
.field input:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.12);
    background: #fff;
}
.field textarea {
    resize: vertical;
}
.field.error input,
.field.error textarea {
    border-color: #ef4444;
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.12);
}
.err {
    display: block;
    color: #ef4444;
    font-size: 12px;
    margin-top: 6px;
    min-height: 14px;
}
.form-status {
    padding: 12px 16px;
    border-radius: 12px;
    font-weight: 600;
    display: none;
}
.form-status.success {
    display: block;
    background: #dcfce7;
    color: #166534;
}
.form-status.error {
    display: block;
    background: #fee2e2;
    color: #991b1b;
}

/* ============ Footer ============ */
.footer {
    background: #0b1a12;
    color: #cbd5e1;
    padding-top: 70px;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    padding-bottom: 40px;
}
.footer p {
    color: #94a3b8;
    margin: 16px 0 20px;
    font-size: 14px;
}
.footer h4 {
    color: #fff;
    margin-bottom: 18px;
    font-size: 17px;
}
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-links a {
    color: #cbd5e1;
    transition: color var(--transition);
    font-size: 14px;
}
.footer-links a:hover {
    color: var(--primary);
}
.socials {
    display: flex;
    gap: 10px;
}
.socials a {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.06);
    color: #cbd5e1;
    transition: all var(--transition);
}
.socials a:hover {
    background: var(--grad-primary);
    color: #fff;
    transform: translateY(-3px);
}
.footer-stores {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 22px 0;
    text-align: center;
    color: #94a3b8;
    font-size: 14px;
}

/* ============ Back to top ============ */
.back-to-top {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 60;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--grad-primary);
    color: #fff;
    display: grid;
    place-items: center;
    box-shadow: var(--shadow-lg);
    border: none;
    cursor: pointer;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    pointer-events: none;
    transition:
        opacity 0.45s ease,
        visibility 0.45s ease,
        transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}
.back-to-top.show:hover {
    transform: translateY(-4px);
}

/* ============ WhatsApp float ============ */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 60;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: grid;
    place-items: center;
    box-shadow: var(--shadow-lg);
    text-decoration: none;
    font-size: 28px;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}
.whatsapp-float:hover {
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
}

/* ============ Reveal animations ============ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============ Static pages (terms, privacy) ============ */
.static-page-content {
    color: var(--text);
    font-size: 16px;
    line-height: 1.85;
}
.static-page-content > *:first-child {
    margin-top: 0;
}
.static-page-content > *:last-child {
    margin-bottom: 0;
}
.static-page-content h1,
.static-page-content h2,
.static-page-content h3,
.static-page-content h4,
.static-page-content h5,
.static-page-content h6 {
    color: var(--text);
    font-weight: 800;
    line-height: 1.35;
    margin: 1.5em 0 0.65em;
}
.static-page-content h1 {
    font-size: 1.75rem;
}
.static-page-content h2 {
    font-size: 1.5rem;
}
.static-page-content h3 {
    font-size: 1.25rem;
}
.static-page-content p {
    margin: 0 0 1em;
    color: var(--text-soft);
}
.static-page-content ul,
.static-page-content ol {
    margin: 0 0 1em;
    padding-inline-start: 1.35em;
    color: var(--text-soft);
}
.static-page-content li {
    margin-bottom: 0.45em;
}
.static-page-content a {
    color: var(--primary);
    text-decoration: underline;
}
.static-page-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-md);
}
.static-page-content blockquote {
    margin: 1.25em 0;
    padding: 1em 1.25em;
    border-inline-start: 4px solid var(--primary);
    background: var(--bg-muted);
    border-radius: var(--radius-md);
    color: var(--text-soft);
}
.static-page-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.25em 0;
}
.static-page-content th,
.static-page-content td {
    border: 1px solid var(--border);
    padding: 10px 12px;
    text-align: start;
}

/* ============ Responsive tweaks ============ */
@media (max-width: 640px) {
    .section {
        padding: 60px 0;
    }
    .hero {
        padding: 120px 0 70px;
    }
    .stat b {
        font-size: 34px;
    }
    .review-card {
        padding: 28px 22px;
    }
    .slider {
        padding: 0 10px;
    }
    .slider-btn.prev {
        right: -6px;
    }
    .slider-btn.next {
        left: -6px;
    }
}

/* ============ Scroll indicator ============ */
.scroll-indicator {
    position: absolute;
    bottom: 26px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-soft);
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
    animation: bounce-y 2.4s ease-in-out infinite;
}
.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--primary);
    border-radius: 14px;
    display: grid;
    place-items: start center;
    padding-top: 6px;
}
.mouse .dot {
    width: 4px;
    height: 8px;
    border-radius: 2px;
    background: var(--primary);
    animation: dot-move 1.6s ease-in-out infinite;
}

.verification-info {
    margin: 0.5rem 0 1rem;
    font-size: 0.75rem;
    line-height: 1.4;
}

.verification-info p {
    margin: 0.15rem 0;
}

.verification-info strong {
    font-weight: 600;
}
.stores-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
@media (max-width: 992px) {
    .stores-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 576px) {
    .stores-grid {
        grid-template-columns: 1fr;
    }
}

.store-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}
.store-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

.store-card-media {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: #f2f2f2;
}
.store-card-media img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    display: block;
}
.store-card-media-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f0f0f0, #e4e4e4);
}

.store-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 999px;
    background: linear-gradient(135deg, #ff7a3d, #ff3b6b);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
}
.store-badge-icon {
    width: 14px;
    height: 14px;
}

.store-card-body {
    padding: 16px 20px;
}

.store-card-identity {
    display: flex;
    align-items: center;
    gap: 12px;
}

.store-logo {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #eee;
    background: #fff;
}
.store-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.store-card-info h3 {
    margin: 0 0 6px;
    font-size: 17px;
    font-weight: 700;
    color: #1a1a1a;
}

.store-rating {
    display: flex;
    align-items: center;
    gap: 5px;
}
.store-rating-star {
    width: 15px;
    height: 15px;
    color: #e0263d;
}
.store-rating-value {
    font-weight: 700;
    color: #e0263d;
    font-size: 14px;
}
.store-rating-label {
    color: #8a8a8a;
    font-size: 13px;
}
@keyframes dot-move {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(10px);
        opacity: 0;
    }
}
@keyframes bounce-y {
    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-6px);
    }
}
@media (max-width: 991px) {
    .scroll-indicator {
        display: none;
    }
}

/* Tighter nav spacing with more links */
@media (min-width: 992px) {
    .nav-links a {
        padding: 8px 10px;
        font-size: 14px;
    }
}
