:root {
    --store-radius: 8px;
    --store-border: #e5e7eb;
    --store-muted: #000;
    --store-heading: #0f172a;
    --store-soft: #f8fafc;
}

html,
body {
    overflow-x: hidden;
}

body {
    color: #334155;
    text-rendering: optimizeLegibility;
}

img {
    max-width: 100%;
}

.home-category-section {
    padding: 16px 0 8px;
}

.home-category-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.home-category-card {
    align-items: center;
    background: transparent;
    border: 0;
    border-radius: 8px;
    color: #0f172a;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
    padding: 10px 6px;
    text-align: center;
    text-decoration: none;
    transition: transform .16s ease, background-color .16s ease, box-shadow .16s ease;
}

.home-category-card--hidden {
    display: none;
}

.home-category-card:hover {
    background: #f8fafc;
    box-shadow: 0 10px 22px rgba(15, 23, 42, .06);
    color: #0f172a;
    transform: translateY(-2px);
}

.home-category-card__media {
    align-items: center;
    background: #ecfdf5;
    border: 1px solid #dcfce7;
    border-radius: 50%;
    display: inline-flex;
    height: 78px;
    justify-content: center;
    overflow: hidden;
    width: 78px;
}

.home-category-card__media img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.home-category-card__title {
    display: -webkit-box;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.25;
    max-width: 100%;
    min-height: 32px;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.home-category-card--more .home-category-card__media {
    background: #f8fafc;
    border-style: dashed;
    color: #16a34a;
    font-size: 26px;
}

.home-category-card--more.is-hidden {
    display: none;
}

.home-category-section + .recommended {
    padding-top: 36px !important;
}

.btn,
button,
input,
select,
textarea {
    letter-spacing: 0;
}

.btn {
    border-radius: var(--store-radius);
    font-weight: 800;
}

.form-control,
.form-select,
select,
input,
textarea {
    border-radius: var(--store-radius);
}

.py-80 {
    padding-bottom: 56px;
    padding-top: 56px;
}

.py-60 {
    padding-bottom: 44px;
    padding-top: 44px;
}

.section-heading,
.demo-section-heading {
    margin-bottom: 18px;
}

.product-card--demo {
    min-height: 100%;
}

.product-card__thumb {
    aspect-ratio: 1 / 1;
    background: #f8fafc;
    border-radius: var(--store-radius);
    min-height: auto !important;
}

.product-card__thumb img {
    height: 100%;
    object-fit: contain;
    width: 100%;
}

.product-card__meta-row,
.product-card__seller,
.product-card__rating {
    min-width: 0;
}

.product-card__meta-row span:first-child,
.product-card__seller span:last-child,
.product-card .title a {
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-card__meta-row span:first-child,
.product-card__seller span:last-child {
    white-space: nowrap;
}

.product-card__cart {
    min-height: 40px;
}

.product-card__actions {
    display: grid;
    gap: 10px;
    grid-template-columns: minmax(0, 1fr) minmax(0, .9fr);
    margin-top: 14px;
    width: 100%;
}

.product-card__actions .btn,
.product-card__buy-now,
.product-card__cart {
    align-items: center;
    display: inline-flex;
    font-weight: 800;
    justify-content: center;
    line-height: 1.15;
    min-width: 0;
    white-space: nowrap;
}

.product-card__actions .btn i {
    flex: 0 0 auto;
}

.smart-recommendation-card__actions {
    display: grid;
    gap: 8px;
    grid-template-columns: 1fr !important;
    margin-top: 10px;
    width: 100%;
}

.smart-recommendation-card__button {
    align-items: center;
    border: 0;
    border-radius: 999px;
    display: inline-flex;
    font-size: 13px;
    font-weight: 900;
    gap: 6px;
    justify-content: center;
    line-height: 1.1;
    min-height: 38px;
    padding: 8px 10px;
    text-align: center;
    white-space: nowrap;
    width: 100%;
}

.smart-recommendation-card__buy {
    background: #111827;
    color: #fff;
}

.smart-recommendation-card__actions .add-to-cart-btn,
.smart-recommendation-card__button.is-added-to-cart {
    background: #16a34a;
    color: #fff;
}

.smart-recommendation-card__button i {
    flex: 0 0 auto;
    font-size: 15px;
}

.shop-product-grid > [class*="col-"] {
    display: flex;
}

.shop-product-grid .product-card {
    width: 100%;
}

.frontend-toast-wrap {
    display: grid;
    gap: 10px;
    position: fixed;
    right: 16px;
    top: 88px;
    width: min(360px, calc(100vw - 24px));
    z-index: 100000;
}

.frontend-toast {
    align-items: flex-start;
    animation: toastIn .18s ease-out;
    background: #fff;
    border: 1px solid var(--store-border);
    border-left: 4px solid #16a34a;
    border-radius: var(--store-radius);
    box-shadow: 0 18px 45px rgba(15, 23, 42, .18);
    color: var(--store-heading);
    display: flex;
    gap: 10px;
    padding: 12px 14px;
}

.frontend-toast.is-error {
    border-left-color: #dc2626;
}

.frontend-toast.is-warning {
    border-left-color: #d97706;
}

.frontend-toast.is-info {
    border-left-color: #2563eb;
}

.frontend-toast strong {
    display: block;
    font-size: 13px;
    font-weight: 900;
    line-height: 1.25;
    margin-bottom: 2px;
}

.frontend-toast span {
    color: var(--store-muted);
    display: block;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.35;
}

.frontend-toast button {
    background: transparent;
    border: 0;
    color: #94a3b8;
    line-height: 1;
    margin-left: auto;
    padding: 2px;
}

.is-loading,
.frontend-loading {
    cursor: progress !important;
    pointer-events: none;
    position: relative;
}

.is-loading::after,
.frontend-loading::after {
    animation: frontendSpin .65s linear infinite;
    border: 2px solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    content: "";
    display: inline-block;
    height: 14px;
    margin-left: 8px;
    vertical-align: -2px;
    width: 14px;
}

.skeleton-line,
.skeleton-box {
    background: linear-gradient(90deg, #f1f5f9 25%, #e2e8f0 37%, #f1f5f9 63%);
    background-size: 400% 100%;
    animation: shimmer 1.25s ease-in-out infinite;
    border-radius: var(--store-radius);
}

.related-products-section {
    background: #f8fafc;
}

.related-products-slider {
    margin-left: -6px;
    margin-right: -6px;
}

.related-products-slider .slick-track {
    align-items: stretch;
    display: flex;
}

.related-products-slider .slick-slide {
    height: auto;
    padding: 0 6px;
}

.related-products-slider .slick-slide > div,
.related-products-slider .slick-slide [class*="col-"] {
    height: 100%;
}

.related-products-slider [class*="col-"] {
    max-width: 100%;
    padding: 0;
    width: 100% !important;
}

.related-products-slider .slick-arrow {
    align-items: center;
    background: #fff;
    border: 1px solid var(--store-border);
    border-radius: 50%;
    box-shadow: 0 10px 24px rgba(15, 23, 42, .12);
    color: var(--store-heading);
    display: inline-flex !important;
    height: 38px;
    justify-content: center;
    position: absolute;
    top: -58px;
    width: 38px;
    z-index: 2;
}

.related-products-slider .slick-prev {
    right: 48px;
}

.related-products-slider .slick-next {
    right: 6px;
}

.related-products-slider .slick-disabled {
    opacity: .45;
}

.cart-page,
.checkout-page,
.wishlist-page,
.blog-page,
.blog-detail-page,
.order-success-page,
.order-track-page,
.cms-page {
    background: var(--store-soft);
}

.cart-page .card,
.checkout-page .card,
.wishlist-page .card,
.customer-panel,
.order-success-card,
.blog-card,
.blog-widget,
.blog-article-card,
.blog-comments-card {
    border: 1px solid var(--store-border);
    border-radius: var(--store-radius) !important;
    box-shadow: 0 10px 24px rgba(15, 23, 42, .05);
}

.cart-page table img,
.wishlist-page img,
.blog-card__image img,
.blog-detail-hero img {
    background: #f8fafc;
}

.coupon-inline-message,
.form-error,
.invalid-feedback {
    border-radius: var(--store-radius);
    font-size: 12px;
    font-weight: 800;
}

.mobile-menu {
    overscroll-behavior: contain;
}

.mobile-menu .nav-menu__link,
.nav-menu--mobile .nav-menu__link {
    min-height: 40px;
}

.mobile-bottom-nav {
    box-shadow: 0 -10px 28px rgba(15, 23, 42, .12);
}

.mobile-header-actions {
    align-items: center;
    display: inline-flex;
    gap: 8px;
}

.mobile-header-action,
.mobile-header-actions .notification-bell,
.mobile-header-actions .notification-trigger,
.mobile-header-actions [data-toggle="dropdown"] {
    align-items: center;
    background: #eff6f3;
    border: 0;
    border-radius: 999px;
    color: #0f172a;
    display: inline-flex;
    height: 42px;
    justify-content: center;
    min-width: 42px;
    padding: 0;
}

.mobile-header-action i,
.mobile-header-actions i {
    font-size: 19px;
    line-height: 1;
}

.mobile-search-form {
    display: block;
}

.mobile-search-shell {
    align-items: center;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 999px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, .06);
    display: flex;
    min-height: 46px;
    padding: 0 8px 0 14px;
    position: relative;
    width: 100%;
}

.mobile-search-icon {
    color: #000;
    flex: 0 0 auto;
    font-size: 20px;
    margin-right: 8px;
}

.mobile-search-input.common-input {
    border: 0 !important;
    box-shadow: none !important;
    flex: 1 1 auto;
    font-size: 14px;
    font-weight: 700;
    height: 30px;
    min-width: 0;
    padding: 0;
}

.mobile-search-input::placeholder {
    color: #000;
    opacity: 1;
}

.mobile-search-submit {
    align-items: center;
    background: #16a34a;
    border: 0;
    border-radius: 50%;
    color: #fff;
    display: inline-flex;
    flex: 0 0 auto;
    height: 34px;
    justify-content: center;
    width: 34px;
}

.mobile-search-results {
    border-radius: 12px;
    left: 0;
    overflow: hidden;
    top: calc(100% + 8px);
}

@keyframes frontendSpin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes shimmer {
    0% {
        background-position: 100% 0;
    }
    100% {
        background-position: 0 0;
    }
}

@keyframes toastIn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.home-mobile-banner-slider .flash-sales-item {
    min-height: 250px;
}

.home-mobile-banner-slider .flash-sales-item__bg {
    object-position: center;
}

@media (min-width: 992px) {
    .shop-product-grid > .col-lg-3 {
        flex: 0 0 auto;
        width: 25%;
    }
}

@media (max-width: 991.98px) {
    .home-mobile-banner-slider .flash-sales-item {
        min-height: 220px;
    }

    .header-top {
        min-height: 30px;
    }

    .home-category-section {
        padding: 12px 0 4px;
    }

    .home-category-grid {
        gap: 10px 8px;
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .home-category-card {
        gap: 6px;
        padding: 7px 4px;
    }

    .home-category-card__media {
        height: 64px;
        width: 64px;
    }

    .home-category-card__title {
        font-size: 12px;
        line-height: 1.18;
        min-height: 28px;
    }

    .home-category-section + .recommended {
        padding-top: 24px !important;
    }

    .header-middle {
        background: #fff;
        position: sticky;
        top: 0;
        z-index: 990;
    }

    .header-middle .container-lg,
    .header .container-lg {
        padding-left: 12px;
        padding-right: 12px;
    }

    .header-middle .header-inner {
        gap: 10px;
        min-height: 58px;
    }

    .header-middle .logo img {
        max-height: 44px;
        width: auto;
    }

    .header-middle .form-location-wrapper {
        display: none !important;
    }

    .header-middle .header-right {
        gap: 8px !important;
    }

    .mobile-header-actions {
        align-items: center;
        display: inline-flex;
        gap: 8px;
        margin-left: auto;
    }

    .mobile-header-action,
    .mobile-header-actions .notification-bell-btn {
        align-items: center;
        background: #f0fdf4;
        border: 1px solid #dcfce7;
        border-radius: 999px;
        color: #0f172a;
        display: inline-flex;
        height: 40px;
        justify-content: center;
        min-width: 40px;
        padding: 0;
        position: relative;
        width: 40px;
    }

    .mobile-header-action i,
    .mobile-header-actions .notification-bell-btn i,
    .toggle-mobileMenu i {
        font-size: 21px;
        line-height: 1;
    }

    .mobile-header-actions .notification-count {
        align-items: center;
        background: #16a34a;
        border-radius: 999px;
        color: #fff;
        display: inline-flex;
        font-size: 10px;
        font-weight: 800;
        height: 16px;
        justify-content: center;
        min-width: 16px;
        padding: 0 4px;
        position: absolute;
        right: -4px;
        top: -4px;
    }

    .toggle-mobileMenu {
        align-items: center;
        background: #fff;
        border: 0;
        color: #0f172a !important;
        height: 40px;
        justify-content: center;
        margin-left: 2px !important;
        padding: 0;
        width: 40px;
    }

    .header.mobile-search-header {
        background: rgba(255, 255, 255, .88) !important;
        backdrop-filter: blur(10px);
        box-shadow: 0 6px 16px rgba(15, 23, 42, .05);
        left: 0;
        padding: 5px 0 6px !important;
        position: fixed !important;
        right: 0;
        top: var(--mobile-search-top, 58px);
        width: 100%;
        z-index: 989;
    }

    .header.mobile-search-header.fixed-header {
        animation: none !important;
        backdrop-filter: none;
        inset-block-start: auto;
        top: var(--mobile-search-top, 58px) !important;
        transform: none !important;
        border-radius: 0 0 25px 25px;
    }

    .mobile-search-spacer {
        display: block;
        height: 60px;
    }

    .header .header-inner,
    .header .menu-category-wrapper {
        width: 100%;
    }

    .mobile-search-form {
        display: block;
        margin: 0;
    }

    .mobile-search-shell {
        align-items: center;
        background: #f8fafc;
        border: 1px solid #e2e8f0;
        border-radius: 999px;
        display: flex;
        min-height: 38px;
        padding: 0 6px 0 12px;
        position: relative;
        width: 100%;
    }

    .mobile-search-icon {
        color: #16a34a;
        flex: 0 0 auto;
        font-size: 18px;
        margin-right: 7px;
    }

    .mobile-search-input {
        background: transparent !important;
        border: 0 !important;
        box-shadow: none !important;
        color: #0f172a;
        flex: 1;
        font-size: 13px;
        font-weight: 700;
        height: 36px;
        min-height: 36px !important;
        min-width: 0;
        padding: 0 !important;
    }

    .mobile-search-input::placeholder {
        color: #000;
        opacity: 1;
    }

    .mobile-search-submit {
        align-items: center;
        background: #16a34a;
        border: 0;
        border-radius: 50%;
        color: #fff;
        display: inline-flex;
        flex: 0 0 auto;
        height: 28px;
        justify-content: center;
        width: 28px;
    }

    .mobile-search-results {
        border-radius: 12px;
        left: 0;
        overflow: hidden;
        top: calc(100% + 8px);
    }

    .mobile-bottom-nav {
        grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
    }

    .mobile-bottom-nav a,
    .mobile-bottom-nav button {
        min-width: 0;
        padding: 6px 2px;
    }

    .mobile-bottom-nav i {
        font-size: 21px;
    }

    .mobile-bottom-nav span:last-child {
        font-size: 10.5px;
        max-width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .py-80 {
        padding-bottom: 38px;
        padding-top: 38px;
    }

    .py-60 {
        padding-bottom: 32px;
        padding-top: 32px;
    }
}

@media (max-width: 767.98px) {
    body {
        font-size: 13px;
        line-height: 1.5;
        padding-bottom: 62px;
    }

    .home-category-section {
        padding: 10px 0 2px;
    }

    .home-category-grid {
        gap: 8px 6px;
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }

    .home-category-card {
        border-radius: 7px;
        gap: 4px;
        padding: 4px 1px;
    }

    .home-category-card--mobile-hidden {
        display: none;
    }

    .home-category-card:hover {
        box-shadow: none;
        transform: none;
    }

    .home-category-card:active {
        transform: scale(.97);
    }

    .home-category-card__media {
        height: 42px;
        width: 42px;
    }

    .home-category-card__title {
        font-size: 9.8px;
        font-weight: 750;
        line-height: 1.12;
        min-height: 22px;
    }

    .home-category-card--more .home-category-card__media {
        font-size: 19px;
    }

    .home-category-section + .recommended {
        padding-top: 18px !important;
    }

    .home-mobile-banner-slider {
        display: block;
        margin-left: -4px;
        margin-right: -4px;
    }

    .home-mobile-banner-slider:not(.slick-initialized) > [class*="col-"]:nth-child(n+2) {
        display: none;
    }

    .home-mobile-banner-slider .slick-list {
        overflow: hidden;
    }

    .home-mobile-banner-slider .slick-slide {
        padding: 0 4px;
    }

    .home-mobile-banner-slider .slick-dots {
        align-items: center;
        display: flex !important;
        gap: 5px;
        justify-content: center;
        margin: 8px 0 0;
        padding: 0;
    }

    .home-mobile-banner-slider .slick-dots li {
        display: inline-flex;
        height: 6px;
        margin: 0;
        width: 6px;
    }

    .home-mobile-banner-slider .slick-dots button {
        background: #cbd5e1;
        border: 0;
        border-radius: 999px;
        font-size: 0;
        height: 6px;
        padding: 0;
        width: 6px;
    }

    .home-mobile-banner-slider .slick-dots .slick-active button {
        background: #16a34a;
        width: 16px;
    }

    .home-mobile-banner-slider .promotional-banner-item,
    .home-mobile-banner-slider .flash-sales-item {
        border-radius: 8px !important;
        min-height: 180px;
        padding: 14px 16px !important;
    }

    .home-mobile-banner-slider .flash-sales-item__content h6 {
        font-size: 16px !important;
        line-height: 1.2;
        margin-bottom: 4px !important;
    }

    .home-mobile-banner-slider .flash-sales-item__content p {
        font-size: 11px;
        margin-bottom: 6px !important;
    }

    .home-mobile-banner-slider .btn {
        font-size: 11px;
        min-height: 30px;
        padding: 6px 10px !important;
    }

    .shipping {
        margin-bottom: 14px !important;
    }

    .shipping-mobile-slider {
        display: block;
        margin-left: -4px;
        margin-right: -4px;
    }

    .shipping-mobile-slider:not(.slick-initialized) > [class*="col-"]:nth-child(n+2) {
        display: none;
    }

    .shipping-mobile-slider .slick-slide {
        padding: 0 4px;
    }

    .shipping-mobile-slider .shipping-item {
        border-radius: 8px !important;
        gap: 12px !important;
        min-height: 88px;
        padding: 14px 16px !important;
    }

    .shipping-mobile-slider .shipping-item > span:first-child {
        height: 46px !important;
        width: 46px !important;
        font-size: 24px !important;
    }

    .shipping-mobile-slider .shipping-item h6 {
        font-size: 14px;
        line-height: 1.2;
    }

    .shipping-mobile-slider .shipping-item .text-sm {
        font-size: 12px !important;
        line-height: 1.3;
    }

    .shipping-mobile-slider .slick-dots {
        align-items: center;
        display: flex !important;
        gap: 5px;
        justify-content: center;
        margin: 8px 0 0;
        padding: 0;
    }

    .shipping-mobile-slider .slick-dots li {
        display: inline-flex;
        height: 6px;
        margin: 0;
        width: 6px;
    }

    .shipping-mobile-slider .slick-dots button {
        background: #cbd5e1;
        border: 0;
        border-radius: 999px;
        font-size: 0;
        height: 6px;
        padding: 0;
        width: 6px;
    }

    .shipping-mobile-slider .slick-dots .slick-active button {
        background: #16a34a;
        width: 16px;
    }

    .container,
    .container-lg,
    .container-md,
    .container-sm {
        padding-left: 8px;
        padding-right: 8px;
    }

    .py-80,
    .py-60,
    .product-details.product-detail-page {
        padding-bottom: 20px !important;
        padding-top: 16px !important;
    }

    h1,
    .h1 {
        font-size: 22px;
        line-height: 1.2;
    }

    h2,
    .h2 {
        font-size: 19px;
        line-height: 1.25;
    }

    h3,
    .h3 {
        font-size: 17px;
    }

    h4,
    .h4 {
        font-size: 16px;
    }

    .btn {
        min-height: 38px;
        padding: 8px 12px;
    }

    .form-control,
    .form-select,
    select,
    input {
        min-height: 38px;
    }

    .product-card--demo {
        border-radius: 8px !important;
        padding: 7px !important;
    }

    .product-card .title {
        font-size: 12px !important;
        line-height: 1.28;
        margin-bottom: 6px !important;
        margin-top: 7px !important;
    }

    .product-card__meta-row,
    .product-card__seller,
    .product-card__trust,
    .product-card__rating {
        font-size: 10px !important;
    }

    .product-card__price .text-md,
    .product-card__price .text-heading {
        font-size: 13px !important;
    }

    .product-card__actions {
        gap: 8px;
        margin-top: 8px !important;
    }

    .product-card__actions .btn,
    .product-card__buy-now,
    .product-card__cart {
        border-radius: 999px !important;
        font-size: 12px !important;
        min-height: 40px;
        padding: 8px 7px !important;
    }

    .product-card__cart {
        margin-top: 8px !important;
    }

    .product-card__cart i,
    .product-card__buy-now i {
        font-size: 14px;
    }

    .product-card__trust {
        display: none !important;
    }

    .frontend-toast-wrap {
        bottom: 72px;
        left: 10px;
        right: 10px;
        top: auto;
        width: auto;
    }

    .frontend-toast {
        padding: 10px 12px;
    }

    .related-products-section {
        padding-bottom: 30px !important;
    }

    .related-products-slider {
        margin-left: -4px;
        margin-right: -4px;
    }

    .related-products-slider .slick-slide {
        padding: 0 4px;
    }

    .cart-recommend-strip {
        overflow: hidden !important;
        padding-left: 1px;
    }

    .cart-recommend-list {
        display: block !important;
        margin-left: 0;
        margin-right: 0;
    }

    .cart-recommend-list:not(.slick-initialized) {
        display: grid !important;
        gap: 8px;
        grid-auto-columns: 42%;
        grid-auto-flow: column;
        overflow: hidden;
    }

    .cart-recommend-list .slick-track {
        align-items: stretch;
        display: flex;
        margin-left: 0 !important;
    }

    .cart-recommend-list .slick-list {
        overflow: hidden;
        padding: 0 !important;
    }

    .cart-recommend-list .slick-slide {
        height: auto;
        padding: 0 8px 0 0;
    }

    .cart-recommend-list .slick-slide > div {
        height: 100%;
    }

    .cart-recommend-card {
        display: flex !important;
        flex-direction: column;
        height: 100%;
        min-width: 0 !important;
        padding: 7px !important;
    }

    .cart-recommend-card img {
        aspect-ratio: 1 / .72;
        border-radius: 7px;
    }

    .cart-recommend-card .cart-product-title {
        font-size: 10.5px !important;
        font-weight: 700 !important;
        line-height: 1.18 !important;
        min-height: 25px !important;
    }

    .cart-recommend-card strong {
        font-size: 12px;
        margin-top: 4px !important;
    }

    .cart-recommend-add {
        font-size: 10px !important;
        margin-top: auto !important;
        min-height: 28px !important;
        padding: 5px 7px !important;
    }

    .cart-recommend-list .slick-dots {
        align-items: center;
        display: flex !important;
        gap: 5px;
        justify-content: center;
        margin: 8px 0 0;
        padding: 0;
    }

    .cart-recommend-list .slick-dots li {
        display: inline-flex;
        height: 6px;
        margin: 0;
        width: 6px;
    }

    .cart-recommend-list .slick-dots button {
        background: #cbd5e1;
        border: 0;
        border-radius: 999px;
        font-size: 0;
        height: 6px;
        padding: 0;
        width: 6px;
    }

    .cart-recommend-list .slick-dots .slick-active button {
        background: #16a34a;
        width: 16px;
    }

    .related-products-slider .slick-arrow {
        display: none !important;
    }

    .cart-page,
    .checkout-page,
    .wishlist-page,
    .blog-page,
    .blog-detail-page,
    .order-success-page,
    .order-track-page,
    .cms-page {
        padding-top: 10px !important;
    }

    .cart-item-mobile,
    .checkout-card,
    .checkout-summary,
    .customer-panel,
    .blog-card,
    .blog-widget,
    .blog-article-card,
    .blog-comments-card {
        border-radius: 8px !important;
        padding: 12px !important;
    }

    .blog-hero,
    .blog-detail-hero {
        border-radius: 8px !important;
        padding: 14px !important;
    }

    .blog-hero h1,
    .blog-detail-hero h1 {
        font-size: 20px !important;
    }

    .blog-card__body {
        padding: 12px !important;
    }

    .footer-vgm__brand p,
    .footer-vgm__section a,
    .footer-vgm__contact a,
    .footer-vgm__contact span {
        font-size: 13px !important;
    }
}

.homepage-dynamic-section .homepage-dynamic-slider {
    margin-left: -6px;
    margin-right: -6px;
}

.homepage-dynamic-section .homepage-dynamic-slider .slick-slide {
    padding: 0 0px;
}

.homepage-dynamic-section .homepage-dynamic-slider .col-xl-2,
.homepage-dynamic-section .homepage-dynamic-slider .col-lg-3,
.homepage-dynamic-section .homepage-dynamic-slider .col-md-4,
.homepage-dynamic-section .homepage-dynamic-slider .col-6 {
    flex: none;
    max-width: none;
}

@media (max-width: 575.98px) {
    .header-middle .container,
    .header .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .header-middle .logo img {
        max-height: 40px;
    }

    .mobile-header-actions {
        gap: 6px;
    }

    .mobile-header-action,
    .mobile-header-actions .notification-bell-btn,
    .toggle-mobileMenu {
        height: 38px;
        min-width: 38px;
        width: 38px;
    }
}

@media (min-width: 992px) {
    .mobile-header-actions,
    .mobile-search-form {
        display: none !important;
    }
}

/* Advanced search overlay */
.advanced-search-overlay {
    inset: 0;
    opacity: 0;
    pointer-events: none;
    position: fixed;
    transition: opacity .22s ease;
    z-index: 99999;
}

.advanced-search-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
}

.advanced-search-backdrop {
    background: rgba(15, 23, 42, .46);
    backdrop-filter: blur(4px);
    inset: 0;
    position: absolute;
}

.advanced-search-panel {
    background: #f8fafc;
    border-radius: 22px;
    box-shadow: 0 26px 80px rgba(15, 23, 42, .28);
    left: 50%;
    max-height: min(760px, calc(100vh - 40px));
    max-width: 760px;
    overflow: hidden;
    position: absolute;
    top: 24px;
    transform: translate(-50%, 14px);
    transition: transform .22s ease;
    width: calc(100% - 28px);
}

.advanced-search-overlay.is-open .advanced-search-panel {
    transform: translate(-50%, 0);
}

.advanced-search-header {
    align-items: center;
    background: rgba(255, 255, 255, .96);
    border-bottom: 1px solid #e5e7eb;
    display: grid;
    gap: 10px;
    grid-template-columns: auto minmax(0, 1fr) auto;
    padding: 12px;
    position: sticky;
    top: 0;
    z-index: 2;
}

.advanced-search-icon-btn,
.advanced-search-input-wrap button {
    align-items: center;
    background: #f1f5f9;
    border: 0;
    border-radius: 50%;
    color: #334155;
    display: inline-flex;
    height: 38px;
    justify-content: center;
    width: 38px;
}

.advanced-search-input-wrap {
    align-items: center;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    display: grid;
    gap: 8px;
    grid-template-columns: auto minmax(0, 1fr) auto;
    min-height: 44px;
    padding: 4px 6px 4px 14px;
}

.advanced-search-input-wrap input {
    background: transparent;
    border: 0;
    color: #0f172a;
    font-size: 14px;
    font-weight: 800;
    min-height: 34px;
    outline: 0;
    width: 100%;
}

.advanced-search-input-wrap > i {
    color: #16a34a;
    font-size: 18px;
}

.advanced-search-submit {
    background: #16a34a;
    border: 0;
    border-radius: 999px;
    color: #fff;
    font-size: 13px;
    font-weight: 900;
    min-height: 40px;
    padding: 0 16px;
}

.advanced-search-body {
    max-height: calc(min(760px, 100vh - 40px) - 69px);
    overflow-y: auto;
    padding: 16px;
}

.advanced-search-section {
    margin-bottom: 18px;
}

.advanced-search-section__head {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.advanced-search-section__head h6 {
    color: #0f172a;
    font-size: 14px;
    font-weight: 900;
    margin: 0;
}

.advanced-search-section__head button {
    background: transparent;
    border: 0;
    color: #000;
    font-size: 12px;
    font-weight: 850;
}

.advanced-search-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.advanced-search-chip {
    background: #fff;
    border: 0;
    border-radius: 999px;
    box-shadow: inset 0 0 0 1px #e5e7eb;
    color: #334155;
    font-size: 12px;
    font-weight: 850;
    padding: 8px 12px;
    text-decoration: none;
}

.advanced-search-trending,
.advanced-search-results {
    display: grid;
    gap: 9px;
}

.advanced-search-product {
    align-items: center;
    background: #fff;
    border-radius: 14px;
    box-shadow: inset 0 0 0 1px #e5e7eb, 0 10px 22px rgba(15, 23, 42, .04);
    color: #0f172a;
    display: grid;
    gap: 10px;
    grid-template-columns: 54px minmax(0, 1fr) auto;
    padding: 9px;
    text-decoration: none;
    transition: transform .16s ease, box-shadow .16s ease;
}

.advanced-search-product:active,
.advanced-search-product:hover {
    box-shadow: inset 0 0 0 1px #bbf7d0, 0 12px 24px rgba(22, 163, 74, .08);
    transform: translateY(-1px);
}

.advanced-search-product img {
    background: #f8fafc;
    border-radius: 12px;
    height: 54px;
    object-fit: cover;
    width: 54px;
}

.advanced-search-product strong,
.advanced-search-product small {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.advanced-search-product strong {
    font-size: 13px;
    font-weight: 900;
}

.advanced-search-product small {
    color: #000;
    font-size: 11px;
    font-weight: 800;
    margin-top: 2px;
}

.advanced-search-product em {
    color: #047857;
    font-size: 13px;
    font-style: normal;
    font-weight: 950;
    white-space: nowrap;
}

.advanced-search-skeleton {
    animation: searchShimmer 1s ease infinite;
    background: linear-gradient(90deg, #f1f5f9 25%, #fff 37%, #f1f5f9 63%);
    background-size: 400% 100%;
    border-radius: 14px;
    height: 72px;
}

.advanced-search-empty {
    background: #fff;
    border-radius: 16px;
    color: #000;
    padding: 28px 18px;
    text-align: center;
}

.advanced-search-empty i {
    color: #16a34a;
    font-size: 32px;
}

.advanced-search-empty h6 {
    color: #0f172a;
    font-weight: 900;
    margin: 8px 0 4px;
}

.advanced-search-empty p {
    font-size: 13px;
    margin-bottom: 14px;
}

.advanced-search-empty a {
    color: #047857;
    font-weight: 900;
}

body.search-overlay-open {
    overflow: hidden;
}

@keyframes searchShimmer {
    0% {
        background-position: 100% 0;
    }

    100% {
        background-position: 0 0;
    }
}

@media (max-width: 767.98px) {
    .advanced-search-panel {
        border-radius: 0;
        inset: 0;
        max-height: 100vh;
        max-width: none;
        top: 0;
        transform: translateY(12px);
        width: 100%;
    }

    .advanced-search-overlay.is-open .advanced-search-panel {
        transform: translateY(0);
    }

    .advanced-search-header {
        gap: 8px;
        grid-template-columns: auto minmax(0, 1fr);
        padding: 10px;
    }

    .advanced-search-submit {
        display: none;
    }

    .advanced-search-body {
        max-height: calc(100vh - 65px);
        padding: 12px 10px 92px;
    }

    .advanced-search-chip-row {
        flex-wrap: nowrap;
        margin-left: -2px;
        margin-right: -2px;
        overflow-x: auto;
        padding: 2px;
    }

    .advanced-search-chip {
        flex: 0 0 auto;
    }

    .advanced-search-product {
        border-radius: 12px;
        grid-template-columns: 50px minmax(0, 1fr) auto;
    }

    .advanced-search-product img {
        height: 50px;
        width: 50px;
    }
}

@media (max-width: 767.98px) {
    .product-one-slider,
    .hot-deals-slider,
    .deals-week-slider {
        margin-left: -4px;
        margin-right: -4px;
    }

    .product-one-slider .slick-list,
    .hot-deals-slider .slick-list,
    .deals-week-slider .slick-list {
        overflow: hidden;
        padding: 0 !important;
    }

    .product-one-slider .slick-track,
    .hot-deals-slider .slick-track,
    .deals-week-slider .slick-track {
        margin-left: 0;
    }

    .product-one-slider .slick-slide,
    .hot-deals-slider .slick-slide,
    .deals-week-slider .slick-slide {
        padding: 0 4px;
    }

    .product-one-slider .product-card,
    .hot-deals-slider .product-card,
    .deals-week-slider .product-card {
        border-radius: 10px !important;
        padding: 8px !important;
    }

    .product-one-slider .product-card__thumb,
    .hot-deals-slider .product-card__thumb,
    .deals-week-slider .product-card__thumb {
        aspect-ratio: 1 / .78;
        min-height: auto;
    }

    .product-one-slider .product-card__thumb img,
    .hot-deals-slider .product-card__thumb img,
    .deals-week-slider .product-card__thumb img {
        max-height: 94px;
        object-fit: contain;
    }

    .product-one-slider .product-card__content,
    .hot-deals-slider .product-card__content,
    .deals-week-slider .product-card__content {
        margin-top: 6px !important;
    }

    .product-one-slider .product-card__price,
    .hot-deals-slider .product-card__price,
    .deals-week-slider .product-card__price {
        gap: 4px !important;
        margin-bottom: 4px !important;
    }

    .product-one-slider .product-card__price .text-sm,
    .product-one-slider .product-card__price .text-md,
    .product-one-slider .product-card__price .text-heading,
    .hot-deals-slider .product-card__price .text-sm,
    .hot-deals-slider .product-card__price .text-md,
    .hot-deals-slider .product-card__price .text-heading,
    .deals-week-slider .product-card__price .text-sm,
    .deals-week-slider .product-card__price .text-md,
    .deals-week-slider .product-card__price .text-heading {
        font-size: 12px !important;
        line-height: 1.2;
    }

    .product-one-slider .product-card .title,
    .hot-deals-slider .product-card .title,
    .deals-week-slider .product-card .title {
        font-size: 11px !important;
        font-weight: 700;
        line-height: 1.18 !important;
        margin: 5px 0 7px !important;
        min-height: 26px;
    }

    .product-one-slider .product-card .title a,
    .hot-deals-slider .product-card .title a,
    .deals-week-slider .product-card .title a {
        display: -webkit-box;
        overflow: hidden;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }

    .product-one-slider .product-card__cart,
    .hot-deals-slider .product-card__cart,
    .deals-week-slider .product-card__cart {
        font-size: 10px !important;
        justify-content: center;
        margin-top: 7px !important;
        min-height: 30px;
        padding: 6px 8px !important;
        white-space: nowrap;
    }

    .product-one-slider .product-card__cart i,
    .hot-deals-slider .product-card__cart i,
    .deals-week-slider .product-card__cart i {
        font-size: 12px;
    }
}
