/* =========================
   STORE HEADER WRAPPER
========================= */
.sub-nav-bar {
    padding: 14px 0;
    background: #fff;
}

/* =====================================================
   STORE PAGE HEADER
===================================================== */

.store-page-heading {
    width: 100%;
}

.store-page-title {
    margin: 0 0 8px;
    font-family: Inter, sans-serif;
    font-size: 23px !important;
    line-height: 1.25 !important;
    font-weight: 700 !important;
    letter-spacing: -0.01em;
    color: #444;
}

.store-page-subtitle {
    margin: 0 0 5px;
    font-family: Inter, sans-serif;
    font-size: 17px !important;
    line-height: 1.35 !important;
    font-weight: 400;
    color: #444;
}

@media (max-width: 767.98px) {
    .store-page-title--mobile {
        font-size: 19px !important;
        line-height: 1.1 !important;
    }

    .store-page-subtitle--mobile {
        margin: 3px 0 0;
        font-size: 16px !important;
        line-height: 1.2 !important;
    }
}

/* =====================================================
   STORE PAGE MOBILE HEADER
===================================================== */

@media (max-width: 767.98px) {
    .shop-info-mobile {
        display: flex;
        align-items: flex-start;
        gap: 12px;

        width: auto !important;
        height: auto !important;

        margin-top: 20px;
        padding: 0;
        background: transparent;
        border: none;
        box-shadow: none;
    }

    .shop-info-mobile:hover {
        box-shadow: none;
    }

    .shop-info-mobile a {
        display: flex;
        align-items: center;
        justify-content: center;

        width: 74px !important;
        height: 74px !important;
        flex: 0 0 74px;

        padding: 2px;
        background: #fff;
        border: 1px solid #e9ecef;
        border-radius: 5px;
        box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
    }

    .shop-info-mobile a img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .shop-info-mobile__title {
        display: none;
    }
    }

/* =====================================================
   COUPON POPUP / MODAL
   ===================================================== */

.couponModal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px 16px;
    background: rgba(15, 23, 42, 0.42);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    overflow-y: auto;
}

.couponModal[style*="display: block"] {
    display: flex !important;
}

.couponModal .modal__dialog {
    position: relative;
    width: 100%;
    max-width: 650px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
    overflow: hidden;
      
}

.couponModal .modal__content {
    position: relative;
    width: 100%;
    max-height: min(80vh, 760px);
    overflow-y: auto;
    overflow-x: hidden;
}

@media (max-width: 767px) {
    .couponModal {
        padding: 12px;
        background: rgba(15, 23, 42, 0.48);
        -webkit-backdrop-filter: blur(5px);
        backdrop-filter: blur(5px);
    }

    .couponModal .modal__dialog {
        max-width: 100%;
        border-radius: 14px;
        box-shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
    }
}

.couponModal .modal__close-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 5;
    min-width: 40px;
    width: 40px;
    height: 40px;
    padding: 0;
    line-height: 40px;
    text-align: center;
    border-radius: 999px;
    cursor: pointer;
}

.couponModal .modal-clickout {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.couponModal .modal-clickout__info {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    width: 100%;
    padding: 28px 24px 18px;
    box-sizing: border-box;
}

.couponModal .modal-clickout__logo {
    flex: 0 0 84px;
    width: 84px;
    height: 84px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid #e9ecef;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
}

.couponModal .modal-clickout__logo img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
}

.couponModal .modal-clickout__title {
    flex: 1 1 auto;
    min-width: 0;
    padding-right: 32px;
}

.couponModal .modal-clickout__title .coupon__title {
    margin: 0 0 10px !important;
    line-height: 1.25;
}

.couponModal .modal-clickout__title .coupon__text {
    margin: 0;
    line-height: 1.5;
    -webkit-line-clamp: unset !important;
    overflow: visible !important;
    text-overflow: initial !important;
    white-space: normal !important;
    max-height: none !important;
}

.couponModal .modal-clickout__code-wrp {
    display: flex;
    flex-direction: row-reverse;
    align-items: stretch;
    gap: 0;
    width: 100%;
    padding: 0 24px 8px;
    box-sizing: border-box;
}

.couponModal .modal-clickout__code {
    flex: 1 1 auto;
    min-height: 56px;
    display: flex;
    align-items: center;
    padding: 0 16px;
    box-sizing: border-box;
    border-radius: 16px 0 0 16px;
}

.couponModal #modal-clickout__code1,
.couponModal .modal-clickout__copy {
    flex: 0 0 170px;
    min-width: 170px;
    min-height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 16px;
    float: none !important;
    border-radius: 0 16px 16px 0;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    box-sizing: border-box;
    color: white;
    background-color: #00c27e;
}

.couponModal .modal-clickout__copy-text {
    margin: 0;
    padding: 0 24px 20px;
    text-align: center;
    line-height: 1.45;
    box-sizing: border-box;
}


.couponModal .modal-clickout__link-wrp {
    width: 100%;
    padding: 0 24px 24px;
    box-sizing: border-box;
}

.couponModal .modal-clickout__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 52px;
    padding: 12px 18px;
    box-sizing: border-box;
    text-align: center !important;
    text-decoration: none;
}

@media (max-width: 767.98px) {
    .couponModal {
        padding: 12px;
        align-items: flex-start;
    }

    .couponModal .modal__dialog {
        max-width: none;
        margin-top: 8px;
    }

    .couponModal .modal-clickout__info {
        padding: 24px 18px 16px;
    }

    .couponModal .modal-clickout__logo {
        flex: 0 0 68px;
        width: 68px;
        height: 68px;
    }

    .couponModal .modal-clickout__title {
        padding-right: 24px;
    }

    .couponModal .modal-clickout__code-wrp,
    .couponModal .modal-clickout__copy-text,
    .couponModal .modal-clickout__link-wrp {
        padding-left: 18px;
        padding-right: 18px;
    }

    .couponModal #modal-clickout__code1,
    .couponModal .modal-clickout__copy {
        flex-basis: 120px;
        min-width: 120px;
    }
}

@media (max-width: 575.98px) {
    .couponModal {
        padding: 8px;
        align-items: flex-start;
    }

    .couponModal .modal__dialog {
        width: 100%;
        max-width: none;
        max-height: calc(100vh - 16px);
        margin: 0;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        border-radius: 16px;
    }

    .couponModal .modal__content {
        overflow: visible;
    }

    .couponModal .modal__close-btn {
        top: 8px;
        right: 8px;
        z-index: 10;
    }

    .couponModal .modal-clickout__info {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
        padding: 18px 14px 12px;
    }

    .couponModal .modal-clickout__logo {
        width: 56px;
        height: 56px;
        flex: 0 0 56px;
    }

    .couponModal .modal-clickout__title {
        width: 100%;
        padding-right: 0;
    }

    .couponModal .modal-clickout__title .coupon__title {
        margin: 0 0 6px !important;
        font-size: 17px;
        line-height: 1.25;
    }

    .couponModal .modal-clickout__title .coupon__text {
        font-size: 14px;
        line-height: 1.4;
    }

    .couponModal .modal-clickout__code-wrp {
        flex-direction: row-reverse;
        gap: 0;
        padding: 0 14px 8px;
    }

    .couponModal .modal-clickout__code {
        min-height: 46px;
        padding: 0 12px;
        font-size: 14px;
        border-radius: 12px 0 0 12px;
        justify-content: center;
        text-align: center;
    }

    .couponModal #modal-clickout__code1,
    .couponModal .modal-clickout__copy {
        flex: 0 0 92px;
        min-width: 92px;
        min-height: 46px;
        width: auto !important;
        padding: 0 10px;
        font-size: 13px !important;
        border-radius: 0 12px 12px 0;
    }

    .couponModal .modal-clickout__copy-text {
        padding: 0 14px 12px;
        font-size: 13px;
        line-height: 1.35;
    }

    .couponModal .modal-clickout__link-wrp {
        padding: 0 14px 14px;
    }

    .couponModal .modal-clickout__link {
        min-height: 46px;
        padding: 10px 14px;
        font-size: 14px;
        line-height: 1.2;
    }
}
.couponModal .phone-collect {
    width: 100%;
    max-width: 540px;
    margin: 20px auto 18px;
    padding: 18px 18px 16px;
    box-sizing: border-box;
    border: 2px solid #00c27e;
    border-radius: 10px;
    text-align: center;
    background: #fff;
}

.couponModal .phone-collect__lead {
    margin: 0 0 6px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.45;
    color: #444;
}

.couponModal .phone-collect__brand {
    margin: 0 0 6px;
    font-size: 17px;
    line-height: 1.3;
    color: #2b2f36;
}

.couponModal .phone-collect__brand strong {
    font-weight: 700;
}

.couponModal .phone-collect__trust {
    margin: 0 0 14px;
    font-size: 15px;
    line-height: 1.4;
    color: #5f6b76;
}

.couponModal .phone-collect__form-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: nowrap;
}

.couponModal .phone-collect input[type="tel"] {
    width: 100%;
    max-width: 190px;
    box-sizing: border-box;
}

.couponModal .phone-collect .submit-phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    min-width: 40px;
    height: 36px;
    padding: 0;
    margin-left: 0;
    line-height: 1;
    border-radius: 6px;
}

.couponModal .phone-collect .submit-phone svg {
    width: 18px;
    height: 18px;
    display: block;
}

@media (max-width: 767px) {
    .couponModal .phone-collect {
        max-width: 95%;
        margin: 16px auto 12px;
        padding: 10px 8px 10px;
    }

    .couponModal .phone-collect__lead {
        font-size: 15px;
line-height: 1.35;
    margin: 0 0 4px;
    }

    .couponModal .phone-collect__brand {
        font-size: 15px;
    margin: 0 0 4px;
    }

    .couponModal .phone-collect__trust {
        font-size: 13px;
    line-height: 1.35;
    margin: 0 0 10px;
    }

    .couponModal .phone-collect__form-row {
        gap: 8px;
    }
}

/* =====================================================
   COUPON FILTER
   ===================================================== */

.coupon-filter {
    min-height: 27px;
    margin-bottom: 15px;
    margin-top: 14px;
    padding-left: 0;
    text-align: right;
    list-style-type: none;
    font-family: Inter, sans-serif;
    border-bottom: 1px solid #d8d8d8;
}

.coupon-filter li {
    display: inline-block;
    margin-left: 5px;
    cursor: pointer;
    color: #212529;
    font-size: 16px;
}

.coupon-filter li:hover {
    border-bottom: 3px solid #ff6900;
}

.coupon-filter li.active {
    font-weight: 400;
    text-decoration: none;
    border-bottom: 3px solid #ff6900;
}

/* ================= MOBILE HEADER FIX ================= */

@media (max-width: 767px) {
    .shops.show .t-header {
        position: relative;
        z-index: 1041;
    }
}

/* ================= Breadcrumbs ================= */

.breadcrumbs {
    overflow: hidden;
    font-size: 18px;
    font-family: Inter, sans-serif;
    line-height: 1;
    margin-top:15px;
}

.breadcrumbs__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 0;
    padding-left: 0;
    list-style: none;
}

.breadcrumbs__item {
    padding-right: 6px;
    padding-left: 6px;
    white-space: nowrap;
}

.breadcrumbs__item:first-of-type {
    padding-left: 0;
}

.breadcrumbs__item:first-of-type::before {
    display: none;
}

.breadcrumbs__item a {
    color: #2a2a2a;
    font-style: italic;
    text-decoration: none;
}

.breadcrumbs__item a:hover {
    color: #2a2a2a;
    font-size: 18px;
    font-family: Inter, sans-serif;
    text-decoration: underline;
}

.breadcrumbs__item span {
    color: #2a2a2a;
    font-size: 18px;
    font-family: Inter, sans-serif;
    font-weight: 600;
}

@media (max-width: 991px) {
    .breadcrumbs {
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
    }

    .breadcrumbs__list {
        flex-wrap: nowrap;
        min-width: max-content;
        margin-bottom: 0;
    }
}

