@import url("https://fonts.googleapis.com/css2?family=Rubik:wght@100;200;300;400;500;600;700;800;900&family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");

body {
    font-family: "Rubik", sans-serif;
    font-weight: 400;
    background: #fff;
}

.top-header {
    padding: 6px 0;
    background-color: #1d1d1b;
}

.logo {
    height: 65px;
}

.search-header {
    border-radius: 5px;
}

.menu-header {
    background-color: #ffffff;
    box-shadow: 0 4px 3px rgba(0, 0, 0, 0.07), 0 2px 2px rgba(0, 0, 0, 0.06);
}

.menu-header .navbar-nav .dropdown-menu {
    margin-top: 0px;
}

.product-detail-section {
    background-color: #f5f7fb;
}

.product-gallery,
.product-summary,
.product-description-card {
    border: 1px solid rgba(15, 23, 42, 0.06);
}

.product-gallery-image {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    background: #f8fafc;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: zoom-in;
    border: none;
    width: 100%;
    padding: 0;
}

.product-gallery-image:focus-visible {
    outline: 3px solid rgba(37, 99, 235, 0.4);
    outline-offset: 2px;
}

.product-gallery-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.35s ease;
}

.product-gallery-image:hover img {
    transform: scale(1.05);
}

.product-gallery-zoom-hint {
    position: absolute;
    right: 16px;
    bottom: 16px;
    padding: 5px 14px;
    background: rgba(15, 23, 42, 0.72);
    color: #fff;
    font-size: 12px;
    letter-spacing: 0.05em;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    pointer-events: none;
}

.product-gallery-thumbbar {
    display: flex;
    align-items: center;
    gap: 12px;
}

.product-thumbs {
    display: flex;
    align-items: center;
    gap: 12px;
    overflow: hidden;
    scroll-behavior: smooth;
    flex: 1;
}

.product-thumb-item {
    flex: 0 0 auto;
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 2px;
    background: transparent;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.product-thumb-item:hover,
.product-thumb-item.active {
    border-color: #f27f20;
    box-shadow: 0 0 0 4px rgba(242, 127, 32, 0.12);
}

.product-thumb-img {
    width: 82px;
    height: 82px;
    object-fit: cover;
    border-radius: 10px;
}

.product-image-preview-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(2px);
    z-index: 1300;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.product-image-preview {
    position: relative;
    background: transparent;
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0 40px 90px rgba(15, 23, 42, 0.45);
    max-width: min(540px, 92vw);
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image-preview img {
    width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 14px;
}

.product-image-preview__close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 30px;
    height: 30px;
    border-radius: 999px;
    border: none;
    background: #d94a0b;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: transform 0.2s ease, background 0.2s ease;
}

.product-image-preview__close:hover {
    transform: translateY(-1px);
    background: #d94a0b;
    color: #fff;
}

.thumb-nav {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid #d0d5dd;
    background: #ffffff;
    color: #101828;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.thumb-nav:hover {
    background: #f27f20;
    color: #fff;
    border-color: #f27f20;
}

.thumb-nav:disabled {
    opacity: 0.4;
    pointer-events: none;
}

.product-breadcrumb {
    letter-spacing: 0.12em;
    font-size: 0.75rem;
}

.product-title {
    line-height: 1.35;
}

.product-price-current {
    font-size: 1.9rem;
    font-weight: 700;
    color: #f27f20;
}

.product-price-compare {
    text-decoration: line-through;
    font-weight: 500;
}

.product-option-group+.product-option-group {
    margin-top: 18px;
}

.product-option-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #475467;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
}

.product-option-items {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.product-option-pill {
    margin: 0;
    position: relative;
    cursor: pointer;
}

.product-option-pill input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.product-option-pill span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 64px;
    padding: 0.4rem 0.95rem;
    border-radius: 999px;
    border: 1px solid #d0d5dd;
    font-size: 0.85rem;
    font-weight: 500;
    color: #344054;
    background: #fff;
    transition: all 0.25s ease;
}

.product-option-pill:hover span {
    border-color: #f27f20;
    color: #f27f20;
}

.product-option-pill input:checked+span {
    background: #f27f20;
    border-color: #f27f20;
    color: #fff;
    box-shadow: 0 8px 16px rgba(242, 127, 32, 0.24);
}

.product-action-group .btn {
    min-height: 40px;
    font-weight: 600;
    border-radius: 12px;
}

.product-action-group .btn i {
    font-size: 1.05rem;
}

.product-note {
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    padding-top: 16px;
}

.product-description-section {
    background-color: #f5f7fb;
}

.product-description-content p {
    margin-bottom: 1rem;
    color: #475467;
    line-height: 1.7;
}

.product-description-content ul {
    padding-left: 1.1rem;
    margin-bottom: 1rem;
}

.product-description-content li {
    margin-bottom: 0.5rem;
    color: #475467;
}

.homepage-quick-link {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.homepage-quick-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.12);
}

.quick-link-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #f2f4f7;
    color: #f27f20;
    font-size: 22px;
}

.quick-link-icon i {
    font-size: 22px;
}

.quick-link-icon img {
    max-width: 32px;
    max-height: 32px;
}

.featured-category-banners .featured-banner-card {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
}

.featured-category-banners .featured-banner-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
    transition: transform 0.3s ease;
}

.featured-category-banners .featured-banner-card:hover img {
    transform: scale(1.03);
}

.featured-banner-caption {
    position: absolute;
    left: 16px;
    bottom: 16px;
    right: 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: rgba(15, 23, 42, 0.55);
    color: #ffffff;
    padding: 12px 16px;
    border-radius: 12px;
}

.featured-banner-title {
    font-weight: 600;
    font-size: 1rem;
}

.featured-banner-subtitle {
    font-size: 0.85rem;
    opacity: 0.85;
}

.flash-sale-block .flash-sale-card {
    border-radius: 18px;
    background: #ffffff;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.flash-sale-block .flash-sale-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.12);
}

.flash-sale-header-countdown {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border-radius: 999px;
    padding: 6px 14px;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.flash-sale-header-countdown i {
    font-size: 18px;
}

.flash-sale-header-timer {
    min-width: 90px;
    text-align: center;
}

.flash-sale-badge {
    top: 12px;
    right: 12px;
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 999px;
}

.flash-sale-timer {
    font-weight: 600;
    letter-spacing: 0.05em;
}

.flash-sale-timer .countdown-value {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(220, 53, 69, 0.12);
    color: #dc3545;
    min-width: 110px;
}

.brand-showcase {
    background-color: #f5f7fb;
    border-radius: 20px;
    padding: 32px 28px;
}

.brand-showcase .brand-card {
    background: #ffffff;
    border-radius: 18px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.brand-showcase .brand-card img {
    object-fit: contain;
    width: 100%;
}

.brand-showcase .brand-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.12);
}

.product-lightbox {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    z-index: 1060;
}

.product-lightbox.show {
    opacity: 1;
    visibility: visible;
}

.product-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(3px);
}

.product-lightbox-content {
    position: relative;
    z-index: 1;
    max-width: 92vw;
    max-height: 92vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-lightbox-content img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 18px;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.4);
    background: #fff;
}

.lightbox-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: rgba(15, 23, 42, 0.85);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease;
    z-index: 2;
}

.lightbox-close:hover {
    background: #f27f20;
    color: #fff;
}

body.lightbox-open {
    overflow: hidden;
}

@media (max-width: 991.98px) {
    .product-gallery-image {
        min-height: 320px;
    }

    .product-price-current {
        font-size: 1.65rem;
    }
}

@media (max-width: 575.98px) {
    .product-detail-section {
        padding-top: 1.5rem;
    }

    .product-gallery-thumbbar {
        gap: 10px;
    }

    .product-thumb-img {
        width: 68px;
        height: 68px;
    }

    .product-action-group .btn {
        min-height: 44px;
    }
}

.category-dropdown,
.dropdown-menu-nested {
    min-width: 240px;
    padding: 0px 0;
    border: none;
    border-radius: 6px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.category-dropdown .category-submenu-item,
.dropdown-menu-nested .category-submenu-item {
    display: block;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 500;
    color: #000;
}

.category-dropdown .category-submenu-item:hover,
.category-dropdown .category-submenu-item:focus,
.dropdown-menu-nested .category-submenu-item:hover,
.dropdown-menu-nested .category-submenu-item:focus {
    background-color: #f2f2f2;
    color: #000;
}

.dropdown-item a {
    color: #000;
}

.navbar-expand-lg .navbar-nav .nav-link {
    color: #000 !important;
    font-size: 14px;
    font-family: "Rubik", sans-serif;
    margin-left: 4px;
}

.navbar-expand-lg .navbar-nav .nav-link:hover {
    color: #f27f20 !important;
}

.icon-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.icon {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.iconi {
    font-size: 35px;
    color: #ffffff;
    background: #f27f20;
    border-radius: 8px;
}

.searchicon {
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    color: #f27f20;
}

.icon-title {
    font-size: 15px;
    color: #fff;
    text-decoration: none;

}

.icon-title a {
    color: #fff;
    text-decoration: none;

}

.icon-subtitle {
    font-size: 11px;
    color: #fdf3f3;
    margin-top: -2px;
}

.cart-btn {
    position: relative;
}

.btn-menu-secondary {
    border: 1px solid #323230;
    color: #fff;
    text-transform: uppercase;
    font-family: "Rubik";
    font-weight: 500;
}

.btn-menu-secondary:hover {
    border: 1px solid #f27f20;
    color: #fff !important;
    text-transform: uppercase;
    font-family: "Rubik";
    font-weight: 500;
}

.gap-25 {
    gap: 14px;
}

.footer-section {
    background: #000000;
    position: relative;
}

.footer-cta {
    border-bottom: 1px solid #373636;
}

.single-cta i {
    color: #ff5e14;
    font-size: 30px;
    float: left;
    margin-top: 8px;
}

.cta-text {
    padding-left: 15px;
    display: inline-block;
}

.cta-text h4 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 2px;
}

.cta-text span {
    color: #757575;
    font-size: 15px;
}

.footer-content {
    position: relative;
    z-index: 2;
}

.footer-pattern img {
    position: absolute;
    top: 0;
    left: 0;
    height: 330px;
    background-size: cover;
    background-position: 100% 100%;
}

.footer-logo {
    margin-bottom: 30px;
}

.footer-logo img {
    max-width: 200px;
}

.footer-text p {
    margin-bottom: 14px;
    font-size: 14px;
    color: #7e7e7e;
    line-height: 28px;
}

.footer-social-icon span {
    color: #fff;
    display: block;
    font-size: 20px;
    font-weight: 700;
    font-family: "Poppins", sans-serif;
    margin-bottom: 20px;
}

.footer-social-icon a {
    color: #fff;
    font-size: 16px;
    margin-right: 15px;
}

.footer-social-icon i {
    height: 35px;
    width: 35px;
    text-align: center;
    line-height: 32px;
    border-radius: 50%;
    background: #1d1d1b;
    border: 1px solid #323230;
}

.facebook-bg {
    background: #3b5998;
}

.twitter-bg {
    background: #55acee;
}

.google-bg {
    background: #dd4b39;
}

.footer-widget-heading h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 40px;
    position: relative;
}

.footer-widget-heading h3::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -15px;
    height: 2px;
    width: 50px;
    background: #ff5e14;
}

.footer-widget ul li {
    display: inline-block;
    float: left;
    width: 50%;
    margin-bottom: 12px;
}

.footer-widget ul li a:hover {
    color: #ff5e14;
}

.footer-widget ul li a {
    color: #878787;
    text-transform: capitalize;
    text-decoration: auto;
}

.subscribe-form {
    position: relative;
    overflow: hidden;
}

.subscribe-form input {
    width: 100%;
    padding: 14px 28px;
    background: #2e2e2e;
    border: 1px solid #2e2e2e;
    color: #fff;
}

.subscribe-form button {
    position: absolute;
    right: 0;
    background: #ff5e14;
    padding: 13px 20px;
    border: 1px solid #ff5e14;
    top: 0;
}

.subscribe-form button i {
    color: #fff;
    font-size: 22px;
    transform: rotate(-6deg);
}

.copyright-area {
    background: #000000;
    padding: 0px 0;
}

.copyright-text p {
    margin: 15px;
    font-size: 14px;
    color: #fff;
}

.copyright-text p a {
    color: #ff5e14;
}

.footer-menu li {
    display: inline-block;
    margin-left: 20px;
}

.footer-menu li:hover a {
    color: #ff5e14;
}

.footer-menu li a {
    font-size: 14px;
    color: #878787;
}

.copyright-area .copyright-text {
    margin-top: 8px;
}

.carousel-image {
    height: auto;
    object-fit: fill;
    border-radius: 15px;
}

.carousel-indicators {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    display: flex;
    justify-content: center;
    padding: 0;
    margin-right: 15%;
    margin-bottom: 0rem;
    margin-left: 15%;
}

.carousel-control-prev-icon {
    margin-left: -60px;
}

.carousel-control-next-icon {
    margin-right: -60px;
}

.mainpage {
    margin-top: 8.5rem !important;
}

.moicon {
    color: #fff;
    font-size: 20px;
}

.momennu {
    margin-top: 65px !important;
    border-right: none !important;
    width: 100% !important;
}

.offcanvas-body {
    margin: 0px;
    padding: 0px;
}

#accordionMenu {
    max-width: 300px;
}

.panel-body {
    padding: 0;
}

.panel-group .panel+.panel {
    margin-top: 0;
    border-top: 0;
}

.panel-group .panel {
    border-radius: 0;
}

.panel-default>.panel-heading {
    color: #333;
    background-color: #fff;
    border-color: #e4e5e7;
    padding: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.panel-default>.panel-heading a {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
}

.panel-default>.panel-heading a:after {
    content: "";
    position: relative;
    top: 1px;
    display: inline-block;
    font-family: "Glyphicons Halflings";
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    float: right;
    transition: transform 0.25s linear;
    -webkit-transition: -webkit-transform 0.25s linear;
}

.panel-default>.panel-heading a[aria-expanded="true"] {
    background-color: #eee;
}

.panel-default>.panel-heading a[aria-expanded="true"]:after {
    content: "\e113";
}

.panel-default>.panel-heading a[aria-expanded="false"]:after {
    content: "\e114";
}

.accordion-button {
    color: #ffffff;
    background-color: #1d1d1b;
    padding: 8px;
}

.accordion-body {
    padding: 0px;
    background: #fff;
}

.acb {
    background: #1d1d1b;
}

.acb .nav-link {
    color: #fff !important;
}

.dropdown-item:focus,
.dropdown-item:hover {
    color: #fdfcfb;
    background-color: #f27f20;
}

.after-slider a {
    text-decoration: none !important;
}

.after-slider a {
    text-decoration: none !important;
}

.after-slider h6 {
    color: #000;
}

.after-slider p {
    color: #000;
}

.category_menu .group {
    border-radius: 14px;
    background: #fff;
}

.category_menu .cat_icon {
    font-size: 20px;

}

.category_menu a {
    text-decoration: none !important;
}

.category_menu p {
    color: #000;
    font-size: 14px;
    margin: 0px;
    padding: 2px;
    width: 100%;
}

.category_menu .group:hover {
    border-radius: 14px;
    background: #ffffff;
}

.box-shadow-sm {
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.product-box {
    background: #fff;
    border-color: transparent;
    box-shadow: 0 12px 12px -6px rgba(0, 0, 0, 0.06);
}

.product-box a {
    color: #373636 !important;
    text-decoration: none !important;
    font-size: 16px;
}

.product-box a h5 {
    font-size: 14px;
    height: 80px;
}

.product-box a .price {
    color: #f27f20;
    font-size: 17px;
    font-weight: 500;
}

.product-box a .ml-2 {
    margin-left: 10px;
}

.product-box .btn-primary {
    background-color: rgba(242, 110, 33, 0.1);
    color: #f27f20;
    font-weight: 500;
    border: none;
    font-size: 14px;
    margin-left: -8px;
    padding: 8px;
}

.product-box .btn-primary:hover {
    background-color: #f27f20;
    color: #fff !important;
    border: none;
    font-weight: 500;
    font-size: 14px;
    margin-left: -8px;
    padding: 8px;
}

.product-box .btn-secondary {
    background-color: #36454f1a;
    color: #36454f;
    border: none;
    font-weight: 500;
    font-size: 14px;
    margin-left: -8px;
    padding: 8px;
}

.product-box .btn-secondary:hover {
    background-color: #36454f;
    color: #fff !important;
    border: none;
    font-size: 14px;
    font-weight: 500;
    margin-left: -8px;
    padding: 8px;
}

.product-box .gap-2 {
    gap: 0.8rem !important;
}

@media (min-width: 992px) {
    .col-lg-5th {
        flex: 0 0 20% !important;
        max-width: 20% !important;
    }
}

@media (min-width: 1400px) {
    .col-xxl-5th {
        flex: 0 0 20% !important;
        max-width: 20% !important;
    }
}

.product-carousel {
    position: relative;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 20%;
    border: 1px solid #ddd;
    padding: 5px;
    cursor: Rubik;
    z-index: 10;
}

.left-arrow {
    left: -20px;
}

.right-arrow {
    right: -20px;
}

.carousel-arrow svg path {
    stroke: #292d32;
}

@media (max-width: 768px) {
    .product-carousel .carousel-inner .carousel-item .d-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .left-arrow {
        display: none !important;
    }

    .right-arrow {
        display: none !important;
    }

    .top-header {
        padding: 8px;
        background-color: #1d1d1b;
    }
}

@media (min-width: 768px) {
    .product-carousel .carousel-inner .carousel-item .d-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

/* Cart */
/* Open dropdown on hover */
.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu {
    margin-top: 0;
    border-radius: 0.25rem;
}

.footer {
    border-bottom: 1px solid #eee;
    border-top: 1px solid #eee !important;
    color: #fff;
}

.footer a {
    color: #fff;
    text-decoration: none;
}

.footer a:hover {
    color: #f27f20;
}

.app img {
    height: 32px;
    margin: 0 11px 0 0;
}

.footer-bottom p {
    line-height: 16px;
}

.footer-social a {
    background: #000 none repeat scroll 0 0;
    border: 1px solid;
    border-radius: 25px;
    color: #fff;
    display: inline-block;
    height: 30px;
    line-height: 27px;
    text-align: center;
    width: 30px;
}

.footer-social a:hover {
    background: #133c0b none repeat scroll 0 0;
    border: 1px solid #ccc;
    color: #fff;
}

.footer-bottom p {
    color: #fff;
}

.footer-bottom .text-dark {
    color: #fff !important;
}

.footer-bottom .text-primary {
    color: #ff253a !important;
}

.pp-10 {
    margin-top: 145px;
}

.imgad-section {
    background-color: #f8f9fa;
    padding-top: 50px;
    padding-bottom: 50px;
}

.imgad-section img {
    border-radius: 12px;
    padding: 10px;
    border-radius: 25px;
}

.cart-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: white;
    width: 300px;
    border: 1px solid #ddd;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
    display: none;
}

.cart-hover:hover .cart-dropdown {
    display: block;
}

.cart-item {
    padding: 10px;
    border-bottom: 1px solid #eee;
}

.cart-footer {
    text-align: center;
    padding: 10px;
}

.cart-footer a {
    display: inline-block;
    padding: 8px 16px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}



a {
    text-decoration: none !important;
}

.search-header-wrapper {
    position: relative;
}

.search-panel-container {
    position: absolute;
    top: 110%;
    left: 0;
    right: 0;
    z-index: 1050;
}

.search-results-panel {
    background-color: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 16px;
    max-height: 420px;
    overflow-y: auto;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.search-result-card {
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    padding: 12px;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.search-result-card:hover {
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.mobile-menu-backdrop,
.mobile-search-backdrop {
    position: fixed;
    inset: 0;
    z-index: 1100;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    padding: 0 16px 16px;
    background: rgba(15, 23, 42, 0.55);
    backdrop-filter: blur(4px);
}

.mobile-search-backdrop {
    justify-content: center;
    align-items: center;
    padding: 24px 18px;
}

.mobile-menu-panel {
    width: min(360px, 92vw);
    max-height: calc(100vh - 32px);
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 24px;
    box-shadow: 0 28px 60px rgba(15, 23, 42, 0.25);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    padding: 20px;
    gap: 20px;
    animation: mobileMenuSlideIn 0.28s ease forwards;
}

.mobile-search-sheet {
    background: #ffffff;
    border-radius: 26px;
    width: min(520px, 100%);
    max-height: calc(100vh - 48px);
    display: flex;
    flex-direction: column;
    box-shadow: 0 34px 60px rgba(15, 23, 42, 0.25);
    overflow: hidden;
    animation: mobileSearchFadeIn 0.22s ease forwards;
}

.mobile-menu-panel__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.mobile-menu-panel__subtitle {
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #64748b;
    margin-bottom: 4px;
}

.mobile-menu-panel__title {
    margin: 0;
    font-size: 1.35rem;
    font-weight: 700;
    color: #0f172a;
}

.mobile-menu-panel__close {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    border: none;
    background: #e2e8f0;
    color: #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
    cursor: pointer;
}

.mobile-menu-panel__close:hover,
.mobile-menu-panel__close:focus-visible {
    background: #f07e20;
    color: #ffffff;
    transform: translateY(-1px);
}

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

.menu-action {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 18px;
    background: #f1f5f9;
    border: none;
    color: #0f172a;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
    cursor: pointer;
}

.menu-action__icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: rgba(37, 99, 235, 0.12);
    color: #f07e20;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.menu-action__label {
    flex: 1;
    text-align: left;
}

.menu-action:hover,
.menu-action:focus-visible {
    background: #f07e20;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 18px 32px rgba(37, 99, 235, 0.25);
}

.menu-action:hover .menu-action__icon,
.menu-action:focus-visible .menu-action__icon {
    background: rgba(255, 255, 255, 0.24);
    color: #ffffff;
}

.mobile-menu-panel__section {
    background: rgba(15, 23, 42, 0.02);
    border-radius: 20px;
    padding: 16px 18px 18px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mobile-menu-panel__section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.mobile-menu-panel__section-head h6 {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 700;
    color: #0f172a;
}

.mobile-menu-panel__section-head a {
    font-size: 0.85rem;
    font-weight: 600;
    color: #f07e20;
    text-decoration: none;
}

.mobile-menu-panel__section-head a:hover,
.mobile-menu-panel__section-head a:focus-visible {
    text-decoration: underline;
}

.mobile-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mobile-menu-item {
    border-radius: 18px;
    border: 1px solid rgba(148, 163, 184, 0.18);
    background: #ffffff;
    padding: 14px 16px;
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.mobile-menu-item--expanded {
    border-color: rgba(37, 99, 235, 0.45);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.15);
}

.mobile-menu-item__primary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.mobile-menu-item__link {
    flex: 1;
    text-decoration: none;
    color: #0f172a;
    font-weight: 600;
    font-size: 0.98rem;
}

.mobile-menu-item__link:hover,
.mobile-menu-item__link:focus-visible {
    color: #f07e20;
}

.mobile-menu-item__toggle {
    border: none;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: rgba(37, 99, 235, 0.12);
    color: #f07e20;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: background 0.2s ease, color 0.2s ease;
    cursor: pointer;
}

.mobile-menu-item__toggle:hover,
.mobile-menu-item__toggle:focus-visible {
    background: #f07e20;
    color: #ffffff;
}

.mobile-menu-item__chevron {
    color: #94a3b8;
    font-size: 1rem;
}

.mobile-menu-sublist {
    margin-top: 14px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mobile-menu-sublist__link {
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    color: #f07e20;
}

.mobile-menu-sublist__link:hover,
.mobile-menu-sublist__link:focus-visible {
    text-decoration: underline;
}

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

.mobile-menu-subgrid__link {
    text-decoration: none;
    color: #475569;
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: 14px;
    border: 1px solid rgba(148, 163, 184, 0.25);
    padding: 10px 12px;
    transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.mobile-menu-subgrid__link:hover,
.mobile-menu-subgrid__link:focus-visible {
    border-color: #f07e20;
    color: #f07e20;
    background: rgba(37, 99, 235, 0.08);
}

.mobile-menu-panel__more {
    font-size: 0.88rem;
    font-weight: 600;
    color: #f07e20;
    text-decoration: none;
}

.mobile-menu-panel__more:hover,
.mobile-menu-panel__more:focus-visible {
    text-decoration: underline;
}

.mobile-menu-support {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.support-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 18px;
    text-decoration: none;
    color: #0f172a;
    background: rgba(37, 99, 235, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.support-card__icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: #f07e20;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.support-card__text {
    display: flex;
    flex-direction: column;
    font-weight: 600;
    line-height: 1.25;
}

.support-card__text small {
    font-weight: 500;
    font-size: 0.78rem;
    color: #64748b;
}

.support-card:hover,
.support-card:focus-visible {
    transform: translateY(-2px);
    background: #f07e20;
    color: #ffffff;
    box-shadow: 0 22px 36px rgba(37, 99, 235, 0.25);
}

.support-card:hover .support-card__icon,
.support-card:focus-visible .support-card__icon {
    background: rgba(255, 255, 255, 0.22);
}

.support-card:hover .support-card__text small,
.support-card:focus-visible .support-card__text small {
    color: rgba(255, 255, 255, 0.7);
}

.mobile-search-sheet__header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px 12px;
    border-bottom: 1px solid rgba(148, 163, 184, 0.2);
    background: #ffffff;
}

.mobile-search-sheet__back,
.mobile-search-sheet__clear {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    border: none;
    background: #e2e8f0;
    color: #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
    cursor: pointer;
}

.mobile-search-sheet__back:hover,
.mobile-search-sheet__back:focus-visible,
.mobile-search-sheet__clear:hover,
.mobile-search-sheet__clear:focus-visible {
    background: #f07e20;
    color: #ffffff;
    transform: translateY(-1px);
}

.mobile-search-sheet__field {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f1f5f9;
    border-radius: 18px;
    padding: 2px 12px;
    border: 1px solid transparent;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.mobile-search-sheet__field:focus-within {
    border-color: #f07e20;
    background: #ffffff;
}

.mobile-search-sheet__field input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 12px 0;
    font-size: 0.95rem;
    color: #0f172a;
}

.mobile-search-sheet__field input:focus {
    outline: none;
}

.mobile-search-sheet__field i {
    font-size: 1.15rem;
    color: #64748b;
}

.mobile-search-sheet__content {
    flex: 1;
    overflow-y: auto;
    padding: 18px 20px 24px;
    background: #f8fafc;
}

.mobile-search-sheet__content .search-results-panel {
    background: transparent;
    box-shadow: none;
}

.mobile-search-sheet__content .search-result-card {
    border: 1px solid rgba(148, 163, 184, 0.22);
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.mobile-search-sheet__content .search-result-card:hover {
    border-color: #f07e20;
    transform: translateY(-2px);
}

@keyframes mobileMenuSlideIn {
    from {
        transform: translate3d(20px, 24px, 0);
        opacity: 0;
    }

    to {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

@keyframes mobileSearchFadeIn {
    from {
        transform: translateY(24px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cart-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background-color: #ff6a00;
    color: #ffffff;
    font-size: 11px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.search-header-wrapper .search-header {
    padding-right: 42px;
}

.search-header-wrapper .searchicon {
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: #9ca3af;
}

.mobile-header {
    z-index: 1080;
}

.website-app main {
    padding-top: 135px !important;
}

.website-app.home-page main {
    padding-top: 5px !important;
}

.website-app .product-items-slider {
    padding-top: 10px !important;
}


.funds-checkmark-container {
    width: 70px;
    margin: 0 auto;
}

.funds-checkmark {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: block;
    stroke-width: 5;
    stroke: #ffffff;
    stroke-miterlimit: 10;
    margin: 10% auto;
    box-shadow: inset 0px 0px 0px #33bb11;
    animation: fill 0.4s ease-in-out 0.4s forwards, scale 0.3s ease-in-out 0.9s both;
}

.funds-checkmark-circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 5;
    stroke-miterlimit: 10;
    stroke: #33bb11;
    fill: none;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.funds-checkmark-check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes scale {

    0%,
    100% {
        transform: none;
    }

    50% {
        transform: scale3d(1.1, 1.1, 1);
    }
}

@keyframes fill {
    100% {
        box-shadow: inset 0px 0px 0px 30px #33bb11;
    }
}

.tracking-item {
    border-left: 4px solid #343777;
    position: relative;
    padding: 1.5rem 1rem 1rem 2rem;
}

.tracking-item .tracking-icon {
    position: absolute;
    left: -10px;
    top: 8px;
    color: #fc0000;
}

.tracking-item .tracking-content {
    background: #f4f4f4;
    padding: 1rem;
    border-radius: 0.5rem;
}

@media (min-width: 992px) {
    .tracking-item {
        margin-left: 6rem;
    }

    .tracking-item::before {
        content: attr(data-time);
        position: absolute;
        left: -6rem;
        top: 10px;
        width: 5rem;
        text-align: right;
        font-size: 0.85rem;
        color: #6b7280;
    }
}

.skeleton-block {
    position: relative;
    overflow: hidden;
    background-color: #f2f4f7;
    border-radius: 12px;
}

.skeleton-block::after {
    content: "";
    position: absolute;
    inset: 0;
    transform: translateX(-100%);
    background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0));
    animation: skeleton-shimmer 1.4s infinite;
}

.skeleton-circle {
    border-radius: 50%;
}

.skeleton-line {
    height: 12px;
    margin-bottom: 10px;
}

.skeleton-line:last-child {
    margin-bottom: 0;
}

.skeleton-card {
    padding: 16px;
    border-radius: 18px;
    background-color: #ffffff;
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.06);
}

.skeleton-grid {
    gap: 1.5rem;
}

.skeleton-grid>* {
    flex: 1 1 200px;
}

@keyframes skeleton-shimmer {
    100% {
        transform: translateX(100%);
    }
}

.cart-card {
    background: #ffffff;
    border-radius: 18px;
    border: none;
    overflow: hidden;
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
}

.cart-card__header {
    padding: 24px;
    box-shadow: inset 0 -1px 0 rgba(15, 23, 42, 0.06);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.cart-card__title {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
}

.cart-card__subtitle {
    margin: 4px 0 0;
    color: #64748b;
    font-size: 0.95rem;
}

.cart-clear-btn {
    font-weight: 600;
}

.cart-item-list {
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.cart-item-card {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    background: #f8fafc;
    border: none;
    border-radius: 16px;
    padding: 16px 18px;
    align-items: center;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cart-item-card:hover {
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
    transform: translateY(-2px);
}

.cart-item-card.skeleton-state {
    background: #ffffff;
    box-shadow: 0 8px 16px rgba(15, 23, 42, 0.04);
}

.cart-item-thumb {
    flex-shrink: 0;
}

.cart-item-thumb img {
    width: 96px;
    height: 96px;
    object-fit: cover;
    border-radius: 12px;
    background: #eff2f9;
}

.cart-item-body {
    flex: 1;
    min-width: 220px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cart-item-title {
    font-weight: 600;
    color: #0f172a;
    text-decoration: none;
    display: inline-block;
}

.cart-item-title:hover {
    color: #f07e20;
}

.cart-item-pricing {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: #0f172a;
}

.cart-qty-stepper {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    border: 1px solid #d7dfef;
    border-radius: 999px;
    padding: 6px 16px;
    width: 128px;
    background: #ffffff;
}

.form-control {
    height: 50px !important;
}

.cart-qty-btn {
    border: none;
    background: none;
    font-size: 18px;
    color: #0f172a;
    cursor: pointer;
    padding: 0;
}

.cart-qty-btn:hover {
    color: #f07e20;
}

.cart-qty-value {
    min-width: 24px;
    text-align: center;
    font-weight: 600;
}

.cart-item-sidebar {
    text-align: right;
    min-width: 130px;
}

.cart-item-total-label {
    display: block;
    font-size: 0.75rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 3px;
}

.cart-item-total-value {
    font-weight: 700;
    font-size: 1.05rem;
    color: #0f172a;
}

.cart-remove-btn {
    border: none;
    background: none;
    color: #ef4444;
    font-size: 0.9rem;
    padding: 0;
}

.cart-remove-btn:hover {
    text-decoration: underline;
    color: #dc2626;
}

.cart-summary-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
    padding: 28px;
    position: sticky;
    top: 110px;
}

top: 110px;
}

.cart-summary-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.3rem;
}

.cart-summary-list li {
    padding: 0.4rem 0;
    font-weight: 500;
    color: #0f172a;
}

.cart-summary-total {
    box-shadow: inset 0 1px 0 rgba(148, 163, 184, 0.25);
    padding-top: 1rem;
    font-weight: 700;
    font-size: 1.1rem;
}

.cart-empty-card {
    background: #ffffff;
    border: none;
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
    border-radius: 18px;
    padding: 60px 40px;
}

.cart-empty-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #eff6ff;
    color: #f07e20;
    font-size: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.page-item.active .page-link {
    z-index: 1;
    color: #fff;
    background-color: #f27f20;
    border-color: #f27f20;
    border-radius: 5px;
}

.search-results-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.search-result-row {
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.08);
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    background: #ffffff;
    border-radius: 16px;
    border: none;
    padding: 18px;
}

display: flex;
flex-wrap: wrap;
gap: 18px;
background: #ffffff;
border-radius: 16px;
border: none;
padding: 18px;
}

.search-result-thumb {
    flex-shrink: 0;
}

.search-result-thumb img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 12px;
    background: #f1f5f9;
}

.search-result-content {
    flex: 1;
    min-width: 220px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.search-result-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: #0f172a;
    text-decoration: none;
}

.search-result-title:hover {
    color: #f07e20;
}

.search-result-price {
    font-size: 1.1rem;
}

.search-result-actions .btn {
    min-width: 120px;
}

.search-result-empty {
    border: 1px dashed #e2e8f0;
    border-radius: 16px;
}

.otp-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.55);
    z-index: 1200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.otp-modal-card {
    background: #ffffff;
    border-radius: 20px;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 28px 48px rgba(15, 23, 42, 0.2);
    padding: 32px;
    position: relative;
}

.otp-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    border: none;
    background: none;
    font-size: 1.2rem;
    color: #64748b;
    cursor: pointer;
}

.otp-modal-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #0f172a;
}

.otp-modal-text {
    font-size: 0.95rem;
    color: #64748b;
    margin-bottom: 24px;
}

.otp-modal-actions .btn {
    width: 100%;
}

.otp-modal-resend {
    font-size: 0.85rem;
    color: #64748b;
    margin-top: 12px;
    text-align: center;
}

.otp-modal-resend button {
    background: none;
    border: none;
    color: #f07e20;
    font-weight: 600;
    cursor: pointer;
}

@media (max-width: 991.98px) {
    .cart-summary-card {
        position: static;
        margin-top: 12px;
    }
}

@media (max-width: 767.98px) {
    .cart-item-card {
        align-items: flex-start;
    }

    .cart-item-sidebar {
        width: 100%;
        text-align: left;
    }

    .cart-item-thumb img {
        width: 88px;
        height: 88px;
    }

    .search-result-thumb img {
        width: 100px;
        height: 100px;
    }

    .otp-modal-card {
        padding: 24px;
    }
}

.swal-cart-toast {
    border-radius: 14px;
    background: #ffffff;
    color: #1f2937;
    box-shadow: 0 22px 44px rgba(15, 23, 42, 0.18);
    border: 1px solid rgba(15, 23, 42, 0.08);
}

.swal-cart-toast__title {
    font-weight: 700;
    font-size: 1rem;
    color: #111928;
}

.swal-cart-toast__subtitle {
    font-size: 0.85rem;
    color: #4b5563;
}

.swal-cart-toast__icon {
    color: #f07e20 !important;
}

.home-sidebar-banner {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.08);
}

@media (max-width: 991.98px) {
    .home-sidebar-banner {
        height: 180px;
    }
}


@media (max-width: 991.98px) {
    .home-sidebar-banner {
        height: 180px;
    }
}

.mobile-header {
    background: #1d1d1b;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
}

.mobile-header__logo-img {
    height: 38px;
    width: auto;
}

.mobile-header__logo-text {
    font-weight: 700;
    color: #111827;
    font-size: 1rem;
}

.mobile-menu-backdrop {
    background: rgba(15, 23, 42, 0.55);
}

.mobile-offcanvas {
    background: #0f172a;
    width: 320px;
    max-width: 82vw;
    box-shadow: 0 24px 48px rgba(15, 23, 42, 0.45);
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}


.mobile-footer-menu {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(148, 163, 184, 0.18);
    box-shadow: 0 -20px 40px rgba(15, 23, 42, 0.16);
    padding: 12px 18px calc(12px + env(safe-area-inset-bottom));
}

.mobile-footer-menu__items {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.mobile-footer-menu__item {
    flex: 1;
}

.mobile-footer-menu__link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: #475569;
    font-size: 0.75rem;
    font-weight: 600;
    transition: color 0.2s ease;
    padding: 2px 0;
}

.mobile-footer-menu__icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 40px;
    border-radius: 18px;
    background: #f1f5f9;
    color: #1f2937;
    font-size: 1.25rem;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.mobile-footer-menu__badge {
    position: absolute;
    top: -6px;
    right: -6px;
    min-width: 18px;
    padding: 0 4px;
    height: 18px;
    border-radius: 999px;
    background: #ef4444;
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-footer-menu__label {
    line-height: 1;
}

.mobile-footer-menu__link:hover,
.mobile-footer-menu__link.is-active,
.mobile-footer-menu__link.is-active .mobile-footer-menu__label {
    color: #f07e20;
}

.mobile-footer-menu__link:hover .mobile-footer-menu__icon,
.mobile-footer-menu__link.is-active .mobile-footer-menu__icon {
    background: #f07e20;
    color: #ffffff;
    transform: translateY(-3px);
}

.mobile-footer-menu__item button.mobile-footer-menu__link {
    width: 100%;
    border: none;
    background: none;
}

.mobile-footer-menu__item button.mobile-footer-menu__link:disabled {
    color: #cbd5f5;
}

.mobile-footer-menu__item button.mobile-footer-menu__link:disabled .mobile-footer-menu__icon {
    background: #e2e8f0;
    color: #94a3b8;
    transform: none;
}

.mobile-header__logo {
    text-decoration: none;
    margin-left: 10px;
}

@media (max-width: 767.98px) {
    .website-app main {
        padding-top: 40px !important;
    }

    .website-app.home-page main {
        padding-top: 0 !important;
    }
}

/* Theme wrappers */
.theme-default {}

.theme-gadget-shop {}

.theme-fashion-shop {}

.theme-beauty-shop {}

.theme-modern-shop {}