﻿/**
 * Project custom CSS.
 *
 * Prefer Bootstrap 5 utilities and bootstrap-theme.css classes in markup
 * before adding rules here. This file is for fixes Bootstrap cannot express.
 */

/* bootstrap-theme.css references --bs-alternative but never defines it */
:root {
    --bs-alternative: var(--ds-alternative);
    --motion-fast: 160ms;
    --motion-normal: 220ms;
    --motion-slow: 400ms;
    --motion-ease: cubic-bezier(0.22, 1, 0.36, 1);
}


/* =========================================================
   SHOP HEADER
   ========================================================= */

.shop-header {
    box-shadow: 0 0.125rem 0.5rem rgba(12, 49, 72, 0.04);
    z-index: 1020;
    overflow: visible;
    animation: motion-fade-in var(--motion-slow) var(--motion-ease);
}

.shop-header-search-cluster {
    min-height: 2.625rem;
}

.shop-header-brand {
    position: relative;
    z-index: 0;
    flex-shrink: 0;
    height: 2.625rem;
    padding: 0 1.05rem 0 1.75rem;
    background-color: var(--ds-secondary);
    gap: 0.15rem;
}

.shop-logo-mark {
    width: 1.5rem;
    height: 1.5rem;
}

.shop-logo-mark--on-dark .shop-logo-planet {
    fill: #ffffff;
}

.shop-header-brand-word {
    /* logo-text-en.png is planet mark + "planet"; crop to the word only */
    height: 2.4rem;
    object-fit: cover;
    object-position: 100% 50%;
    flex-shrink: 0;
    filter: brightness(0) invert(1);
}

.shop-header-search {
    margin-inline-start: -1.35rem;
    background-color: var(--ds-white);
    border: 1px solid var(--ds-grey-02);
    border-radius: var(--bs-border-radius-pill);
    overflow: hidden;
    transition:
        border-color var(--motion-fast) var(--motion-ease),
        box-shadow var(--motion-fast) var(--motion-ease);
}

.shop-header-search-icon {
    position: absolute;
    inset-inline-start: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--ds-text-03);
    font-size: 0.875rem;
    pointer-events: none;
    z-index: 2;
}

.shop-header-search-input {
    height: 2.625rem;
    background-color: var(--ds-white) !important;
    border: 0;
    box-shadow: none !important;
    padding-inline-start: 2.65rem;
    padding-inline-end: 0.75rem;
    color: var(--ds-text-02);
    border-radius: 0 !important;
    min-width: 0;
}

.shop-header-search-input::placeholder {
    color: var(--ds-text-03);
    opacity: 1;
}

.shop-header-search-input:hover:not(:disabled):not([readonly]),
.shop-header-search-input:focus {
    background-color: var(--ds-white) !important;
    border-color: transparent;
    box-shadow: none !important;
}

.shop-header-search:hover {
    border-color: var(--bs-secondary);
}

.shop-header-search:focus-within {
    border-color: var(--bs-primary);
    box-shadow: 0 0 0 0.1875rem rgba(var(--bs-primary-rgb), 0.12);
}

.shop-header-search-btn {
    min-width: 5.5rem;
    height: 2.625rem;
    padding-inline: 1rem;
    border: 0;
    border-radius: 0;
    border-start-start-radius: var(--bs-border-radius-pill);
    border-end-start-radius: var(--bs-border-radius-pill);
}

.shop-header-login {
    height: 2.625rem;
    min-width: 8.75rem;
    padding-inline: 1.25rem;
    transition:
        color var(--motion-fast) var(--motion-ease),
        background-color var(--motion-fast) var(--motion-ease),
        border-color var(--motion-fast) var(--motion-ease);
}

.shop-header-login:hover,
.shop-header-login:focus-visible {
    color: var(--ds-white);
    background-color: var(--ds-secondary);
    border-color: var(--ds-secondary);
}

.shop-header-user-avatar {
    width: 2.625rem;
    height: 2.625rem;
    font-size: 0.875rem;
}

.shop-header-user-mobile {
    max-width: 9rem;
}

.shop-header-cart {
    width: 2.625rem;
    height: 2.625rem;
    font-size: 1.35rem;
    transition: color var(--motion-fast) var(--motion-ease);
}

.shop-header-cart:hover {
    color: var(--ds-secondary);
}

.shop-header-cart-badge {
    position: absolute;
    bottom: 0.15rem;
    right: 0.05rem;
    left: auto;
    min-width: 1rem;
    height: 1rem;
    padding: 0 0.2rem;
    font-size: 0.625rem;
    line-height: 1rem;
}

.shop-header-profile-btn {
    width: 2.375rem;
    height: 2.375rem;
    padding: 0;
    border: 1.5px solid var(--ds-secondary);
    border-radius: 50%;
    background-color: var(--ds-white);
    color: var(--ds-secondary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    line-height: 1;
}

.shop-header-profile-btn {
    transition:
        color var(--motion-fast) var(--motion-ease),
        background-color var(--motion-fast) var(--motion-ease),
        border-color var(--motion-fast) var(--motion-ease);
}

.shop-header-profile-btn:hover,
.shop-header-profile-btn:focus-visible {
    color: var(--ds-secondary);
    background-color: var(--ds-grey-01);
    border-color: var(--ds-secondary);
}

.shop-header-dropdown {
    overflow: hidden;
}

.shop-header-dropdown:hover,
.shop-header-dropdown:focus-within {
    overflow: visible;
}

.shop-header-dropdown::after {
    content: "";
    position: absolute;
    top: 100%;
    inset-inline: 0;
    height: 0.6rem;
}

.shop-header-nav-link {
    padding-bottom: 0.35rem;
    transition: color var(--motion-fast) var(--motion-ease);
}

.shop-header-nav-link:hover,
.shop-header-nav-link.is-current,
.shop-header-dropdown:hover .shop-header-nav-link,
.shop-header-dropdown:focus-within .shop-header-nav-link {
    color: var(--ds-secondary);
}

.shop-header-nav-chevron {
    font-size: 0.55rem;
    color: var(--ds-text-03);
    transition: transform var(--motion-fast) var(--motion-ease);
}

.shop-header-dropdown:hover .shop-header-nav-chevron,
.shop-header-dropdown:focus-within .shop-header-nav-chevron {
    transform: rotate(180deg);
}

.shop-header-dropdown .dropdown-menu {
    display: block;
    position: absolute;
    top: 100%;
    inset-inline-start: 0;
    margin: 0;
    padding: 0.5rem 0;
    min-width: 12.5rem;
    border: 1px solid var(--ds-grey-02);
    border-radius: 0.75rem;
    box-shadow: var(--bs-box-shadow-sm);
    z-index: 1030;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate3d(0, -0.4rem, 0);
    transition:
        opacity var(--motion-fast) var(--motion-ease),
        transform var(--motion-fast) var(--motion-ease),
        visibility var(--motion-fast);
}

.shop-header-dropdown:hover > .dropdown-menu,
.shop-header-dropdown:focus-within > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
}

.shop-header-dropdown .dropdown-item {
    padding: 0.45rem 1rem;
    transition:
        background-color var(--motion-fast) var(--motion-ease),
        color var(--motion-fast) var(--motion-ease);
}

.shop-header-dropdown .dropdown-item:hover,
.shop-header-dropdown .dropdown-item:focus {
    background-color: var(--ds-grey-01);
    color: var(--ds-secondary);
}

.shop-header-nav .shop-header-mega.dropdown {
    position: static;
    overflow: visible;
}

.shop-header-nav .shop-header-mega-menu.dropdown-menu {
    inset-inline: 0;
    width: auto;
    min-width: 0;
    max-width: 900px;
    --bs-dropdown-min-width: 0;
    padding: 1.25rem 1.5rem;
    border-radius: 0rem 0rem 1rem 1rem;
}

.shop-header-mega-menu a:hover,
.shop-header-mega-menu a:focus-visible {
    color: var(--ds-secondary);
}

@media (max-width: 991.98px) {
    .shop-header-brand {
        padding: 0 0.7rem 0 1.2rem;
        gap: 0;
    }

    .shop-header-brand .shop-logo-mark {
        width: 1.625rem;
        height: 1.625rem;
    }

    .shop-header-search {
        margin-inline-start: -1.25rem;
    }

    .shop-header-search-icon {
        inset-inline-start: 1.05rem;
    }

    .shop-header-search-input {
        height: 2.5rem;
        padding-inline-start: 2.4rem;
    }

    .shop-header-search-btn {
        min-width: 4.25rem;
        height: 2.5rem;
        padding-inline: 0.75rem;
        font-size: 0.8125rem;
    }

    .shop-header-brand,
    .shop-header-search-cluster {
        min-height: 2.5rem;
        height: auto;
    }

    .shop-header-brand {
        height: 2.5rem;
    }

    .shop-header-profile-btn {
        width: 2.5rem;
        height: 2.5rem;
    }
    
    .profile-sidebar-col {
        display: none;
    }
    
}

@media (max-width: 575.98px) {
    .shop-header-search-btn {
        min-width: 2.5rem;
        padding-inline: 0.65rem;
    }
}


/* =========================================================
   MOBILE BOTTOM NAV
   ========================================================= */

.shop-mobile-nav {
    z-index: 1030;
    height: 3.75rem;
    background-color: var(--ds-white);
    box-shadow: 0 -0.125rem 0.75rem rgba(12, 49, 72, 0.08);
}

.shop-mobile-nav::before {
    content: "";
    position: absolute;
    top: -2rem;
    left: 50%;
    width: 4rem;
    height: 4rem;
    background-color: var(--ds-white);
    border-radius: 100%;
    transform: translateX(-50%);
}

.shop-mobile-nav-btn {
    position: relative;
    z-index: 1;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    transition: color var(--motion-fast) var(--motion-ease);
}

.shop-mobile-nav-logo {
    position: absolute;
    left: 50%;
    top: -1.35rem;
    z-index: 2;
    width: 3rem;
    height: 3rem;
    transform: translateX(-50%);
    box-shadow: 0 0.25rem 0.75rem rgba(17, 31, 80, 0.18);
}

.shop-mobile-nav-logo .shop-logo-mark {
    width: 1.75rem;
    height: 1.75rem;
}

.shop-nav-grid {
    display: grid;
    grid-template-columns: 0.45rem 0.45rem;
    gap: 0.2rem;
}

.shop-nav-grid span {
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 50%;
    background-color: #c5c8d3;
}

.shop-layout {
    padding-bottom: 5.5rem;
}

@media (min-width: 992px) {
    .shop-layout {
        padding-bottom: 0;
    }
}


/* =========================================================
   SHOP CHAT WIDGET
   ========================================================= */

.shop-chat-widget {
    position: fixed;
    z-index: 1040;
    inset-inline-start: 1.25rem;
    bottom: 1.25rem;
}

.shop-layout .shop-chat-widget {
    bottom: calc(3.75rem + 1rem);
}

@media (min-width: 992px) {
    .shop-layout .shop-chat-widget {
        bottom: 1.25rem;
    }
}

.shop-chat-fab {
    width: 3.5rem;
    height: 3.5rem;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background-color: var(--ds-secondary);
    color: var(--ds-primary);
    box-shadow: 0 0.35rem 1rem rgba(17, 31, 80, 0.28);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    transition:
        color var(--motion-fast) var(--motion-ease),
        transform var(--motion-fast) var(--motion-ease);
}

.shop-chat-fab:hover,
.shop-chat-fab:focus-visible {
    background-color: var(--ds-secondary);
    color: var(--ds-white);
    transform: translateY(-0.1rem);
}

.chat-box {
    display: none;
    position: absolute;
    bottom: 0;
    inset-inline-start: 0;
    width: min(22.5rem, calc(100vw - 2.5rem));
    height: min(32rem, calc(100vh - 8rem));
    background-color: var(--ds-white);
    border-radius: 1.25rem;
    box-shadow: 0 0.75rem 2rem rgba(12, 49, 72, 0.16);
    overflow: hidden;
}

.chat-box-header {
    padding: 0.85rem 1rem;
    background-color: var(--ds-secondary);
    color: var(--ds-white);
    font-size: 0.9375rem;
    font-weight: 700;
}

.chat-box-toggle {
    cursor: pointer;
    color: var(--ds-white);
}

.chat-box-body {
    height: calc(100% - 7.5rem);
    overflow: hidden;
    background-color: var(--ds-grey-01);
}

.chat-logs {
    height: 100%;
    overflow-y: auto;
    padding: 0.85rem;
}

.chat-msg {
    margin-bottom: 0.75rem;
}

.cm-msg-text {
    background-color: var(--ds-white);
    color: var(--ds-text-01);
    border-radius: 1rem;
    padding: 0.75rem 0.9rem;
    font-size: 0.8125rem;
    line-height: 1.7;
    box-shadow: var(--bs-box-shadow-sm);
}

.chat-msg.self .cm-msg-text {
    background-color: var(--ds-white);
}

.chat-msg.user .cm-msg-text {
    background-color: color-mix(in srgb, var(--ds-accent-04) 22%, white);
}

.chat-input {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background-color: var(--ds-white);
    border-top: 1px solid var(--ds-grey-02);
}

.chat-input #chat-input {
    flex: 1;
    min-height: 2.75rem;
    padding: 0.55rem 0.9rem;
    border: 1px solid color-mix(in srgb, var(--ds-accent-03) 40%, white);
    border-radius: var(--bs-border-radius-pill);
    background-color: var(--ds-white);
    color: var(--ds-text-01);
}

.chat-submit {
    width: 2.75rem;
    height: 2.75rem;
    border: 0;
    border-radius: 50%;
    background-color: var(--ds-secondary);
    color: var(--ds-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}


/* =========================================================
   SHOP FOOTER
   ========================================================= */

.shop-footer {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.shop-footer-newsletter {
    max-width: 28rem;
    border-color: var(--ds-grey-02);
    transition:
        border-color var(--motion-fast) var(--motion-ease),
        box-shadow var(--motion-fast) var(--motion-ease);
}

.shop-footer-newsletter:hover {
    border-color: var(--bs-secondary);
}

.shop-footer-newsletter:focus-within {
    border-color: var(--bs-primary);
    box-shadow: 0 0 0 0.1875rem rgba(var(--bs-primary-rgb), 0.12);
}

.shop-footer-service-icon {
    width: 3.5rem;
    height: 3.5rem;
    object-fit: contain;
}

.shop-footer-panel {
    background-color: #f5f5f4;
    background-image: url("../images/footer/footer-bottom.svg");
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: 100% auto;
    border-radius: 2rem;
}

.shop-footer-logo {
    height: 2.75rem;
    width: auto;
}

.shop-footer-social a {
    transition: color var(--motion-fast) var(--motion-ease);
}

.shop-footer-social a:hover {
    color: var(--ds-secondary);
}

.shop-footer-service {
    transition: box-shadow var(--motion-normal) var(--motion-ease);
}


.shop-footer-newsletter-input {
    min-height: 2.75rem;
    background-color: var(--ds-white) !important;
    border: 0;
    border-radius: 0 !important;
    box-shadow: none !important;
    direction: rtl;
}

.shop-footer-newsletter-input:hover:not(:disabled):not([readonly]),
.shop-footer-newsletter-input:focus {
    background-color: var(--ds-white) !important;
    border-color: transparent;
    box-shadow: none !important;
}

.shop-footer-newsletter-btn {
    min-width: 5.5rem;
    border-radius: 0;
    border-start-start-radius: var(--bs-border-radius-pill);
    border-end-start-radius: var(--bs-border-radius-pill);
}

.shop-footer-badge {
    width: 4.5rem;
    height: 4.5rem;
    object-fit: contain;
    background-color: var(--ds-white);
    border-radius: 0.75rem;
}

.shop-footer-about {
    max-width: 42rem;
}

.shop-footer-divider {
    border-color: var(--ds-grey-02);
}

.shop-footer-copy-logo {
    width: 1.75rem;
    height: 1.75rem;
}

.shop-footer-copy-logo .shop-logo-mark {
    width: 0.95rem;
    height: 0.95rem;
}

@media (min-width: 992px) {
    .shop-footer {
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
    }

    .shop-footer-badge {
        width: 5.5rem;
        height: 5.5rem;
    }

    .shop-footer-art {
        max-width: 26rem;
    }
}


/* =========================================================
   PRODUCT CARDS
   ========================================================= */

.product-card {
    padding: 1.25rem;
    transition: box-shadow var(--motion-normal) var(--motion-ease);
}

.product-card-media {
    height: 10.5rem;
    overflow: hidden;
}

.product-card-image,
.special-product-card-image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform var(--motion-slow) var(--motion-ease);
}

.product-card-action--notify {
    color: var(--ds-text-03);
    background-color: var(--ds-white);
    border-color: var(--ds-grey-02);
}

.product-card-action--notify:hover,
.product-card-action--notify:focus-visible {
    color: var(--ds-secondary);
    background-color: var(--ds-grey-01);
    border-color: var(--ds-grey-02);
}

.product-card-brand-mark {
    width: 1.125rem;
    height: 1.125rem;
    border-radius: 0.2rem;
    background-color: var(--ds-grey-04);
    color: var(--ds-white);
    font-size: 0.5rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    letter-spacing: -0.04em;
    line-height: 1;
}

.product-card-title,
.special-product-card-title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card-favorite {
    color: var(--ds-text-03);
    line-height: 1;
    font-size: 1.125rem;
    transition: color var(--motion-fast) var(--motion-ease);
}

.product-card-favorite:hover,
.product-card-favorite:focus-visible {
    color: var(--ds-alternative);
}

.product-card-favorite--active {
    color: var(--ds-alternative);
}

.product-card-price {
    font-size: 1.25rem;
    line-height: 1.2;
}

.product-card-toman,
.special-product-card-toman {
    display: inline-flex;
    width: 1.125rem;
    height: 1.125rem;
    flex-shrink: 0;
}

.product-card-toman svg,
.special-product-card-toman svg {
    width: 100%;
    height: 100%;
    display: block;
}

.product-card-discount {
    min-width: 1.75rem;
    height: 1.75rem;
    padding: 0 0.35rem;
    border-radius: 50%;
    line-height: 1;
}

.special-product-card-discount {
    min-width: 2.15rem;
    height: 1.25rem;
    padding: 0 0.45rem;
    border-radius: var(--bs-border-radius-pill);
    line-height: 1;
}

.special-product-card {
    transition: box-shadow var(--motion-normal) var(--motion-ease);
}

.special-product-card-media {
    min-height: 11rem;
    padding: 1rem;
    overflow: hidden;
}

.special-product-card-image {
    max-height: 11rem;
}

.special-product-card-price {
    font-size: var(--ds-text-2xl-size-mobile);
    line-height: 1.2;
}

.special-product-card-progress {
    height: 0.375rem;
    background-color: var(--ds-grey-02);
}

.special-product-card-progress .progress-bar {
    background-color: var(--ds-primary);
    background-image: linear-gradient(
        to left,
        var(--ds-primary),
        color-mix(in srgb, var(--ds-primary) 40%, white)
    );
}

@media (min-width: 992px) {
    .product-card-price {
        font-size: 1.375rem;
    }

    .special-product-card {
        min-height: 16.5rem;
    }

    .special-product-card-media {
        width: 13.5rem;
        min-height: 0;
        flex-shrink: 0;
        padding: 1.25rem;
    }

    .special-product-card-image {
        max-height: 13rem;
    }

    .special-product-card-price {
        font-size: var(--ds-text-3xl-size-desktop);
    }
}


/* =========================================================
   HOME PAGE
   ========================================================= */

.home-section {
    margin-bottom: 2.25rem;
}

/*.home-banner-slot {
    height: 100%;
    background-size: cover;
    background-position: center;
}*/


.home-banner-slot img {
    transition: transform var(--motion-slow) var(--motion-ease);
}



.home-hero-main .home-owl,
.home-hero-main .owl-stage-outer,
.home-hero-main .owl-stage,
.home-hero-main .owl-item,
.home-hero-main .owl-item > div,
.home-hero-main .owl-item > .home-banner-slot {
    height: 100%;
}


/*.home-hero-side .home-banner-slot {
    flex: 1 1 0;
    min-height: 8rem;
    height: auto;
}*/

.home-special-track {
    width: 100%;
}

.home-special-art {
    width: 5.5rem;
    height: 5.5rem;
    background-color: rgba(255, 255, 255, 0.08);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}


.home-special-timer-unit {
    min-width: 2.5rem;
    padding: 0.4rem 0.35rem;
    border-radius: 0.5rem;
    background-color: rgba(255, 255, 255, 0.12);
    font-size: 1.375rem;
    line-height: 1;
}

.home-special-timer-sep {
    opacity: 0.7;
}

.home-category-item {
    transition: transform var(--motion-normal) var(--motion-ease);
}

.home-category-image {
   
}

.home-category-image img {
    transition: transform var(--motion-slow) var(--motion-ease);
}


.home-owl {
    padding-inline: 0.15rem;
}

.home-owl .owl-stage {
    display: flex;
    align-items: stretch;
}

.home-owl--products .owl-stage,
.home-owl--special .owl-stage,
.home-owl--blogs .owl-stage {
    display: flex;
    align-items: stretch;
}

.home-owl--products .owl-item,
.home-owl--special .owl-item,
.home-owl--blogs .owl-item {
    display: flex;
}

.home-owl--products .owl-item > div,
.home-owl--special .owl-item > div,
.home-owl--blogs .owl-item > div {
    width: 100%;
    min-width: 0;
    height: 100%;
}

.home-owl .owl-item .product-card,
.home-owl .owl-item .special-product-card,
.home-owl .owl-item .home-banner-slot,
.home-owl .owl-item .home-category-item,
.home-owl .owl-item .blog-card {
    width: 100%;
}

.home-owl .owl-nav button {
    position: absolute;
    top: 50%;
    z-index: 2;
    width: 2.25rem;
    height: 2.25rem;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background-color: var(--ds-secondary) !important;
    color: var(--ds-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-50%);
    box-shadow: var(--bs-box-shadow-sm);
    transition: background-color var(--motion-fast) var(--motion-ease);
}

.home-owl .owl-nav button:hover,
.home-owl .owl-nav button:focus-visible {
    background-color: var(--ds-secondary);
    color: var(--ds-primary);
}

.home-owl .owl-nav .owl-prev {
    right: 0.8rem;
    left: auto;
}

.home-owl .owl-nav .owl-next {
    left: 0.8rem;
    right: auto;
}

.owl-nav i {
    color: var(--ds-primary) !important;
}

.home-owl .owl-nav .disabled {
    opacity: 0.35;
}

.home-owl--categories .owl-nav button {
    top: 2.4rem;
}

@media (max-width: 767.98px) {
    .home-owl--products .owl-nav,
    .home-owl--special .owl-nav,
    .home-owl--blogs .owl-nav,
    .home-owl--categories .owl-nav {
        display: none;
    }
}

@media (min-width: 768px) {
    .home-section {
        margin-bottom: 2.75rem;
    }

    .home-banner-static--cols-2 .home-banner-slot {
        height: 11.5rem;
    }

    .home-banner-static--cols-3 .home-banner-slot {
        height: 12.5rem;
    }
}

@media (min-width: 992px) {
    .home-section {
        margin-bottom: 3.5rem;
    }

    .home-hero-main,
    .home-hero-side {
        height: 29rem;
    }

    .home-special-panel {
        width: 17.5rem;
        flex-shrink: 0;
    }

    .home-special-track {
        flex: 1 1 0;
        width: auto;
    }

    .home-special-art {
        width: 6.5rem;
        height: 6.5rem;
    }

    .h-lg-100 {
        height: 100%;
    }
   
}


/* =========================================================
   PROFILE DASHBOARD
   ========================================================= */


@media (min-width: 992px) {
    .profile-sidebar-col {
        position: sticky;
        top: 6rem;
        align-self: flex-start;
        z-index: 2;
        max-height: calc(100vh - 6.5rem);
    }

    .profile-sidebar {
        max-height: calc(100vh - 6.5rem);
        overflow-y: auto;
    }
}

.profile-avatar {
    width: 4.5rem;
    height: 4.5rem;
    font-size: 2rem;
}

.profile-avatar-edit {
    position: absolute;
    bottom: -0.15rem;
    left: -0.15rem;
    width: 1.75rem;
    height: 1.75rem;
    min-width: 1.75rem;
    min-height: 1.75rem;
    border: 1px solid var(--ds-grey-02);
}

.profile-wallet {
    border: 1px solid color-mix(in srgb, var(--ds-accent-03) 45%, white);
}

.profile-wallet-toman {
    display: inline-flex;
    width: 0.95rem;
    height: 0.95rem;
}

.profile-wallet-toman svg {
    width: 100%;
    height: 100%;
    display: block;
}

.profile-menu-item {
    min-height: 2.75rem;
    padding: 0.55rem 0.9rem;
    border-radius: var(--bs-border-radius-pill);
    background-color: var(--ds-grey-01);
    color: var(--ds-text-01);
    transition:
        background-color var(--motion-fast) var(--motion-ease),
        color var(--motion-fast) var(--motion-ease);
}

.profile-menu-item:hover,
.profile-menu-item:focus-visible {
    background-color: var(--ds-grey-02);
    color: var(--ds-secondary);
}

.profile-menu-item.is-active {
    background-color: var(--ds-secondary);
    color: var(--ds-white);
}

.profile-menu-item.is-active:hover,
.profile-menu-item.is-active:focus-visible {
    background-color: var(--ds-secondary);
    color: var(--ds-white);
}

.profile-menu-icon {
    width: 1.15rem;
}

.profile-menu-mark {
    width: 0.75rem;
    height: 0.2rem;
    border-radius: var(--bs-border-radius-pill);
    background-color: var(--ds-accent-02);
}

.profile-menu-logout:hover,
.profile-menu-logout:focus-visible {
    color: var(--ds-secondary);
}

.profile-stat-card {
    min-height: 4.25rem;
    padding: 0.85rem 1rem;
    border: 1px solid var(--ds-grey-02);
    border-radius: 1rem;
    background-color: var(--ds-white);
    transition: border-color var(--motion-fast) var(--motion-ease);
}

.profile-stat-card:hover {
    border-color: var(--ds-secondary);
}

.profile-stat-icon {
    width: 2.25rem;
    height: 2.25rem;
    color: var(--ds-secondary);
    background-color: var(--ds-grey-01);
    flex-shrink: 0;
}

.profile-stat-badge,
.profile-order-tab-badge {
    min-width: 1.25rem;
    height: 1.25rem;
    padding: 0 0.3rem;
    border-radius: 999px;
    background-color: var(--ds-accent-02);
    color: var(--ds-white);
    font-size: 0.7rem;
    line-height: 1.25rem;
    text-align: center;
    font-weight: 700;
}

.profile-empty-art {
    width: 8.5rem;
    height: 8.5rem;
    background:
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.9), transparent 40%),
        radial-gradient(circle at 70% 60%, rgba(127, 201, 255, 0.25), transparent 45%),
        var(--ds-grey-01);
    color: var(--ds-secondary);
    font-size: 2.25rem;
}

.profile-empty-link {
    color: var(--ds-alternative);
    border: 1px solid color-mix(in srgb, var(--ds-accent-03) 40%, white);
    background-color: var(--ds-white);
    font-size: 0.8125rem;
}

.profile-empty-link:hover,
.profile-empty-link:focus-visible {
    color: var(--ds-white);
    background-color: var(--ds-alternative);
    border-color: var(--ds-alternative);
}

.profile-order-tabs {
    padding-bottom: 0.15rem;
}

.profile-order-tab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    min-height: 3rem;
    padding: 0.5rem 0.9rem;
    border-radius: 1rem;
    color: var(--ds-text-03);
    white-space: nowrap;
    font-size: 0.8125rem;
    transition:
        background-color var(--motion-fast) var(--motion-ease),
        color var(--motion-fast) var(--motion-ease),
        box-shadow var(--motion-fast) var(--motion-ease);
}

.profile-order-tab.is-active {
    background-color: var(--ds-white);
    color: var(--ds-secondary);
    box-shadow: var(--bs-box-shadow-sm);
}

.profile-order-search-icon {
    position: absolute;
    inset-inline-start: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--ds-text-03);
    z-index: 2;
}

.profile-order-search .form-control {
    padding-inline-start: 2.5rem;
    background-color: white;
    border-color: transparent;
}

.profile-copy-btn {
    color: var(--ds-text-03);
    line-height: 1;
}

.profile-copy-btn:hover,
.profile-copy-btn:focus-visible {
    color: var(--ds-alternative);
}

.profile-thumbs {
    scrollbar-width: thin;
}

.profile-thumb {
    width: 4.25rem;
    height: 4.25rem;
    border: 1px solid var(--ds-grey-02);
}

.profile-thumb-image {
    max-width: 3.25rem;
    max-height: 3.25rem;
    object-fit: contain;
}

.profile-thumb-qty {
    bottom: -0.35rem;
    left: 50%;
    transform: translateX(-50%);
    width: 1.15rem;
    height: 1.15rem;
}

.profile-progress-step {
    height: 0.35rem;
    background-color: var(--ds-grey-02);
}

.profile-progress-step.is-done {
    background-color: var(--ds-primary);
}

.profile-status-badge {
    padding: 0.35rem 0.75rem;
    font-size: 0.8125rem;
}

.profile-delivery-code {
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background-color: color-mix(in srgb, var(--ds-accent-04) 30%, white);
    color: var(--ds-alternative);
}

.profile-review-tabs {
    padding: 0.35rem;
}

.profile-review-tab {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    color: var(--ds-text-03);
    font-size: 0.875rem;
    transition:
        background-color var(--motion-fast) var(--motion-ease),
        color var(--motion-fast) var(--motion-ease),
        box-shadow var(--motion-fast) var(--motion-ease);
}

.profile-review-tab.is-active {
    background-color: var(--ds-white);
    color: var(--ds-secondary);
    box-shadow: var(--bs-box-shadow-sm);
}

.profile-review-product-image {
    width: 4.25rem;
    height: 4.25rem;
    object-fit: contain;
    background-color: var(--ds-grey-01);
    flex-shrink: 0;
}

.profile-review-photo {
    width: 3.25rem;
    height: 3.25rem;
    object-fit: cover;
}

.profile-score-bar {
    width: 0.55rem;
    height: 0.35rem;
    border-radius: 2px;
    background-color: var(--ds-grey-02);
}

.profile-score-bar.is-on {
    background-color: var(--ds-text-01);
}

.profile-outline-btn {
    color: var(--ds-alternative);
    border: 1px solid var(--ds-accent-03);
    background-color: var(--ds-white);
}

.profile-outline-btn:hover,
.profile-outline-btn:focus-visible {
    color: var(--ds-white);
    background-color: var(--ds-alternative);
    border-color: var(--ds-alternative);
}


.profile-add-address-card,
.profile-add-address-btn {
    gap: 0.65rem;
    min-height: 10.5rem;
    padding: 1.25rem;
    border: 1px solid var(--ds-accent-03);
    border-radius: 1rem;
    background-color: var(--ds-white);
    color: var(--ds-alternative);
    font-size: 0.875rem;
    transition: background-color var(--motion-fast) var(--motion-ease);
}

.profile-add-address-btn {
    min-height: 0;
    padding: 1rem 1.75rem;
}

.profile-add-address-card:hover,
.profile-add-address-btn:hover,
.profile-add-address-card:focus-visible,
.profile-add-address-btn:focus-visible {
    background-color: var(--ds-grey-01);
}

.profile-form .form-control,
.profile-form .form-select,
.profile-modal .form-control,
.profile-modal .form-select {
    background-color: var(--ds-white);
    border-color: color-mix(in srgb, var(--ds-accent-03) 40%, white);
    border-radius: 0.75rem;
}

.profile-form .form-label.required::after,
.profile-modal .form-label.required::after {
    color: var(--ds-accent-03);
}

.profile-map {
    min-height: 18rem;
    background-color: #d7e3dc;
}

.profile-map-search {
    position: absolute;
    top: 0.85rem;
    right: 0.85rem;
    left: 0.85rem;
    z-index: 1100;
    background-color: var(--ds-white) !important;
}

.profile-map-canvas {
    min-height: 18rem;
    height: 18rem;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 24px 24px;
    background-color: #c9d7cc;
}

.profile-map-canvas.leaflet-container {
    background-color: #c9d7cc;
}

.profile-map-pin {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1100;
    transform: translate(-50%, -90%);
    color: var(--ds-alternative);
    font-size: 2rem;
    pointer-events: none;
    filter: drop-shadow(0 0.35rem 0.35rem rgba(12, 49, 72, 0.2));
}

.profile-map-locate {
    position: absolute;
    bottom: 0.85rem;
    right: 0.85rem;
    z-index: 1100;
}

.profile-modal .modal-body {
    padding-top: 0.5rem;
}

@media (max-width: 767.98px) {
    .profile-order-tab,
    .profile-review-tab {
        flex: 0 0 auto;
    }

    .profile-add-address-btn,
    .profile-empty .btn {
        width: 100%;
        max-width: 22rem;
    }
}

.dashboard-layout {
    background-color: #F5F5F4;
    padding: 20px;
}

.ticket-drawer {
    --bs-offcanvas-width: min(36rem, 100vw);
}

.ticket-message {
    width: min(100%, 22rem);
}

.ticket-message-user {
    background-color: var(--ds-grey-01);
    color: var(--ds-text-01);
}

.ticket-message-support {
    background-color: color-mix(in srgb, var(--ds-accent-04) 22%, white);
    color: var(--ds-text-01);
}

@media print {
    .shop-header,
    .shop-footer,
    .shop-mobile-nav,
    .profile-sidebar-col,
    .breadcrumb,
    .profile-order-tabs,
    .product-cart-drawer,
    .ticket-drawer,
    .shop-chat-widget {
        display: none;
    }

    .profile-page .col-lg-9 {
        flex: 0 0 100%;
        max-width: 100%;
        width: 100%;
    }

    .dashboard-layout {
        background: transparent;
        padding: 0;
    }
}


/* =========================================================
   CART & CHECKOUT
   ========================================================= */

.cart-tabs {
    width: max-content;
    max-width: 100%;
    padding: 0.3rem;
    border-radius: 1.25rem;
    background-color: color-mix(in srgb, var(--ds-grey-02) 55%, white);
}

.cart-tab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    min-height: 2.75rem;
    padding: 0.5rem 1.15rem;
    border-radius: 1rem;
    background-color: transparent;
    color: var(--ds-text-03);
    white-space: nowrap;
    font-size: 0.8125rem;
    transition:
        background-color var(--motion-fast) var(--motion-ease),
        color var(--motion-fast) var(--motion-ease),
        box-shadow var(--motion-fast) var(--motion-ease);
}

.cart-tab.is-active {
    background-color: var(--ds-white);
    color: var(--ds-secondary);
    box-shadow: var(--bs-box-shadow-sm);
}

.cart-page .bg-white {
    box-shadow: var(--bs-box-shadow-sm);
}

.cart-page .cart-panel,
.cart-page .cart-item,
.cart-page .cart-summary {
    padding: 0.85rem 0.75rem;
}

@media (min-width: 992px) {
    .cart-page .cart-panel,
    .cart-page .cart-item,
    .cart-page .cart-summary {
        padding: 1rem 1rem;
    }
}

@media (min-width: 992px) {
    .cart-sidebar-col {
        position: sticky;
        top: 6rem;
        align-self: flex-start;
        z-index: 2;
    }
}

.cart-item--oos {
    opacity: 0.72;
}

.cart-item-media {
    width: 5.5rem;
    height: 5.5rem;
}

.cart-item-image {
    max-width: 4.5rem;
    max-height: 4.5rem;
    object-fit: contain;
}

.cart-item-banner--oos {
    background-color: color-mix(in srgb, var(--ds-alternative) 12%, white);
    color: var(--ds-alternative);
}

.cart-discount-badge {
    min-width: 2.1rem;
    padding: 0.15rem 0.45rem;
    border-radius: 999px;
    white-space: nowrap;
    line-height: 1.2;
}

.cart-warn {
    color: #e11d48;
}

.cart-price-down {
    color: #16a34a;
}

.cart-qty {
    min-height: 2.25rem;
    padding: 0 0.35rem;
    border: 1px solid var(--ds-grey-03);
    background-color: var(--ds-white);
}

.cart-qty-btn {
    width: 1.75rem;
    height: 1.75rem;
    color: var(--ds-text-01);
    line-height: 1;
}

.cart-qty-value {
    min-width: 1.5rem;
}

.cart-free-ship {
    background-color: color-mix(in srgb, var(--ds-accent-01) 55%, white);
    color: var(--ds-text-01);
}

.cart-summary-row--coupon {
    background-color: color-mix(in srgb, var(--ds-alternative) 10%, white);
    color: var(--ds-alternative);
}


.cart-step {
    color: var(--ds-text-03);
}

.cart-step-icon {
    width: 2.25rem;
    height: 2.25rem;
    background-color: var(--ds-grey-01);
    color: var(--ds-text-03);
}

.cart-step.is-done .cart-step-icon,
.cart-step.is-active .cart-step-icon {
    background-color: var(--ds-alternative);
    color: var(--ds-white);
}

.cart-step.is-active {
    color: var(--ds-secondary);
}

.cart-step-line {
    height: 1px;
    min-width: 1.5rem;
    max-width: 4rem;
    background-color: var(--ds-grey-02);
    margin: 0 0.35rem 1.1rem;
}

.cart-address-card {
    border: 1px solid var(--ds-grey-02);
    cursor: pointer;
    transition:
        border-color var(--motion-fast) var(--motion-ease),
        box-shadow var(--motion-fast) var(--motion-ease);
}

.cart-address-card.is-selected {
    border-color: var(--ds-primary);
    box-shadow: 0 0 0 1px var(--ds-primary);
}

.cart-address-check {
    display: none;
    color: var(--ds-primary);
    font-size: 1.1rem;
}

.cart-address-card.is-selected .cart-address-check {
    display: inline-flex;
}

.cart-add-address {
    gap: 0.65rem;
    min-height: 10.5rem;
    padding: 1.25rem;
    border: 1px dashed color-mix(in srgb, var(--ds-accent-03) 70%, white);
    border-radius: 1rem;
    background-color: var(--ds-white);
    color: var(--ds-alternative);
    font-size: 0.875rem;
}

.cart-add-address-mark {
    width: 2.5rem;
    height: 2.5rem;
    background-color: color-mix(in srgb, var(--ds-alternative) 12%, white);
    color: var(--ds-alternative);
}

.cart-ship-option,
.cart-pay-option {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 3.5rem;
    padding: 0.75rem 1rem;
    border: 1px solid var(--ds-text-01);
    border-radius: 1rem;
    background-color: var(--ds-white);
    color: var(--ds-text-01);
    font-size: 0.875rem;
    transition:
        border-color var(--motion-fast) var(--motion-ease),
        background-color var(--motion-fast) var(--motion-ease),
        box-shadow var(--motion-fast) var(--motion-ease);
}

.cart-ship-option {
    border-color: var(--ds-grey-02);
}

.cart-ship-option.is-selected {
    border-color: var(--ds-primary);
    box-shadow: 0 0 0 1px var(--ds-primary);
}

.cart-ship-option[data-cart-ship="postal"].is-selected {
    border-color: var(--ds-text-01);
    box-shadow: 0 0 0 1px var(--ds-text-01);
}

.cart-pay-option.is-selected {
    border-color: var(--ds-primary);
    box-shadow: 0 0 0 1px var(--ds-primary);
    background-color: color-mix(in srgb, var(--ds-primary) 14%, white);
}

.cart-ship-group {
    background-color: color-mix(in srgb, var(--ds-accent-04) 18%, white);
}

.cart-ship-group .profile-thumbs {
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 0.5rem;
}

.cart-day {
    border: 1px solid var(--ds-grey-02);
    background-color: var(--ds-white);
}

.cart-day-head {
    background-color: color-mix(in srgb, var(--ds-accent-04) 28%, white);
    color: var(--ds-text-01);
}

.cart-slot {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    width: 100%;
    min-height: 2.5rem;
    padding: 0.35rem 0.4rem;
    border: 1px solid color-mix(in srgb, var(--ds-alternative) 35%, white);
    border-radius: 0.75rem;
    background-color: var(--ds-white);
    color: var(--ds-text-01);
    font-size: 0.7rem;
    transition:
        background-color var(--motion-fast) var(--motion-ease),
        border-color var(--motion-fast) var(--motion-ease),
        color var(--motion-fast) var(--motion-ease);
}

.cart-slot.is-selected {
    background-color: var(--ds-alternative);
    border-color: var(--ds-alternative);
    color: var(--ds-white);
}

.cart-slot.is-full {
    border-color: transparent;
    background-color: var(--ds-grey-01);
    color: var(--ds-text-03);
}

.cart-coupon-form {
    border: 1px solid var(--ds-grey-02);
    border-radius: 1rem;
    padding: 0.35rem 0.6rem;
    background-color: var(--ds-white);
}

.cart-coupon-form .form-control {
    border: 0;
    box-shadow: none;
    background: transparent;
}

.cart-coupon-plus {
    width: 2.25rem;
    height: 2.25rem;
    border: 0;
    border-radius: 50%;
    background-color: var(--ds-secondary);
    color: var(--ds-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cart-coupon-applied {
    border: 1px solid color-mix(in srgb, var(--ds-alternative) 35%, white);
    background-color: color-mix(in srgb, var(--ds-alternative) 6%, white);
}

.cart-meta-chip {
    padding: 0.45rem 0.75rem;
    border-radius: 0.75rem;
    font-size: 0.8125rem;
}


@media (max-width: 767.98px) {
    .cart-tab {
        flex: 0 0 auto;
    }

    .cart-tabs {
        justify-content: flex-start;
        overflow: auto;
        width: 100%;
    }

    .cart-item-actions {
        flex-wrap: nowrap;
        gap: 0.5rem;
    }

    .cart-item-links {
        flex-wrap: nowrap;
        gap: 0.65rem;
    }

    .cart-item-links .ds-link {
        white-space: nowrap;
    }

    .cart-item-banner--oos {
        flex-wrap: nowrap;
        gap: 0.5rem;
    }

    .cart-item-banner--oos > span {
        min-width: 0;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .cart-item-banner--oos .btn {
        flex-shrink: 0;
    }
}


/* =========================================================
   PRODUCT DETAIL
   ========================================================= */

.product-sale-tag {
    position: absolute;
    top: 0.75rem;
    inset-inline-start: 0.75rem;
    color: var(--ds-accent-02);
    z-index: 1;
}

.product-gallery-main {
    min-height: 18rem;
    overflow: hidden;
}

.product-gallery-owl .owl-item,
.product-gallery-owl .owl-item > div {
    width: 100%;
}

.product-gallery-image {
    max-width: 18rem;
    max-height: 18rem;
    object-fit: contain;
    transition: transform var(--motion-slow) var(--motion-ease);
}

.product-thumb {
    width: 3.5rem;
    height: 3.5rem;
    padding: 0.2rem;
    border: 1px solid var(--ds-grey-02);
    border-radius: 0.75rem;
    background: var(--ds-white);
    flex-shrink: 0;
    transition: border-color var(--motion-fast) var(--motion-ease);
}

.product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-thumb.is-active {
    border-color: var(--ds-accent-04);
}

.product-gallery-arrow {
    width: 2rem;
    height: 2rem;
    border: 0;
    border-radius: 50%;
    background: var(--ds-secondary);
    color: var(--ds-primary);
    flex-shrink: 0;
}

.product-chip-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    min-height: 2.25rem;
    padding: 0.35rem 0.85rem;
    border: 1px solid var(--ds-grey-02);
    border-radius: 999px;
    background: var(--ds-grey-01);
    color: var(--ds-text-02);
    font-size: 0.75rem;
    transition: color var(--motion-fast) var(--motion-ease);
}

.product-chip-btn.is-on {
    color: var(--ds-alternative);
}

.product-stat-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--ds-text-02);
    font-size: 0.75rem;
    white-space: nowrap;
}

.product-stat-link i {
    color: var(--ds-action-icon);
}

.product-color {
    width: 3.5rem;
    height: 3.5rem;
    padding: 0.2rem;
    border: 1px dashed var(--ds-grey-02);
    border-radius: 0.85rem;
    background: var(--ds-white);
    transition: border-color var(--motion-fast) var(--motion-ease);
}

.product-color.is-selected {
    border-style: solid;
    border-width: 2px;
    border-color: var(--ds-accent-04);
}

.product-color.is-unavailable {
    opacity: 0.4;
}

.product-color-swatch,
.product-mini-swatch {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 0.6rem;
    overflow: hidden;
    background: var(--product-swatch, var(--ds-grey-01));
}

.product-color-swatch img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
    background: var(--ds-white);
}

.product-mini-swatch {
    width: 0.85rem;
    height: 0.85rem;
    border-radius: 50%;
}

.product-addon-mark {
    width: 2.25rem;
    height: 2.25rem;
    border: 1px dashed var(--ds-grey-02);
    border-radius: 0.5rem;
    flex-shrink: 0;
    background: var(--ds-white);
}

.product-addon {
    border: 1px dashed var(--ds-grey-02);
    background: var(--ds-grey-01);
}







.product-addon-check {
    border-style: dashed;
    border-color: var(--ds-accent-03);
}

.product-mini-addon {
    padding: 0.55rem 0.75rem;
    border: 1px dashed var(--ds-accent-03);
    border-radius: 0.75rem;
}

.product-notify-art {
    width: 4.5rem;
    height: 4.5rem;
    background: var(--ds-white);
    color: var(--ds-action-icon);
    font-size: 1.75rem;
    flex-shrink: 0;
}

.product-oos-icon {
    width: 2.75rem;
    height: 2.75rem;
    background: var(--ds-white);
    color: var(--ds-text-03);
}

.product-nav {
    position: sticky;
    top: 6.8rem;
    z-index: 15;
    box-shadow: 0 0.125rem 0.5rem rgba(12, 49, 72, 0.04);
}

.product-nav-link {
    flex: 0 0 auto;
    padding: 0.9rem 0.85rem;
    color: var(--ds-text-03);
    text-decoration: none;
    font-size: 0.8125rem;
    border-bottom: 2px solid transparent;
    white-space: nowrap;
    transition:
        color var(--motion-fast) var(--motion-ease),
        border-color var(--motion-fast) var(--motion-ease);
}

.product-nav-link.is-active {
    color: var(--ds-secondary);
    border-bottom-color: var(--ds-secondary);
}

.product-intro-copy {
    max-height: 7.5rem;
    overflow: hidden;
}

.product-intro-copy.is-open {
    max-height: none;
}

.product-more-btn {
    min-height: 2.25rem;
    padding: 0.35rem 1rem;
    border: 0;
    border-radius: 999px;
    background: color-mix(in srgb, var(--ds-accent-04) 16%, white);
    color: var(--ds-text-02);
    font-size: 0.8125rem;
}

.product-glance-icon {
    width: 3.25rem;
    height: 3.25rem;
    background: var(--ds-white);
    color: var(--ds-alternative);
}

.product-suitable-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.75rem;
    border: 1px solid var(--ds-grey-02);
    border-radius: 999px;
    background: var(--ds-white);
    font-size: 0.75rem;
}

.product-spec-row {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--ds-grey-02);
}

.product-spec-table .product-spec-row:last-child {
    border-bottom: 0;
}

.product-rating-track {
    height: 0.4rem;
    border-radius: 999px;
    background: var(--ds-grey-02);
    overflow: hidden;
}

.product-rating-fill {
    background: #f5c400;
}

.product-star {
    color: #ffffff;
    -webkit-text-stroke: 1px #d4d4d4;
}

.product-star.is-on {
    color: #f5c400;
    -webkit-text-stroke: 0;
}

.product-review-photo {
    width: 3.5rem;
    height: 3.5rem;
    object-fit: cover;
}

.product-vote-btn {
    min-height: 2rem;
    padding: 0.25rem 0.75rem;
    border: 0;
    border-radius: 999px;
    background: var(--ds-grey-01);
    color: var(--ds-text-02);
    font-size: 0.75rem;
}

.product-page-btn {
    width: 2.25rem;
    height: 2.25rem;
    border: 0;
    border-radius: 50%;
    background: var(--ds-secondary);
    color: var(--ds-primary);
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

.product-page-btn i {
    color: var(--ds-primary);
}

.product-buy-mini-image,
.product-cart-thumb {
    width: 4.25rem;
    height: 4.25rem;
    object-fit: contain;
}

@media (min-width: 992px) {
    .product-sidebar-col {
        position: sticky;
        top: 11.5rem;
    }

    .product-gallery-main {
        min-height: 30rem;
    }
}

.product-mobile-buy {
    bottom: 3.75rem;
    z-index: 1025;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: var(--ds-white);
    box-shadow: 0 -0.125rem 0.75rem rgba(12, 49, 72, 0.08);
}

.product-mobile-buy .btn {
    padding-inline: 0.9rem;
}

.product-mobile-options {
    --bs-offcanvas-height: auto;
    border-top-left-radius: 1.25rem;
    border-top-right-radius: 1.25rem;
}

.product-page {
    padding-bottom: 5rem;
}

.product-cart-drawer {
    --bs-offcanvas-width: min(26rem, 100vw);
}

.product-cart-success {
    background: color-mix(in srgb, var(--ds-primary) 18%, white);
}

.product-cart-success-check {
    width: 1.5rem;
    height: 1.5rem;
    background: var(--ds-secondary);
    color: var(--ds-white);
    font-size: 0.7rem;
    flex-shrink: 0;
}

.product-cart-success-count {
    min-width: 1.5rem;
    height: 1.5rem;
    border-radius: 25rem;
    background: var(--ds-secondary);
    color: var(--ds-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

@media (max-width: 991.98px) {
    .product-page {
        padding-bottom: 8.5rem;
    }

    .product-nav {
        top: 3.75rem;
    }
}


/* =========================================================
   PRODUCT LIST
   ========================================================= */

.product-list-sticky {
    position: sticky;
    top: 3.75rem;
    z-index: 1015;
    background: var(--ds-screen-background);
    padding-top: 0.35rem;
}

.product-list-filters {
    scrollbar-width: thin;
    overflow-x: hidden;
}

.product-list-filters .form-check-input {
    float: none;
    margin-inline-start: 0;
}

.product-list-filter-block + .product-list-filter-block {
    border-top: 1px solid var(--ds-grey-02);
}


.product-list-filter-toggle i {
    transition: transform var(--motion-fast) var(--motion-ease);
}

.product-list-filter-toggle[aria-expanded="false"] i {
    transform: rotate(180deg);
}

.product-list-cat-link {
    padding: 0.2rem 0;
    font-size: 0.8125rem;
}

.product-list-cat-link.is-current {
    color: var(--ds-alternative);
    font-weight: 700;
}

.product-list-cat-children {
    padding-inline-start: 0.85rem;
    margin-top: 0.15rem;
}

.product-list-cat-grandchildren {
    padding-inline-start: 0.85rem;
}

@media (max-width: 991.98px) {
    .product-list-filters-col {
        display: contents;
    }

    .product-list-filters-col .offcanvas-lg {
        background-color: var(--ds-white);
    }
}

.product-list-filter-search-icon {
    position: absolute;
    inset-inline-start: 0.85rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--ds-text-03);
    font-size: 0.75rem;
    pointer-events: none;
}

.product-list-filter-block .position-relative .form-control {
    padding-inline-start: 2rem;
}

.product-list-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    min-height: 2rem;
    padding: 0.25rem 0.75rem;
    border: 0;
    border-radius: 999px;
    background: var(--ds-grey-01);
    color: var(--ds-text-02);
    font-size: 0.75rem;
}

.product-list-page-select {
    min-width: 3.5rem;
}

@media (min-width: 992px) {
    .product-list-sticky {
        top: 6.25rem;
    }

    .product-list-filters {
        position: sticky;
        top: 6.25rem;
        max-height: calc(100vh - 7rem);
        overflow-x: hidden;
        overflow-y: auto;
    }
}

@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1566px;
    }
}

.w-100px {
    width: 100px !important;
}

a,.form-select {
    cursor:pointer;
}


/* =========================================================
   MOTION SYSTEM
   ========================================================= */

@keyframes motion-fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes motion-pop {
    0% { transform: scale(1); }
    40% { transform: scale(1.16); }
    100% { transform: scale(1); }
}

@keyframes motion-fade-up {
    from {
        opacity: 0;
        transform: translate3d(0, 0.5rem, 0);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

.shop-header-cart-badge.is-acting,
.product-card-favorite.is-acting,
.btn.is-acting {
    animation: motion-pop 280ms var(--motion-ease);
}

.product-cart-success.is-acting {
    animation: motion-fade-up 380ms var(--motion-ease);
}

.blog-card {
    transition: box-shadow var(--motion-normal) var(--motion-ease);
}

.blog-card .ratio {
    overflow: hidden;
}

.blog-card img {
    transition: transform var(--motion-slow) var(--motion-ease);
}

.blog-card h3 a {
    transition: color var(--motion-fast) var(--motion-ease);
}

.blog-detail-hero {
    overflow: hidden;
}

.pagination .page-link {
    transition:
        background-color var(--motion-fast) var(--motion-ease),
        color var(--motion-fast) var(--motion-ease),
        border-color var(--motion-fast) var(--motion-ease);
}

.pagination .page-item:first-child .page-link,
.pagination .page-item:last-child .page-link {
    background-color: var(--ds-secondary);
    border-color: var(--ds-secondary);
    color: var(--ds-primary);
}

.pagination .page-item:first-child .page-link i,
.pagination .page-item:last-child .page-link i {
    color: white;
}

.cart-item-links {
    gap: 1.25rem;
}

.accordion-button {
    transition:
        background-color var(--motion-fast) var(--motion-ease),
        color var(--motion-fast) var(--motion-ease),
        box-shadow var(--motion-fast) var(--motion-ease);
}

.profile-form .form-control,
.profile-form .form-select,
.profile-modal .form-control,
.profile-modal .form-select {
    transition:
        border-color var(--motion-fast) var(--motion-ease),
        box-shadow var(--motion-fast) var(--motion-ease);
}

.alert {
    animation: motion-fade-up var(--motion-slow) var(--motion-ease);
}

.motion-ready .motion-reveal.is-pending:not(.is-revealed) {
    opacity: 0;
    transform: translate3d(0, 1.15rem, 0);
}

.motion-ready .motion-reveal.is-revealed {
    opacity: 1;
    transform: none;
    transition:
        opacity var(--motion-slow) var(--motion-ease),
        transform var(--motion-slow) var(--motion-ease);
    transition-delay: var(--reveal-delay, 0ms);
}

@media (hover: hover) and (pointer: fine) {
    .product-card:hover {
        box-shadow: var(--bs-box-shadow);
    }

    .product-card:hover .product-card-image {
        transform: scale(1.03);
    }

    .special-product-card:hover {
        box-shadow: var(--bs-box-shadow);
    }

    .special-product-card:hover .special-product-card-image {
        transform: scale(1.03);
    }

    .blog-card:hover {
        box-shadow: var(--bs-box-shadow);
    }

    .blog-card:hover img {
        transform: scale(1.04);
    }

    .blog-card:hover h3 a {
        color: var(--ds-alternative);
    }

    .home-banner-slot:hover img {
        transform: scale(1.03);
    }

    .home-category-item:hover {
        transform: translate3d(0, -0.15rem, 0);
    }

    .home-category-item:hover .home-category-image img {
        transform: scale(1.06);
    }

    .shop-footer-service:hover {
        box-shadow: var(--bs-box-shadow-sm);
    }

    .product-gallery-main:hover .product-gallery-image {
        transform: scale(1.03);
    }
}

@media (prefers-reduced-motion: reduce) {
    :root {
        --motion-fast: 1ms;
        --motion-normal: 1ms;
        --motion-slow: 1ms;
    }

    .shop-header,
    .alert,
    .shop-header-cart-badge.is-acting,
    .product-card-favorite.is-acting,
    .btn.is-acting,
    .product-cart-success.is-acting {
        animation: none;
    }

    .motion-ready .motion-reveal.is-pending:not(.is-revealed),
    .motion-ready .motion-reveal.is-revealed {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .shop-header-dropdown .dropdown-menu {
        transition: none;
    }

    .shop-header-dropdown:hover .shop-header-nav-chevron,
    .shop-header-dropdown:focus-within .shop-header-nav-chevron {
        transform: none;
    }

    .product-card-image,
    .special-product-card-image,
    .blog-card img,
    .home-banner-slot img,
    .home-category-image img,
    .product-gallery-image,
    .home-category-item {
        transition: none;
        transform: none;
    }
}

#dntCaptchaImg {
    border-radius: 50px;
}


.faq-item {
    border: 1px solid var(--ds-grey-01);
    background: #fff;
}

.faq-button {
    min-height: 68px;
    padding: 12px 16px;
    gap: 14px;

    color: inherit;
    background-color: #fff;
    box-shadow: none !important;
}

.faq-button::after {
    display: none;
}

.faq-button:not(.collapsed) {
    color: inherit;
    background-color: #fff;
    box-shadow: none;
}

.faq-number {
    width: 32px;
    height: 32px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--ds-grey-02);
    border-radius: 8px;

    color: var(--ds-secondary);
    background-color: #fbfbfb;

    font-size: 11px;
    font-weight: 600;
}

.faq-icon {
    width: 32px;
    height: 32px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--ds-grey-02);
    border-radius: 50%;

    color: var(--ds-secondary);
    background-color: #fff;
}

.faq-icon i {
    font-size: 14px;
}

.faq-answer {
    padding: 0 16px 18px;
    line-height: 1.9;
    border-top: 1px solid var(--ds-grey-01);
}

#ticketDetails {
    width: 800px;
}