:root {
    --primary: #315b7d;
    --primary-dark: #244761;
    --accent: #d98c68;
    --ink: #24313a;
    --muted: #73808a;
    --soft: #f5f7f8;
    --border: #e4e8eb;
    --white: #fff;
    --shadow: 0 12px 34px rgba(36, 49, 58, .08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: "Tajawal", Tahoma, Arial, sans-serif;
    line-height: 1.7;
}
body.is-loading { overflow: hidden; }
.page-loader {
    position: fixed;
    z-index: 9999;
    inset: 0;
    display: grid;
    place-items: center;
    background: #fff;
    transition: opacity .25s ease, visibility .25s ease;
    animation: loaderFallback .25s ease 2s forwards;
}
.page-loader.is-hidden { opacity: 0; visibility: hidden; }
.page-loader span {
    width: 34px;
    height: 34px;
    border: 3px solid var(--border);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin .75s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes loaderFallback { to { opacity: 0; visibility: hidden; } }
.skeleton {
    overflow: hidden;
    border-radius: 10px;
    background: linear-gradient(90deg, #edf0f2 25%, #f7f8f9 50%, #edf0f2 75%);
    background-size: 200% 100%;
    animation: skeleton 1.3s infinite;
}
@keyframes skeleton { to { background-position: -200% 0; } }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }

.site-navbar {
    min-height: 78px;
    border-bottom: 1px solid var(--border);
    background: rgba(255, 255, 255, .97);
    backdrop-filter: blur(10px);
}
.navbar-brand {
    display: flex;
    align-items: center;
    gap: .65rem;
    color: var(--ink);
    font-size: 1.25rem;
    font-weight: 700;
}
.navbar-brand strong { color: var(--accent); }
.brand-icon {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 11px;
    background: var(--primary);
    color: #fff;
    font-family: Arial, sans-serif;
    font-weight: 700;
}
.navbar-nav { gap: .5rem; }
.nav-link {
    padding: .6rem .8rem !important;
    color: #56636c;
    font-weight: 600;
}
.nav-link:hover, .nav-link.active { color: var(--primary); }
.cart-link {
    position: relative;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--soft);
    color: var(--primary);
}
.cart-link span {
    position: absolute;
    top: -5px;
    left: -5px;
    display: grid;
    place-items: center;
    min-width: 19px;
    height: 19px;
    padding: 0 4px;
    border: 2px solid #fff;
    border-radius: 20px;
    background: var(--accent);
    color: #fff;
    font-size: .65rem;
    font-weight: 700;
}
.navbar-toggler { border: 0; box-shadow: none !important; }

.hero {
    padding: 6rem 0;
    overflow: hidden;
    background: #f2f6f8;
}
.hero-label {
    display: inline-block;
    margin-bottom: 1rem;
    color: var(--accent);
    font-size: .85rem;
    font-weight: 700;
}
.hero h1 {
    margin: 0;
    font-size: clamp(2.8rem, 6vw, 4.7rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -2px;
}
.hero p {
    max-width: 570px;
    margin: 1.4rem 0 1.8rem;
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.9;
}
.hero-art {
    position: relative;
    min-height: 400px;
    display: grid;
    place-items: center;
}
.hero-circle {
    display: grid;
    place-items: center;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: #dbe8ee;
    color: var(--primary);
}
.hero-circle i { font-size: 10rem; }
.art-dot { position: absolute; border-radius: 50%; }
.dot-one { width: 48px; height: 48px; top: 55px; right: 35px; background: #edc4b1; }
.dot-two { width: 26px; height: 26px; bottom: 65px; left: 60px; background: #9ebfcc; }
.hero-note {
    position: absolute;
    bottom: 28px;
    right: 10px;
    padding: .8rem 1rem;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: #fff;
    box-shadow: var(--shadow);
    font-size: .85rem;
    font-weight: 600;
}
.hero-note i { margin-left: .5rem; color: var(--accent); }

.btn {
    border-radius: 10px;
    font-weight: 700;
}
.btn-lg { padding: .78rem 1.4rem; font-size: 1rem; }
.btn-primary {
    border-color: var(--primary);
    background: var(--primary);
}
.btn-primary:hover, .btn-primary:focus {
    border-color: var(--primary-dark);
    background: var(--primary-dark);
}
.btn-accent { border-color: var(--accent); background: var(--accent); color: #fff; }
.btn-light { border: 1px solid var(--border); background: #fff; color: var(--ink); }
.btn-outline-primary { border-color: #aebfca; color: var(--primary); }

.service-bar {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: #fff;
}
.service-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .9rem;
    padding: 1.35rem;
    border-left: 1px solid var(--border);
}
.service-item:last-child { border-left: 0; }
.service-item > i { color: var(--accent); font-size: 1.25rem; }
.service-item div { display: flex; flex-direction: column; }
.service-item strong { font-size: .88rem; }
.service-item span { color: var(--muted); font-size: .75rem; }

.section-space { padding: 5.5rem 0; }
.section-heading { margin-bottom: 2.25rem; }
.section-heading > span {
    color: var(--accent);
    font-size: .8rem;
    font-weight: 700;
}
.section-heading h2 {
    margin: .35rem 0 0;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
}
.section-heading-row {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
}
.section-heading-row > a { color: var(--primary); font-size: .88rem; font-weight: 700; }
.section-heading-row > a i { margin-right: .35rem; }

.category-card {
    display: flex;
    min-height: 180px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: #fff;
    text-align: center;
    transition: .2s ease;
}
.category-card:hover {
    border-color: #bdcbd3;
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}
.category-card > i {
    display: grid;
    place-items: center;
    width: 62px;
    height: 62px;
    margin-bottom: 1rem;
    border-radius: 50%;
    background: #edf3f6;
    color: var(--primary);
    font-size: 1.45rem;
}
.category-card h3 { margin: 0 0 .25rem; font-size: 1.05rem; font-weight: 700; }
.category-card span { color: var(--muted); font-size: .78rem; }

.products-section { background: var(--soft); }
.product-card {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: #fff;
    transition: .2s ease;
}
.product-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}
.product-media {
    position: relative;
    display: block;
    overflow: hidden;
    background: #edf1f3;
    aspect-ratio: 4 / 3;
}
.product-card .product-image {
    display: block;
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    object-fit: cover;
    transition: transform .3s ease;
}
.product-card:hover .product-image { transform: scale(1.035); }
.product-badge {
    position: absolute;
    z-index: 2;
    top: 12px;
    right: 12px;
    padding: .25rem .6rem;
    border-radius: 20px;
    background: var(--primary);
    color: #fff;
    font-size: .66rem;
    font-weight: 700;
}
.product-view { display: none; }
.product-info { padding: 1rem; }
.product-info small { color: var(--muted); font-size: .72rem; }
.product-info h3 {
    min-height: 47px;
    margin: .3rem 0 .75rem;
    font-size: .95rem;
    font-weight: 700;
    line-height: 1.55;
}
.product-info h3 a:hover { color: var(--primary); }
.product-bottom { display: flex; align-items: center; justify-content: space-between; }
.price { color: var(--primary); font-size: 1rem; font-weight: 800; }
.product-arrow {
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    border-radius: 9px;
    background: var(--soft);
    color: var(--primary);
}

.contact-banner { padding: 3.5rem 0; background: var(--primary); color: #fff; }
.contact-banner .container { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.contact-banner h2 { margin: 0 0 .35rem; font-size: 1.7rem; font-weight: 700; }
.contact-banner p { margin: 0; color: rgba(255,255,255,.72); }

.page-header {
    padding: 3.5rem 0;
    border-bottom: 1px solid var(--border);
    background: #f2f6f8;
}
.page-header h1 { margin: 0 0 .4rem; font-size: clamp(2.2rem, 5vw, 3.2rem); font-weight: 800; }
.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    margin-bottom: .7rem;
    color: var(--accent);
    font-size: .8rem;
    font-weight: 700;
}
.hero-kicker span { width: 24px; height: 2px; background: var(--accent); }
.filter-pills {
    padding: .45rem;
    border: 1px solid var(--border);
    border-radius: 13px;
    background: #fff;
}
.filter-pills .btn { padding: .5rem .9rem; border: 0; }

.product-details-card {
    padding: 1rem;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: #fff;
}
.product-main-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 13px;
    background: var(--soft);
}
.product-detail-category {
    display: inline-block;
    padding: .3rem .65rem;
    border-radius: 20px;
    background: #edf3f6;
    color: var(--primary);
    font-size: .75rem;
    font-weight: 700;
}
.product-detail-title { margin: .8rem 0; font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800; }
.product-detail-price { font-size: 1.55rem; }
.product-description { color: var(--muted); line-height: 1.95; }
.purchase-box {
    padding: 1.25rem;
    border: 1px solid var(--border);
    border-radius: 15px;
    background: var(--soft);
}
.form-control, .form-select { min-height: 48px; border-color: var(--border); border-radius: 10px; }
.form-control:focus, .form-select:focus { border-color: #92aabb; box-shadow: 0 0 0 .2rem rgba(49,91,125,.08); }
.thumbnail { width: 76px; height: 76px; object-fit: cover; border: 2px solid transparent; border-radius: 10px; cursor: pointer; }
.thumbnail.active, .thumbnail:hover { border-color: var(--primary); }
.detail-benefits { display: grid; grid-template-columns: repeat(3,1fr); gap: .6rem; margin-top: 1.25rem; }
.detail-benefits div { padding: .7rem; border: 1px solid var(--border); border-radius: 10px; text-align: center; }
.detail-benefits i { display: block; margin-bottom: .3rem; color: var(--accent); }
.detail-benefits span { color: var(--muted); font-size: .7rem; }

.cart-image { width: 74px; height: 74px; object-fit: cover; border-radius: 11px; }
.table-card, .summary-card, .checkout-card {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 15px;
    background: #fff;
}
.summary-card { padding: 1.4rem; background: var(--soft); }
.table > :not(caption) > * > * { padding: .9rem; vertical-align: middle; border-color: var(--border); }
.empty-state { padding: 4rem 1rem; border: 1px dashed #bec9cf; border-radius: 15px; background: var(--soft); text-align: center; }
.empty-state i { color: var(--primary); }

.site-footer { padding: 4rem 0 0; background: #222d34; color: #aeb7bc; }
.footer-logo { display: inline-block; margin-bottom: .8rem; color: #fff; font-size: 1.35rem; font-weight: 700; }
.footer-logo strong { color: #e4a486; }
.site-footer h6 { margin-bottom: 1rem; color: #fff; font-weight: 700; }
.site-footer a:not(.footer-logo) { display: block; margin-bottom: .5rem; color: #aeb7bc; }
.site-footer p { margin-bottom: .5rem; }
.site-footer i { color: #e4a486; }
.footer-bottom { margin-top: 2.5rem; padding: 1rem 0; border-top: 1px solid rgba(255,255,255,.08); font-size: .78rem; }
.social-links { display: flex; gap: .5rem; margin-top: 1rem; }
.social-links a {
    display: grid !important;
    place-items: center;
    width: 36px;
    height: 36px;
    margin: 0 !important;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 9px;
}
.back-to-top {
    position: fixed;
    z-index: 900;
    left: 18px;
    bottom: 18px;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 12px;
    background: var(--primary);
    color: #fff;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: .2s;
}
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: none; }
.cookie-banner {
    position: fixed;
    z-index: 950;
    right: 18px;
    bottom: 18px;
    display: none;
    max-width: 420px;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: #fff;
    box-shadow: var(--shadow);
}
.cookie-banner.is-visible { display: flex; }
.cookie-banner p { margin: 0; color: var(--muted); font-size: .78rem; }
.cookie-banner p a { color: var(--primary); text-decoration: underline; }
.legal-content, .article-content {
    max-width: 900px;
    margin: 0 auto;
    color: #46545e;
    font-size: 1rem;
    line-height: 2;
}
.legal-content h2, .article-content h2 { margin: 2rem 0 .8rem; color: var(--ink); font-size: 1.45rem; font-weight: 700; }
.legal-content h3, .article-content h3 { margin-top: 1.5rem; color: var(--ink); font-size: 1.15rem; font-weight: 700; }
.breadcrumb { font-size: .82rem; }
.breadcrumb-item + .breadcrumb-item::before { float: right; padding-left: .5rem; color: var(--muted); content: "/"; }
.post-card { overflow: hidden; border: 1px solid var(--border); border-radius: 16px; background: #fff; }
.post-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.post-card-body { padding: 1.15rem; }
.post-card h2 { margin: .4rem 0; font-size: 1.15rem; font-weight: 700; }
.post-card p { color: var(--muted); font-size: .88rem; }
.system-page { min-height: 70vh; display: grid; place-items: center; padding: 4rem 1rem; text-align: center; }
.system-page-icon { display: grid; place-items: center; width: 90px; height: 90px; margin: 0 auto 1.5rem; border-radius: 50%; background: #edf3f6; color: var(--primary); font-size: 2.2rem; }

.admin-sidebar { min-height: calc(100vh - 56px); background: #263746; }
.admin-sidebar a { display: block; padding: .8rem 1rem; border-radius: 8px; color: #d9e3ea; }
.admin-sidebar a:hover { background: rgba(255,255,255,.1); color: #fff; }
.stat-card { border: 0; border-radius: 16px; box-shadow: 0 7px 22px rgba(38,55,70,.08); }

@media (max-width: 991.98px) {
    .navbar-collapse { padding: .8rem 0; }
    .hero { padding: 4.5rem 0; }
    .service-item { border-bottom: 1px solid var(--border); border-left: 0; }
    .service-item:last-child { border-bottom: 0; }
}

@media (max-width: 767.98px) {
    .site-navbar { min-height: 70px; }
    .hero { padding: 3.5rem 0; text-align: center; }
    .hero h1 { font-size: 2.8rem; letter-spacing: -1px; }
    .hero-art { min-height: 310px; margin-top: 1rem; }
    .hero-circle { width: 270px; height: 270px; }
    .hero-circle i { font-size: 7.5rem; }
    .hero-note { right: 5px; bottom: 8px; }
    .dot-one { right: 10px; }
    .section-space { padding: 4rem 0; }
    .section-heading-row { align-items: start; flex-direction: column; }
    .category-card { min-height: 145px; padding: 1rem; }
    .category-card > i { width: 52px; height: 52px; margin-bottom: .7rem; }
    .category-card h3 { font-size: .9rem; }
    .product-info { padding: .8rem; }
    .product-info h3 { min-height: 42px; font-size: .83rem; }
    .product-arrow { display: none; }
    .price { font-size: .86rem; }
    .contact-banner .container { align-items: flex-start; flex-direction: column; }
    .contact-banner h2 { font-size: 1.35rem; }
    .detail-benefits { grid-template-columns: 1fr; }
    .admin-sidebar { min-height: auto; }
    .cookie-banner { right: 10px; bottom: 10px; left: 10px; max-width: none; }
    .back-to-top { left: 12px; bottom: 12px; }
}

/* 2026 UI refresh: warmer palette, clearer shopping flow, and softer surfaces. */
:root {
    --primary: #246b7a;
    --primary-dark: #174a56;
    --accent: #f08a5d;
    --accent-dark: #d96a3a;
    --sun: #ffd166;
    --mint: #8fd6bd;
    --rose: #ffe3df;
    --ink: #1f2f38;
    --muted: #667783;
    --soft: #f6fbfa;
    --border: #dfebe8;
    --shadow: 0 18px 45px rgba(31, 47, 56, .11);
}

body {
    background:
        radial-gradient(circle at 8% 10%, rgba(255, 209, 102, .18), transparent 24rem),
        radial-gradient(circle at 95% 4%, rgba(143, 214, 189, .22), transparent 25rem),
        #fff;
}

.site-navbar {
    min-height: 74px;
    border-bottom: 1px solid rgba(36, 107, 122, .12);
    background: rgba(255, 255, 255, .9);
    box-shadow: 0 12px 35px rgba(31, 47, 56, .05);
}

.brand-icon {
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary), var(--mint));
    box-shadow: 0 10px 20px rgba(36, 107, 122, .18);
}

.nav-link {
    border-radius: 999px;
}

.nav-link:hover,
.nav-link.active {
    background: rgba(36, 107, 122, .08);
}

.cart-link {
    border: 1px solid rgba(36, 107, 122, .12);
    background: #fff7ec;
    color: var(--primary);
}

.cart-link span {
    background: var(--accent);
}

.hero,
.page-header {
    position: relative;
    isolation: isolate;
    background:
        linear-gradient(135deg, #eaf8f4 0%, #fff6e6 55%, #ffe9e2 100%);
}

.hero::before,
.page-header::before {
    content: "";
    position: absolute;
    inset: auto 0 0;
    z-index: -1;
    height: 42%;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, .74));
}

.hero-label,
.section-heading > span,
.hero-kicker {
    color: var(--accent-dark);
}

.hero h1,
.page-header h1,
.section-heading h2 {
    color: #18323a;
}

.hero h1 {
    letter-spacing: 0;
}

.hero p,
.page-header p {
    color: #57707a !important;
}

.hero-circle {
    border: 1px solid rgba(255, 255, 255, .7);
    background: linear-gradient(145deg, #fff, #cceee5);
    box-shadow: var(--shadow);
}

.dot-one { background: var(--sun); }
.dot-two { background: var(--accent); }

.hero-note {
    border: 0;
    border-radius: 16px;
    background: rgba(255, 255, 255, .92);
}

.btn {
    border-radius: 13px;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary,
.btn-accent {
    border: 0;
    box-shadow: 0 12px 24px rgba(36, 107, 122, .18);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), #2f93a2);
}

.btn-primary:hover,
.btn-primary:focus {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}

.btn-accent {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
}

.btn-light {
    background: #fff;
}

.service-bar {
    border: 0;
    background: #fff;
    box-shadow: 0 12px 35px rgba(31, 47, 56, .06);
}

.service-item > i,
.detail-benefits i,
.site-footer i {
    color: var(--accent);
}

.category-card,
.product-card,
.product-details-card,
.purchase-box,
.table-card,
.summary-card,
.checkout-card,
.post-card,
.empty-state {
    border-color: rgba(36, 107, 122, .12);
    box-shadow: 0 10px 28px rgba(31, 47, 56, .06);
}

.category-card {
    border-radius: 16px;
}

.category-card > i {
    background: linear-gradient(135deg, #e6f7f2, #fff2dd);
    color: var(--primary);
}

.product-card {
    border-radius: 16px;
}

.product-card:hover,
.category-card:hover {
    box-shadow: var(--shadow);
}

.product-media {
    background: linear-gradient(145deg, #edf8f6, #fff3e6);
}

.product-card .product-media {
    height: clamp(150px, 18vw, 215px);
    aspect-ratio: auto;
}

.products-section .product-card .product-media {
    height: clamp(145px, 16vw, 200px);
}

.product-badge {
    background: rgba(36, 107, 122, .92);
}

.product-arrow {
    background: #e9f7f3;
}

.price {
    color: var(--primary);
}

.shop-toolbar {
    display: grid;
    gap: 1rem;
}

.shop-search {
    display: grid;
    grid-template-columns: auto minmax(180px, 1fr) minmax(155px, 220px) auto;
    align-items: center;
    gap: .75rem;
    padding: .8rem;
    border: 1px solid rgba(36, 107, 122, .14);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(31, 47, 56, .07);
}

.shop-search > i {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 13px;
    background: #fff4e4;
    color: var(--accent-dark);
}

.shop-search .form-control,
.shop-search .form-select {
    border: 0;
    background: var(--soft);
}

.filter-pills {
    border: 0;
    background: transparent;
}

.purchase-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.purchase-heading span {
    display: block;
    color: var(--accent-dark);
    font-size: .78rem;
    font-weight: 700;
}

.purchase-heading strong {
    display: block;
    font-size: 1.05rem;
}

.purchase-heading i {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: #e6f7f2;
    color: var(--primary);
}

.quantity-control {
    display: grid;
    grid-template-columns: 46px minmax(78px, 1fr) 46px;
    gap: .5rem;
    max-width: 230px;
}

.quantity-control .form-control {
    text-align: center;
    font-weight: 800;
}

.quantity-btn {
    display: grid;
    place-items: center;
    min-height: 48px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: #fff;
    color: var(--primary);
}

.purchase-note {
    display: flex;
    align-items: center;
    gap: .5rem;
    margin: .9rem 0 0;
    color: var(--muted);
    font-size: .86rem;
}

.summary-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: .85rem;
    padding-bottom: .85rem;
    border-bottom: 1px solid var(--border);
}

.summary-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .6rem;
    margin-bottom: 1rem;
}

.summary-benefits div {
    display: flex;
    align-items: center;
    gap: .45rem;
    padding: .7rem;
    border-radius: 12px;
    background: #fff;
    color: var(--muted);
    font-size: .78rem;
    font-weight: 700;
}

.summary-benefits i {
    color: var(--accent-dark);
}

.contact-banner,
.site-footer {
    background: linear-gradient(135deg, #173640, #255e69);
}

.footer-logo strong,
.site-footer i {
    color: var(--sun);
}

.back-to-top {
    background: linear-gradient(135deg, var(--primary), var(--accent));
}

@media (max-width: 767.98px) {
    .shop-search {
        grid-template-columns: auto 1fr;
    }

    .shop-search .form-select,
    .shop-search .btn {
        grid-column: 1 / -1;
    }

    .summary-benefits {
        grid-template-columns: 1fr;
    }
}
