/* ===== SMMKHA Custom CSS ===== */
:root {
    --font-main: 'PingARLT';
    --font-secondary: 'PingARLT';
    --color-primary: #4a75f4;
    --color-primary-dark: #244fce;
    --color-primary-light: #709bff;
    --color-primary-reverse: #ffffff;
    --dark-bg-main: #072f5a;
    --dark-text-main: #ffffff;
    --dark-text-sec: #a9a9a9;
    --dark-grey: #0b3d73;
    --text-btn: #ffffff;
    --bg-color: #f7f7f7;
    --header-bg: #ffffff;
    --menu-bg: #ecedf0;
    --footer-bg: #ffffff;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'PingARLT', 'Segoe UI', Tahoma, sans-serif;
    background-color: var(--bg-color);
    direction: rtl;
    color: #333;
}

h1,h2,h3,h4,h5,h6,strong { font-weight: 700 !important; }
p { font-weight: 400 !important; }

/* ===== PRELOADER ===== */
#preloader {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: #fff;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 16px;
    transition: opacity 0.5s ease;
}
#preloader.hidden { opacity: 0; pointer-events: none; }
.preloader-skip {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--color-primary);
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-family: inherit;
    font-size: 14px;
}

/* ===== HEADER ===== */
.store-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 100;
    background: transparent;
}
.main-nav-container { width: 100%; }
.header-inner {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

/* Announcement Bar */
.angel-ad {
    background-color: #186cc9;
    color: #fff;
    padding: 8px 40px;
    text-align: center;
    font-size: 13px;
    position: relative;
    overflow: hidden;
}
.angel-ad__slider {
    display: flex;
    gap: 60px;
    animation: marquee-rtl 13s linear infinite;
    white-space: nowrap;
}
@keyframes marquee-rtl {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}
.angel-ad__item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    flex-shrink: 0;
}
.angel-ad__icon { font-size: 16px; }
.ad-close {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    color: #ffaaaa;
    font-size: 18px;
    text-decoration: none;
    cursor: pointer;
}

/* Header Container */
.header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
}
.header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
}
.header-left, .header-right {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 33%;
}
.header-right { justify-content: flex-end; }
.header-center { display: flex; align-items: center; justify-content: center; }

.navbar-brand img { height: 3rem; width: auto; }

.header-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 20px;
    text-decoration: none;
    position: relative;
}
.header-btn:hover { color: var(--color-primary); }

.cart-count {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--color-primary);
    color: #fff;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lang-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 13px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Mobile Menu Button */
.mburger {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: var(--color-primary);
    font-size: 24px;
}

/* ===== MOBILE MENU ===== */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 200;
}
.mobile-menu-overlay.active { display: block; }

.mobile-menu {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100%;
    background: var(--menu-bg);
    z-index: 201;
    transition: right 0.3s ease;
    overflow-y: auto;
    padding: 20px 0;
}
.mobile-menu.open { right: 0; }

.mobile-menu ul { list-style: none; padding: 0; margin: 0; }
.mobile-menu li { border-bottom: 1px solid rgba(0,0,0,0.05); }
.sidemenu-link {
    display: block;
    padding: 14px 20px;
    text-decoration: none;
    color: #555;
    font-size: 15px;
    font-weight: 700;
    transition: color 0.2s;
}
.sidemenu-link:hover { color: var(--color-primary); }
.close-mobile-menu {
    position: absolute;
    top: 15px;
    left: 15px;
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    color: #666;
}

.menu-slider-img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
}
.hero-video {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    display: block;
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.35);
}
.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 2;
    width: 90%;
}
.hero-subtitle {
    font-size: 18px;
    color: #fff;
    margin-top: 10px;
}

/* Mask bottom */
.mask-block-bottom::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to bottom, transparent, var(--bg-color));
    z-index: 3;
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
}

/* ===== SECTIONS ===== */
.s-block { padding: 16px 0; }
.s-block.no-margin-top { margin-top: 0 !important; padding-top: 0 !important; }
.s-block.no-margin-bottom { margin-bottom: 0 !important; padding-bottom: 0 !important; }
.s-block--hero-slider { padding: 0 !important; margin: 0 !important; }
.s-block--angel-products { padding-top: 8px !important; padding-bottom: 8px !important; }
.s-angel--divider { padding: 8px 0 !important; }

/* ===== CATEGORY BANNERS ===== */
.square-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.banner-square {
    text-align: center;
    cursor: pointer;
}
.banner-square .box-img {
    overflow: hidden;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    margin: 0 auto 12px;
    transition: transform 0.3s ease;
}
@media (min-width: 768px) {
    .banner-square .box-img { width: 160px; height: 160px; }
}
.banner-square:hover .box-img { transform: scale(1.05); }
.banner-square .box-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(0);
    transition: filter 0.3s;
}
.banner-square:hover .box-img img { filter: grayscale(0.2); }
.text-wrapper h3 {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #333;
}
@media (min-width: 768px) { .text-wrapper h3 { font-size: 15px; } }

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary);
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s;
    font-family: inherit;
}
.btn-primary:hover { background: var(--color-primary-dark); color: #fff; }
@media (min-width: 768px) { .btn-primary { font-size: 13px; padding: 8px 16px; } }

/* ===== FEATURES SECTION ===== */
.angel-features-section {
    background-color: #ecedf0;
    padding: 32px 0;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    align-items: start;
}
.features-grid-3 { grid-template-columns: repeat(3, 1fr); }
.angel-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 16px 8px;
}
.feature-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (min-width: 768px) { .feature-icon { width: 80px; height: 80px; } }
.feature-icon img { width: 100%; height: 100%; object-fit: contain; }
.angel-feature h4 {
    font-size: 14px;
    font-weight: 700;
    color: #333;
    margin-bottom: 4px;
}
@media (min-width: 768px) { .angel-feature h4 { font-size: 16px; } }
.angel-feature p { font-size: 12px; color: #666; }

/* ===== DIVIDER ===== */
.divider-section { padding: 32px 0; }
.divider-inner {
    display: flex;
    align-items: center;
    gap: 16px;
}
.divider-line {
    flex: 1;
    height: 1px;
    background: #d1d5db;
}
.divider-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 0 24px;
    text-align: center;
}
.divider-center h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-primary);
    white-space: nowrap;
}
@media (min-width: 768px) { .divider-center h2 { font-size: 26px; } }
.divider-url {
    font-size: 13px;
    color: var(--color-primary);
    text-decoration: none;
    border-bottom: 1px solid var(--color-primary);
    padding-bottom: 2px;
}
.divider-url:hover { color: var(--color-primary-dark); }
.divider-icon { margin-bottom: 4px; }
.divider-icon img { width: 64px; height: 64px; }

/* ===== BANNER SLIDER ===== */
.banner-slider-section { padding: 20px 0; }
.banner-slider-img {
    width: 100%;
    border-radius: 16px;
    display: block;
}

/* ===== PRODUCTS SLIDER ===== */
.products-section { padding: 20px 0 40px; }
.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}
@media (min-width: 768px) { .products-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; } }
@media (min-width: 1024px) { .products-grid { grid-template-columns: repeat(6, 1fr); } }

.product-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #f0f0f0;
    transition: box-shadow 0.3s, transform 0.2s;
    position: relative;
}
.product-card:hover {
    box-shadow: 0 8px 24px rgba(74,117,244,0.12);
    transform: translateY(-2px);
}
.product-card-img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    display: block;
    background: #f9f9f9;
}
.product-card-body { padding: 10px; text-align: center; }
.product-brand {
    font-size: 10px;
    color: #aaa;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}
.product-brand img { height: 16px; width: auto; }
.product-name {
    font-size: 12px;
    font-weight: 700;
    color: #333;
    margin-bottom: 6px;
    line-height: 1.4;
    min-height: 32px;
}
.product-price {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 8px;
}
.product-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-size: 11px;
    color: #f59e0b;
    margin-bottom: 6px;
}
.btn-add-cart {
    width: 100%;
    background: var(--color-primary);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 8px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: background 0.2s;
    text-decoration: none;
}
.btn-add-cart:hover { background: var(--color-primary-dark); }
.product-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: #f59e0b;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 20px;
}
.product-wishlist {
    position: absolute;
    top: 8px;
    left: 8px;
    background: rgba(255,255,255,0.9);
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    color: #999;
}
.product-wishlist:hover { color: #ef4444; }

/* ===== HERO BANNER (Crustaceans) ===== */
.hero-banner-section {
    position: relative;
    overflow: hidden;
}
.hero-banner-img {
    width: 100%;
    display: block;
    max-height: 500px;
    object-fit: cover;
}
.hero-banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 2;
    width: 90%;
}
.hero-banner-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}
@media (min-width: 768px) { .hero-banner-content h3 { font-size: 36px; } }
.hero-banner-content p { font-size: 14px; color: #fff; margin-bottom: 16px; }
.btn-rounded {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--color-primary);
    color: #fff;
    border-radius: 50px;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s;
}
@media (min-width: 768px) { .btn-rounded { font-size: 18px; padding: 12px 32px; } }
.btn-rounded:hover { background: var(--color-primary-dark); }

/* ===== TESTIMONIALS ===== */
.testimonials-section { padding: 20px 0 40px; }
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}
@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }

.testimonial-card {
    background: #fff;
    border-radius: 12px;
    padding: 32px 16px 24px;
    text-align: center;
    position: relative;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: box-shadow 0.3s;
    margin-top: 32px;
}
.testimonial-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: -48px auto 12px;
    border: 3px solid #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-name { font-size: 16px; font-weight: 700; color: #333; margin-bottom: 6px; }
.testimonial-stars { color: #f59e0b; font-size: 14px; margin-bottom: 10px; }
.testimonial-text { font-size: 13px; color: #555; line-height: 1.7; }
.testimonial-quote {
    position: absolute;
    top: 12px;
    left: 12px;
    font-size: 28px;
    color: #333;
    opacity: 0.08;
    transform: scaleX(-1) scaleY(-1);
}

/* Testimonials Slider */
.testimonials-slider-wrapper {
    overflow: hidden;
    position: relative;
}
.testimonials-track {
    display: flex;
    gap: 16px;
    transition: transform 0.5s ease;
    padding: 40px 8px 20px;
}
.testimonials-track .testimonial-card {
    min-width: calc(100% - 16px);
    flex-shrink: 0;
}
@media (min-width: 768px) {
    .testimonials-track .testimonial-card { min-width: calc(33.333% - 12px); }
}
.slider-controls {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
}
.slider-btn {
    background: #fff;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.2s;
}
.slider-btn:hover { background: var(--color-primary); color: #fff; }

/* Scrollbar for testimonials */
.swiper-scrollbar {
    height: 4px;
    background: #e5e7eb;
    border-radius: 2px;
    margin-top: 16px;
    position: relative;
}
.swiper-scrollbar-drag {
    height: 100%;
    background: var(--color-primary);
    border-radius: 2px;
    width: 30%;
    position: absolute;
    top: 0;
    right: 0;
}

/* ===== FAQ ===== */
.faq-section { padding: 40px 0; }
.faq-title { text-align: center; margin-bottom: 32px; }
.faq-title h2 { font-size: 22px; font-weight: 700; color: var(--color-primary); }
.faq-title p { font-size: 14px; color: #9ca3af; margin-top: 6px; }
.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}
@media (min-width: 768px) { .faq-grid { grid-template-columns: repeat(2, 1fr); } }

.faq-item {
    background: #f3f4f6;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: border-color 0.2s;
}
.faq-item.open { border-color: var(--color-primary); }
.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    color: #333;
    user-select: none;
}
.faq-icon {
    width: 32px;
    height: 32px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--color-primary);
    flex-shrink: 0;
    transition: transform 0.3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s;
    opacity: 0;
    padding: 0 20px;
    font-size: 13px;
    color: #555;
    line-height: 1.7;
}
.faq-item.open .faq-answer { max-height: 300px; opacity: 1; padding: 0 20px 20px; }
.faq-link {
    display: inline-block;
    margin-top: 10px;
    margin-bottom: 4px;
    background: var(--color-primary);
    color: #fff;
    padding: 6px 16px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
}

/* ===== FOOTER ===== */
.store-footer {
    background: #1a1a2e;
    color: #ccc;
    padding: 40px 0 0;
    margin-top: 40px;
}
.footer-to-top {
    text-align: center;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 32px;
}
.footer-to-top a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s;
}
.footer-to-top a:hover { color: var(--color-primary); }

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }

.footer-logo img { height: 4rem; width: auto; margin-bottom: 16px; }
.footer-desc { font-size: 13px; color: #9ca3af; line-height: 1.7; margin-bottom: 16px; }
.footer-social { display: flex; gap: 12px; justify-content: center; }
.social-link {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    text-decoration: none;
    font-size: 16px;
    transition: background 0.2s, color 0.2s;
}
.social-link:hover { background: var(--color-primary); color: #fff; }

.footer-links h3 { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 16px; }
.footer-links a {
    display: block;
    font-size: 13px;
    color: #9ca3af;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.2s;
}
.footer-links a:hover { color: var(--color-primary); }

.footer-contact h3 { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 16px; }
.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 13px;
    color: #9ca3af;
}
.contact-item i { color: var(--color-primary); font-size: 16px; }
.contact-item a { color: #9ca3af; text-decoration: none; }
.contact-item a:hover { color: var(--color-primary); }

.footer-apps h3 { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 16px; }
.app-badge img { height: 40px; width: auto; border-radius: 8px; }

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    gap: 16px;
    text-align: center;
}
@media (min-width: 768px) { .footer-bottom { flex-direction: row; text-align: right; } }

.sbc-cert {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #9ca3af;
}
.sbc-cert-logo {
    width: 48px;
    height: 48px;
    background: #fff;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
}
.sbc-cert-logo img { width: 100%; height: 100%; object-fit: contain; }

.payment-methods { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.pay-badge {
    width: 48px;
    height: 28px;
    background: #fff;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
}
.pay-badge img { width: 100%; height: 100%; object-fit: contain; }

.footer-copyright { font-size: 12px; color: #6b7280; }
.footer-copyright a { color: #9ca3af; text-decoration: none; }
.footer-copyright a:hover { color: var(--color-primary); }

/* ===== WHATSAPP BUTTON ===== */
.wa-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    text-decoration: none;
    z-index: 50;
    box-shadow: 0 4px 16px rgba(37,211,102,0.4);
    transition: transform 0.2s, box-shadow 0.2s;
    animation: bounce 2s infinite;
}
.wa-btn:hover { transform: scale(1.1); box-shadow: 0 6px 20px rgba(37,211,102,0.5); }
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

/* ===== SEARCH MODAL ===== */
.search-modal {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 300;
    align-items: flex-start;
    justify-content: center;
    padding-top: 80px;
}
.search-modal.active { display: flex; }
.search-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.6);
}
.search-container {
    position: relative;
    z-index: 1;
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}
.search-title { font-size: 20px; font-weight: 700; color: #333; margin-bottom: 16px; text-align: center; }
.search-input-wrap { position: relative; }
.search-input {
    width: 100%;
    padding: 14px 48px 14px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 15px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s;
    direction: rtl;
}
.search-input:focus { border-color: var(--color-primary); }
.search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    font-size: 18px;
}
.search-close {
    position: absolute;
    top: 16px;
    left: 16px;
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    color: #666;
}

/* ===== STICKY HEADER ===== */
.store-header.scrolled .header-inner {
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 767px) {
    .hero-video { height: 100svh; }
    .hero-subtitle { font-size: 15px; }
    .square-grid { gap: 8px; }
    .banner-square .box-img { width: 90px; height: 90px; }
    .features-grid-3 { grid-template-columns: repeat(3, 1fr); }
    .angel-feature h4 { font-size: 12px; }
    .angel-feature p { font-size: 10px; }
    .feature-icon { width: 44px; height: 44px; }
    .footer-grid { grid-template-columns: 1fr; }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.fade-in-up { animation: fadeInUp 0.6s ease forwards; }

/* ===== SALLA ICONS FALLBACK ===== */
.sicon-menu::before { content: '☰'; }
.sicon-search::before { content: '🔍'; }
.sicon-user::before { content: '👤'; }
.sicon-shopping-bag::before { content: '🛍'; }
.sicon-whatsapp2::before { content: '💬'; }
.sicon-arrow-up::before { content: '↑'; }
.sicon-arrow-right::before { content: '→'; }
.sicon-arrow-left::before { content: '←'; }
.sicon-cancel::before { content: '✕'; }
.sicon-award-ribbon::before { content: '🏅'; }
.sicon-quote::before { content: '"'; }
.sicon-add::before { content: '+'; }
.sicon-flag::before { content: '🌐'; }

/* ===== PRODUCT CARD SHINE ===== */
.product-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.15) 50%, transparent 60%);
    transform: translateX(-100%);
    transition: transform 0.6s;
    pointer-events: none;
}
.product-card:hover::after { transform: translateX(100%); }

/* ===== SECTION TITLE ===== */
.section-title {
    text-align: center;
    margin-bottom: 32px;
}
.section-title h2 { font-size: 22px; font-weight: 700; color: var(--color-primary); }
.section-title p { font-size: 14px; color: #9ca3af; margin-top: 6px; }

/* ===== COUNTER ===== */
.has-num { font-size: 18px; font-weight: 700; color: #333; }

/* ===== TRUST BADGES ===== */
.trust-badges { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.trust-badge { height: 32px; width: auto; }

/* ===== PADDING HELPERS ===== */
.py-8 { padding-top: 32px; padding-bottom: 32px; }
.pt-0 { padding-top: 0; }
.pb-0 { padding-bottom: 0; }
.mt-neg-4 { margin-top: -4rem; }
.mt-neg-8 { margin-top: -8rem; }
