html, body {
    background: #dfe8e4;
}

.d-none {
    display: none !important;
}

.mobile-shop-stage {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    background: radial-gradient(circle at top, rgba(24, 203, 150, .18), transparent 34%), #dfe8e4;
}

.mobile-shop-app {
    width: 100%;
    max-width: 430px;
    min-height: 100vh;
    background: #f7faf8;
    color: #111827;
    position: relative;
    overflow-x: hidden;
    padding-bottom: 118px;
    box-shadow: 0 28px 80px rgba(17, 24, 39, .16);
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.mobile-shop-top {
    position: sticky;
    top: 0;
    z-index: 30;
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid #e2e8e5;
    padding: 12px 16px 10px;
}

.mobile-top-row {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
}

.mobile-top-actions {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}

.mobile-icon-btn {
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 16px;
    background: #f1f7f4;
    color: #111827;
    box-shadow: inset 0 0 0 1px #e2e8e5;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    text-decoration: none;
}

.mobile-title {
    min-width: 0;
    text-align: center;
}

.mobile-title span {
    display: block;
    color: #6b7280;
    font-size: 11px;
    font-weight: 800;
    line-height: 1.1;
}

.mobile-title strong {
    display: block;
    margin-top: 3px;
    font-size: 16px;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mobile-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.mobile-brand-logo {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 22px rgba(17, 24, 39, .07);
    border: 1px solid #e2e8e5;
    flex: 0 0 auto;
}

.mobile-brand-logo img {
    width: 38px;
    height: auto;
    display: block;
}

.mobile-brand-copy {
    min-width: 0;
}

.mobile-brand-copy span {
    display: block;
    color: #6b7280;
    font-size: 11px;
    font-weight: 700;
}

.mobile-brand-copy strong {
    display: block;
    margin-top: 3px;
    font-size: 15px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mobile-search {
    margin-top: 12px;
    min-height: 50px;
    border-radius: 18px;
    background: #f1f7f4;
    border: 1px solid #e2e8e5;
    display: grid;
    grid-template-columns: 42px 1fr 42px;
    align-items: center;
}

.mobile-search i {
    color: #079a70;
    text-align: center;
}

.mobile-search input {
    min-width: 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: #111827;
    font-size: 14px;
    font-weight: 700;
}

.mobile-search button {
    width: 42px;
    height: 42px;
    border: 0;
    background: transparent;
    color: #079a70;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.mobile-search-clear {
    color: #6b7280 !important;
}

.mobile-search-context {
    margin: -4px 0 12px;
    border-radius: 14px;
    background: #e9fff7;
    border: 1px solid #c9f7e8;
    color: #067454;
    padding: 9px 11px;
    font-size: 11px;
    font-weight: 800;
    line-height: 1.35;
}

.mobile-home-search-btn {
    border: 0;
    cursor: pointer;
}

.mobile-search-open {
    overflow: hidden;
}

.mobile-search-overlay {
    position: fixed;
    inset: 0;
    background: rgba(17, 24, 39, .48);
    opacity: 0;
    visibility: hidden;
    transition: opacity .24s ease, visibility .24s ease;
    z-index: 80;
}

.mobile-search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-search-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: min(88vw, 380px);
    height: 100dvh;
    background: #fff;
    border-top-left-radius: 26px;
    border-bottom-left-radius: 26px;
    box-shadow: -18px 0 44px rgba(17, 24, 39, .2);
    padding: 20px 18px;
    transform: translateX(104%);
    transition: transform .28s ease;
    z-index: 90;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.mobile-search-drawer.active {
    transform: translateX(0);
}

.mobile-search-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-bottom: 14px;
    border-bottom: 1px solid #e2e8e5;
}

.mobile-search-drawer-head span {
    display: block;
    color: #079a70;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.mobile-search-drawer-head strong {
    display: block;
    margin-top: 4px;
    color: #111827;
    font-size: 18px;
    line-height: 1.2;
}

.mobile-search-close {
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 15px;
    background: #f1f7f4;
    color: #111827;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.mobile-search-drawer-form {
    display: grid;
    gap: 12px;
}

.mobile-search-drawer-form label {
    min-height: 54px;
    border-radius: 18px;
    background: #f1f7f4;
    border: 1px solid #d9e9e2;
    display: grid;
    grid-template-columns: 46px 1fr;
    align-items: center;
    margin: 0;
}

.mobile-search-drawer-form label i {
    color: #079a70;
    text-align: center;
}

.mobile-search-drawer-form input {
    min-width: 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: #111827;
    font-size: 15px;
    font-weight: 800;
}

.mobile-search-drawer-form button {
    min-height: 48px;
    border: 0;
    border-radius: 16px;
    background: linear-gradient(135deg, #18cb96, #079a70);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-size: 14px;
    font-weight: 900;
}

.mobile-search-hints {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.mobile-search-hints span {
    border-radius: 999px;
    background: #e9fff7;
    border: 1px solid #c9f7e8;
    color: #067454;
    padding: 8px 12px;
    font-size: 12px;
    font-weight: 900;
    cursor: pointer;
}

.mobile-content {
    padding: 16px;
}

.mobile-banner-slider {
    margin: 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    display: flex;
    gap: 0;
    padding: 0;
    border-radius: 18px;
    scrollbar-width: none;
    scroll-behavior: smooth;
    overscroll-behavior-x: contain;
    background: #f4f7f6;
}

.mobile-banner-slider::-webkit-scrollbar {
    display: none;
}

.mobile-poster {
    flex: 0 0 100%;
    width: 100%;
    aspect-ratio: 16 / 7;
    min-height: 0;
    border-radius: 18px;
    color: inherit;
    overflow: hidden;
    position: relative;
    scroll-snap-align: start;
    box-shadow: none;
    background: #f4f7f6;
}

.mobile-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mobile-poster-content {
    display: none;
}

.mobile-poster-chip {
    width: max-content;
    min-height: 25px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .16);
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 9px;
    font-size: 9px;
    font-weight: 900;
    margin-bottom: 5px;
}

.mobile-poster h1 {
    margin: 0;
    font-size: 14px;
    line-height: 1.12;
    letter-spacing: 0;
}

.mobile-poster p {
    margin: 4px 0 0;
    font-size: 10px;
    line-height: 1.35;
    color: #d9fff3;
    font-weight: 600;
}

.mobile-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 8px;
}

.mobile-dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: #c6d4ce;
    border: 0;
    padding: 0;
}

.mobile-dot.active {
    width: 21px;
    background: #18cb96;
}

.mobile-deal-zone {
    margin-top: 14px;
    border-radius: 22px;
    background: linear-gradient(135deg, #111827 0%, #243126 52%, #0f6d52 100%);
    color: #fff;
    padding: 14px;
    box-shadow: 0 14px 30px rgba(17, 24, 39, .18);
}

.mobile-deal-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.mobile-deal-kicker {
    width: max-content;
    min-height: 24px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .13);
    color: #fce68a;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 9px;
    font-size: 10px;
    font-weight: 900;
}

.mobile-deal-head h2 {
    margin: 7px 0 0;
    font-size: 18px;
    line-height: 1.1;
    letter-spacing: 0;
}

.mobile-deal-count {
    color: #c6f6e3;
    font-size: 11px;
    font-weight: 900;
    white-space: nowrap;
}

.mobile-deal-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.mobile-deal-card {
    min-width: 0;
    border-radius: 18px;
    background: #fff;
    color: #111827;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .12);
    box-shadow: 0 10px 20px rgba(17, 24, 39, .16);
}

.mobile-deal-media {
    position: relative;
    display: block;
    aspect-ratio: 1 / 1;
    background: #f3f7f5;
    overflow: hidden;
    color: inherit;
    text-decoration: none;
}

.mobile-deal-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    padding: 10px;
    box-sizing: border-box;
}

.mobile-deal-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: 1;
    min-height: 22px;
    border-radius: 999px;
    background: #f97316;
    color: #fff;
    padding: 4px 7px;
    font-size: 9px;
    font-weight: 900;
    line-height: 1;
    display: inline-flex;
    align-items: center;
}

.mobile-deal-info {
    padding: 9px;
}

.mobile-deal-brand {
    display: block;
    color: #079a70;
    font-size: 9px;
    font-weight: 900;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mobile-deal-info h3 {
    margin: 4px 0 6px;
    min-height: 32px;
    font-size: 12px;
    line-height: 1.35;
    font-weight: 900;
    letter-spacing: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.mobile-deal-info h3 a {
    color: inherit;
    text-decoration: none;
}

.mobile-deal-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-bottom: 7px;
}

.mobile-deal-meta span {
    min-height: 20px;
    border-radius: 999px;
    background: #eefbf6;
    color: #067454;
    padding: 4px 6px;
    font-size: 9px;
    font-weight: 900;
    line-height: 1;
}

.mobile-deal-price-row {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.mobile-deal-price-row strong {
    color: #111827;
    font-size: 16px;
    font-weight: 900;
    line-height: 1;
}

.mobile-deal-price-row span {
    color: #9ca3af;
    font-size: 11px;
    font-weight: 800;
    text-decoration: line-through;
}

.mobile-deal-save {
    margin-top: 4px;
    color: #b45309;
    font-size: 10px;
    font-weight: 900;
    line-height: 1.2;
}

.mobile-deal-add,
.mobile-deal-login {
    margin-top: 8px;
    min-height: 34px;
    width: 100%;
    border: 0;
    border-radius: 14px;
    background: #18cb96;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    font-size: 12px;
    font-weight: 900;
    text-decoration: none;
    cursor: pointer;
}

.mobile-deal-login {
    background: #111827;
    font-size: 11px;
}

.mobile-floating-help {
    position: fixed;
    right: max(18px, env(safe-area-inset-right));
    bottom: calc(82px + env(safe-area-inset-bottom));
    z-index: 55;
    min-width: 76px;
    height: 48px;
    border-radius: 999px;
    background: #18cb96;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 14px;
    box-shadow: 0 14px 32px rgba(24, 203, 150, .38);
    text-decoration: none;
    font-size: 13px;
    font-weight: 900;
}

.mobile-floating-help i {
    font-size: 20px;
}

.mobile-floating-help:hover,
.mobile-floating-help:focus {
    color: #fff;
    text-decoration: none;
}

.mobile-promo-strip {
    min-height: 72px;
    border-radius: 18px;
    padding: 12px 14px;
    color: #fff;
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) 30px;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    box-shadow: 0 14px 30px rgba(17, 24, 39, .14);
    overflow: hidden;
    position: relative;
}

.mobile-promo-strip::after {
    content: "";
    position: absolute;
    inset: -40px -28px auto auto;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .18);
}

.mobile-promo-strip.free-delivery {
    background: linear-gradient(135deg, #079a70, #18cb96);
}

.mobile-promo-strip.discount-offer {
    background: linear-gradient(135deg, #111827, #f59e0b);
}

.mobile-promo-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: rgba(255, 255, 255, .2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    position: relative;
    z-index: 1;
}

.mobile-promo-copy {
    min-width: 0;
    position: relative;
    z-index: 1;
}

.mobile-promo-copy strong,
.mobile-promo-copy small {
    display: block;
}

.mobile-promo-copy strong {
    font-size: 17px;
    font-weight: 900;
    line-height: 1.1;
}

.mobile-promo-copy small {
    margin-top: 4px;
    color: rgba(255, 255, 255, .84);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.25;
}

.mobile-promo-strip > .fa-arrow-right {
    position: relative;
    z-index: 1;
    justify-self: end;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.mobile-promo-strip:hover,
.mobile-promo-strip:focus {
    color: #fff;
    text-decoration: none;
}

.mobile-section-title {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 12px;
    margin: 22px 0 12px;
}

.mobile-section-title h2 {
    margin: 0;
    font-size: 18px;
    letter-spacing: 0;
}

.mobile-section-title a,
.mobile-section-title span {
    color: #079a70;
    text-decoration: none;
    font-size: 12px;
    font-weight: 900;
    white-space: nowrap;
}

.mobile-category-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.mobile-category-tile {
    min-height: 104px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;
    color: #111827;
    text-decoration: none;
    text-align: center;
    overflow: hidden;
}

.mobile-category-image {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 14px;
    background: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.mobile-category-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1px;
    display: block;
}

.mobile-category-image i {
    color: #079a70;
    font-size: 20px;
}

.mobile-category-name {
    width: 100%;
    color: #111827;
    font-size: 10.5px;
    font-weight: 900;
    line-height: 1.2;
    min-height: 24px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.mobile-category-strip {
    margin: 0 0 14px;
    border-radius: 22px;
    background: #fff;
    border: 1px solid #e2e8e5;
    box-shadow: 0 8px 22px rgba(17, 24, 39, .06);
    padding: 12px;
    overflow: hidden;
}

.mobile-strip-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 9px;
}

.mobile-strip-head span {
    color: #111827;
    font-size: 13px;
    font-weight: 900;
}

.mobile-strip-head a {
    color: #079a70;
    font-size: 11px;
    font-weight: 900;
    text-decoration: none;
}

.mobile-filter-row {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    margin: 0;
    padding: 0 0 3px;
    scrollbar-width: none;
    scroll-snap-type: x proximity;
    max-width: 100%;
}

.mobile-filter-row::-webkit-scrollbar {
    display: none;
}

.mobile-chip {
    min-height: 42px;
    border: 0;
    border-radius: 17px;
    padding: 0 13px 0 9px;
    background: #fff;
    box-shadow: 0 8px 18px rgba(17, 24, 39, .06);
    color: #111827;
    font-size: 12px;
    font-weight: 900;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    border: 1px solid #e2e8e5;
    scroll-snap-align: start;
    flex: 0 0 auto;
}

.mobile-chip.active {
    background: linear-gradient(135deg, #111827, #243126);
    color: #fff;
    border-color: #111827;
    box-shadow: 0 10px 22px rgba(17, 24, 39, .16);
}

.mobile-chip-icon {
    width: 26px;
    height: 26px;
    border-radius: 11px;
    background: #e9fff7;
    color: #079a70;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 900;
    flex: 0 0 auto;
}

.mobile-chip.active .mobile-chip-icon {
    background: rgba(255, 255, 255, .16);
    color: #fff;
}

.mobile-mini-banner {
    min-height: 72px;
    border-radius: 23px;
    background: linear-gradient(135deg, #0f2d25, #18cb96);
    color: #fff;
    padding: 14px 16px;
    margin-bottom: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 10px 26px rgba(17, 24, 39, .08);
}

.mobile-mini-banner strong {
    display: block;
    font-size: 15px;
    line-height: 1.1;
}

.mobile-mini-banner span {
    display: block;
    margin-top: 5px;
    color: #dbfff3;
    font-size: 11px;
    font-weight: 700;
}

.mobile-listing-tools {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.mobile-listing-tools strong {
    font-size: 18px;
}

.mobile-tool-actions {
    display: flex;
    gap: 8px;
}

.mobile-tool-btn {
    min-height: 36px;
    border: 0;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 8px 22px rgba(17, 24, 39, .07);
    color: #111827;
    padding: 0 12px;
    font-size: 12px;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.mobile-product-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-view-all-products {
    margin-top: 14px;
    min-height: 64px;
    border-radius: 22px;
    background: #111827;
    color: #fff;
    text-decoration: none;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 42px;
    align-items: center;
    gap: 12px;
    padding: 12px 12px 12px 16px;
    box-shadow: 0 14px 28px rgba(17, 24, 39, .16);
}

.mobile-view-all-products span {
    min-width: 0;
}

.mobile-view-all-products strong {
    display: block;
    color: #fff;
    font-size: 14px;
    font-weight: 900;
    line-height: 1.2;
}

.mobile-view-all-products small {
    display: block;
    margin-top: 4px;
    color: #c8f6e8;
    font-size: 11px;
    font-weight: 800;
    line-height: 1.25;
}

.mobile-view-all-products i {
    width: 42px;
    height: 42px;
    border-radius: 16px;
    background: #18cb96;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.mobile-product-row {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 8px 20px rgba(17, 24, 39, .06);
    padding: 10px 10px 11px;
    display: grid;
    grid-template-columns: 112px 1fr;
    gap: 11px;
    min-width: 0;
    border: 1px solid rgba(226, 232, 229, .72);
}

.mobile-product-media {
    width: 112px;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.mobile-product-thumb {
    width: 112px;
    height: 112px;
    border-radius: 20px;
    background: linear-gradient(180deg, #f9fcfb, #edf5f1);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.mobile-product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    padding: 7px;
}

.mobile-moq {
    position: absolute;
    left: 7px;
    top: 7px;
    border-radius: 999px;
    padding: 4px 7px;
    background: #fff6dc;
    color: #9b6400;
    font-size: 9px;
    font-weight: 900;
}

.mobile-image-rating {
    min-height: 30px;
    border-radius: 13px;
    background: #fff7df;
    color: #a86900;
    border: 1px solid #ffe4a7;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 900;
}

.mobile-image-wish {
    width: 34px;
    height: 30px;
    border-radius: 13px;
    border: 1px solid #ffd9d9;
    background: #fff3f3;
    color: #ff5959;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.mobile-under-image-meta {
    display: grid;
    grid-template-columns: 1fr 34px;
    gap: 7px;
}

.mobile-mini-stock {
    margin-top: 6px;
    min-height: 28px;
    border-radius: 12px;
    background: #e9fff7;
    color: #079a70;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 900;
    border: 1px solid #c9f7e8;
}

.mobile-product-info {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.mobile-product-brand {
    color: #079a70;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mobile-product-name {
    margin: 0;
    font-size: 14px;
    line-height: 1.25;
    min-height: 32px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    letter-spacing: 0;
}

.mobile-stock-line {
    color: #6b7280;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.mobile-price-row {
    display: flex;
    align-items: baseline;
    gap: 7px;
    flex-wrap: wrap;
}

.mobile-price {
    color: #079a70;
    font-size: 18px;
    font-weight: 900;
}

.mobile-mrp {
    color: #6b7280;
    font-size: 11px;
    text-decoration: line-through;
    font-weight: 700;
}

.mobile-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: stretch;
    gap: 10px;
    margin-top: auto;
}

.mobile-qty-info {
    min-height: 42px;
    border-radius: 14px;
    background: #f3fbf7;
    border: 1px solid #d8f1e8;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 7px 10px;
    line-height: 1.1;
}

.mobile-qty-info span {
    color: #6b7280;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
}

.mobile-qty-info strong {
    color: #15202b;
    font-size: 13px;
    font-weight: 900;
    margin-top: 3px;
}

.mobile-add {
    min-width: 92px;
    min-height: 42px;
    border: 0;
    border-radius: 14px;
    color: #fff;
    background: linear-gradient(135deg, #18cb96, #079a70);
    box-shadow: 0 10px 20px rgba(24, 203, 150, .28);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 0 14px;
    font-size: 13px;
    font-weight: 900;
    white-space: nowrap;
}

.mobile-add i {
    font-size: 14px;
}

.mobile-card-stepper {
    min-height: 42px;
    border-radius: 14px;
    background: #111827;
    color: #fff;
    display: grid;
    grid-template-columns: 34px minmax(52px, 1fr) 34px;
    align-items: center;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(17, 24, 39, .16);
}

.mobile-card-stepper button {
    height: 42px;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 17px;
    font-weight: 900;
}

.mobile-card-stepper strong {
    text-align: center;
    font-size: 12px;
    font-weight: 900;
    white-space: nowrap;
}

.mobile-deal-cart-control {
    margin-top: 8px;
}

.mobile-deal-cart-control .mobile-deal-add {
    margin-top: 0;
}

.mobile-deal-cart-control .mobile-card-stepper {
    width: 100%;
    background: #18cb96;
}

.mobile-price-lock-card {
    min-height: 48px;
    border-radius: 18px;
    background: linear-gradient(135deg, #f3fbf7, #fff8e7);
    border: 1px solid #d9f3e7;
    display: grid;
    grid-template-columns: 34px 1fr auto;
    align-items: center;
    gap: 8px;
    padding: 7px 8px;
    margin-top: 2px;
}

.mobile-lock-icon {
    width: 34px;
    height: 34px;
    border-radius: 14px;
    background: #e4fff5;
    color: #079a70;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}

.mobile-lock-copy {
    min-width: 0;
}

.mobile-lock-copy strong {
    display: block;
    color: #111827;
    font-size: 11px;
    line-height: 1.15;
    font-weight: 900;
}

.mobile-lock-copy small {
    display: block;
    color: #6b7280;
    font-size: 9px;
    line-height: 1.25;
    font-weight: 800;
    margin-top: 2px;
}

.mobile-price-lock-card a {
    min-height: 30px;
    border-radius: 13px;
    background: #111827;
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    font-size: 10px;
    font-weight: 900;
}

.mobile-empty-state {
    min-height: 140px;
    border-radius: 26px;
    background: #fff;
    box-shadow: 0 8px 22px rgba(17, 24, 39, .07);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #6b7280;
    text-align: center;
    padding: 22px;
    font-size: 13px;
    font-weight: 800;
}

.mobile-empty-state i {
    color: #18cb96;
    font-size: 26px;
}

.mobile-cart-sheet {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    bottom: 76px;
    z-index: 40;
    width: min(398px, calc(100% - 32px));
    min-height: 62px;
    border-radius: 24px;
    background: #111827;
    color: #fff;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 10px;
    padding: 11px 12px 11px 16px;
    box-shadow: 0 22px 46px rgba(17, 24, 39, .34);
}

.mobile-cart-sheet strong {
    display: block;
    font-size: 14px;
}

.mobile-cart-sheet span {
    display: block;
    margin-top: 5px;
    color: #c8d1cd;
    font-size: 12px;
    font-weight: 600;
}

.mobile-cart-sheet a {
    min-height: 42px;
    border-radius: 17px;
    background: #18cb96;
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 14px;
    font-size: 12px;
    font-weight: 900;
}

.mobile-bottom-nav {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    z-index: 39;
    width: min(430px, 100%);
    background: rgba(255, 255, 255, .97);
    backdrop-filter: blur(18px);
    border-top: 1px solid #e2e8e5;
    padding: 8px 10px max(8px, env(safe-area-inset-bottom));
    box-shadow: 0 -16px 38px rgba(17, 24, 39, .10);
}

.mobile-nav-inner {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 2px;
}

.mobile-nav-item {
    min-height: 56px;
    border-radius: 19px;
    color: #6b7280;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: 10px;
    font-weight: 900;
}

.mobile-nav-item i {
    font-size: 18px;
}

.mobile-nav-item .mobile-count {
    min-width: 18px;
    height: 18px;
    border-radius: 999px;
    background: #ff5959;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    line-height: 1;
    position: absolute;
    margin-left: 24px;
    margin-top: -23px;
}

.mobile-nav-item.active {
    color: #079a70;
    background: #e9fff7;
}

.mobile-nav-item.cart-fab {
    transform: translateY(-18px);
}

.mobile-nav-item.cart-fab i {
    width: 56px;
    height: 56px;
    border-radius: 22px;
    background: linear-gradient(135deg, #ff5959, #ff884d);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 16px 28px rgba(255, 89, 89, .30);
    font-size: 22px;
}

.mobile-cat-grid-large {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
}

.mobile-cat-card {
    min-height: 118px;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 10px 26px rgba(17, 24, 39, .08);
    padding: 10px;
    text-decoration: none;
    color: #111827;
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr) 34px;
    align-items: center;
    gap: 12px;
    overflow: hidden;
    position: relative;
}

.mobile-cat-card:after {
    content: "";
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    right: -34px;
    top: -28px;
    background: rgba(24, 203, 150, .12);
}

.mobile-cat-media {
    width: 92px;
    height: 92px;
    border-radius: 18px;
    background: linear-gradient(135deg, #f7faf9, #eef8f4);
    border: 1px solid #eef2f0;
    overflow: hidden;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-cat-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    padding: 8px;
    background: #fff;
}

.mobile-cat-media i {
    width: 50px;
    height: 50px;
    border-radius: 18px;
    color: #fff;
    background: linear-gradient(135deg, #18cb96, #079a70);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
}

.mobile-cat-info {
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    position: relative;
    z-index: 1;
}

.mobile-cat-copy {
    min-width: 0;
}

.mobile-cat-card h3 {
    margin: 0 0 7px;
    font-size: 16px;
    line-height: 1.2;
    position: relative;
    z-index: 1;
    white-space: normal;
    overflow-wrap: anywhere;
}

.mobile-cat-card p {
    margin: 0;
    color: #6b7280;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.35;
    position: relative;
    z-index: 1;
}

.mobile-cat-count {
    min-width: 54px;
    height: 30px;
    border-radius: 999px;
    background: #e9fff7;
    color: #079a70;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 9px;
    font-size: 11px;
    font-weight: 900;
    flex: 0 0 auto;
}

.mobile-cat-meta {
    width: 34px;
    height: 34px;
    border-radius: 14px;
    background: #f3f6f5;
    color: #079a70;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.mobile-cat-meta span {
    font-size: 11px;
    color: #079a70;
    font-weight: 900;
}

.status-badge {
    min-height: 24px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    padding: 0 8px;
    font-size: 10px;
    font-weight: 900;
}

.status-badge.ok {
    background: #e9fff7;
    color: #079a70;
}

.status-badge.wait {
    background: #fff7df;
    color: #a86900;
}

.status-badge.bad {
    background: #fff3f3;
    color: #ff5959;
}

.account-menu {
    display: grid;
    gap: 10px;
}

.account-menu-item {
    min-height: 66px;
    border-radius: 22px;
    background: #fff;
    border: 1px solid #e2e8e5;
    box-shadow: 0 8px 20px rgba(17, 24, 39, .05);
    color: #111827;
    text-decoration: none;
    display: grid;
    grid-template-columns: 44px 1fr 24px;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
}

.account-menu-item .icon,
.account-address-card .icon {
    width: 44px;
    height: 44px;
    border-radius: 17px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f1f7f4;
    color: #079a70;
    font-size: 17px;
}

.account-menu-item strong {
    display: block;
    font-size: 14px;
}

.account-menu-item span {
    display: block;
    margin-top: 3px;
    color: #6b7280;
    font-size: 11px;
    font-weight: 700;
}

.account-doc-hero,
.account-address-card {
    border-radius: 24px;
    background: #fff;
    border: 1px solid #e2e8e5;
    box-shadow: 0 8px 20px rgba(17, 24, 39, .06);
    padding: 14px;
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 12px;
    align-items: start;
    color: #111827;
}

.account-doc-hero > i {
    width: 52px;
    height: 52px;
    border-radius: 20px;
    background: #e9fff7;
    color: #079a70;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.account-doc-hero strong,
.account-address-card strong {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
}

.account-address-card p {
    margin: 0 0 5px;
    color: #6b7280;
    font-size: 12px;
    line-height: 1.35;
    font-weight: 700;
}

@media (min-width: 760px) {
    .mobile-shop-app {
        border-radius: 34px;
        margin: 28px 0;
        min-height: calc(100vh - 56px);
    }
}
