:root {
    --primary: #237f95;
    --secondary: #75c900;
    --accent: #f3aa28;
    --dark: #14272d;
    --muted: #64747a;
    --line: #dce8eb;
    --bg: #f5faf9;
    --white: #fff;
    --danger: #c62828;
}

* { box-sizing: border-box; }
body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--dark);
    background: var(--bg);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }
main { min-height: 58vh; }
body.visual-edit-active { padding-top: 68px; }
.live-editor-toolbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px clamp(14px, 4vw, 34px);
    background: #111d20;
    color: var(--white);
    box-shadow: 0 10px 24px rgba(20, 39, 45, .2);
}
.live-editor-toolbar.embedded { display: none; }
body.visual-edit-embedded.visual-edit-active { padding-top: 0; }
.live-editor-toolbar label { display: flex; align-items: center; gap: 8px; font-weight: 800; }
.live-editor-toolbar select {
    min-width: 180px;
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 8px;
    padding: 9px 10px;
    background: var(--white);
    color: var(--dark);
}
.live-editor-toolbar .btn { padding: 9px 14px; }
.live-editor-toolbar .live-editor-status { min-width: 110px; color: #bdf28f; font-weight: 800; }
.live-edit-block {
    display: inline;
    outline: 2px dashed var(--accent);
    outline-offset: 3px;
    border-radius: 4px;
    cursor: text;
    min-width: 24px;
}
.live-edit-block:focus {
    outline: 3px solid var(--accent);
    background: rgba(255, 248, 232, .92);
    color: var(--dark);
}

.top-bar {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 10px clamp(16px, 5vw, 80px);
    background: var(--dark);
    color: var(--white);
    font-size: 14px;
    border-bottom: 3px solid var(--secondary);
}
.top-links { display: flex; gap: 22px; align-items: center; }
.top-links a { color: #dff7d2; font-weight: 700; }
.brand-row {
    display: grid;
    grid-template-columns: 280px minmax(220px, 1fr) auto auto;
    align-items: center;
    gap: 18px;
  padding: 0 clamp(16px, 5vw, 80px);
    background: linear-gradient(90deg, #f8fffb 0%, #e8f6f4 56%, #f3ffe8 100%);
    border-bottom: 1px solid #cfe2df;
}
.brand {
    display: flex;
    align-items: center;
    gap: 0;
    font-weight: 900;
    color: var(--primary);
    min-width: 0;
    background: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
}
.brand img {
    width: 280px;
    height: 142px;
    object-fit: contain;
    border-radius: 0;
    background: transparent;
    padding: 0;
    box-shadow: none;
    filter: none;
}
.brand span { display: none; }
.search-form { display: flex; padding: 6px; background: var(--white); border-radius: 28px; box-shadow: 0 10px 28px rgba(20, 39, 45, .12); }
.search-form input { flex: 1; border: 0; outline: 0; padding: 0 16px; min-width: 0; background: transparent; }
.mobile-search-form { display: none; }
.search-form button, .btn {
    border: 0;
    background: var(--accent);
    color: #111;
    border-radius: 22px;
    padding: 11px 20px;
    font-weight: 800;
    cursor: pointer;
}
.btn.secondary { background: var(--secondary); color: #102207; }
.btn.ghost { background: var(--white); border: 1px solid var(--line); }
.btn.danger { background: var(--danger); color: var(--white); }
.quick-actions { display: flex; gap: 14px; }
.quick-actions > a,
.account-menu-toggle {
    display: grid;
    place-items: center;
    gap: 5px;
    min-width: 70px;
    padding: 10px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 8px 18px rgba(20, 39, 45, .12);
    font-size: 13px;
    font-weight: 700;
}
.quick-actions i { color: var(--primary); font-size: 20px; }
.account-menu {
    position: relative;
}
.account-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    z-index: 30;
    min-width: 230px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 18px 38px rgba(20,39,45,.18);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}
.account-menu:hover .account-dropdown,
.account-menu:focus-within .account-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.account-dropdown::before {
    content: "";
    position: absolute;
    top: -10px;
    right: 22px;
    width: 18px;
    height: 18px;
    background: var(--white);
    border-left: 1px solid var(--line);
    border-top: 1px solid var(--line);
    transform: rotate(45deg);
}
.account-dropdown strong {
    display: block;
    padding: 6px 8px 10px;
    margin-bottom: 6px;
    border-bottom: 1px solid var(--line);
    color: var(--dark);
}
.account-dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 8px;
    border-radius: 6px;
    color: var(--dark);
    font-weight: 800;
}
.account-dropdown a:hover {
    background: #eef8f7;
    color: var(--primary);
}
.account-dropdown .logout-link,
.account-dropdown .logout-link i {
    color: var(--danger);
}
.menu-toggle {
    display: none;
    place-items: center;
    width: 46px;
    height: 46px;
    border: 0;
    background: var(--white);
    color: var(--dark);
    border-radius: 12px;
    box-shadow: 0 8px 18px rgba(20, 39, 45, .12);
    cursor: pointer;
}
.menu-toggle i {
    color: var(--dark);
    font-size: 21px;
    line-height: 1;
}
.menu-toggle.is-open {
    background: var(--primary);
    color: var(--white);
}
.menu-toggle.is-open i {
    color: var(--white);
}
.main-nav {
    display: flex;
    justify-content: center;
    gap: 28px;
    padding: 15px 20px;
    background: linear-gradient(90deg, var(--primary), #1b6678);
    color: var(--white);
    font-weight: 800;
    box-shadow: inset 0 -3px 0 var(--secondary);
}
.main-nav a { display: inline-flex; align-items: center; gap: 7px; padding: 4px 0; }
.main-nav i { color: #d9ffca; font-size: 15px; }
.main-nav a:hover,
.main-nav a.active { color: #fff2c7; }
.main-nav a:hover i,
.main-nav a.active i { color: var(--accent); }
.section { padding: 48px clamp(16px, 5vw, 80px); }
.section-heading-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}
.section-heading-row h2 {
    position: relative;
    margin: 0 0 8px;
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1;
}
.section-heading-row h2::after {
    content: "";
    display: block;
    width: 44px;
    height: 3px;
    margin-top: 10px;
    background: var(--accent);
}
.section-heading-row p {
    margin: 0;
    color: var(--muted);
    border-left: 3px solid var(--accent);
    padding-left: 10px;
}
.category-showcase {
    background: linear-gradient(180deg, #fbfaf5 0%, #eef8f7 100%);
}

.category-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.category-tile {
    position: relative;
    min-height: 260px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 16px;
    background:
        radial-gradient(circle at 74% 92%, rgba(243, 170, 40, .18), transparent 32%),
        linear-gradient(135deg, #f8ffff, #eef6fb);
    box-shadow: 0 16px 34px rgba(20, 39, 45, .1);
    transition: transform .2s ease, box-shadow .2s ease;
}

.category-tile:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 42px rgba(20, 39, 45, .14);
}

.category-image {
    height: 150px;
    margin: 16px 16px 0;
    padding: 0;
    overflow: hidden;
    border-radius: 14px;
    background: linear-gradient(135deg, #ffffff, #eef8f7);
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-image img {
    display: block;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    object-fit: fill !important;
    object-position: center !important;
    padding: 0 !important;
    margin: 0 !important;
    transform: none !important;
}

.category-tile:hover .category-image img {
    transform: none !important;
}

.category-info {
    padding: 16px 18px 18px;
}

.category-info h3 {
    margin: 0 0 12px;
    font-size: 18px;
}

.category-info span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 7px 14px;
    border-radius: 999px;
    background: #dff4f6;
    border: 1px solid #bedfe3;
    color: var(--dark);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .category-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 14px !important;
    }

    .category-tile {
        width: 100% !important;
        min-height: 0;
        margin: 0 !important;
    }

    .category-image {
        height: 120px !important;
        margin: 10px 10px 0;
        padding: 0 !important;
    }

    .category-image img {
        width: 100% !important;
        height: 100% !important;
        object-fit: fill !important;
        object-position: center !important;
        transform: none !important;
    }

    .category-info {
        padding: 12px !important;
    }

    .category-info h3 {
        font-size: 16px !important;
        margin-bottom: 8px;
    }

    .category-info span {
        font-size: 12px !important;
    }
}
.featured-showcase {
    background: linear-gradient(180deg, #f7fbfa 0%, #eef8f7 100%);
}

.featured-vertical-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.featured-row {
    position: relative;
    display: grid;
    grid-template-columns: 42% 58%;
    align-items: stretch;
    gap: 0;
    padding: 0;
    min-height: 220px;
    border: 1px solid #dbe7e5;
    border-left: 3px solid var(--primary);
    border-radius: 14px;
    background: linear-gradient(135deg, #ffffff 0%, #fff6eb 100%);
    box-shadow: 0 8px 20px rgba(20, 39, 45, .07);
    overflow: hidden;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.featured-wishlist {
    top: 34px;
    right: 12px;
    z-index: 3;
}

.featured-row:hover {
    transform: translateY(-2px);
    border-color: var(--accent);
    box-shadow: 0 12px 26px rgba(20, 39, 45, .10);
}

.featured-row-image {
    position: relative;
    width: 100%;
    height: 220px;
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-right: 1px solid #edf0ef;
    overflow: hidden;
}

.featured-row-image span {
    position: absolute;
    left: 12px;
    top: 12px;
    z-index: 2;
    padding: 6px 10px;
    border-radius: 7px;
    background: var(--accent);
    color: #101010;
    font-size: 11px;
    font-weight: 900;
}

.featured-row-image img {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: fill;
    object-position: center;
    padding: 10px;
    display: block;
}

.featured-row-content {
    align-self: center;
    min-width: 0;
    max-width: 560px;
    padding: 20px 26px;
}

.featured-row-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: space-between;
    padding-right: 48px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
}

.featured-row-meta .in {
    color: var(--primary);
}

.featured-row-meta .out {
    color: var(--danger);
}

.featured-row h3 {
    margin: 8px 0;
    font-size: 22px;
    line-height: 1.2;
}

.featured-row h3 a {
    color: var(--dark);
}

.featured-row p {
    max-width: 520px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.35;
    margin-bottom: 0;
}

.featured-row-price {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: baseline;
    margin: 12px 0;
}

.featured-row-price strong {
    color: var(--primary);
    font-size: 22px;
}

.featured-row-price span {
    color: var(--muted);
    font-size: 13px;
    text-decoration: line-through;
}

.featured-row .hero-actions {
    margin-top: 12px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.featured-row .hero-actions .btn,
.featured-row .hero-actions a,
.featured-row .hero-actions button {
    padding: 8px 18px;
    font-size: 14px;
    border-radius: 24px;
}

@media (max-width: 768px) {
    .featured-vertical-list {
        grid-template-columns: 1fr;
    }

    .featured-row {
        grid-template-columns: 1fr;
    }

    .featured-row-image {
        height: 190px;
        min-height: 0;
        border-right: 0;
        border-bottom: 1px solid #edf0ef;
    }

    .featured-row-image img {
        height: 100%;
        min-height: 0;
    }

    .featured-row-content {
        padding: 18px;
        max-width: 100%;
    }

    .featured-row h3 {
        font-size: 20px;
    }

    .featured-row-price strong {
        font-size: 20px;
    }
}
.arrivalSwiper {
    width: 100%;
    padding: 8px 4px 18px;
    overflow: hidden;
}

.arrivalSwiper .swiper-wrapper {
    align-items: stretch;
}

.arrivalSwiper .swiper-slide {
    height: auto;
}

.mini-product-card {
    position: relative;
    height: 100%;
    min-height: 330px;
    background: #fff;
    border: 1px solid rgba(35, 127, 149, .16);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(20, 39, 45, .07);
    display: flex;
    flex-direction: column;
    transition: transform .2s ease, box-shadow .2s ease;
}

.mini-wishlist {
    top: 10px;
    right: 10px;
    z-index: 4;
}

.mini-product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 28px rgba(20, 39, 45, .12);
}

.mini-image {
    position: relative;
    height: 145px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #edf0ef;
}

.mini-image img {
    width: 100%;
    height: 100%;
    object-fit: fill !important;
    display: block;
}

.offer {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    background: var(--accent);
    color: #111;
    padding: 5px 9px;
    border-radius: 7px;
    font-size: 11px;
    font-weight: 900;
}

.mini-content {
    padding: 12px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.mini-content small {
    font-size: 12px;
    font-weight: 800;
    color: var(--muted);
}

.mini-content h5 {
    font-size: 16px;
    line-height: 1.25;
    margin: 6px 0;
    min-height: 38px;
}

.mini-content h5 a {
    color: var(--dark);
}

.mini-content p {
    font-size: 13px;
    line-height: 1.35;
    height: 34px;
    overflow: hidden;
    color: var(--muted);
    margin-bottom: 10px;
}

.price-box {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-top: auto;
    margin-bottom: 10px;
}

.price-box strong {
    font-size: 18px;
    color: var(--primary);
    font-weight: 900;
}

.price-box del {
    font-size: 12px;
    color: var(--muted);
}

.mini-buttons {
    display: flex;
    gap: 8px;
}

.mini-buttons .btn {
    padding: 8px 12px;
    font-size: 13px;
    border-radius: 24px;
    flex: 1;
    text-align: center;
}

.arrivalSwiper .swiper-pagination {
    position: static;
    margin-top: 14px;
    line-height: 1;
}

.arrivalSwiper .swiper-button-next,
.arrivalSwiper .swiper-button-prev {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid rgba(35, 127, 149, .18);
    box-shadow: 0 6px 16px rgba(20, 39, 45, .12);
}

.arrivalSwiper .swiper-button-next::after,
.arrivalSwiper .swiper-button-prev::after {
    font-size: 14px;
    font-weight: 900;
    color: var(--primary);
}

@media (max-width: 768px) {
    .mini-product-card {
        min-height: 340px;
    }

    .mini-image {
        height: 155px;
    }

    .mini-image img {
        height: 100%;
    }
}
.hero {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 390px;
    background: var(--dark);
    color: var(--white);
    overflow: hidden;
}
.hero-bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
    opacity: .92;
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, rgba(16, 34, 40, .94) 0%, rgba(35, 127, 149, .86) 48%, rgba(117, 201, 0, .42) 100%);
}
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(circle at 78% 20%, rgba(243, 170, 40, .2), transparent 28%),
        linear-gradient(135deg, rgba(255,255,255,.08) 0 1px, transparent 1px 30px);
    pointer-events: none;
}
.hero-copy {
    position: relative;
    z-index: 1;
    padding: 56px clamp(22px, 7vw, 110px) 28px;
    max-width: 820px;
}
.hero h1 { margin: 0 0 14px; font-size: clamp(36px, 4.5vw, 58px); line-height: 1.04; text-shadow: 0 4px 18px rgba(0,0,0,.25); }
.hero p { font-size: 18px; line-height: 1.5; max-width: 690px; text-shadow: 0 3px 12px rgba(0,0,0,.22); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero .badge { background: rgba(255,255,255,.92); color: var(--primary); }
.hero-trust {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    margin: 0 clamp(16px, 5vw, 80px) 24px;
    background: rgba(255,255,255,.22);
    border: 1px solid rgba(255,255,255,.28);
    border-radius: 8px;
    overflow: hidden;
    backdrop-filter: blur(8px);
}
.hero-trust div {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 2px 10px;
    align-items: center;
    padding: 13px 14px;
    background: rgba(11, 31, 36, .46);
}
.hero-trust i { grid-row: span 2; color: #d9ffca; font-size: 22px; }
.hero-trust strong { font-size: 14px; }
.hero-trust span { color: #e7f7f5; font-size: 12px; }
.grid { display: grid; gap: 24px; }
.grid.cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid.cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid.cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(20, 39, 45, .08);
}
.card-body { padding: 18px; }
.card h3 { margin: 0 0 8px; }
.product-img { height: 230px; width: 100%; object-fit: fill !important; background: #edf4f4; }
.price { color: var(--primary); font-size: 20px; font-weight: 900; }
.old-price { color: var(--muted); text-decoration: line-through; margin-left: 8px; }
.badge { display: inline-flex; padding: 5px 10px; border-radius: 999px; background: #e7f7d8; color: #347600; font-weight: 800; font-size: 12px; }
.page-head { padding: 38px clamp(16px, 5vw, 80px); background: var(--primary); color: var(--white); }
.page-head h1 { margin: 0; font-size: clamp(30px, 4vw, 48px); }
.content-wrap { padding: 34px clamp(16px, 5vw, 80px); }
.toolbar { display: flex; gap: 12px; justify-content: space-between; flex-wrap: wrap; margin-bottom: 22px; }
.form-control, .form-row input, .form-row select, .form-row textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
}
.form-row input:invalid, .form-row textarea:invalid, .form-row select:invalid { border-color: #d07b7b; }
.field-error { color: var(--danger); font-size: 13px; margin-top: 4px; }
.form-row { display: grid; gap: 8px; margin-bottom: 15px; }
.field-label-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.field-label-row a {
    color: var(--primary);
    font-size: 14px;
    font-weight: 800;
}
.password-field {
    position: relative;
    display: flex;
    align-items: center;
}
.password-field input {
    padding-right: 48px;
}
.password-toggle {
    position: absolute;
    top: 50%;
    right: 12px;
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: var(--muted);
    cursor: pointer;
    transform: translateY(-50%);
    line-height: 1;
    padding: 0;
}
.password-toggle:hover {
    background: #eaf4f3;
    color: var(--primary);
}
.auth-wrap {
    display: grid;
    grid-template-columns: repeat(2, minmax(340px, 1fr));
    gap: 26px;
    align-items: stretch;
    max-width: 1260px;
    margin: 0 auto;
}
.auth-panel {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(20,39,45,.08);
}
.auth-visual {
    position: relative;
    min-height: 430px;
    display: grid;
    align-content: space-between;
    gap: 28px;
    color: var(--white);
    padding: 34px;
    background:
        radial-gradient(circle at 78% 18%, rgba(117,201,0,.28), transparent 28%),
        radial-gradient(circle at 12% 82%, rgba(243,170,40,.28), transparent 30%),
        linear-gradient(145deg, #102228 0%, #1d6f7f 58%, #237f95 100%);
}
.auth-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(255,255,255,.08) 0 1px, transparent 1px 30px);
    pointer-events: none;
}
.auth-brand-mark {
    position: relative;
    z-index: 1;
    width: 136px;
    height: 136px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255,255,255,.92);
    box-shadow: 0 18px 42px rgba(0,0,0,.24);
}
.auth-brand-mark img {
    width: 96px;
    height: 96px;
    object-fit: contain;
}
.auth-visual-copy {
    position: relative;
    z-index: 1;
}
.auth-visual-copy h2 {
    margin: 16px 0 10px;
    max-width: 520px;
    font-size: 30px;
    line-height: 1.15;
}
.auth-visual-copy p {
    max-width: 440px;
    margin: 0;
    line-height: 1.55;
    color: #eaf8f6;
}
.auth-benefits {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}
.auth-benefits div {
    display: grid;
    gap: 8px;
    justify-items: center;
    padding: 16px 10px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 8px;
    background: rgba(255,255,255,.1);
    color: #fff;
    text-align: center;
    font-weight: 800;
}
.auth-benefits i {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #ffe199;
    color: #173039;
}
.auth-form {
    min-height: 430px;
    padding: clamp(26px, 4vw, 44px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.auth-form > * {
    width: 100%;
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
}
.auth-form-head h2 {
    margin: 0 0 8px;
    font-size: 30px;
}
.auth-form-head p {
    margin: 0 0 24px;
    color: var(--muted);
}
.auth-submit {
    min-width: 112px;
}
.auth-alt {
    margin: 18px 0 0;
}
.auth-alt a {
    color: var(--primary);
    font-weight: 800;
}
.two-col { display: grid; grid-template-columns: minmax(0, 1fr) 380px; gap: 26px; align-items: start; }
.table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: 8px; overflow: hidden; }
.table th, .table td { padding: 13px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: middle; }
.table th { background: #eaf4f3; }
.notice { padding: 14px 16px; border-radius: 8px; margin-bottom: 18px; background: #e7f7d8; color: #234f08; }
.notice.error { background: #ffe8e8; color: var(--danger); }
.toast {
    position: fixed;
    right: 18px;
    top: 18px;
    z-index: 50;
    max-width: 340px;
    padding: 13px 16px;
    border-radius: 8px;
    color: #153100;
    background: #dff6c9;
    border: 1px solid #b7e98b;
    box-shadow: 0 12px 30px rgba(20, 39, 45, .18);
    transition: opacity .25s ease, transform .25s ease;
}
.toast.hide { opacity: 0; transform: translateY(-10px); pointer-events: none; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; color: var(--muted); margin-bottom: 18px; font-size: 14px; }
.breadcrumbs a { color: var(--primary); font-weight: 800; }
.tracking-line { display: grid; gap: 14px; margin-top: 18px; }
.track-step { display: grid; grid-template-columns: 34px 1fr; gap: 12px; align-items: start; }
.track-dot { width: 28px; height: 28px; border-radius: 50%; display: grid; place-items: center; background: var(--line); color: var(--white); }
.track-step.active .track-dot { background: var(--secondary); }
.return-tracking-status { display: flex; align-items: flex-start; gap: 12px; margin-top: 18px; padding: 14px; border: 1px solid #9edcea; border-radius: 10px; background: #e4f7fb; color: #07566d; }
.return-tracking-status i { margin-top: 2px; font-size: 20px; }
.return-tracking-status div { display: grid; gap: 4px; }
.return-tracking-status span { font-size: 13px; }
.return-tracking-status.return_rejected { background: #ffe8e6; border-color: #efaaa4; color: #941b1b; }
.return-tracking-status.refunded { background: #eaf8df; border-color: #b5e19d; color: #275f12; }
.order-request-card {
    margin-top: 24px;
}
.return-status-alert { display: grid; gap: 5px; margin: 0 0 16px; padding: 14px 16px; border: 1px solid; border-radius: 10px; }
.return-status-alert strong { font-size: 16px; }
.return-status-alert p { margin: 4px 0 0; }
.return-status-alert.info { color: #07566d; background: #e4f7fb; border-color: #9edcea; }
.return-status-alert.warning { color: #76530b; background: #fff6d9; border-color: #f0d17c; }
.return-status-alert.success { color: #275f12; background: #eaf8df; border-color: #b5e19d; }
.return-status-alert.danger { color: #941b1b; background: #ffe8e6; border-color: #efaaa4; }
.return-status-badge { display: inline-flex; padding: 5px 9px; border-radius: 999px; font-size: 12px; font-weight: 800; line-height: 1.2; }
.return-status-badge.submitted, .return-status-badge.under_review, .return-status-badge.product_received, .return-status-badge.refund_processing { color: #07566d; background: #e4f7fb; }
.return-status-badge.return_accepted, .return-status-badge.refunded, .return-status-badge.replacement_approved, .return-status-badge.replacement_shipped { color: #275f12; background: #eaf8df; }
.return-status-badge.return_rejected { color: #941b1b; background: #ffe8e6; }
.reset-link-display { color: var(--primary); font-weight: 800; text-decoration: underline; overflow-wrap: anywhere; }
.order-summary-grid { display: grid; grid-template-columns: minmax(260px, .75fr) minmax(0, 1.25fr); gap: 24px; align-items: stretch; margin-bottom: 24px; }
.order-summary-grid .card { margin: 0; }
.order-products-card h2, .order-payment-card h2 { margin-top: 0; }
.order-products-card .table { margin: 0; }
.rate-review-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 8px; color: #087e9d; font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }
.rate-review-link:hover { color: #075a72; }
@media (max-width: 768px) {
    .order-summary-grid { grid-template-columns: 1fr; gap: 16px; }
}
.invoice-print-brand,
.invoice-print-footer {
    display: none;
}
@media print {
    .site-header,
    .site-footer,
    .floating-actions,
    .print-page,
    .invoice-actions .hero-actions,
    .main-nav,
    .top-bar,
    .brand-row {
        display: none !important;
    }
    body {
        background: #fff;
    }
    body * {
        visibility: hidden;
    }
    .invoice-print-area,
    .invoice-print-area * {
        visibility: visible;
    }
    .invoice-print-area {
        position: absolute;
        inset: 0 auto auto 0;
        width: 100%;
        padding: 0;
    }
    .content-wrap {
        padding: 0;
    }
    .invoice-print-brand {
        display: block;
        text-align: center;
        margin: 0 0 18px;
    }
    .invoice-print-brand img {
        width: 120px;
        height: auto;
    }
    .invoice-actions {
        display: block;
        border: 0;
        padding: 0;
        margin-bottom: 18px;
        text-align: center;
    }
    .card {
        border: 0;
        box-shadow: none;
    }
    .invoice-print-footer {
        display: block;
        margin-top: 30px;
        padding-top: 12px;
        border-top: 1px solid #ddd;
        text-align: center;
        font-size: 12px;
        color: #444;
    }
    @page {
        margin: 14mm;
    }
}
.site-footer {
    background: linear-gradient(135deg, #102228 0%, #174f5d 58%, #1d6f7f 100%);
    color: #eaf8f6;
    border-top: 5px solid var(--secondary);
}
.footer-grid {
    display: grid;
    grid-template-columns: minmax(260px, 1.35fr) minmax(150px, .75fr) minmax(170px, .85fr) minmax(310px, 1.25fr);
    gap: clamp(28px, 5vw, 78px);
    align-items: start;
    padding: 54px clamp(24px, 6vw, 96px) 46px;
}
.footer-brand,
.footer-column {
    min-width: 0;
}
.footer-brand p {
    max-width: 440px;
    margin: 0 0 20px;
    line-height: 1.65;
    color: #f2fbfa;
}
.footer-grid a {
    display: flex;
    align-items: center;
    width: fit-content;
    margin: 10px 0;
    color: #eaf8f6;
    line-height: 1.35;
    transition: color .2s ease, transform .2s ease;
}
.footer-grid a:hover {
    color: #fff2c7;
    transform: translateX(3px);
}
.footer-grid h3 {
    position: relative;
    color: #ffe199;
    margin: 0 0 18px;
    font-size: 18px;
}
.footer-grid h3::after {
    content: "";
    display: block;
    width: 34px;
    height: 3px;
    margin-top: 10px;
    border-radius: 999px;
    background: var(--secondary);
}
.footer-logo {
    width: 180px;
    height: 132px;
    object-fit: contain;
    border-radius: 0;
    background: transparent;
    padding: 0;
    margin: 0 0 24px;
    filter: drop-shadow(0 8px 14px rgba(0,0,0,.18));
}
.footer-social {
    display: flex;
    gap: 12px;
}
.footer-social a {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    margin: 0;
    border-radius: 50%;
    color: #fff;
}
.footer-social a[aria-label="Facebook"] {
    background: #1877f2;
    border: 1px solid #1877f2;
}
.footer-social a[aria-label="Instagram"] {
    background: linear-gradient(135deg, #f58529 0%, #dd2a7b 45%, #8134af 75%, #515bd4 100%);
    border: 1px solid rgba(255,255,255,.18);
}
.footer-social a:hover {
    color: #fff;
    transform: translateY(-2px);
}
.footer-contact {
    display: grid;
    gap: 14px;
}
.footer-contact a {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    margin: 0;
    line-height: 1.35;
    width: auto;
}
.footer-contact i {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    color: #173039;
    background: #ffe199;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0,0,0,.12);
}
.footer-contact a:hover i {
    background: var(--secondary);
}
.footer-bottom {
    padding: 16px clamp(24px, 6vw, 96px);
    text-align: center;
    border-top: 1px solid rgba(255,255,255,.12);
    color: rgba(234,248,246,.82);
}
.floating-actions {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 80;
    display: grid;
    gap: 12px;
}
.floating-action {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 50%;
    color: #fff;
    font-size: 21px;
    cursor: pointer;
    box-shadow: 0 12px 28px rgba(20,39,45,.24);
    transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}
.floating-action:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 34px rgba(20,39,45,.3);
}
.floating-action.whatsapp {
    background: #25d366;
}
.floating-action.scroll-top {
    background: var(--primary);
}
.confirm-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 18px;
    background: rgba(15, 23, 42, .58);
    backdrop-filter: blur(4px);
}
.confirm-modal-overlay.show {
    display: flex;
}
.confirm-modal-box {
    width: min(360px, 100%);
    padding: 28px 24px 24px;
    border-radius: 18px;
    background: var(--white);
    box-shadow: 0 25px 80px rgba(0, 0, 0, .25);
}
.confirm-modal-box h3 {
    margin: 0 0 16px;
    color: var(--primary);
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 0;
}
.confirm-modal-message {
    margin: 0 0 22px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
}
.confirm-modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}
.confirm-cancel-btn,
.confirm-ok-btn {
    min-width: 104px;
    border: 0;
    border-radius: 10px;
    padding: 13px 18px;
    font-weight: 900;
    cursor: pointer;
}
.confirm-cancel-btn {
    background: #edf2f7;
    color: #243447;
}
.confirm-ok-btn {
    background: var(--danger);
    color: var(--white);
}
.confirm-ok-btn.neutral {
    background: var(--primary);
}
.trust-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    background: var(--line);
    padding: 0 clamp(16px, 5vw, 80px);
}
.trust-strip div {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 2px 12px;
    align-items: center;
    padding: 18px 16px;
    background: var(--white);
}
.trust-strip i { grid-row: span 2; color: var(--primary); font-size: 26px; }
.trust-strip strong { font-size: 15px; }
.trust-strip span { color: var(--muted); font-size: 13px; }
.policy-page {
    display: grid;
    gap: 22px;
}
.policy-page > .card {
    width: min(100%, 1120px);
    margin: 0 auto;
}
.policy-page h2 {
    margin: 14px 0 10px;
}
.policy-page p {
    color: var(--muted);
    line-height: 1.65;
}
.policy-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}
.policy-grid i {
    color: var(--primary);
    font-size: 24px;
}
.section-alt { background: #e9f6f4; }
.split-info { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: center; }
.feature-list { display: grid; gap: 12px; }
.feature-list div { background: var(--white); border: 1px solid var(--line); border-radius: 8px; padding: 14px; font-weight: 800; }
.feature-list i { color: var(--secondary); margin-right: 8px; }
.shop-layout { display: grid; grid-template-columns: 280px minmax(0, 1fr); gap: 26px; align-items: start; }
.filter-panel { position: sticky; top: 14px; background: var(--white); border: 1px solid var(--line); border-radius: 8px; padding: 18px; }
.filter-panel h2 { margin-top: 0; }
.product-pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 26px;
}
.product-pagination .btn {
    min-width: 44px;
    justify-content: center;
}
.btn.disabled {
    opacity: .55;
    cursor: not-allowed;
    pointer-events: none;
}
.pagination-ellipsis {
    color: var(--muted);
    font-weight: 900;
    padding: 0 3px;
}
.check-row { display: flex; gap: 9px; align-items: center; margin: 12px 0; font-weight: 800; }
.checkout-coupon-select {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    text-overflow: ellipsis;
}
.coupon-apply { margin-top: 10px; width: 100%; justify-content: center; }
.product-card { position: relative; }
.wishlist-float {
    position: absolute;
    right: 12px;
    top: 12px;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--white);
    color: var(--primary);
    box-shadow: 0 8px 18px rgba(20, 39, 45, .14);
    transition: background .2s ease, color .2s ease, transform .2s ease;
}
.wishlist-float:hover {
    color: #d7195f;
    transform: translateY(-2px);
}
.wishlist-float.active {
    background: #ffe7ef;
    color: #d7195f;
}
.wishlist-float.active:hover {
    background: #ffd5e2;
}
.discount-badge {
    position: absolute;
    left: 12px;
    top: 12px;
    padding: 6px 9px;
    border-radius: 6px;
    background: var(--accent);
    color: #111;
    font-size: 12px;
    font-weight: 900;
}
.product-meta { display: flex; justify-content: space-between; gap: 10px; color: var(--muted); font-size: 12px; font-weight: 800; margin-bottom: 8px; }
.rating { color: var(--accent); margin: 8px 0; font-size: 14px; }
.rating span { color: var(--muted); }
.product-detail-grid { display: grid; grid-template-columns: minmax(280px, .9fr) minmax(320px, 1.1fr); gap: 30px; align-items: start; }
.main-product-image { position: relative; display: grid; place-items: center; aspect-ratio: 1 / 1; overflow: hidden; }
.main-product-image img { width: 100%; height: 100%; aspect-ratio: 1 / 1; object-fit: contain !important; }
.main-product-video { position: absolute; inset: 0; background: #000; }
.main-product-video iframe { width: 100%; height: 100%; border: 0; }
.video-back-button { position: absolute; z-index: 1; top: 10px; left: 10px; display: inline-flex; align-items: center; gap: 6px; border: 0; border-radius: 20px; padding: 8px 12px; background: rgba(20, 39, 45, .86); color: #fff; font-weight: 800; cursor: pointer; }
.thumb-row { display: flex; gap: 10px; margin-top: 12px; overflow-x: auto; }
.thumb-row img { width: 82px; height: 82px; object-fit: cover; border: 2px solid transparent; border-radius: 8px; cursor: pointer; background: var(--white); }
.thumb-row img.active { border-color: var(--primary); }
.gallery-video-thumb { flex: 0 0 82px; width: 82px; height: 82px; display: grid; place-content: center; gap: 6px; border: 2px solid transparent; border-radius: 8px; background: #14272d; color: #fff; cursor: pointer; }
.gallery-video-thumb i { color: var(--accent); font-size: 22px; }
.gallery-video-thumb span { font-size: 12px; font-weight: 800; }
.gallery-video-thumb.active { border-color: var(--primary); }
.product-buy-panel { background: var(--white); border: 1px solid var(--line); border-radius: 8px; padding: 22px; }
.stock-line { font-weight: 900; margin: 12px 0; }
.stock-line.in { color: #2f7b08; }
.stock-line.out { color: var(--danger); }
.quantity-buy { margin: 18px 0; }
.qty-input { max-width: 92px; }
.service-box { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; margin: 22px 0; }
.service-box div { border: 1px solid var(--line); border-radius: 8px; padding: 12px; display: grid; gap: 5px; }
.service-box i { color: var(--primary); }
.service-box span { color: var(--muted); font-size: 13px; }
.spec-table { width: 100%; border-collapse: collapse; margin-top: 16px; }
.spec-table th, .spec-table td { padding: 10px; border-bottom: 1px solid var(--line); text-align: left; }
.product-info-panel {
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
}
.product-info-panel h2 {
    margin: 0 0 14px;
    font-size: 22px;
}
.product-info-grid,
.info-card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}
.product-info-grid div,
.info-card-grid div {
    display: grid;
    gap: 6px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fbfefd;
}
.product-info-grid i,
.info-card-grid i {
    color: var(--primary);
    font-size: 20px;
}
.product-info-grid span,
.info-card-grid span {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.45;
}
.product-reviews {
    margin-top: 28px;
}
.review-form {
    display: grid;
    gap: 14px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fbfefd;
}
.review-form h3 {
    margin: 0;
}
.review-list {
    display: grid;
    gap: 14px;
    margin-top: 18px;
}
.review-item {
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
}
.review-item h3 {
    margin: 8px 0;
}
.review-item p {
    margin: 0 0 10px;
    color: var(--muted);
    line-height: 1.6;
}
.review-item > span {
    color: var(--muted);
    font-size: 13px;
}
.cart-layout { display: grid; grid-template-columns: minmax(0, 1fr) 330px; gap: 24px; align-items: start; }
.table-wrap { overflow-x: auto; }
.cart-product { display: flex; align-items: center; gap: 12px; min-width: 240px; }
.cart-product img { width: 64px; height: 64px; object-fit: fill !important; border-radius: 8px; }
.cart-summary { position: sticky; top: 14px; display: grid; gap: 10px; }
.cart-summary p { display: flex; justify-content: space-between; margin: 0; }
.payment-options { display: grid; gap: 9px; margin-bottom: 16px; }
.payment-options label { cursor: pointer; }
.payment-options input { position: absolute; opacity: 0; }
.payment-options span { display: flex; gap: 10px; align-items: center; border: 1px solid var(--line); border-radius: 8px; padding: 12px; font-weight: 800; }
.payment-options input:checked + span { border-color: var(--primary); background: #eaf7f7; color: var(--primary); }
.payment-detail-panel {
    display: none;
    margin: -4px 0 16px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fbfefd;
}
.payment-detail-panel.active {
    display: block;
}
.payment-detail-panel .check-row {
    margin-bottom: 0;
    font-size: 13px;
}
.payment-note {
    margin: 8px 0 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.45;
}
.checkout-trust { padding: 12px; background: #f0f8f7; border-radius: 8px; color: var(--primary); font-weight: 800; margin-bottom: 14px; }
.coupon-ok { color: #2f7b08; font-weight: 800; }
.coupon-bad { color: var(--danger); font-weight: 800; }
.about-page {
    display: grid;
    gap: 28px;
}
.about-hero {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(360px, 1fr);
    align-items: center;
    overflow: hidden;
}
.about-hero-copy {
    padding: clamp(24px, 3vw, 34px);
    align-self: center;
}
.about-hero-copy h2 {
    margin: 18px 0 14px;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.08;
}
.about-hero-copy p {
    color: var(--muted);
    line-height: 1.65;
    max-width: 680px;
}
.about-hero-media {
    min-height: 360px;
    display: grid;
    place-items: center;
    padding: 26px clamp(22px, 3vw, 36px);
    background:
        radial-gradient(circle at 50% 56%, rgba(255,255,255,.96) 0 26%, rgba(255,255,255,0) 58%),
        linear-gradient(135deg, #f7fbfa 0%, #dff7f3 55%, #eef8f7 100%);
}
.about-hero-media img {
    width: 100%;
    max-width: 560px;
    height: 420px;
    object-fit: contain;
    filter: drop-shadow(0 24px 28px rgba(20, 39, 45, .16));
}
.about-values {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}
.about-values .card {
    display: grid;
    gap: 10px;
}
.about-values i {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: #e7f7d8;
    color: var(--primary);
    font-size: 21px;
}
.about-values h3 {
    margin: 0;
}
.about-values p {
    margin: 0;
    color: var(--muted);
    line-height: 1.5;
}
.about-story {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 28px;
    align-items: center;
    background: linear-gradient(135deg, #eef8f7 0%, #fff6eb 100%);
}
.about-story h2 {
    margin: 14px 0 0;
    font-size: clamp(26px, 3vw, 38px);
    line-height: 1.15;
}
.about-story p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}
.about-categories {
    display: grid;
    gap: 18px;
}
.about-support {
    display: grid;
    gap: 10px;
}
.about-support > div:first-child {
    max-width: 780px;
}
.about-support p {
    margin-bottom: 0;
    color: var(--muted);
    line-height: 1.6;
}
.about-support .service-box {
    margin: 8px 0 0;
}
.support-info {
    display: grid;
    gap: 18px;
}
.support-info .section-heading-row {
    align-items: end;
}
.support-info p {
    max-width: 820px;
    color: var(--muted);
    line-height: 1.6;
}
.contact-page {
    display: grid;
    gap: 26px;
}
.contact-intro {
    display: grid;
    grid-template-columns: minmax(0, 760px) auto;
    align-items: center;
    justify-content: start;
    gap: clamp(24px, 4vw, 56px);
    background: linear-gradient(135deg, #ffffff 0%, #eef8f7 100%);
}
.contact-intro-copy {
    max-width: 760px;
}
.contact-intro h2 {
    margin: 16px 0 10px;
    max-width: 760px;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.12;
}
.contact-intro p {
    max-width: 720px;
    color: var(--muted);
    line-height: 1.6;
}
.contact-quick-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 0;
}
.contact-layout {
    display: grid;
    grid-template-columns: minmax(420px, 680px) minmax(300px, 380px);
    gap: 24px;
    align-items: start;
    justify-content: center;
}
.contact-form {
    width: 100%;
    max-width: 680px;
    justify-self: end;
}
.contact-form h2 {
    margin-top: 0;
}
.contact-form textarea {
    min-height: 130px;
    resize: vertical;
}
.contact-side {
    display: grid;
    gap: 14px;
    width: 100%;
    max-width: 380px;
    justify-self: start;
}
.contact-card {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
}
.contact-card > i {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: #e7f7d8;
    color: var(--primary);
    font-size: 20px;
}
.contact-card h3 {
    margin: 0 0 6px;
}
.contact-card a,
.contact-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.45;
}
.contact-card a:hover {
    color: var(--primary);
}
.contact-map {
    display: grid;
    grid-template-columns: minmax(280px, .75fr) minmax(320px, 1.25fr);
    overflow: hidden;
}
.contact-map-copy {
    padding: clamp(24px, 4vw, 40px);
    align-self: center;
}
.contact-map-copy h2 {
    margin: 0 0 12px;
}
.contact-map-copy p {
    color: var(--muted);
    line-height: 1.6;
}
.contact-map iframe {
    width: 100%;
    min-height: 340px;
    border: 0;
}
.account-dashboard {
    display: grid;
    gap: 24px;
}
.account-hero {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 20px;
    align-items: center;
    padding: 26px;
    background: linear-gradient(135deg, #ffffff 0%, #eef8f7 100%);
}
.account-avatar {
    width: 76px;
    height: 76px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    font-size: 34px;
    font-weight: 900;
    box-shadow: 0 12px 24px rgba(35,127,149,.2);
}
.account-hero h2 {
    margin: 10px 0 6px;
    font-size: 28px;
}
.account-hero p {
    margin: 4px 0;
    color: var(--muted);
}
.account-logout {
    white-space: nowrap;
}
.account-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}
.account-stats .card {
    display: grid;
    gap: 4px;
    text-align: center;
}
.account-stats strong {
    color: var(--primary);
    font-size: 30px;
}
.account-stats span {
    color: var(--muted);
    font-weight: 800;
}
.account-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}
.account-action {
    display: grid;
    gap: 10px;
    min-height: 158px;
    transition: transform .2s ease, box-shadow .2s ease;
}
.account-action:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 28px rgba(20,39,45,.12);
}
.account-action i {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: #e7f7d8;
    color: var(--primary);
    font-size: 20px;
}
.account-action h3 {
    margin: 0;
}
.account-action p {
    margin: 0;
    color: var(--muted);
    line-height: 1.45;
}
.logout-card i {
    background: #ffe8e8;
    color: var(--danger);
}
.recent-orders .section-heading-row {
    margin-bottom: 20px;
}

@media (max-width: 980px) {
    .brand-row { grid-template-columns: 1fr auto; }
    .brand { padding: 7px 10px; }
    .brand img { width: 220px; height: 112px; }
    .search-form, .quick-actions { grid-column: 1 / -1; }
    .quick-actions { justify-content: space-between; }
    .menu-toggle { display: grid; }
    .main-nav { display: none; flex-direction: column; align-items: flex-start; }
    .main-nav.open { display: flex; }
    .two-col { grid-template-columns: 1fr; }
    .auth-wrap { grid-template-columns: 1fr; }
    .auth-visual,
    .auth-form { min-height: 320px; }
    .about-hero,
    .about-story {
        grid-template-columns: 1fr;
    }
    .about-hero-media img {
        height: auto;
        max-height: 420px;
    }
    .contact-layout,
    .contact-map {
        grid-template-columns: 1fr;
    }
    .contact-intro {
        grid-template-columns: 1fr;
        align-items: start;
    }
    .contact-quick-actions {
        justify-content: flex-start;
    }
    .contact-form,
    .contact-side {
        max-width: none;
        justify-self: stretch;
    }
    .about-values {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .account-hero {
        grid-template-columns: auto minmax(0, 1fr);
    }
    .account-logout {
        grid-column: 1 / -1;
        justify-self: start;
    }
    .account-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .grid.cols-4, .grid.cols-3, .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .trust-strip, .hero-trust, .split-info, .shop-layout, .product-detail-grid, .cart-layout { grid-template-columns: 1fr; }
    .policy-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .category-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .featured-vertical-list { grid-template-columns: 1fr; }
    .featured-row { grid-template-columns: 220px 1fr; }
    .arrival-item { grid-template-columns: 190px 1fr; }
    .filter-panel, .cart-summary { position: static; }
    .service-box,
    .product-info-grid,
    .info-card-grid { grid-template-columns: 1fr; }
    .footer-grid {
        grid-template-columns: 1.1fr 1fr;
        gap: 34px;
    }
    .footer-column-contact {
        grid-column: span 2;
    }
}

@media (max-width: 620px) {
    .top-bar { display: block; }
    .top-links { flex-wrap: wrap; margin-top: 8px; gap: 12px; }
    .brand-row {
        grid-template-columns: minmax(100px, 1fr) auto auto;
        gap: 10px;
        padding: 14px 10px;
        background: #e4e4e4;
    }
    .brand {
        order: 1;
        padding: 0;
    }
    .brand img { width: 215px; height: 110px; }
    .brand-row > .search-form {
        display: none;
    }
    .mobile-search-form {
        display: flex;
        order: 4;
        border-radius: 18px;
        flex-direction: column;
        gap: 8px;
        margin: 12px 10px 14px;
    }
    .search-form input { padding: 12px; }
    .quick-actions {
        order: 2;
        grid-column: auto;
        justify-content: flex-end;
        gap: 10px;
    }
    .quick-actions > a,
    .account-menu-toggle,
    .menu-toggle {
        width: 42px;
        min-width: 42px;
        height: 42px;
        padding: 0;
        border-radius: 12px;
    }
    .quick-actions span,
    .account-menu-toggle span {
        display: none;
    }
    .quick-actions i {
        font-size: 18px;
    }
    .menu-toggle {
        order: 3;
    }
    .contact-quick-actions {
        flex-wrap: nowrap;
        gap: 6px;
        width: 100%;
    }
    .contact-quick-actions .btn {
        flex: 1 1 0;
        width: auto;
        min-width: 0;
        justify-content: center;
        padding: 10px 6px;
        font-size: 12px;
        white-space: nowrap;
    }
    .account-menu { min-width: 0; width: auto; }
    .account-dropdown {
        right: auto;
        left: 0;
        min-width: min(230px, 90vw);
    }
    .account-dropdown::before {
        right: auto;
        left: 24px;
    }
    .grid.cols-4, .grid.cols-3, .grid.cols-2, .footer-grid { grid-template-columns: 1fr; }
    .policy-grid { grid-template-columns: 1fr; }
    .about-values {
        grid-template-columns: 1fr;
    }
    .about-hero-media {
        min-height: 260px;
    }
    .about-hero-media img {
        max-height: 300px;
    }
    .account-hero,
    .account-stats,
    .account-grid {
        grid-template-columns: 1fr;
    }
    .account-hero {
        text-align: left;
    }
    .account-avatar {
        width: 64px;
        height: 64px;
        font-size: 28px;
    }
    .section-heading-row { align-items: flex-start; flex-direction: column; }
    .category-strip { grid-template-columns: 1fr; }
    .category-tile { min-height: 230px; }
    .featured-row { grid-template-columns: 1fr; gap: 14px; }
    .featured-row-image { height: 210px; min-height: 0; }
    .featured-row-image img { height: 100%; min-height: 0; }
    .featured-row h3 { font-size: 21px; }
    .arrival-item { grid-template-columns: 1fr; gap: 14px; }
    .arrival-image { min-height: 210px; }
    .arrival-image img { height: 210px; }
    .arrival-content h3 { font-size: 20px; }
    .table { display: block; overflow-x: auto; }
    .trust-strip { padding: 0; }
    .hero { min-height: 440px; }
    .hero-copy { padding: 34px 18px 18px; }
    .hero-trust { margin: 0 16px 18px; }
    .hero-actions .btn {  justify-content: center; text-align: center; }
    .auth-wrap { padding-inline: 16px; }
    .auth-visual { min-height: 260px; }
    .auth-visual-copy h2, .auth-form-head h2 { font-size: 24px; }
    .auth-brand-mark {
        width: 112px;
        height: 112px;
    }
    .auth-brand-mark img {
        width: 82px;
        height: 82px;
    }
    .auth-benefits {
        grid-template-columns: 1fr;
    }
    .auth-form { padding: 24px; }
    .footer-grid {
        grid-template-columns: 1fr;
        padding: 38px 20px 34px;
        gap: 30px;
    }
    .footer-column-contact {
        grid-column: auto;
    }
    .footer-logo {
        width: 150px;
        height: 110px;
        margin-bottom: 18px;
    }
    .floating-actions {
        right: 14px;
        bottom: 14px;
    }
    .floating-action {
        width: 44px;
        height: 44px;
        font-size: 19px;
    }
}
@media (max-width:768px){

    .hero-actions{
        display:flex !important;
        flex-direction:row !important;
        flex-wrap:nowrap !important;
        gap:10px !important;
        width:100%;
    }

    .hero-actions .btn{
        flex:1 !important;
        width:50% !important;
        padding:12px 8px !important;
        font-size:15px !important;
        text-align:center;
        margin:0 !important;
        white-space:nowrap;
    }

}
.top-bar{
    overflow:hidden;
}

.top-bar-scroll{
    white-space:nowrap;
    overflow:hidden;
    width:100%;
}

.top-bar-scroll span{
    display:inline-block;
    color:#fff;
    font-weight:600;
}

/* Desktop: normal fixed text */
@media (min-width:769px){
    .top-bar-scroll span{
        padding-left:0;
        animation:none;
        transform:none;
    }
}

/* Mobile: scrolling right to left */
@media (max-width:768px){
    .top-bar-scroll span{
        padding-left:100%;
        animation:topTicker 20s linear infinite;
    }
}

@keyframes topTicker{
    from{
        transform:translateX(0);
    }
    to{
        transform:translateX(-100%);
    }
}
/* =========================
   Footer Social Visibility
========================= */

/* Desktop: show social icons under logo */
.footer-social-desktop {
    display: flex;
    gap: 12px;
    margin-top: 18px;
}

/* Desktop: hide social icons under Information */
.footer-social-mobile {
    display: none !important;
}


/* =========================
   Mobile Footer Layout
========================= */

@media (max-width: 768px) {

    .footer-grid {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 24px 20px !important;
        align-items: start !important;
    }

    /* Row 1: Logo/description + Shop */
    .footer-brand {
        grid-column: 1;
        grid-row: 1;
        min-width: 0;
    }

    .footer-grid > .footer-column:nth-child(2) {
        grid-column: 2;
        grid-row: 1;
        min-width: 0;
    }

    /* Row 2: Information + Contact */
    .footer-grid > .footer-column:nth-child(3) {
        grid-column: 1;
        grid-row: 2;
        min-width: 0;
    }

    .footer-grid > .footer-column:nth-child(4) {
        grid-column: 2;
        grid-row: 2;
        min-width: 0;
    }

    .footer-brand .footer-logo {
        display: block;
        width: 150px !important;
        height: auto !important;
        margin: 0 0 12px;
    }

    .footer-brand p {
        margin: 0;
        font-size: 14px;
        line-height: 1.6;
        text-align: left;
    }

    /* Mobile: hide social icons under logo */
    .footer-social-desktop {
        display: none !important;
    }

    /* Mobile: show social icons below Information */
    .footer-social-mobile {
        display: flex !important;
        align-items: center;
        gap: 12px;
        margin-top: 18px;
    }

    .footer-social-mobile a {
        margin: 0 !important;
    }

    .footer-column h3 {
        margin-top: 0;
    }

    .footer-column > a {
        display: block;
        margin-bottom: 8px;
        font-size: 14px;
    }

    .footer-contact a {
        display: flex;
        align-items: flex-start;
        gap: 8px;
        margin-bottom: 12px;
        min-width: 0;
    }

    .footer-contact i {
        flex: 0 0 auto;
        margin-top: 3px;
    }

    .footer-contact span {
        min-width: 0;
        overflow-wrap: anywhere;
    }
}
@media (max-width:768px){

    .featured-vertical-list{
        display:grid !important;
        grid-template-columns:repeat(2, 1fr) !important;
        gap:14px !important;
    }

    .featured-row{
        display:flex !important;
        flex-direction:column;
        width:100%;
        padding:0;
    }

    .featured-row-image{
        min-height:140px !important;
        border-right:none;
        border-bottom:1px solid #eee;
    }

   .featured-row-image img {
    width: 100%;
    height: 100%;
    object-fit: fill !important;
    object-position: center;
}

    .featured-row-content{
        padding:12px !important;
        max-width:100%;
    }

    .featured-row h3{
        font-size:16px !important;
        line-height:1.3;
        min-height:42px;
    }

    .featured-row p{
        display:none; /* Hide description to save space */
    }

    .featured-row-price strong{
        font-size:18px !important;
    }

    .featured-row .hero-actions{
        display:flex;
        flex-direction:column;
        gap:8px;
    }

    .featured-row .hero-actions .btn{
        width:100%;
        padding:8px;
        font-size:13px;
    }

    .featured-wishlist{
        top:10px;
        right:10px;
    }

}
@media (max-width:768px){

    .featured-row .hero-actions{
        display:grid !important;
        grid-template-columns:1fr 1fr;
        gap:8px;
    }

    .featured-row .hero-actions .btn{
        width:100% !important;
        padding:8px 4px !important;
        font-size:12px !important;
        text-align:center;
        white-space:nowrap;
        overflow:hidden;
    }

}
@media (max-width:768px){

    /* Reduce overall card height */
    .featured-row{
        min-height:auto !important;
    }

    /* Smaller image section */
    .featured-row-image{
        min-height:110px !important;
        padding:8px !important;
    }

    .featured-row-image img{
        width:100%;
        height:95px !important;
        object-fit:fill;
    }

    /* Compact content */
    .featured-row-content{
        padding:10px !important;
    }

    /* Smaller title */
    .featured-row h3{
        font-size:15px !important;
        line-height:1.3;
        margin:6px 0;
        min-height:40px;
    }

    /* Smaller price */
    .featured-row-price{
        margin:6px 0 !important;
    }

    .featured-row-price strong{
        font-size:16px !important;
    }

    .featured-row-price span{
        font-size:11px !important;
    }

    /* Compact buttons */
    .featured-row .hero-actions{
        gap:6px !important;
        margin-top:8px !important;
    }

    .featured-row .hero-actions .btn{
        padding:7px 4px !important;
        font-size:11px !important;
    }

    /* Smaller badge */
    .featured-row-image span{
        padding:4px 8px;
        font-size:10px;
    }

    /* Smaller wishlist */
    .featured-wishlist{
        width:34px;
        height:34px;
        top:8px;
        right:8px;
    }
}
@media (max-width:768px){

    .featured-row-image{
        min-height:80px !important;
        height:120px !important;
        padding:6px !important;
        display:flex;
        align-items:center;
        justify-content:center;
    }

    @media (max-width:768px){

    .featured-row-image{
        height:120px !important;
        min-height:120px !important;
        padding:0 !important;
        overflow:hidden;
        display:flex;
        align-items:center;
        justify-content:center;
        background:#fff;
    }

    .featured-row-image img{
        width:100% !important;
        height:100% !important;
        object-fit:fill !important;
        padding:0 !important;
        margin:0 !important;
        display:block;
    }

}
}
@media (max-width: 768px) {
    .arrivalSwiper {
        width: 100%;
        overflow: hidden;
    }

    .arrivalSwiper .swiper-slide {
        width: auto !important;
        min-width: 0 !important;
    }

    .mini-product-card {
        width: 100% !important;
        min-width: 0 !important;
    }

    .mini-image {
        height: 110px !important;
        min-height: 110px !important;
    }

    .mini-content {
        padding: 10px !important;
    }

    .mini-content h5 {
        font-size: 14px !important;
        line-height: 1.25;
        min-height: 35px;
    }

    .mini-content p {
        display: none;
    }

    .price-box strong {
        font-size: 15px !important;
    }

    .price-box del {
        display: none;
    }

    .mini-buttons {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 6px !important;
    }

    .mini-buttons .btn {
        width: 100% !important;
        padding: 7px 3px !important;
        font-size: 11px !important;
    }
}
@media (min-width: 992px) {
    .arrivalSwiper {
        max-width: 100%;
        overflow: hidden;
    }

    .arrivalSwiper .swiper-slide {
        min-width: 0 !important;
    }

    .mini-product-card {
        width: 100% !important;
        min-width: 0 !important;
    }

    .mini-image {
        height: 170px;
    }

    .mini-content {
        padding: 14px;
    }

    .mini-content h5 {
        font-size: 16px;
    }

    .mini-buttons .btn {
        padding: 8px 10px;
        font-size: 13px;
    }
}
.product-card .hero-actions {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    gap: 8px !important;
    width: 100%;
}

.product-card .hero-actions .btn {
    flex: 1 1 0 !important;
    width: auto !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 10px 6px !important;
    font-size: 13px !important;
    text-align: center !important;
    justify-content: center !important;
    white-space: nowrap;
}

/* Final product image behavior: card images use one 4:3 ratio. */
.product-img,
.featured-row-image img,
.mini-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    background: #f5faf9;
    padding: 0 !important;
}

/* Featured Product artwork stays fully visible within its 4:3 image panel. */
.featured-row-image img {
    object-fit: contain !important;
}

.product-img,
.featured-row-image,
.mini-image {
    aspect-ratio: 4 / 3;
    height: auto !important;
    min-height: 0 !important;
    overflow: hidden;
}

.category-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: center !important;
}

.main-product-image img,
.cart-product img {
    object-fit: contain !important;
    object-position: center !important;
    background: #f5faf9;
}

.main-product-image img {
    height: auto;
}

/* Shop By Category images use the same 4:3 card-ready ratio. */
.category-image {
    aspect-ratio: 4 / 3 !important;
    height: auto !important;
    min-height: 0 !important;
    margin: 16px 16px 0 !important;
    overflow: hidden;
}

.category-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: center !important;
}

@media (max-width: 768px) {
    .category-image {
        aspect-ratio: 4 / 3 !important;
        height: auto !important;
        margin: 10px 10px 0 !important;
    }
}

/* Mobile New Arrivals slider stability. */
@media (max-width: 575px) {
    .arrivalSwiper {
        width: 100%;
        overflow: hidden;
        padding: 0 0 36px !important;
    }

    .arrivalSwiper .swiper-wrapper {
        align-items: stretch;
    }

    .arrivalSwiper .swiper-slide {
        height: auto !important;
        display: flex;
    }

    .mini-product-card {
        width: 100%;
        min-height: 0 !important;
        display: flex;
        flex-direction: column;
    }

    .mini-image {
        width: 100%;
        aspect-ratio: 4 / 3 !important;
        height: auto !important;
        min-height: 0 !important;
        flex: 0 0 auto;
    }

    .mini-content {
        padding: 12px !important;
        display: flex;
        flex-direction: column;
        gap: 7px;
        flex: 1 1 auto;
    }

    .mini-content h5 {
        font-size: 15px !important;
        line-height: 1.25 !important;
        min-height: 38px !important;
        margin: 0 !important;
    }

    .mini-content p {
        font-size: 12px !important;
        line-height: 1.35 !important;
        height: 34px !important;
        overflow: hidden;
        margin: 0 !important;
    }

    .mini-buttons {
        grid-template-columns: 1fr 1fr !important;
        gap: 8px !important;
        margin-top: auto;
    }

    .mini-buttons .btn {
        width: 100% !important;
        min-width: 0 !important;
        padding: 9px 6px !important;
        font-size: 12px !important;
        justify-content: center;
        white-space: nowrap;
    }

    .arrivalSwiper .swiper-button-next,
    .arrivalSwiper .swiper-button-prev {
        display: none !important;
    }
}

/* Slightly narrower New Arrivals cards on mobile only. */
@media (max-width: 575px) {
    .arrivalSwiper .swiper-slide .mini-product-card {
        width: 90% !important;
        margin-inline: auto;
    }
}

/* Final responsive tuning for Home New Arrivals only. */
.arrival-showcase .arrivalSwiper {
    padding-inline: 4px !important;
    overflow: hidden;
}

.arrival-showcase .arrivalSwiper .swiper-slide {
    height: auto !important;
    display: flex;
    min-width: 0 !important;
}

.arrival-showcase .mini-product-card {
    width: 80% !important;
    margin-inline: auto;
    min-width: 0 !important;
    height: auto !important;
    min-height: 330px;
    display: flex;
    flex-direction: column;
}

.arrival-showcase .mini-image {
    width: 100%;
    aspect-ratio: 4 / 3 !important;
    height: auto !important;
    min-height: 0 !important;
    flex: 0 0 auto;
}

.arrival-showcase .mini-content {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
}

.arrival-showcase .mini-buttons {
    margin-top: auto;
}

@media (min-width: 1200px) {
    .arrival-showcase .mini-product-card {
        min-height: 320px;
    }
}

@media (max-width: 767px) {
    .arrival-showcase .arrivalSwiper {
        padding: 0 0 34px !important;
    }

    .arrival-showcase .mini-product-card {
        min-height: 0 !important;
    }

    .arrival-showcase .mini-content {
        padding: 12px !important;
        gap: 7px;
    }

    .arrival-showcase .mini-content h5 {
        font-size: 15px !important;
        line-height: 1.25 !important;
        min-height: 38px !important;
        margin: 0 !important;
    }

    .arrival-showcase .mini-content p {
        font-size: 12px !important;
        line-height: 1.35 !important;
        height: 34px !important;
        overflow: hidden;
        margin: 0 !important;
    }

    .arrival-showcase .mini-buttons {
        grid-template-columns: 1fr 1fr !important;
        gap: 8px !important;
    }

    .arrival-showcase .mini-buttons .btn {
        width: 100% !important;
        min-width: 0 !important;
        padding: 9px 6px !important;
        font-size: 12px !important;
        justify-content: center;
        white-space: nowrap;
    }
}

@media (max-width: 575px) {
    .arrival-showcase .arrivalSwiper .swiper-slide .mini-product-card {
        width: 80% !important;
        margin-inline: auto !important;
    }

    .arrival-showcase .arrivalSwiper .swiper-button-next,
    .arrival-showcase .arrivalSwiper .swiper-button-prev {
        display: none !important;
    }
}

/* Home New Arrivals mobile fit fix. */
@media (max-width: 767px) {
    .arrival-showcase .arrivalSwiper {
        width: 100%;
        padding: 0 0 34px !important;
        overflow: hidden;
    }

    .arrival-showcase .arrivalSwiper .swiper-wrapper {
        align-items: stretch;
    }

    .arrival-showcase .arrivalSwiper .swiper-slide {
        width: min(88vw, 360px) !important;
        max-width: calc(100vw - 32px);
        height: auto !important;
        display: flex;
    }

    .arrival-showcase .mini-product-card {
        width: 100% !important;
        margin-inline: 0 !important;
        min-height: 0 !important;
    }

    .arrival-showcase .mini-content {
        padding: 12px !important;
        gap: 7px;
    }

    .arrival-showcase .mini-buttons {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 8px !important;
    }

    .arrival-showcase .mini-buttons .btn {
        width: 100% !important;
        min-width: 0 !important;
        padding: 9px 6px !important;
        font-size: 12px !important;
        justify-content: center;
        white-space: nowrap;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    .arrival-showcase .arrivalSwiper .swiper-slide {
        width: calc((100vw - 56px) / 2) !important;
        max-width: 340px;
    }
}
@media (max-width: 374px) {
    .arrival-showcase .arrivalSwiper .swiper-slide {
        width: calc(100vw - 28px) !important;
    }

    .arrival-showcase .mini-content h5 {
        font-size: 14px !important;
    }

    .arrival-showcase .mini-buttons .btn {
        font-size: 11px !important;
        padding-inline: 4px !important;
    }
}
.payment-manual-layout {
    align-items: start;
}

.manual-upi-card {
    display: grid;
    gap: 12px;
}

.manual-upi-details {
    display: grid;
    gap: 10px;
    margin: 8px 0;
}

.manual-upi-details div {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 10px 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #f8fcfb;
}

.manual-upi-details span {
    color: var(--muted);
    font-weight: 800;
}

.manual-upi-qr {
    display: grid;
    gap: 8px;
    justify-items: center;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
}

.manual-upi-qr img {
    width: min(240px, 100%);
    aspect-ratio: 1;
    object-fit: contain;
}

.manual-upi-qr span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
}

.admin-setting-image-preview {
    width: 120px;
    height: 120px;
    object-fit: contain;
    border: 1px solid #e4ecea;
    border-radius: 8px;
    background: #fff;
}

.admin-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 14px 0;
}

.admin-detail-grid div {
    display: grid;
    gap: 4px;
    padding: 12px;
    border: 1px solid #e4ecea;
    border-radius: 8px;
    background: #fbfefd;
}

.admin-detail-grid span {
    word-break: break-word;
}

@media (max-width: 620px) {
    .manual-upi-details div,
    .admin-detail-grid {
        grid-template-columns: 1fr;
    }

    .manual-upi-details div {
        display: grid;
    }
}
.hero-shell {
    position: relative;
    background: var(--dark);
    color: var(--white);
    overflow: hidden;
}

.hero-shell .heroSwiper,
.hero-shell .swiper-wrapper,
.hero-shell .swiper-slide {
    min-height: 390px;
}

.hero-shell .hero-trust {
    position: relative;
    z-index: 2;
}

.hero-shell .swiper-pagination {
    bottom: 124px;
}

.hero-shell .swiper-pagination-bullet {
    background: rgba(255, 255, 255, .85);
    opacity: .65;
}

.hero-shell .swiper-pagination-bullet-active {
    background: var(--accent);
    opacity: 1;
}

.hero-shell .swiper-button-next,
.hero-shell .swiper-button-prev {
    color: var(--white);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(11, 31, 36, .42);
    backdrop-filter: blur(6px);
}

.hero-shell .swiper-button-next::after,
.hero-shell .swiper-button-prev::after {
    font-size: 18px;
    font-weight: 700;
}

@media (max-width: 900px) {
    .hero-shell .hero-trust {
        margin-top: 0;
    }

    .hero-shell .swiper-pagination {
        bottom: 14px;
    }

    .hero-shell .swiper-button-next,
    .hero-shell .swiper-button-prev {
        display: none;
    }
}

.hero-shell .heroSwiper,
.hero-shell .swiper-wrapper,
.hero-shell .swiper-slide,
.hero-shell .hero {
    min-height: 500px;
}

.hero-shell .hero-copy {
    padding-bottom: 28px;
}

@media (max-width: 900px) {
    .hero-shell .heroSwiper,
    .hero-shell .swiper-wrapper,
    .hero-shell .swiper-slide,
    .hero-shell .hero {
        min-height: 560px;
    }

    .hero-shell .hero-copy {
        padding-bottom: 28px;
    }
}

@media (max-width: 900px) {
    .hero-shell .heroSwiper,
    .hero-shell .swiper-wrapper,
    .hero-shell .swiper-slide,
    .hero-shell .hero {
        min-height: 380px;
    }

    .hero-shell .hero-copy {
        padding-bottom: 18px;
    }
}

@media (max-width: 520px) {
    .hero-shell .heroSwiper,
    .hero-shell .swiper-wrapper,
    .hero-shell .swiper-slide,
    .hero-shell .hero {
        min-height: 340px;
    }
}

/* Keep image and YouTube player within the same fixed product-gallery box. */
.main-product-image img[data-main-product-image] {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
}


/* Keep the trust panel inside each mobile slide so the banner image continues behind it. */
@media (max-width: 900px) {
    .hero-shell .heroSwiper,
    .hero-shell .swiper-wrapper,
    .hero-shell .swiper-slide,
    .hero-shell .hero {
        min-height: 560px;
    }

    .hero-shell .hero-copy {
        padding: 34px 18px 18px;
    }

    .hero-shell .hero-trust {
        margin: 0 14px 20px;
    }
}

@media (max-width: 520px) {
    .hero-shell .heroSwiper,
    .hero-shell .swiper-wrapper,
    .hero-shell .swiper-slide,
    .hero-shell .hero {
        min-height: 560px;
    }
}
