/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : Mar 21, 2025, 11:28:14 PM
    Author     : ahmadyaseen
*/

.slick-default .slick-slide>div {
    margin: 0 8px
}

.product-share-button {
    align-items: center;
    appearance: none;
    background: #ffffff;
    border: 1px solid #e4ded3;
    border-radius: 6px;
    color: #443d33;
    cursor: pointer;
    display: inline-flex;
    font: inherit;
    gap: 8px;
    min-height: 40px;
    padding: 4px 11px 4px 5px;
    transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.product-share-icon {
    align-items: center;
    background: #f7f2e8;
    border-radius: 50%;
    color: #9b751d;
    display: inline-flex;
    flex: 0 0 30px;
    height: 30px;
    justify-content: center;
    width: 30px;
}

.product-share-icon i {
    font-size: 17px;
    line-height: 1;
}

.product-share-label {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    white-space: nowrap;
}

.product-share-button:hover {
    background: #fffaf0;
    border-color: #cda63e;
    color: #6b5317;
}

.product-share-button:focus-visible {
    border-color: #b98b1e;
    outline: 3px solid rgba(234, 183, 39, 0.28);
    outline-offset: 2px;
}

.product-share-button:active {
    background: #f7f0e3;
}

@media (max-width: 575px) {
    .product-share-button {
        min-height: 44px;
    }
}

[data-native-notification-button] {
    align-items: center;
    display: inline-flex;
    gap: 8px;
}

.notification-settings-page {
    background: #fbfaf7;
    min-height: 58vh;
    padding: 48px 0 64px;
}

.notification-settings-shell {
    margin: 0 auto;
    max-width: 620px;
}

.notification-settings-header {
    margin-bottom: 20px;
    text-align: right;
}

.notification-settings-header h1,
.notification-permission-action h2 {
    color: #2e2921;
    margin: 0;
}

.notification-settings-header h1 {
    font-size: 25px;
    font-weight: 700;
}

.notification-settings-header p,
.notification-permission-action p {
    color: #716b62;
    font-size: 14px;
    line-height: 1.7;
    margin: 7px 0 0;
}

.notification-settings-panel {
    background: #ffffff;
    border: 1px solid #e7e1d7;
    border-radius: 8px;
    padding: 20px;
}

.notification-settings-unavailable .notification-settings-panel {
    opacity: 0.65;
}

.notification-permission-action {
    align-items: center;
    display: flex;
    gap: 16px;
    justify-content: space-between;
}

.notification-permission-action h2 {
    font-size: 16px;
    font-weight: 700;
}

.native-notification-topics {
    border-top: 1px solid #ece7de;
    margin-top: 18px;
    padding-top: 14px;
}

.native-notification-topic {
    align-items: center;
    direction: rtl;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    margin: 0;
    min-height: 42px;
    padding: 6px 0;
}

.native-notification-topic + .native-notification-topic {
    border-top: 1px solid #f1eee8;
}

.native-notification-topic .form-check-input {
    cursor: pointer;
    float: none;
    margin: 0;
}

.native-notification-topic .form-check-input:disabled {
    cursor: not-allowed;
}

.native-notification-topic .form-check-label {
    color: #443d33;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
}

@media (max-width: 575px) {
    .notification-settings-page {
        padding: 30px 0 44px;
    }

    .notification-settings-header h1 {
        font-size: 22px;
    }

    .notification-settings-panel {
        padding: 16px;
    }

    .notification-permission-action {
        align-items: flex-start;
        flex-direction: column;
    }

    .notification-permission-action [data-native-notification-button] {
        min-height: 44px;
    }
}

/* Premium newsletter view */
.news-letter-page {
    padding: 44px 0 58px;
    background:
        linear-gradient(135deg, rgba(24, 20, 15, 0.04) 0%, rgba(227, 190, 94, 0.08) 44%, rgba(255, 255, 255, 0) 45%),
        #fbfaf7;
}

.news-letter-board {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 26px;
    border: 1px solid rgba(204, 162, 55, 0.28);
    border-radius: 18px;
    background:
        linear-gradient(115deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0) 32%),
        linear-gradient(145deg, #1b1712 0%, #292017 52%, #110f0c 100%);
    box-shadow: 0 20px 46px rgba(31, 24, 13, 0.18);
}

.news-letter-board:before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(231, 183, 64, 0.18), rgba(231, 183, 64, 0) 34%),
        repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.035) 0 1px, rgba(255, 255, 255, 0) 1px 18px);
    pointer-events: none;
}

.news-letter-board:after {
    content: "";
    position: absolute;
    inset-inline: 18px;
    top: 0;
    height: 3px;
    z-index: 1;
    border-radius: 0 0 999px 999px;
    background: linear-gradient(90deg, rgba(246, 211, 91, 0), #f6d35b 22%, #fff0a6 50%, #cf9324 78%, rgba(246, 211, 91, 0));
}

.news-letter-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.news-letter-head-copy {
    min-width: 0;
}

.news-letter-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
    color: #f7db87;
    font-size: 13px;
    font-weight: 900;
}

.news-letter-kicker:before {
    content: "";
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background: #f0c448;
}

.news-letter-head h1 {
    margin: 0;
    color: #fff;
    font-size: 32px;
    font-weight: 900;
    line-height: 1.2;
}

.news-letter-head-live {
    min-width: 82px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid rgba(248, 216, 122, 0.46);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff1ad;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0;
}

.news-letter-head-live span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #f6d35b;
    box-shadow: 0 0 0 0 rgba(246, 211, 91, 0.58);
    animation: newsLetterLivePulse 1.6s ease-out infinite;
}

.news-letter-list {
    display: grid;
    gap: 12px;
}

.news-letter-row {
    position: relative;
    min-height: 104px;
    display: grid;
    grid-template-columns: 44px 84px minmax(0, 1fr) minmax(168px, auto);
    align-items: center;
    gap: 14px;
    padding: 12px 14px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.045)),
        rgba(255, 255, 255, 0.035);
    color: #fff;
    transform: translateY(0);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    animation: newsLetterRowIn 0.5s ease both;
    transition: transform 0.24s ease, border-color 0.24s ease, background-color 0.24s ease, box-shadow 0.24s ease;
}

.news-letter-list .news-letter-row:nth-child(2) {
    animation-delay: 0.04s;
}

.news-letter-list .news-letter-row:nth-child(3) {
    animation-delay: 0.08s;
}

.news-letter-list .news-letter-row:nth-child(4) {
    animation-delay: 0.12s;
}

.news-letter-list .news-letter-row:nth-child(5) {
    animation-delay: 0.16s;
}

.news-letter-row:before {
    content: "";
    position: absolute;
    inset: 0;
    width: auto;
    opacity: 0;
    background: linear-gradient(90deg, rgba(246, 211, 91, 0.18), rgba(246, 211, 91, 0) 44%);
    transition: opacity 0.24s ease;
}

.news-letter-row:after {
    content: "";
    position: absolute;
    top: -40%;
    bottom: -40%;
    width: 76px;
    inset-inline-start: -110px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 243, 184, 0.18), rgba(255, 255, 255, 0));
    transform: rotate(14deg);
    transition: inset-inline-start 0.5s ease;
    pointer-events: none;
}

.news-letter-row:hover {
    color: #fff;
    border-color: rgba(246, 211, 91, 0.44);
    background:
        linear-gradient(135deg, rgba(246, 211, 91, 0.14), rgba(255, 255, 255, 0.055)),
        rgba(255, 255, 255, 0.055);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.11);
    transform: translateY(-3px);
}

.news-letter-row:hover:before {
    opacity: 1;
}

.news-letter-row:hover:after {
    inset-inline-start: 110%;
}

.news-letter-index {
    position: relative;
    z-index: 1;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(248, 216, 122, 0.38);
    border-radius: 12px;
    background: rgba(19, 16, 12, 0.48);
    color: #f7d86c;
    font-size: 14px;
    font-weight: 900;
}

.news-letter-thumb {
    position: relative;
    z-index: 1;
    width: 78px;
    height: 78px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 14px;
    background: linear-gradient(145deg, #fff, #f6f1e6);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.2);
}

.news-letter-thumb img {
    padding: 8px;
}

.news-letter-info,
.news-letter-price {
    position: relative;
    z-index: 1;
}

.news-letter-title {
    color: #fff;
    font-size: 17px;
    font-weight: 900;
    line-height: 1.55;
}

.news-letter-note {
    color: rgba(255, 255, 255, 0.64);
}

.news-letter-price {
    min-width: 168px;
    justify-items: end;
}

.news-letter-price strong {
    position: relative;
    overflow: hidden;
    min-height: 44px;
    padding: 0 18px;
    border: 1px solid rgba(255, 243, 184, 0.52);
    border-radius: 12px;
    background: linear-gradient(135deg, #fff0a6 0%, #f1c64e 40%, #c9871d 100%);
    color: #17130f;
    font-size: 21px;
    font-weight: 900;
    box-shadow: 0 12px 26px rgba(156, 103, 22, 0.26);
}

.news-letter-price strong:after {
    content: "";
    position: absolute;
    top: -30%;
    bottom: -30%;
    width: 44px;
    inset-inline-start: -70px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0));
    transform: rotate(14deg);
    animation: newsLetterPriceSweep 2.8s ease-in-out infinite;
}

.news-letter-badge,
.news-letter-discount,
.news-letter-soldout {
    border-radius: 999px;
}

.news-letter-empty {
    min-height: 190px;
    display: grid;
    place-items: center;
    gap: 8px;
    border: 1px dashed rgba(248, 216, 122, 0.36);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.045);
    color: rgba(255, 255, 255, 0.82);
    text-align: center;
}

.news-letter-empty i {
    color: #f6d35b;
    font-size: 34px;
}

.news-letter-empty h3 {
    margin: 0;
    color: #fff;
    font-size: 18px;
    font-weight: 900;
}

@keyframes newsLetterLivePulse {
    0% {
        box-shadow: 0 0 0 0 rgba(246, 211, 91, 0.58);
    }
    70% {
        box-shadow: 0 0 0 9px rgba(246, 211, 91, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(246, 211, 91, 0);
    }
}

@keyframes newsLetterRowIn {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes newsLetterPriceSweep {
    0%, 45% {
        inset-inline-start: -70px;
    }
    75%, 100% {
        inset-inline-start: calc(100% + 70px);
    }
}

@media (max-width: 991px) {
    .news-letter-board {
        padding: 22px;
        border-radius: 16px;
    }

    .news-letter-row {
        grid-template-columns: 40px 76px minmax(0, 1fr) minmax(148px, auto);
        min-height: 98px;
        gap: 12px;
    }

    .news-letter-thumb {
        width: 70px;
        height: 70px;
    }

    .news-letter-price {
        min-width: 148px;
    }
}

@media (max-width: 575px) {
    .news-letter-page {
        padding: 30px 0 40px;
    }

    .news-letter-board {
        padding: 16px 12px 18px;
        border-radius: 16px;
    }

    .news-letter-head {
        align-items: center;
        flex-direction: row;
        gap: 10px;
        margin-bottom: 14px;
    }

    .news-letter-kicker {
        margin-bottom: 4px;
        font-size: 12px;
    }

    .news-letter-head h1 {
        font-size: 26px;
    }

    .news-letter-head-live {
        min-width: 68px;
        height: 34px;
        font-size: 11px;
    }

    .news-letter-row {
        grid-template-columns: 34px 62px minmax(0, 1fr);
        gap: 10px;
        min-height: 94px;
        padding: 10px;
        border-radius: 13px;
    }

    .news-letter-index {
        width: 30px;
        height: 30px;
        border-radius: 10px;
        font-size: 12px;
    }

    .news-letter-thumb {
        width: 60px;
        height: 60px;
        border-radius: 12px;
    }

    .news-letter-title {
        font-size: 15px;
        line-height: 1.5;
    }

    .news-letter-price {
        grid-column: 2 / -1;
        min-width: 0;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: flex-start;
        justify-self: stretch;
        justify-items: start;
        gap: 6px;
        margin-right: 0;
    }

    .news-letter-price strong {
        min-height: 38px;
        max-width: 100%;
        padding: 0 13px;
        font-size: 17px;
        white-space: normal;
        word-break: break-word;
    }
}

.news-letter-row-static {
    cursor: default;
}

.news-letter-row-static:hover {
    border-color: rgba(255, 255, 255, 0.12);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.045)),
        rgba(255, 255, 255, 0.035);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transform: none;
}

.news-letter-row-static:hover:before {
    opacity: 0;
}

.news-letter-row-static:hover:after {
    inset-inline-start: -110px;
}

.news-letter-locked {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 0 9px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.76);
    font-size: 12px;
    font-weight: 800;
}

@media (prefers-reduced-motion: reduce) {
    .news-letter-head-live span,
    .news-letter-row,
    .news-letter-price strong:after {
        animation: none;
    }

    .news-letter-row,
    .news-letter-row:hover,
    .news-letter-row:after {
        transition: none;
    }
}

.home-page-skeleton {
    display: block;
    max-height: 4200px;
    opacity: 1;
    overflow: hidden;
    background: #fff;
    transition: opacity 0.28s ease, max-height 0.34s ease;
}

body.home-loaded .home-page-skeleton {
    max-height: 0;
    opacity: 0;
    pointer-events: none;
}

.home-content-panel {
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.28s ease, transform 0.28s ease;
}

body.home-loaded .home-content-panel {
    opacity: 1;
    transform: translateY(0);
}

body.home-loading .home-content-panel {
    opacity: 0;
    pointer-events: none;
}

.home-skeleton-shimmer {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f6f1ea 0%, #eee4d8 100%);
}

.home-skeleton-shimmer:after {
    content: "";
    position: absolute;
    inset: 0;
    transform: translateX(100%);
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.68) 48%, transparent 100%);
    animation: homeSkeletonShimmer 1.25s ease-in-out infinite;
}

.home-skeleton-hero {
    padding: 0 0 18px;
}

.home-skeleton-hero-media {
    min-height: 210px;
    height: 34vw;
    max-height: 390px;
    background:
        radial-gradient(circle at 18% 28%, rgba(214, 176, 86, 0.24), transparent 28%),
        linear-gradient(135deg, #15120f 0%, #33241b 52%, #17120f 100%);
}

.home-skeleton-hero-copy {
    position: absolute;
    right: max(22px, calc((100vw - 1170px) / 2));
    bottom: 42px;
    width: min(430px, 74vw);
    display: grid;
    gap: 12px;
}

.home-skeleton-line,
.home-skeleton-title,
.home-skeleton-pill,
.home-skeleton-news-icon,
.home-skeleton-category,
.home-skeleton-product span,
.home-skeleton-price-card span,
.home-skeleton-review-card span {
    display: block;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.58);
}

.home-skeleton-line {
    height: 14px;
}

.home-skeleton-line-sm {
    width: 120px;
}

.home-skeleton-line-md {
    width: 68%;
}

.home-skeleton-line-lg {
    width: 100%;
    height: 32px;
}

.home-skeleton-news-band {
    padding: 0 0 20px;
}

.home-skeleton-news-panel {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr) 22%;
    align-items: center;
    gap: 16px;
    min-height: 68px;
    padding: 14px 18px;
    border: 1px solid rgba(200, 159, 83, 0.2);
    border-radius: 8px;
    box-shadow: 0 14px 34px rgba(34, 24, 16, 0.08);
}

.home-skeleton-news-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(214, 176, 86, 0.34);
}

.home-skeleton-line-news {
    width: 100%;
    height: 16px;
    background: rgba(61, 46, 33, 0.11);
}

.home-skeleton-line-news-short {
    width: 100%;
}

.home-skeleton-section {
    padding: 12px 0 24px;
}

.home-skeleton-products-section {
    padding-top: 4px;
}

.home-skeleton-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}

.home-skeleton-title {
    width: 190px;
    height: 24px;
    background: #eee4d8;
}

.home-skeleton-pill {
    width: 88px;
    height: 28px;
    background: #f1e6d9;
}

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

.home-skeleton-category {
    min-height: 118px;
    border: 1px solid rgba(200, 159, 83, 0.12);
    box-shadow: 0 12px 28px rgba(34, 24, 16, 0.06);
}

.home-skeleton-product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.home-skeleton-product {
    display: grid;
    align-content: end;
    gap: 10px;
    min-height: 255px;
    padding: 18px;
    border: 1px solid rgba(200, 159, 83, 0.12);
    border-radius: 8px;
    box-shadow: 0 16px 34px rgba(34, 24, 16, 0.07);
}

.home-skeleton-product span {
    height: 13px;
    background: rgba(61, 46, 33, 0.1);
}

.home-skeleton-product span:first-child {
    width: 76%;
}

.home-skeleton-product span:nth-child(2) {
    width: 52%;
}

.home-skeleton-product span:last-child {
    width: 34%;
    height: 22px;
    background: rgba(214, 176, 86, 0.32);
}

.home-skeleton-bottom-section {
    padding: 4px 0 34px;
}

.home-skeleton-bottom-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
    gap: 18px;
}

.home-skeleton-price-card,
.home-skeleton-review-card {
    display: grid;
    align-content: center;
    gap: 12px;
    min-height: 154px;
    padding: 22px;
    border: 1px solid rgba(200, 159, 83, 0.14);
    border-radius: 8px;
    box-shadow: 0 16px 36px rgba(34, 24, 16, 0.08);
}

.home-skeleton-price-card {
    background: linear-gradient(135deg, #241911 0%, #4a3320 100%);
}

.home-skeleton-review-card {
    background: linear-gradient(135deg, #f7f1e9 0%, #eee1d2 100%);
}

.home-skeleton-price-card span,
.home-skeleton-review-card span {
    height: 14px;
}

.home-skeleton-price-card span:first-child {
    width: 130px;
    height: 24px;
    background: rgba(214, 176, 86, 0.48);
}

.home-skeleton-price-card span:nth-child(2) {
    width: 86%;
}

.home-skeleton-price-card span:nth-child(3) {
    width: 62%;
}

.home-skeleton-price-card span:last-child {
    width: 38%;
}

.home-skeleton-review-card span:first-child {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(214, 176, 86, 0.28);
}

.home-skeleton-review-card span:nth-child(2) {
    width: 76%;
    background: rgba(61, 46, 33, 0.1);
}

.home-skeleton-review-card span:last-child {
    width: 54%;
    background: rgba(61, 46, 33, 0.1);
}

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

@media (max-width: 991px) {
    .home-skeleton-category-grid,
    .home-skeleton-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-skeleton-bottom-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575px) {
    .home-skeleton-hero-media {
        min-height: 225px;
        height: 58vw;
    }

    .home-skeleton-hero-copy {
        right: 18px;
        bottom: 28px;
        width: calc(100% - 36px);
    }

    .home-skeleton-news-panel {
        grid-template-columns: 38px minmax(0, 1fr);
        gap: 12px;
        min-height: 62px;
        padding: 12px;
    }

    .home-skeleton-news-icon {
        width: 34px;
        height: 34px;
    }

    .home-skeleton-line-news-short {
        display: none;
    }

    .home-skeleton-section-head {
        margin-bottom: 14px;
    }

    .home-skeleton-title {
        width: 150px;
    }

    .home-skeleton-pill {
        width: 64px;
    }

    .home-skeleton-category-grid {
        gap: 10px;
    }

    .home-skeleton-category {
        min-height: 98px;
    }

    .home-skeleton-product-grid {
        gap: 12px;
    }

    .home-skeleton-product {
        min-height: 210px;
        padding: 14px;
    }

    .home-skeleton-price-card,
    .home-skeleton-review-card {
        min-height: 138px;
        padding: 18px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-skeleton-shimmer:after {
        animation: none;
    }
}

.page-skeleton {
    display: none;
    position: relative;
    z-index: 3;
    min-height: 360px;
    padding: 18px 0 42px;
    background: #fff;
}

body.page-is-loading .page-skeleton {
    display: block;
}

body.page-is-loading #navPnl {
    opacity: 0;
    min-height: 220px;
    pointer-events: none;
}

.page-skeleton-template {
    display: none;
}

body[data-page-skeleton="home"] .page-skeleton-home,
body[data-page-skeleton="listing"] .page-skeleton-listing,
body[data-page-skeleton="product"] .page-skeleton-product-detail,
body[data-page-skeleton="checkout"] .page-skeleton-checkout,
body[data-page-skeleton="order"] .page-skeleton-order,
body[data-page-skeleton="form"] .page-skeleton-form-page,
body[data-page-skeleton="calculator"] .page-skeleton-calculator,
body[data-page-skeleton="policy"] .page-skeleton-policy {
    display: block;
}

.page-skeleton-shimmer {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background: linear-gradient(135deg, #f6f1ea 0%, #ece1d3 100%);
}

.page-skeleton-shimmer:after {
    content: "";
    position: absolute;
    inset: 0;
    transform: translateX(100%);
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.7) 48%, transparent 100%);
    animation: homeSkeletonShimmer 1.25s ease-in-out infinite;
}

.page-skeleton-hero {
    min-height: 230px;
    height: 32vw;
    max-height: 360px;
    margin-bottom: 18px;
    border-radius: 0;
    background:
        radial-gradient(circle at 72% 28%, rgba(214, 176, 86, 0.24), transparent 26%),
        linear-gradient(135deg, #17110d 0%, #49301e 52%, #1b1512 100%);
}

.page-skeleton-news {
    height: 62px;
    margin-bottom: 18px;
}

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

.page-skeleton-circle-grid span {
    display: block;
    min-height: 104px;
}

.page-skeleton-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}

.page-skeleton-line,
.page-skeleton-pill,
.page-skeleton-action,
.page-skeleton-chip-grid span,
.page-skeleton-row-grid span {
    display: block;
    height: 18px;
}

.page-skeleton-line {
    width: 210px;
}

.page-skeleton-line-lg {
    width: min(100%, 420px);
    height: 34px;
}

.page-skeleton-line-sm {
    width: 45%;
}

.page-skeleton-pill {
    width: 92px;
    height: 30px;
}

.page-skeleton-listing-grid {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 20px;
}

.page-skeleton-filter {
    min-height: 430px;
}

.page-skeleton-products {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.page-skeleton-product {
    display: block;
    min-height: 270px;
}

.page-skeleton-product-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.75fr);
    gap: 26px;
    align-items: start;
}

.page-skeleton-product-media {
    min-height: 520px;
}

.page-skeleton-product-info {
    display: grid;
    gap: 18px;
    padding-top: 12px;
}

.page-skeleton-chip-grid {
    display: grid;
    grid-template-columns: repeat(3, 74px);
    gap: 10px;
}

.page-skeleton-chip-grid span {
    height: 42px;
}

.page-skeleton-action {
    width: 190px;
    height: 48px;
}

.page-skeleton-checkout-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 22px;
}

.page-skeleton-form,
.page-skeleton-summary,
.page-skeleton-table,
.page-skeleton-form-card,
.page-skeleton-calculator-copy,
.page-skeleton-calculator-tool,
.page-skeleton-policy-panel {
    min-height: 420px;
}

.page-skeleton-summary {
    min-height: 320px;
}

.page-skeleton-row-grid {
    display: grid;
    gap: 12px;
    margin-top: 16px;
}

.page-skeleton-row-grid span {
    height: 58px;
}

.page-skeleton-form-card {
    max-width: 560px;
    margin: 0 auto;
}

.page-skeleton-policy-panel {
    min-height: 520px;
}

.page-skeleton-calculator-grid {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(330px, .62fr);
    gap: 22px;
    align-items: stretch;
    min-height: 460px;
}

.page-skeleton-calculator-copy {
    background:
        linear-gradient(120deg, rgba(19, 14, 10, .96) 0%, rgba(48, 31, 18, .96) 100%);
}

.page-skeleton-calculator-tool {
    background:
        linear-gradient(135deg, #f7f0e5 0%, #eadac6 100%);
}

.home-deferred-skeleton,
.home-review-skeleton {
    padding: 18px 0 34px;
}

.home-deferred-skeleton-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}

.home-deferred-skeleton-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

@media (max-width: 991px) {
    .page-skeleton-circle-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .page-skeleton-listing-grid,
    .page-skeleton-product-detail-grid,
    .page-skeleton-checkout-grid,
    .page-skeleton-calculator-grid {
        grid-template-columns: 1fr;
    }

    .page-skeleton-filter {
        min-height: 72px;
    }

    .page-skeleton-products,
    .home-deferred-skeleton-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .page-skeleton-product-media {
        min-height: 380px;
    }
}

@media (max-width: 575px) {
    .page-skeleton {
        padding-top: 12px;
    }

    .page-skeleton-hero {
        min-height: 218px;
        height: 58vw;
    }

    .page-skeleton-circle-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .page-skeleton-circle-grid span {
        min-height: 92px;
    }

    .page-skeleton-products,
    .home-deferred-skeleton-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .page-skeleton-product {
        min-height: 220px;
    }

    .page-skeleton-product-media {
        min-height: 330px;
    }

    .page-skeleton-title-row {
        margin-bottom: 14px;
    }

    .page-skeleton-line {
        width: 150px;
    }

    .page-skeleton-pill {
        width: 64px;
    }

    .page-skeleton-form,
    .page-skeleton-summary,
    .page-skeleton-table,
    .page-skeleton-form-card,
    .page-skeleton-calculator-copy,
    .page-skeleton-calculator-tool,
    .page-skeleton-policy-panel {
        min-height: 330px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .page-skeleton-shimmer:after {
        animation: none;
    }
}

.gold-calculator-page {
    position: relative;
    overflow: hidden;
    padding: 74px 0 92px;
    min-height: calc(100vh - 100px);
    min-height: calc(100svh - 100px);
    background:
        linear-gradient(115deg, #120e0a 0%, #25180f 45%, #080705 100%);
    color: #fff;
    isolation: isolate;
}

.gold-calculator-ambient {
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        linear-gradient(90deg, transparent 0%, rgba(248, 217, 109, .08) 42%, transparent 70%),
        repeating-linear-gradient(-35deg, rgba(255, 255, 255, .035) 0 1px, transparent 1px 19px);
}

.gold-calculator-ambient:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 28%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .14), transparent);
    transform: skewX(-18deg);
    animation: goldCalcSweep 5.6s ease-in-out infinite;
}

.gold-calculator-shell {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(330px, .58fr);
    gap: 24px;
    align-items: stretch;
}

.gold-calculator-copy {
    position: relative;
    display: flex;
    min-height: 520px;
    flex-direction: column;
    justify-content: flex-end;
    padding: 46px;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid rgba(248, 217, 109, .18);
    background:
        linear-gradient(160deg, rgba(255, 255, 255, .06) 0%, rgba(255, 255, 255, .02) 42%, rgba(248, 217, 109, .08) 100%);
    box-shadow: 0 30px 74px rgba(0, 0, 0, .26);
    animation: goldCalcRise .62s ease both;
}

.gold-calculator-copy:before {
    content: "";
    position: absolute;
    inset: 22px;
    border: 1px solid rgba(248, 217, 109, .14);
    border-radius: 8px;
    pointer-events: none;
}

.gold-calculator-copy:after {
    content: "Au";
    position: absolute;
    top: 36px;
    left: 42px;
    color: rgba(248, 217, 109, .12);
    font-size: 142px;
    font-weight: 950;
    line-height: 1;
}

.gold-calculator-kicker {
    position: relative;
    z-index: 1;
    width: max-content;
    max-width: 100%;
    margin-bottom: 16px;
    padding: 8px 13px;
    border-radius: 999px;
    border: 1px solid rgba(248, 217, 109, .34);
    color: #f8d96d;
    background: rgba(255, 255, 255, .07);
    font-size: 12px;
    font-weight: 900;
}

.gold-calculator-copy h1 {
    position: relative;
    z-index: 1;
    max-width: 620px;
    margin: 0;
    color: #fff;
    font-size: 58px;
    font-weight: 950;
    line-height: 1.14;
}

.gold-calculator-copy p {
    position: relative;
    z-index: 1;
    max-width: 500px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, .72);
    font-size: 16px;
    line-height: 1.9;
}

.gold-calculator-signal {
    position: relative;
    z-index: 1;
    display: inline-flex;
    width: max-content;
    max-width: 100%;
    align-items: center;
    gap: 9px;
    margin-top: 28px;
    color: #fff;
    font-size: 13px;
    font-weight: 900;
}

.gold-calculator-signal span {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: #22c55e;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, .44);
    animation: goldCalcLive 1.7s ease-in-out infinite;
}

.gold-calculator-form {
    position: relative;
    overflow: hidden;
    align-self: center;
    min-height: 470px;
    padding: 28px;
    border-radius: 8px;
    color: #23180f;
    background: rgba(255, 250, 242, .96);
    border: 1px solid rgba(248, 217, 109, .28);
    box-shadow: 0 28px 70px rgba(0, 0, 0, .22);
    animation: goldCalcRise .62s ease .12s both;
}

.gold-calculator-form:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 5px;
    background: linear-gradient(90deg, #9d6a14 0%, #f8d96d 48%, #9d6a14 100%);
}

.gold-calculator-fields {
    display: grid;
    gap: 18px;
}

.gold-calculator-field {
    display: grid;
    gap: 9px;
}

.gold-calculator-field label {
    margin: 0;
    color: #5a4330;
    font-size: 13px;
    font-weight: 900;
}

.gold-calculator-form .ui-selectonemenu,
.gold-calculator-form .ui-inputnumber,
.gold-calculator-form .gold-calculator-weight-input {
    width: 100% !important;
}

.gold-calculator-form .ui-selectonemenu {
    min-height: 50px;
    border: 1px solid rgba(90, 67, 48, .14) !important;
    border-radius: 8px !important;
    background: #fff !important;
    box-shadow: none !important;
}

.gold-calculator-form .ui-selectonemenu-label,
.gold-calculator-form .ui-inputnumber input,
.gold-calculator-form .gold-calculator-weight-input input {
    min-height: 50px;
    padding: 0 14px !important;
    color: #23180f !important;
    font-size: 15px !important;
    font-weight: 800 !important;
    line-height: 50px !important;
    background: #fff !important;
    border: 1px solid rgba(90, 67, 48, .14) !important;
    border-radius: 8px !important;
    box-shadow: none !important;
}

.gold-calculator-form .ui-selectonemenu-label {
    border: 0 !important;
}

.gold-calculator-form .ui-selectonemenu-trigger {
    width: 42px !important;
    border: 0 !important;
    background: transparent !important;
}

.gold-calculator-form .ui-inputnumber input:focus,
.gold-calculator-form .gold-calculator-weight-input input:focus,
.gold-calculator-form .ui-selectonemenu.ui-state-focus {
    border-color: rgba(157, 106, 20, .46) !important;
    box-shadow: 0 0 0 3px rgba(248, 217, 109, .18) !important;
}

.gold-calculator-result {
    position: relative;
    display: grid;
    gap: 6px;
    margin-top: 22px;
    padding: 24px;
    overflow: hidden;
    border-radius: 8px;
    color: #fff;
    background: linear-gradient(140deg, #17100b 0%, #3d2817 100%);
}

.gold-calculator-result:before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(100deg, transparent 0%, rgba(248, 217, 109, .13) 42%, transparent 70%);
    pointer-events: none;
}

.gold-calculator-result-label,
.gold-calculator-result small,
.gold-calculator-result strong {
    position: relative;
    z-index: 1;
}

.gold-calculator-result-label {
    color: rgba(255, 255, 255, .68);
    font-size: 13px;
    font-weight: 900;
}

.gold-calculator-result strong {
    color: #f8d96d;
    font-size: 42px;
    font-weight: 950;
    line-height: 1.2;
    word-break: break-word;
}

.gold-calculator-result small {
    color: rgba(255, 255, 255, .72);
    font-size: 13px;
}

.gold-calculator-meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 12px;
}

.gold-calculator-meta div {
    display: grid;
    gap: 5px;
    min-height: 76px;
    align-content: center;
    padding: 12px;
    border-radius: 8px;
    background: #fff;
    border: 1px solid rgba(90, 67, 48, .11);
}

.gold-calculator-meta span {
    color: #8a7864;
    font-size: 12px;
    font-weight: 900;
}

.gold-calculator-meta strong {
    color: #23180f;
    font-size: 14px;
    font-weight: 950;
    line-height: 1.45;
}

.gold-calculator-empty {
    min-height: 414px;
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 10px;
    text-align: center;
}

.gold-calculator-empty i {
    width: 70px;
    height: 70px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #23180f;
    background: #f8d96d;
    font-size: 32px;
}

.gold-calculator-empty h2 {
    margin: 8px 0 0;
    color: #23180f;
    font-size: 24px;
    font-weight: 950;
}

.gold-calculator-empty p {
    max-width: 360px;
    margin: 0;
    color: #6f6254;
    font-size: 14px;
    line-height: 1.8;
}

@keyframes goldCalcRise {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes goldCalcSweep {
    0% {
        right: -40%;
        opacity: 0;
    }
    18%, 64% {
        opacity: 1;
    }
    100% {
        right: 112%;
        opacity: 0;
    }
}

@keyframes goldCalcLive {
    72% {
        box-shadow: 0 0 0 10px rgba(34, 197, 94, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

@media (max-width: 991px) {
    .gold-calculator-page {
        padding: 42px 0 64px;
        min-height: 0;
    }

    .gold-calculator-shell {
        grid-template-columns: 1fr;
    }

    .gold-calculator-copy {
        min-height: 360px;
    }

    .gold-calculator-copy h1 {
        font-size: 42px;
    }

    .gold-calculator-form {
        min-height: 0;
    }
}

@media (max-width: 575px) {
    .gold-calculator-page {
        padding: 24px 0 48px;
    }

    .gold-calculator-copy,
    .gold-calculator-form {
        padding: 22px;
    }

    .gold-calculator-copy {
        min-height: 330px;
    }

    .gold-calculator-copy:before {
        inset: 12px;
    }

    .gold-calculator-copy:after {
        top: 22px;
        left: 20px;
        font-size: 94px;
    }

    .gold-calculator-copy h1 {
        font-size: 34px;
    }

    .gold-calculator-copy p {
        font-size: 14px;
    }

    .gold-calculator-result {
        padding: 20px;
    }

    .gold-calculator-result strong {
        font-size: 32px;
    }

    .gold-calculator-meta {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    .gold-calculator-ambient:after,
    .gold-calculator-copy,
    .gold-calculator-form,
    .gold-calculator-signal span {
        animation: none;
    }
}

.gold-calculator-page {
    padding: clamp(32px, 5vw, 72px) 0 clamp(52px, 6vw, 88px);
    background:
        linear-gradient(180deg, rgba(255, 250, 241, .05) 0%, rgba(255, 250, 241, 0) 22%),
        linear-gradient(120deg, #100c08 0%, #24170f 46%, #090806 100%);
}

.gold-calculator-ambient {
    background:
        linear-gradient(90deg, rgba(248, 217, 109, .08) 0 1px, transparent 1px 100%),
        linear-gradient(0deg, rgba(255, 255, 255, .035) 0 1px, transparent 1px 100%),
        linear-gradient(115deg, transparent 0%, rgba(248, 217, 109, .07) 48%, transparent 78%);
    background-size: 72px 72px, 72px 72px, auto;
}

.gold-calculator-shell {
    grid-template-columns: minmax(0, .88fr) minmax(360px, .56fr);
    gap: 18px;
}

.gold-calculator-copy {
    min-height: 500px;
    padding: 42px;
    border-color: rgba(248, 217, 109, .2);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .02) 42%, rgba(248, 217, 109, .08)),
        linear-gradient(120deg, rgba(31, 22, 15, .94), rgba(18, 13, 9, .98));
    box-shadow: 0 32px 90px rgba(0, 0, 0, .3);
}

.gold-calculator-copy:before {
    inset: 18px;
    border-color: rgba(248, 217, 109, .12);
}

.gold-calculator-copy:after {
    content: "";
    top: 34px;
    left: 34px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 1px solid rgba(248, 217, 109, .22);
    background:
        conic-gradient(from 120deg, transparent 0deg, rgba(248, 217, 109, .36) 80deg, transparent 160deg, rgba(255, 255, 255, .12) 230deg, transparent 320deg);
    font-size: 0;
    animation: goldCalcSlowSpin 15s linear infinite;
}

.gold-calculator-kicker {
    backdrop-filter: blur(10px);
}

.gold-calculator-copy h1 {
    max-width: 560px;
    font-size: clamp(42px, 4.4vw, 64px);
}

.gold-calculator-copy p {
    max-width: 460px;
}

.gold-calculator-visual {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.gold-calculator-path {
    position: absolute;
    right: -12%;
    left: 34%;
    height: 1px;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, rgba(248, 217, 109, .78), rgba(255, 255, 255, .55), transparent);
    transform-origin: right center;
    animation: goldCalcPathFlow 4.8s ease-in-out infinite;
}

.gold-calculator-path.path-a {
    top: 26%;
    transform: rotate(-13deg);
}

.gold-calculator-path.path-b {
    top: 43%;
    left: 24%;
    animation-delay: .42s;
    transform: rotate(-7deg);
}

.gold-calculator-path.path-c {
    top: 63%;
    left: 45%;
    animation-delay: .86s;
    transform: rotate(-18deg);
}

.gold-calculator-medal {
    position: absolute;
    left: 58px;
    top: 76px;
    width: 82px;
    height: 82px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #1d130b;
    background: linear-gradient(135deg, #fff2a7 0%, #f1c84e 48%, #ad7415 100%);
    box-shadow: 0 24px 54px rgba(0, 0, 0, .32), inset 0 1px 0 rgba(255, 255, 255, .62);
    animation: goldCalcMedalFloat 3.8s ease-in-out infinite;
}

.gold-calculator-medal i {
    font-size: 36px;
}

.gold-calculator-form {
    align-self: stretch;
    min-height: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    border-color: rgba(248, 217, 109, .34);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(255, 250, 242, .96));
    box-shadow: 0 30px 80px rgba(0, 0, 0, .22);
}

.gold-calculator-form-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 24px 24px 0;
}

.gold-calculator-form-head span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 11px;
    border-radius: 999px;
    color: #9d6a14;
    background: rgba(248, 217, 109, .16);
    font-size: 12px;
    font-weight: 950;
}

.gold-calculator-form-head strong {
    color: #23180f;
    font-size: 15px;
    font-weight: 950;
    text-align: left;
}

.gold-calculator-fields {
    padding: 22px 24px 0;
}

.gold-calculator-field label {
    color: #493421;
    font-size: 13px;
}

.gold-calculator-form .ui-selectonemenu,
.gold-calculator-form .ui-selectonemenu-label,
.gold-calculator-form .ui-inputnumber input,
.gold-calculator-form .gold-calculator-weight-input input {
    min-height: 56px;
}

.gold-calculator-form .ui-selectonemenu-label,
.gold-calculator-form .ui-inputnumber input,
.gold-calculator-form .gold-calculator-weight-input input {
    line-height: 56px !important;
    font-size: 16px !important;
    border-color: rgba(73, 52, 33, .12) !important;
}

.gold-calculator-weight-control {
    position: relative;
}

.gold-calculator-weight-control > span {
    position: absolute;
    left: 13px;
    top: 50%;
    z-index: 2;
    min-width: 48px;
    min-height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #8b641e;
    background: rgba(248, 217, 109, .18);
    font-size: 12px;
    font-weight: 950;
    transform: translateY(-50%);
    pointer-events: none;
}

.gold-calculator-weight-control .ui-inputnumber input,
.gold-calculator-weight-control .gold-calculator-weight-input input {
    padding-left: 72px !important;
}

.gold-calculator-result {
    margin: 22px 18px 0;
    padding: 24px 24px 24px 84px;
    min-height: 164px;
    align-content: center;
    background:
        linear-gradient(135deg, rgba(20, 13, 8, .98) 0%, rgba(62, 40, 22, .98) 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .12), 0 22px 46px rgba(57, 34, 14, .22);
}

.gold-calculator-result:before {
    background:
        linear-gradient(102deg, transparent 0%, rgba(248, 217, 109, .16) 42%, transparent 72%),
        repeating-linear-gradient(-35deg, rgba(255, 255, 255, .035) 0 1px, transparent 1px 16px);
    animation: goldCalcResultSweep 4.4s ease-in-out infinite;
}

.gold-calculator-result-mark {
    position: absolute;
    left: 22px;
    top: 24px;
    z-index: 1;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #1b1209;
    background: #f8d96d;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .22);
}

.gold-calculator-result-mark i {
    font-size: 25px;
}

.gold-calculator-result strong {
    font-size: clamp(34px, 4vw, 48px);
}

.gold-calculator-meta {
    padding: 0 18px 20px;
}

.gold-calculator-meta div {
    background: rgba(255, 255, 255, .78);
    border-color: rgba(73, 52, 33, .1);
    transition: transform .22s ease, border-color .22s ease, background-color .22s ease;
}

.gold-calculator-meta div:hover {
    transform: translateY(-3px);
    border-color: rgba(248, 217, 109, .38);
    background: #fff;
}

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

@keyframes goldCalcPathFlow {
    0%, 100% {
        opacity: .18;
        clip-path: inset(0 100% 0 0);
    }
    45%, 70% {
        opacity: .95;
        clip-path: inset(0 0 0 0);
    }
}

@keyframes goldCalcMedalFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes goldCalcResultSweep {
    0% {
        opacity: .4;
        transform: translateX(34%);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: .4;
        transform: translateX(-34%);
    }
}

@media (max-width: 991px) {
    .gold-calculator-shell {
        grid-template-columns: 1fr;
    }

    .gold-calculator-copy {
        min-height: 280px;
    }
}

@media (max-width: 575px) {
    .gold-calculator-page {
        padding: 14px 0 40px;
    }

    .gold-calculator-shell {
        gap: 12px;
    }

    .gold-calculator-copy {
        min-height: 190px;
        padding: 20px;
        justify-content: center;
    }

    .gold-calculator-copy:before {
        inset: 10px;
    }

    .gold-calculator-copy:after {
        width: 94px;
        height: 94px;
        top: 18px;
        left: 16px;
        opacity: .62;
    }

    .gold-calculator-kicker {
        margin-bottom: 10px;
        padding: 6px 10px;
        font-size: 11px;
    }

    .gold-calculator-copy h1 {
        font-size: 30px;
        line-height: 1.22;
    }

    .gold-calculator-copy p {
        max-width: 260px;
        margin-top: 8px;
        font-size: 13px;
        line-height: 1.7;
    }

    .gold-calculator-signal {
        margin-top: 12px;
        font-size: 12px;
    }

    .gold-calculator-medal {
        left: 38px;
        top: 44px;
        width: 46px;
        height: 46px;
        opacity: .48;
    }

    .gold-calculator-medal i {
        font-size: 22px;
    }

    .gold-calculator-path {
        left: 18%;
        opacity: .72;
    }

    .gold-calculator-form {
        border-radius: 8px;
        box-shadow: 0 20px 46px rgba(0, 0, 0, .18);
    }

    .gold-calculator-form-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
        padding: 18px 16px 0;
    }

    .gold-calculator-form-head strong {
        width: 100%;
        text-align: right;
        font-size: 14px;
    }

    .gold-calculator-fields {
        gap: 14px;
        padding: 16px 16px 0;
    }

    .gold-calculator-form .ui-selectonemenu,
    .gold-calculator-form .ui-selectonemenu-label,
    .gold-calculator-form .ui-inputnumber input,
    .gold-calculator-form .gold-calculator-weight-input input {
        min-height: 54px;
    }

    .gold-calculator-form .ui-selectonemenu-label,
    .gold-calculator-form .ui-inputnumber input,
    .gold-calculator-form .gold-calculator-weight-input input {
        line-height: 54px !important;
        font-size: 15px !important;
    }

    .gold-calculator-result {
        min-height: 142px;
        margin: 18px 12px 0;
        padding: 20px 18px 20px 66px;
    }

    .gold-calculator-result-mark {
        left: 16px;
        top: 20px;
        width: 38px;
        height: 38px;
    }

    .gold-calculator-result strong {
        font-size: clamp(28px, 8.2vw, 36px);
    }

    .gold-calculator-meta {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 7px;
        padding: 0 12px 14px;
    }

    .gold-calculator-meta div {
        min-height: 70px;
        padding: 10px 8px;
    }

    .gold-calculator-meta span {
        font-size: 10px;
    }

    .gold-calculator-meta strong {
        font-size: 12px;
    }
}

@media (max-width: 380px) {
    .gold-calculator-copy h1 {
        font-size: 27px;
    }

    .gold-calculator-result {
        padding-left: 18px;
    }

    .gold-calculator-result-mark {
        display: none;
    }

    .gold-calculator-meta {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    .gold-calculator-copy:after,
    .gold-calculator-path,
    .gold-calculator-medal,
    .gold-calculator-result:before {
        animation: none;
    }
}

.gold-weigh-page {
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - 100px);
    min-height: calc(100svh - 100px);
    padding: 34px 0 68px;
    background:
        linear-gradient(115deg, #fbf7ef 0%, #f4eadb 34%, #17110b 34%, #090806 100%);
    color: #1f160e;
    isolation: isolate;
}

.gold-weigh-ambient {
    position: absolute;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.gold-weigh-ambient:before {
    content: "";
    position: absolute;
    top: -18%;
    right: -8%;
    width: 62%;
    height: 140%;
    background:
        linear-gradient(110deg, transparent 0%, rgba(246, 198, 77, .18) 46%, transparent 72%),
        repeating-linear-gradient(-36deg, rgba(255, 255, 255, .08) 0 1px, transparent 1px 22px);
    transform: skewX(-13deg);
    animation: goldWeighLight 6.4s ease-in-out infinite;
}

.gold-weigh-ambient:after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 42%;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .16));
}

.gold-weigh-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, .62fr);
    gap: 26px;
    align-items: stretch;
    min-height: 620px;
}

.gold-weigh-scene {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 620px;
    padding: clamp(28px, 4vw, 54px);
    border-radius: 8px;
    color: #fff;
    background: #15100c;
    box-shadow: 0 34px 88px rgba(20, 12, 6, .22);
    isolation: isolate;
    animation: goldWeighSceneIn .72s ease both;
}

.gold-weigh-photo {
    position: absolute;
    inset: 0;
    z-index: -3;
}

.gold-weigh-photo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    filter: saturate(1.08) contrast(1.05) brightness(.72);
    transform: scale(1.08);
    animation: goldWeighPhotoDrift 10s ease-in-out infinite alternate;
}

.gold-weigh-scene:before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(90deg, rgba(12, 8, 5, .88) 0%, rgba(12, 8, 5, .62) 44%, rgba(12, 8, 5, .2) 100%),
        linear-gradient(180deg, rgba(12, 8, 5, .12) 0%, rgba(12, 8, 5, .78) 100%);
}

.gold-weigh-scene:after {
    content: "";
    position: absolute;
    inset: 18px;
    z-index: -1;
    border: 1px solid rgba(247, 205, 86, .2);
    border-radius: 8px;
    pointer-events: none;
}

.gold-weigh-kicker {
    position: relative;
    width: max-content;
    max-width: 100%;
    min-height: 32px;
    display: inline-flex;
    align-items: center;
    padding: 0 13px;
    margin-bottom: 16px;
    border-radius: 999px;
    color: #f7d979;
    background: rgba(255, 255, 255, .09);
    border: 1px solid rgba(247, 217, 121, .26);
    font-size: 12px;
    font-weight: 950;
    backdrop-filter: blur(10px);
}

.gold-weigh-scene h1 {
    position: relative;
    max-width: 560px;
    margin: 0;
    color: #fff;
    font-size: clamp(42px, 5.1vw, 72px);
    font-weight: 950;
    line-height: 1.08;
}

.gold-weigh-scene p {
    position: relative;
    max-width: 430px;
    margin: 16px 0 0;
    color: rgba(255, 255, 255, .78);
    font-size: 15px;
    line-height: 1.9;
}

.gold-weigh-live {
    position: relative;
    display: inline-flex;
    width: max-content;
    max-width: 100%;
    align-items: center;
    gap: 9px;
    margin-top: 28px;
    color: #fff;
    font-size: 13px;
    font-weight: 950;
}

.gold-weigh-live span {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: #30d17a;
    box-shadow: 0 0 0 0 rgba(48, 209, 122, .44);
    animation: goldWeighLive 1.55s ease-in-out infinite;
}

.gold-weigh-scale {
    position: absolute;
    top: 58px;
    left: 54px;
    width: 260px;
    height: 178px;
    opacity: .96;
    transform-origin: 50% 18px;
    animation: goldWeighScaleFloat 4.6s ease-in-out infinite;
}

.gold-weigh-scale-line {
    position: absolute;
    top: 24px;
    left: 26px;
    right: 26px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, #f7d979 20%, #fff0a8 50%, #c28a24 80%, transparent);
    box-shadow: 0 0 26px rgba(247, 217, 121, .35);
}

.gold-weigh-scale-center {
    position: absolute;
    top: 12px;
    left: 50%;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fff1ad, #c98b1c);
    transform: translateX(-50%);
    box-shadow: 0 10px 28px rgba(0, 0, 0, .28);
}

.gold-weigh-scale-center:after {
    content: "";
    position: absolute;
    top: 24px;
    left: 50%;
    width: 2px;
    height: 78px;
    background: linear-gradient(#f7d979, rgba(247, 217, 121, .12));
    transform: translateX(-50%);
}

.gold-weigh-scale-chain {
    position: absolute;
    top: 27px;
    width: 2px;
    height: 80px;
    background: linear-gradient(rgba(247, 217, 121, .8), rgba(247, 217, 121, .08));
}

.gold-weigh-scale-chain.chain-a {
    right: 52px;
    transform: rotate(10deg);
}

.gold-weigh-scale-chain.chain-b {
    left: 52px;
    transform: rotate(-10deg);
}

.gold-weigh-scale-pan {
    position: absolute;
    top: 96px;
    width: 92px;
    height: 34px;
    border-radius: 0 0 999px 999px;
    background: linear-gradient(180deg, rgba(255, 239, 169, .95), rgba(177, 119, 20, .92));
    box-shadow: 0 18px 34px rgba(0, 0, 0, .3);
}

.gold-weigh-scale-pan:before {
    content: "";
    position: absolute;
    top: -5px;
    right: 8px;
    left: 8px;
    height: 10px;
    border-radius: 50%;
    border-top: 2px solid rgba(255, 255, 255, .42);
}

.gold-weigh-scale-pan.pan-a {
    right: 12px;
    animation: goldWeighPanA 4.6s ease-in-out infinite;
}

.gold-weigh-scale-pan.pan-b {
    left: 12px;
    animation: goldWeighPanB 4.6s ease-in-out infinite;
}

.gold-weigh-panel {
    position: relative;
    align-self: center;
    overflow: hidden;
    padding: 24px;
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(255, 250, 239, .92));
    border: 1px solid rgba(156, 104, 24, .18);
    box-shadow: 0 32px 80px rgba(28, 18, 10, .2);
    animation: goldWeighPanelIn .72s ease .08s both;
}

.gold-weigh-panel:before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(110deg, transparent 0%, rgba(247, 205, 86, .17) 42%, transparent 72%);
    transform: translateX(38%);
    animation: goldWeighPanelSweep 5.2s ease-in-out infinite;
    pointer-events: none;
}

.gold-weigh-panel-head,
.gold-weigh-fields,
.gold-weigh-result,
.gold-weigh-meta,
.gold-weigh-empty {
    position: relative;
    z-index: 1;
}

.gold-weigh-panel-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.gold-weigh-panel-head > span {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    flex: 0 0 54px;
    border-radius: 50%;
    color: #21150b;
    background: linear-gradient(135deg, #fff1a7, #efbf3d 54%, #b97a17);
    box-shadow: 0 16px 34px rgba(156, 104, 24, .22);
}

.gold-weigh-panel-head i {
    font-size: 28px;
}

.gold-weigh-panel-head div {
    display: grid;
    gap: 2px;
}

.gold-weigh-panel-head strong {
    color: #21150b;
    font-size: 20px;
    font-weight: 950;
    line-height: 1.35;
}

.gold-weigh-panel-head small {
    color: #8b7662;
    font-size: 13px;
    font-weight: 800;
}

.gold-weigh-fields {
    display: grid;
    gap: 14px;
}

.gold-weigh-field {
    display: grid;
    gap: 8px;
}

.gold-weigh-field label {
    margin: 0;
    color: #4f3825;
    font-size: 13px;
    font-weight: 950;
}

.gold-weigh-panel .ui-selectonemenu,
.gold-weigh-panel .ui-inputnumber,
.gold-weigh-panel .gold-weigh-weight-input {
    width: 100% !important;
}

.gold-weigh-panel .ui-selectonemenu {
    min-height: 58px;
    border: 1px solid rgba(79, 56, 37, .13) !important;
    border-radius: 8px !important;
    background: #fff !important;
    box-shadow: 0 12px 26px rgba(52, 35, 19, .05) !important;
}

.gold-weigh-panel .ui-selectonemenu-label,
.gold-weigh-panel .ui-inputnumber input,
.gold-weigh-panel .gold-weigh-weight-input input {
    min-height: 58px;
    padding: 0 15px !important;
    color: #21150b !important;
    font-size: 16px !important;
    font-weight: 850 !important;
    line-height: 58px !important;
    background: #fff !important;
    border: 1px solid rgba(79, 56, 37, .13) !important;
    border-radius: 8px !important;
    box-shadow: 0 12px 26px rgba(52, 35, 19, .05) !important;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.gold-weigh-panel .ui-selectonemenu-label {
    border: 0 !important;
    box-shadow: none !important;
}

.gold-weigh-panel .ui-selectonemenu-trigger {
    width: 44px !important;
    border: 0 !important;
    background: transparent !important;
}

.gold-weigh-panel .ui-inputnumber input:focus,
.gold-weigh-panel .gold-weigh-weight-input input:focus,
.gold-weigh-panel .ui-selectonemenu.ui-state-focus {
    border-color: rgba(185, 122, 23, .48) !important;
    box-shadow: 0 0 0 4px rgba(247, 205, 86, .18) !important;
    transform: translateY(-1px);
}

.gold-weigh-weight-control {
    position: relative;
}

.gold-weigh-weight-control > span {
    position: absolute;
    top: 50%;
    left: 13px;
    z-index: 2;
    min-width: 52px;
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #8b5d13;
    background: rgba(247, 205, 86, .18);
    font-size: 12px;
    font-weight: 950;
    transform: translateY(-50%);
    pointer-events: none;
}

.gold-weigh-weight-control .ui-inputnumber input,
.gold-weigh-weight-control .gold-weigh-weight-input input {
    padding-left: 78px !important;
}

.gold-weigh-result {
    display: grid;
    gap: 6px;
    margin-top: 18px;
    padding: 24px;
    min-height: 154px;
    align-content: center;
    overflow: hidden;
    border-radius: 8px;
    color: #fff;
    background:
        linear-gradient(135deg, #24170c 0%, #4a2e13 52%, #15100a 100%);
    box-shadow: 0 24px 50px rgba(50, 31, 13, .2);
}

.gold-weigh-result:before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(100deg, transparent 0%, rgba(255, 231, 143, .18) 42%, transparent 70%),
        repeating-linear-gradient(-38deg, rgba(255, 255, 255, .04) 0 1px, transparent 1px 18px);
    animation: goldWeighResultGlow 4.8s ease-in-out infinite;
}

.gold-weigh-result-label,
.gold-weigh-result strong,
.gold-weigh-result small {
    position: relative;
    z-index: 1;
}

.gold-weigh-result-label {
    color: rgba(255, 255, 255, .7);
    font-size: 13px;
    font-weight: 950;
}

.gold-weigh-result strong {
    color: #ffdf76;
    font-size: clamp(34px, 4vw, 50px);
    font-weight: 950;
    line-height: 1.15;
    word-break: break-word;
}

.gold-weigh-result small {
    color: rgba(255, 255, 255, .78);
    font-size: 13px;
    font-weight: 750;
}

.gold-weigh-meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 10px;
}

.gold-weigh-meta div {
    display: grid;
    gap: 4px;
    min-height: 74px;
    align-content: center;
    padding: 11px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .7);
    border: 1px solid rgba(79, 56, 37, .1);
    transition: transform .2s ease, background-color .2s ease, border-color .2s ease;
}

.gold-weigh-meta div:hover {
    transform: translateY(-3px);
    background: #fff;
    border-color: rgba(185, 122, 23, .24);
}

.gold-weigh-meta span {
    color: #8b7662;
    font-size: 11px;
    font-weight: 950;
}

.gold-weigh-meta strong {
    color: #21150b;
    font-size: 13px;
    font-weight: 950;
    line-height: 1.45;
}

.gold-weigh-empty {
    min-height: 430px;
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 10px;
    text-align: center;
}

.gold-weigh-empty i {
    width: 72px;
    height: 72px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #21150b;
    background: linear-gradient(135deg, #fff1a7, #efbf3d 54%, #b97a17);
    font-size: 34px;
}

.gold-weigh-empty h2 {
    margin: 8px 0 0;
    color: #21150b;
    font-size: 24px;
    font-weight: 950;
}

.gold-weigh-empty p {
    max-width: 360px;
    margin: 0;
    color: #746453;
    font-size: 14px;
    line-height: 1.8;
}

@keyframes goldWeighSceneIn {
    from {
        opacity: 0;
        transform: translateX(22px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes goldWeighPanelIn {
    from {
        opacity: 0;
        transform: translateX(-22px) translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateX(0) translateY(0);
    }
}

@keyframes goldWeighPhotoDrift {
    to {
        transform: scale(1.14) translateX(-12px);
    }
}

@keyframes goldWeighScaleFloat {
    0%, 100% {
        transform: translateY(0) rotate(-1deg);
    }
    50% {
        transform: translateY(-9px) rotate(1deg);
    }
}

@keyframes goldWeighPanA {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(8px);
    }
}

@keyframes goldWeighPanB {
    0%, 100% {
        transform: translateY(7px);
    }
    50% {
        transform: translateY(0);
    }
}

@keyframes goldWeighLive {
    72% {
        box-shadow: 0 0 0 11px rgba(48, 209, 122, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(48, 209, 122, 0);
    }
}

@keyframes goldWeighLight {
    0%, 100% {
        opacity: .45;
        transform: translateX(9%) skewX(-13deg);
    }
    50% {
        opacity: .9;
        transform: translateX(-9%) skewX(-13deg);
    }
}

@keyframes goldWeighPanelSweep {
    0%, 100% {
        opacity: .15;
        transform: translateX(44%);
    }
    50% {
        opacity: .72;
        transform: translateX(-44%);
    }
}

@keyframes goldWeighResultGlow {
    0%, 100% {
        opacity: .55;
        transform: translateX(28%);
    }
    50% {
        opacity: 1;
        transform: translateX(-28%);
    }
}

@media (max-width: 991px) {
    .gold-weigh-page {
        min-height: 0;
        padding: 24px 0 54px;
        background:
            linear-gradient(180deg, #fbf7ef 0%, #f4eadb 32%, #17110b 32%, #090806 100%);
    }

    .gold-weigh-shell {
        grid-template-columns: 1fr;
        min-height: 0;
        gap: 14px;
    }

    .gold-weigh-scene {
        min-height: 360px;
    }

    .gold-weigh-panel {
        align-self: stretch;
    }
}

@media (max-width: 575px) {
    .gold-weigh-page {
        padding: 10px 0 38px;
        background:
            linear-gradient(180deg, #fbf7ef 0%, #f7efe3 28%, #15100b 28%, #090806 100%);
    }

    .gold-weigh-shell {
        gap: 10px;
    }

    .gold-weigh-scene {
        min-height: 218px;
        padding: 20px;
        justify-content: flex-end;
    }

    .gold-weigh-scene:after {
        inset: 10px;
    }

    .gold-weigh-photo img {
        object-position: 58% 45%;
        filter: saturate(1.02) contrast(1.02) brightness(.62);
    }

    .gold-weigh-kicker {
        min-height: 27px;
        margin-bottom: 9px;
        padding: 0 10px;
        font-size: 11px;
    }

    .gold-weigh-scene h1 {
        max-width: 250px;
        font-size: 30px;
        line-height: 1.18;
    }

    .gold-weigh-scene p {
        max-width: 250px;
        margin-top: 7px;
        font-size: 12px;
        line-height: 1.65;
    }

    .gold-weigh-live {
        margin-top: 10px;
        font-size: 11px;
    }

    .gold-weigh-scale {
        top: 18px;
        left: 12px;
        width: 128px;
        height: 96px;
        opacity: .62;
    }

    .gold-weigh-scale-line {
        top: 18px;
        left: 14px;
        right: 14px;
    }

    .gold-weigh-scale-center {
        top: 9px;
        width: 20px;
        height: 20px;
    }

    .gold-weigh-scale-center:after {
        top: 18px;
        height: 42px;
    }

    .gold-weigh-scale-chain {
        top: 21px;
        height: 43px;
    }

    .gold-weigh-scale-chain.chain-a {
        right: 28px;
    }

    .gold-weigh-scale-chain.chain-b {
        left: 28px;
    }

    .gold-weigh-scale-pan {
        top: 62px;
        width: 48px;
        height: 20px;
    }

    .gold-weigh-scale-pan.pan-a {
        right: 0;
    }

    .gold-weigh-scale-pan.pan-b {
        left: 0;
    }

    .gold-weigh-panel {
        padding: 16px;
        box-shadow: 0 22px 52px rgba(28, 18, 10, .18);
    }

    .gold-weigh-panel-head {
        margin-bottom: 14px;
    }

    .gold-weigh-panel-head > span {
        width: 46px;
        height: 46px;
        flex-basis: 46px;
    }

    .gold-weigh-panel-head strong {
        font-size: 17px;
    }

    .gold-weigh-panel-head small {
        font-size: 12px;
    }

    .gold-weigh-fields {
        gap: 12px;
    }

    .gold-weigh-panel .ui-selectonemenu,
    .gold-weigh-panel .ui-selectonemenu-label,
    .gold-weigh-panel .ui-inputnumber input,
    .gold-weigh-panel .gold-weigh-weight-input input {
        min-height: 54px;
    }

    .gold-weigh-panel .ui-selectonemenu-label,
    .gold-weigh-panel .ui-inputnumber input,
    .gold-weigh-panel .gold-weigh-weight-input input {
        line-height: 54px !important;
        font-size: 15px !important;
    }

    .gold-weigh-result {
        min-height: 136px;
        margin-top: 14px;
        padding: 20px;
    }

    .gold-weigh-result strong {
        font-size: clamp(30px, 8vw, 40px);
    }

    .gold-weigh-meta {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 7px;
    }

    .gold-weigh-meta div {
        min-height: 66px;
        padding: 9px 7px;
    }

    .gold-weigh-meta span {
        font-size: 10px;
    }

    .gold-weigh-meta strong {
        font-size: 11px;
    }
}

@media (max-width: 380px) {
    .gold-weigh-scene h1 {
        font-size: 27px;
    }

    .gold-weigh-panel {
        padding: 13px;
    }

    .gold-weigh-meta {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    .gold-weigh-ambient:before,
    .gold-weigh-scene,
    .gold-weigh-panel,
    .gold-weigh-photo img,
    .gold-weigh-scale,
    .gold-weigh-scale-pan,
    .gold-weigh-live span,
    .gold-weigh-panel:before,
    .gold-weigh-result:before {
        animation: none;
    }
}

.karat-lab-page {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    min-height: calc(100vh - 100px);
    min-height: calc(100svh - 100px);
    padding: 18px 0 64px;
    background:
        linear-gradient(90deg, rgba(21, 17, 13, 0.08) 1px, transparent 1px) 0 0 / 42px 42px,
        linear-gradient(0deg, rgba(21, 17, 13, 0.06) 1px, transparent 1px) 0 0 / 42px 42px,
        linear-gradient(135deg, #f7f0e4 0%, #f7f0e4 46%, #12100e 46%, #12100e 100%);
    color: #15110d;
}

.karat-lab-atmosphere {
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        linear-gradient(120deg, transparent 0 58%, rgba(228, 178, 46, 0.2) 58% 58.8%, transparent 58.8%),
        linear-gradient(120deg, transparent 0 69%, rgba(255, 255, 255, 0.18) 69% 69.5%, transparent 69.5%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.65), transparent 48%);
}

.karat-lab-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(440px, 0.78fr);
    grid-template-areas: "identity console";
    align-items: start;
    gap: 18px;
    min-height: 580px;
    direction: ltr;
}

.karat-lab-identity,
.karat-lab-console {
    border-radius: 8px;
}

.karat-lab-identity {
    grid-area: identity;
    direction: rtl;
    position: relative;
    overflow: hidden;
    min-height: 548px;
    margin-top: 32px;
    padding: 34px;
    border: 1px solid rgba(44, 34, 22, 0.1);
    background:
        linear-gradient(140deg, rgba(255, 255, 255, 0.9), rgba(239, 227, 209, 0.78)),
        linear-gradient(90deg, rgba(228, 178, 46, 0.2), transparent 42%);
    box-shadow: 0 28px 70px rgba(33, 24, 14, 0.14);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    animation: karatLabEnter 0.62s ease both;
}

.karat-lab-identity:before,
.karat-lab-identity:after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.karat-lab-identity:before {
    top: 0;
    right: 0;
    width: 9px;
    height: 100%;
    background: linear-gradient(180deg, #eab727, #8c5913);
}

.karat-lab-identity:after {
    left: -18%;
    bottom: -36%;
    width: 72%;
    height: 70%;
    transform: rotate(-18deg);
    border: 1px solid rgba(37, 28, 18, 0.08);
    background: linear-gradient(135deg, rgba(37, 28, 18, 0.04), transparent);
}

.karat-lab-brand {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    gap: 10px;
    min-height: 62px;
    padding: 8px 12px;
    border: 1px solid rgba(42, 31, 18, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.56);
    color: #20170f;
    font-size: 14px;
    font-weight: 950;
}

.karat-lab-brand img {
    width: 46px;
    height: 46px;
    object-fit: contain;
    filter: drop-shadow(0 8px 14px rgba(26, 18, 10, 0.16));
}

.karat-lab-identity h1 {
    position: relative;
    z-index: 1;
    max-width: 560px;
    margin: 34px 0 0;
    color: #15100b;
    font-size: clamp(38px, 4.6vw, 64px);
    font-weight: 1000;
    line-height: 1.12;
}

.karat-lab-identity p {
    position: relative;
    z-index: 1;
    max-width: 340px;
    margin: 12px 0 0;
    color: rgba(21, 16, 11, 0.7);
    font-size: 16px;
    font-weight: 800;
    line-height: 1.8;
}

.karat-lab-ingot-stage {
    position: relative;
    z-index: 1;
    height: 206px;
    margin-top: 24px;
}

.karat-lab-ingot {
    position: absolute;
    display: block;
    width: 210px;
    height: 78px;
    border-radius: 8px;
    transform: skewX(-18deg) rotate(-7deg);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.52), transparent 28%),
        linear-gradient(135deg, #ffe889 0%, #e0aa22 34%, #8d5410 100%);
    box-shadow:
        inset 0 -18px 22px rgba(88, 49, 7, 0.24),
        inset 14px 0 20px rgba(255, 255, 255, 0.18),
        0 24px 34px rgba(89, 55, 18, 0.22);
    animation: karatLabIngotFloat 5.6s ease-in-out infinite;
}

.karat-lab-ingot:before {
    content: "";
    position: absolute;
    inset: 10px 15px auto 15px;
    height: 15px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.28);
}

.karat-lab-ingot:after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.karat-lab-ingot.ingot-a {
    right: 20px;
    top: 42px;
}

.karat-lab-ingot.ingot-b {
    right: 175px;
    top: 94px;
    width: 188px;
    animation-delay: 0.6s;
}

.karat-lab-ingot.ingot-c {
    right: 88px;
    top: 140px;
    width: 238px;
    animation-delay: 1.1s;
}

.karat-lab-stamp {
    position: absolute;
    z-index: 2;
    right: 242px;
    top: 24px;
    width: 94px;
    height: 94px;
    border: 2px solid rgba(32, 23, 13, 0.24);
    border-radius: 50%;
    display: grid;
    place-items: center;
    transform: rotate(-12deg);
    color: rgba(32, 23, 13, 0.52);
    font-size: 28px;
    font-weight: 1000;
    letter-spacing: 0;
}

.karat-lab-shine {
    position: absolute;
    z-index: 3;
    display: block;
    width: 150px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.92), transparent);
    transform: rotate(-19deg);
    animation: karatLabShine 3.8s ease-in-out infinite;
}

.karat-lab-shine.shine-a {
    right: 52px;
    top: 78px;
}

.karat-lab-shine.shine-b {
    right: 150px;
    top: 162px;
    animation-delay: 1.4s;
}

.karat-lab-live {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    gap: 9px;
    min-height: 38px;
    padding: 0 12px;
    border-radius: 8px;
    border: 1px solid rgba(32, 23, 13, 0.12);
    background: rgba(255, 255, 255, 0.5);
    color: #25180d;
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
}

.karat-lab-live span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #19a765;
    box-shadow: 0 0 0 0 rgba(25, 167, 101, 0.34);
    animation: karatLabLive 1.5s ease-out infinite;
}

.karat-lab-console {
    grid-area: console;
    direction: rtl;
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 30px;
    border: 1px solid rgba(234, 183, 39, 0.24);
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px) 0 0 / 28px 28px,
        linear-gradient(0deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px) 0 0 / 28px 28px,
        linear-gradient(145deg, #171411 0%, #0d0c0b 100%);
    color: #fff;
    box-shadow: 0 42px 92px rgba(0, 0, 0, 0.36), 0 0 0 1px rgba(234, 183, 39, 0.06);
    animation: karatLabConsole 0.7s 0.08s ease both;
}

.karat-lab-console:before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(118deg, transparent 0 43%, rgba(234, 183, 39, 0.14) 43% 44%, transparent 44%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 48%);
}

.karat-lab-console-head,
.karat-lab-controls,
.karat-lab-result,
.karat-lab-specs,
.karat-lab-empty {
    position: relative;
    z-index: 1;
}

.karat-lab-console-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    min-height: 72px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.karat-lab-console-head div {
    display: grid;
    gap: 4px;
}

.karat-lab-console-head span {
    color: #eab727;
    font-size: 13px;
    font-weight: 950;
}

.karat-lab-console-head strong {
    color: #fff;
    font-size: 27px;
    font-weight: 1000;
    line-height: 1.3;
}

.karat-lab-console-head i {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffe77a, #d19a16);
    color: #17110d;
    font-size: 30px;
    box-shadow: 0 18px 34px rgba(234, 183, 39, 0.26);
}

.karat-lab-controls {
    display: grid;
    gap: 16px;
    margin-top: 22px;
}

.karat-lab-field {
    display: grid;
    gap: 8px;
}

.karat-lab-field label {
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    font-weight: 900;
}

.karat-lab-console .ui-selectonemenu,
.karat-lab-console .ui-inputnumber,
.karat-lab-console .karat-lab-weight-input {
    width: 100% !important;
}

.karat-lab-console .ui-selectonemenu {
    min-height: 62px;
    border: 1px solid rgba(255, 255, 255, 0.13) !important;
    border-radius: 8px !important;
    background: rgba(255, 255, 255, 0.075) !important;
    box-shadow: none !important;
}

.karat-lab-console .ui-selectonemenu-label,
.karat-lab-console .ui-inputnumber input,
.karat-lab-console .karat-lab-weight-input input {
    width: 100% !important;
    min-height: 62px;
    padding: 0 16px !important;
    border: 1px solid rgba(255, 255, 255, 0.13) !important;
    border-radius: 8px !important;
    background: rgba(255, 255, 255, 0.075) !important;
    color: #fff !important;
    font-size: 17px !important;
    font-weight: 900 !important;
    line-height: 62px !important;
    box-shadow: none !important;
}

.karat-lab-console .ui-selectonemenu-label {
    border: 0 !important;
    background: transparent !important;
    padding-left: 44px !important;
}

.karat-lab-console .ui-selectonemenu-trigger {
    width: 42px !important;
    border: 0 !important;
    border-radius: 8px 0 0 8px !important;
    background: rgba(234, 183, 39, 0.12) !important;
    color: #eab727 !important;
}

.karat-lab-console .ui-inputnumber input:focus,
.karat-lab-console .karat-lab-weight-input input:focus,
.karat-lab-console .ui-selectonemenu.ui-state-focus {
    border-color: rgba(234, 183, 39, 0.74) !important;
    background: rgba(255, 255, 255, 0.105) !important;
}

.karat-lab-weight {
    position: relative;
}

.karat-lab-weight > span {
    position: absolute;
    top: 50%;
    left: 12px;
    z-index: 2;
    transform: translateY(-50%);
    min-height: 32px;
    padding: 0 10px;
    border-radius: 8px;
    background: rgba(234, 183, 39, 0.14);
    color: #f6cf58;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 950;
}

.karat-lab-weight .ui-inputnumber input,
.karat-lab-weight .karat-lab-weight-input input {
    padding-left: 68px !important;
}

.karat-lab-result {
    display: grid;
    gap: 7px;
    min-height: 194px;
    margin-top: 20px;
    padding: 28px;
    overflow: hidden;
    border-radius: 8px;
    background:
        linear-gradient(100deg, transparent 0 34%, rgba(255, 255, 255, 0.24) 34% 34.8%, transparent 34.8%),
        linear-gradient(135deg, #ffe978 0%, #e5af25 45%, #9d6111 100%);
    color: #16100b;
    box-shadow: 0 26px 52px rgba(225, 169, 31, 0.25);
}

.karat-lab-result:before {
    content: "";
    position: absolute;
    inset: -40% -70%;
    pointer-events: none;
    background: linear-gradient(100deg, transparent 42%, rgba(255, 255, 255, 0.42) 50%, transparent 58%);
    transform: translateX(45%);
    animation: karatLabResultPulse 4s ease-in-out infinite;
}

.karat-lab-result-label,
.karat-lab-result strong,
.karat-lab-result small {
    position: relative;
    z-index: 1;
}

.karat-lab-result-label {
    color: rgba(22, 16, 11, 0.72);
    font-size: 14px;
    font-weight: 950;
}

.karat-lab-result strong {
    color: #17100b;
    font-size: clamp(42px, 4.8vw, 62px);
    font-weight: 1000;
    line-height: 1.18;
    word-break: break-word;
}

.karat-lab-result small {
    color: rgba(22, 16, 11, 0.7);
    font-size: 14px;
    font-weight: 900;
}

.karat-lab-specs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 12px;
}

.karat-lab-specs div {
    min-height: 84px;
    display: grid;
    align-content: center;
    gap: 5px;
    padding: 13px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    transition: transform 0.18s ease, border-color 0.18s ease, background-color 0.18s ease;
}

.karat-lab-specs div:hover {
    transform: translateY(-2px);
    border-color: rgba(234, 183, 39, 0.38);
    background: rgba(234, 183, 39, 0.08);
}

.karat-lab-specs span {
    color: rgba(255, 255, 255, 0.55);
    font-size: 12px;
    font-weight: 900;
}

.karat-lab-specs strong {
    min-width: 0;
    color: #fff;
    font-size: 14px;
    font-weight: 950;
    overflow-wrap: anywhere;
}

.karat-lab-empty {
    min-height: 310px;
    margin-top: 20px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    display: grid;
    place-items: center;
    text-align: center;
}

.karat-lab-empty i {
    display: block;
    margin-bottom: 12px;
    color: #eab727;
    font-size: 44px;
}

.karat-lab-empty h2 {
    color: #fff;
    font-size: 20px;
    font-weight: 950;
}

.karat-lab-empty p {
    color: rgba(255, 255, 255, 0.66);
    font-size: 14px;
    font-weight: 700;
}

@keyframes karatLabEnter {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes karatLabConsole {
    from {
        opacity: 0;
        transform: translateY(22px) scale(0.985);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes karatLabIngotFloat {
    0%,
    100% {
        transform: skewX(-18deg) rotate(-7deg) translateY(0);
    }
    50% {
        transform: skewX(-18deg) rotate(-7deg) translateY(-10px);
    }
}

@keyframes karatLabShine {
    0%,
    55% {
        opacity: 0;
        transform: rotate(-19deg) translateX(42px);
    }
    70% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: rotate(-19deg) translateX(-120px);
    }
}

@keyframes karatLabLive {
    to {
        box-shadow: 0 0 0 12px rgba(25, 167, 101, 0);
    }
}

@keyframes karatLabResultPulse {
    0%,
    45% {
        transform: translateX(45%);
    }
    72%,
    100% {
        transform: translateX(-45%);
    }
}

@media (max-width: 991px) {
    .karat-lab-page {
        min-height: 0;
        padding: 14px 0 46px;
        background:
            linear-gradient(90deg, rgba(21, 17, 13, 0.07) 1px, transparent 1px) 0 0 / 34px 34px,
            linear-gradient(0deg, rgba(21, 17, 13, 0.06) 1px, transparent 1px) 0 0 / 34px 34px,
            linear-gradient(180deg, #12100e 0%, #12100e 64%, #f7f0e4 64%, #f7f0e4 100%);
    }

    .karat-lab-layout {
        grid-template-columns: 1fr;
        grid-template-areas:
            "console"
            "identity";
        min-height: 0;
        gap: 14px;
    }

    .karat-lab-identity {
        min-height: 310px;
        margin-top: 0;
    }

    .karat-lab-ingot-stage {
        height: 132px;
    }

    .karat-lab-console {
        max-width: 620px;
        width: 100%;
        margin: 0 auto;
    }
}

@media (max-width: 575px) {
    .karat-lab-page {
        padding: 8px 0 34px;
        background:
            linear-gradient(90deg, rgba(21, 17, 13, 0.06) 1px, transparent 1px) 0 0 / 26px 26px,
            linear-gradient(0deg, rgba(21, 17, 13, 0.05) 1px, transparent 1px) 0 0 / 26px 26px,
            linear-gradient(180deg, #12100e 0%, #12100e 70%, #f6efe4 70%, #f6efe4 100%);
    }

    .karat-lab-layout {
        gap: 10px;
    }

    .karat-lab-identity {
        min-height: 188px;
        padding: 15px;
    }

    .karat-lab-brand {
        min-height: 50px;
        padding: 6px 9px;
        font-size: 12px;
    }

    .karat-lab-brand img {
        width: 38px;
        height: 38px;
    }

    .karat-lab-identity h1 {
        margin-top: 12px;
        max-width: 260px;
        font-size: 27px;
        line-height: 1.18;
    }

    .karat-lab-identity p {
        max-width: 250px;
        margin-top: 5px;
        font-size: 13px;
        line-height: 1.55;
    }

    .karat-lab-ingot-stage {
        height: 56px;
        margin-top: 4px;
    }

    .karat-lab-ingot {
        width: 94px;
        height: 34px;
    }

    .karat-lab-ingot.ingot-a {
        right: auto;
        left: 14px;
        top: 0;
    }

    .karat-lab-ingot.ingot-b {
        right: auto;
        left: 64px;
        top: 18px;
        width: 92px;
    }

    .karat-lab-ingot.ingot-c {
        right: auto;
        left: 34px;
        top: 31px;
        width: 108px;
    }

    .karat-lab-stamp,
    .karat-lab-shine {
        display: none;
    }

    .karat-lab-live {
        min-height: 32px;
        padding: 0 9px;
        font-size: 10px;
    }

    .karat-lab-console {
        padding: 16px;
    }

    .karat-lab-console-head {
        min-height: 60px;
        padding-bottom: 14px;
    }

    .karat-lab-console-head strong {
        font-size: 21px;
    }

    .karat-lab-console-head i {
        width: 46px;
        height: 46px;
        font-size: 25px;
    }

    .karat-lab-controls {
        margin-top: 15px;
        gap: 11px;
    }

    .karat-lab-console .ui-selectonemenu,
    .karat-lab-console .ui-selectonemenu-label,
    .karat-lab-console .ui-inputnumber input,
    .karat-lab-console .karat-lab-weight-input input {
        min-height: 56px;
        line-height: 56px !important;
        font-size: 16px !important;
    }

    .karat-lab-result {
        min-height: 154px;
        margin-top: 15px;
        padding: 20px;
    }

    .karat-lab-result strong {
        font-size: 38px;
    }

    .karat-lab-specs {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 6px;
    }

    .karat-lab-specs div {
        min-height: 68px;
        padding: 9px;
    }

    .karat-lab-specs span {
        font-size: 10px;
    }

    .karat-lab-specs strong {
        font-size: 11px;
    }
}

@media (max-width: 380px) {
    .karat-lab-identity h1 {
        font-size: 24px;
    }

    .karat-lab-console {
        padding: 13px;
    }

    .karat-lab-result strong {
        font-size: 32px;
    }

    .karat-lab-specs {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    .karat-lab-identity,
    .karat-lab-console,
    .karat-lab-ingot,
    .karat-lab-shine,
    .karat-lab-live span,
    .karat-lab-result:before {
        animation: none;
    }
}

.home-price-bulletin-section {
    padding: 10px 0 32px;
}

.home-price-bulletin {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 116px minmax(210px, 0.72fr) minmax(0, 1.35fr);
    align-items: center;
    gap: 22px;
    min-height: 210px;
    padding: 22px;
    border-radius: 8px;
    background:
        linear-gradient(120deg, rgba(15, 12, 10, 0.94) 0%, rgba(38, 24, 18, 0.96) 48%, rgba(17, 12, 10, 0.98) 100%);
    color: #fff;
    box-shadow: 0 28px 62px rgba(22, 15, 10, 0.16);
    isolation: isolate;
    animation: priceBulletinEnter 0.72s ease both;
}

.home-price-bulletin:before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(100deg, transparent 0%, rgba(246, 211, 91, 0.13) 42%, transparent 70%),
        repeating-linear-gradient(-45deg, rgba(255,255,255,0.035) 0 1px, transparent 1px 14px);
}

.home-price-bulletin:after {
    content: "";
    position: absolute;
    inset: 1px;
    z-index: -1;
    border: 1px solid rgba(246, 211, 91, 0.18);
    border-radius: 8px;
    pointer-events: none;
}

.home-price-bulletin-mark {
    position: relative;
    width: 104px;
    height: 104px;
    display: grid;
    place-items: center;
}

.home-price-bulletin-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid rgba(246, 211, 91, 0.32);
    background:
        conic-gradient(from 0deg, transparent 0deg, rgba(246, 211, 91, 0.62) 80deg, transparent 150deg, rgba(166, 54, 105, 0.72) 245deg, transparent 330deg);
    animation: priceBulletinSpin 8s linear infinite;
}

.home-price-bulletin-core {
    position: relative;
    width: 72px;
    height: 72px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #f8d96d 0%, #c99018 100%);
    color: #17100b;
    font-size: 34px;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.52);
    animation: priceBulletinPulse 2.6s ease-in-out infinite;
}

.home-price-bulletin-spark {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #f8d96d;
    box-shadow: 0 0 18px rgba(248, 217, 109, 0.95);
}

.home-price-bulletin-spark.spark-a {
    top: 12px;
    left: 18px;
    animation: priceBulletinSpark 2.4s ease-in-out infinite;
}

.home-price-bulletin-spark.spark-b {
    right: 12px;
    bottom: 16px;
    animation: priceBulletinSpark 2.4s ease-in-out 0.7s infinite;
}

.home-price-bulletin-copy {
    display: grid;
    gap: 8px;
}

.home-price-bulletin-eyebrow {
    display: inline-flex;
    width: max-content;
    max-width: 100%;
    align-items: center;
    gap: 7px;
    min-height: 28px;
    padding: 0 11px;
    border-radius: 999px;
    border: 1px solid rgba(246, 211, 91, 0.36);
    color: #f8d96d;
    background: rgba(255, 255, 255, 0.06);
    font-size: 12px;
    font-weight: 900;
}

.home-price-bulletin-copy h2 {
    margin: 0;
    color: #fff;
    font-size: 36px;
    font-weight: 950;
    line-height: 1.25;
}

.home-price-bulletin-copy p {
    max-width: 360px;
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    line-height: 1.8;
}

.home-price-bulletin-action {
    display: inline-flex;
    width: max-content;
    max-width: 100%;
    align-items: center;
    gap: 8px;
    margin-top: 4px;
    color: #17100b;
    background: #f8d96d;
    border-radius: 8px;
    padding: 10px 15px;
    font-size: 13px;
    font-weight: 950;
    transition: transform 0.22s ease, background-color 0.22s ease;
}

.home-price-bulletin-action:hover,
.home-price-bulletin-action:focus {
    color: #17100b;
    background: #fff0a3;
    transform: translateY(-2px);
}

.home-price-bulletin-action i {
    transition: transform 0.22s ease;
}

.home-price-bulletin-action:hover i,
.home-price-bulletin-action:focus i {
    transform: translateX(-4px);
}

.home-price-bulletin-board {
    position: relative;
    overflow: hidden;
    min-height: 150px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.075);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.home-price-bulletin-board-glow {
    position: absolute;
    top: -30%;
    bottom: -30%;
    width: 34%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.16), transparent);
    transform: skewX(-18deg);
    animation: priceBulletinSweep 4.8s ease-in-out infinite;
}

.home-price-bulletin-list {
    position: relative;
    display: grid;
    gap: 8px;
    max-height: 238px;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 10px;
    scrollbar-color: rgba(246, 211, 91, 0.54) rgba(255, 255, 255, 0.08);
    scrollbar-width: thin;
}

.home-price-bulletin-list::-webkit-scrollbar {
    width: 6px;
}

.home-price-bulletin-list::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 999px;
}

.home-price-bulletin-list::-webkit-scrollbar-thumb {
    background: rgba(246, 211, 91, 0.54);
    border-radius: 999px;
}

.home-price-bulletin-item {
    position: relative;
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    min-height: 64px;
    padding: 8px 10px;
    overflow: hidden;
    border-radius: 8px;
    color: #fff;
    background: rgba(10, 8, 7, 0.46);
    border: 1px solid rgba(255, 255, 255, 0.10);
    transition: transform 0.22s ease, border-color 0.22s ease, background-color 0.22s ease;
}

.home-price-bulletin-item:hover,
.home-price-bulletin-item:focus {
    color: #fff;
    border-color: rgba(246, 211, 91, 0.42);
    background: rgba(246, 211, 91, 0.09);
    transform: translateX(-5px);
}

.home-price-bulletin-thumb {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: 8px;
    background: #fff;
}

.home-price-bulletin-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 6px;
    transition: transform 0.22s ease;
}

.home-price-bulletin-item:hover .home-price-bulletin-thumb img {
    transform: scale(1.07) rotate(-1deg);
}

.home-price-bulletin-product {
    min-width: 0;
    display: grid;
    gap: 5px;
}

.home-price-bulletin-name {
    display: -webkit-box;
    overflow: hidden;
    color: #fff;
    font-size: 14px;
    font-weight: 900;
    line-height: 1.45;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.home-price-bulletin-badge {
    display: inline-flex;
    width: max-content;
    max-width: 100%;
    min-height: 22px;
    align-items: center;
    padding: 0 8px;
    border-radius: 999px;
    color: #f8d96d;
    background: rgba(246, 211, 91, 0.12);
    font-size: 11px;
    font-weight: 900;
}

.home-price-bulletin-value {
    display: grid;
    justify-items: end;
    gap: 2px;
}

.home-price-bulletin-value strong {
    color: #f8d96d;
    font-size: 19px;
    font-weight: 950;
    white-space: nowrap;
}

.home-price-bulletin-old {
    color: rgba(255, 255, 255, 0.45);
    font-size: 12px;
    text-decoration: line-through;
    white-space: nowrap;
}

.home-price-bulletin-discount,
.home-price-bulletin-soldout {
    position: absolute;
    top: 7px;
    left: 7px;
    display: inline-flex;
    align-items: center;
    min-height: 22px;
    padding: 0 8px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 950;
}

.home-price-bulletin-discount {
    color: #17100b;
    background: #f8d96d;
}

.home-price-bulletin-soldout {
    color: #fff;
    background: var(--theme-color);
}

.home-price-bulletin-empty {
    position: relative;
    z-index: 1;
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 22px;
}

.home-price-bulletin-empty span {
    display: grid;
    gap: 6px;
}

.home-price-bulletin-empty strong {
    color: #fff;
    font-size: 22px;
    font-weight: 950;
}

.home-price-bulletin-empty small {
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
    line-height: 1.8;
}

.home-price-bulletin-empty a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 0 14px;
    border-radius: 8px;
    color: #17100b;
    background: #f8d96d;
    font-size: 13px;
    font-weight: 950;
    white-space: nowrap;
}

@keyframes priceBulletinEnter {
    from {
        opacity: 0;
        transform: translateY(22px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes priceBulletinPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.06);
    }
}

@keyframes priceBulletinSpark {
    0%, 100% {
        opacity: 0.38;
        transform: translateY(0) scale(0.75);
    }
    50% {
        opacity: 1;
        transform: translateY(-6px) scale(1.12);
    }
}

@keyframes priceBulletinSweep {
    0% {
        right: -42%;
        opacity: 0;
    }
    18%, 60% {
        opacity: 1;
    }
    100% {
        right: 112%;
        opacity: 0;
    }
}

@media (max-width: 991px) {
    .home-price-bulletin {
        grid-template-columns: 84px minmax(0, 1fr);
        gap: 16px;
    }

    .home-price-bulletin-mark {
        width: 84px;
        height: 84px;
    }

    .home-price-bulletin-core {
        width: 58px;
        height: 58px;
        font-size: 28px;
    }

    .home-price-bulletin-board {
        grid-column: 1 / -1;
    }
}

@media (max-width: 767px) {
    .home-price-bulletin {
        grid-template-columns: 1fr;
        min-height: 0;
        padding: 18px;
    }

    .home-price-bulletin-mark {
        display: none;
    }

    .home-price-bulletin-copy h2 {
        font-size: 28px;
    }

    .home-price-bulletin-copy p {
        max-width: none;
    }

    .home-price-bulletin-item {
        grid-template-columns: 48px minmax(0, 1fr);
        align-items: start;
    }

    .home-price-bulletin-value {
        grid-column: 1 / -1;
        justify-items: start;
        margin-right: 60px;
    }

    .home-price-bulletin-discount,
    .home-price-bulletin-soldout {
        position: static;
        grid-column: 1 / -1;
        width: max-content;
        max-width: 100%;
        margin-right: 60px;
    }

    .home-price-bulletin-empty {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-price-bulletin,
    .home-price-bulletin-ring,
    .home-price-bulletin-core,
    .home-price-bulletin-spark,
    .home-price-bulletin-board-glow {
        animation: none;
    }
}

.slick-default .slick-list {
    margin: 0 -8px
}

.theme-dots .slick-dots {
    position: relative;
    bottom: 5px
}

.theme-dots .slick-dots li {
    height: auto;
    width: auto
}

.theme-dots .slick-dots li button {
    height: 6px;
    width: 6px;
    border-radius: 5px;
    background: #edeff4;
    padding: 0;
    -webkit-transition: all .5s ease;
    transition: all .5s ease
}

[class=dark] .theme-dots .slick-dots li button {
    background: #6e6e6e
}

.theme-dots .slick-dots li button:before {
    display: none
}

.theme-dots .slick-dots li.slick-active button {
    width: 30px;
    -webkit-transition: all .5s ease;
    transition: all .5s ease
}

.theme-dots.slick-dotted.slick-slider {
    margin-bottom: 0
}

.slick-dots {
    position: absolute;
    bottom: -25px;
    list-style: none;
    display: block;
    text-align: center;
    padding: 0;
    margin: 0;
    width: 100%;
}
.theme-dots .slick-dots {
    position: relative;
    bottom: 5px;
}
.slick-dots li {
    position: relative;
    display: inline-block;
    height: 20px;
    width: 20px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
}
.theme-dots .slick-dots li {
    height: auto;
    width: auto;
}
.theme-dots .slick-dots li button {
    height: 6px;
    width: 6px;
    border-radius: 5px;
    background: #edeff4;
    padding: 0;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}
.theme-dots .slick-dots li.slick-active button {
    width: 30px;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}

.slick-dots li button {
    display: block;
    height: 20px;
    width: 20px;
    line-height: 0px;
    font-size: 0px;
    color: rgba(0, 0, 0, 0);
    cursor: pointer;
    border-width: 0px;
    border-style: initial;
    border-color: initial;
    border-image: initial;
    background: rgba(0, 0, 0, 0);
    outline: none;
    padding: 5px;
}

.theme-dots .slick-dots li button {
    height: 6px;
    width: 6px;
    border-radius: 5px;
    background: #edeff4;
    padding: 0;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}

.theme-dots .slick-dots li.slick-active button {
    width: 30px;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}

.slick-slider {
    overflow: hidden !important;
}

.main-menu{
    height: 100px;
}
.rtl .main-menu .menu-left .navbar {
    padding: 25px 0 30px 25px;
}
.basic-product .img-wrapper{
    height: 250px;
    display: flex;
    align-items: baseline;
    justify-content: center;
}

body{
    overflow-x: hidden;
}

.hero-slider {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    background: #f5f2ee;
    box-shadow: 0 22px 56px rgba(20, 16, 10, 0.18);
}

.hero-slider-viewport {
    position: relative;
    min-height: min(72vh, 720px);
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: block;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.7s ease, transform 1.1s cubic-bezier(0.16, 0.84, 0.34, 1);
    transform: translateY(24px) scale(1.08);
    will-change: opacity, transform;
}

.hero-slide.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
    z-index: 2;
    animation: heroSlideIn 1.05s cubic-bezier(0.2, 0.8, 0.22, 1);
}

.hero-slide-image {
    width: 100%;
    height: 100%;
    min-height: min(72vh, 720px);
    object-fit: cover;
    object-position: center;
    display: block;
    transform: scale(1.12);
    filter: brightness(0.9) contrast(1.08) saturate(1.12);
    transition: transform 3.2s cubic-bezier(0.19, 0.82, 0.32, 1), filter 0.95s ease;
    will-change: transform, filter;
}

.hero-slide.is-active .hero-slide-image {
    transform: scale(1.02);
    filter: brightness(1) contrast(1.06) saturate(1.14);
}

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    overflow: hidden;
    opacity: 0;
    background:
        linear-gradient(100deg, rgba(17, 14, 9, 0.28) 0%, rgba(17, 14, 9, 0.08) 36%, rgba(17, 14, 9, 0) 62%),
        linear-gradient(180deg, rgba(17, 14, 9, 0.04) 0%, rgba(17, 14, 9, 0.3) 100%);
    transition: opacity 0.85s ease;
}

.hero-slide-overlay::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(114deg, rgba(255, 255, 255, 0) 35%, rgba(255, 255, 255, 0.24) 50%, rgba(255, 255, 255, 0) 65%);
    transform: translateX(-45%);
    opacity: 0;
}

.hero-slide.is-active .hero-slide-overlay {
    opacity: 1;
}

.hero-slide.is-active .hero-slide-overlay::after {
    animation: heroLightSweep 1.15s ease-out 0.12s;
}

@keyframes heroSlideIn {
    0% {
        opacity: 0;
        transform: translateY(28px) scale(1.1);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes heroLightSweep {
    0% {
        opacity: 0;
        transform: translateX(-45%);
    }
    40% {
        opacity: 0.85;
    }
    100% {
        opacity: 0;
        transform: translateX(45%);
    }
}

.hero-slider-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.hero-slider-dots.is-hidden {
    display: none;
}

.hero-slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.36);
    padding: 0;
    transition: all 0.25s ease;
}

.hero-slider-dot:hover,
.hero-slider-dot:focus {
    background: rgba(255, 255, 255, 0.62);
    border-color: rgba(255, 255, 255, 0.82);
}

.hero-slider-dot.is-active {
    width: 30px;
    background: #fff;
    border-color: #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.24);
}

.hero-slider-arrow {
    display: none !important;
}

.hero-slider.is-single-slide .hero-slider-arrow {
    display: none;
}

@media (max-width: 767px) {
    .layout3-menu .main-menu .brand-logo img {
        height: 80px;
    }
    .main-menu {
        height: 82px;
    }

    .basic-product .img-wrapper{
        height: 160px;
    }

    .hero-slider {
        border-radius: 0;
        box-shadow: 0 16px 34px rgba(20, 16, 10, 0.16);
    }

    .hero-slider-viewport {
        aspect-ratio: 16 / 9;
        min-height: 0;
    }

    .hero-slide-image {
        min-height: 0;
    }

    .hero-slider-dots {
        bottom: 12px;
        gap: 7px;
    }

    .hero-slider-dot {
        width: 9px;
        height: 9px;
    }

    .hero-slider-dot.is-active {
        width: 24px;
    }
}

.discounted-price {
    font-weight: 500;
    color: var(--theme-color);
    display: inline-block;
    margin-bottom: 0;
    font-size: calc(14px +(16 - 14)*((100vw - 320px) /(1920 - 320)));
}

.basic-product .ribbon-dis span {
    font-weight: bold;
    color: #eee;
    text-transform: capitalize;
    text-align: center;
    line-height: calc(20px +(25 - 20)*((100vw - 320px) /(1920 - 320)));
    width: auto;
    display: block;
    background: var(--theme-color);
    position: absolute;
    top: 15px;
    left: 0;
    border-radius: 0 30px 30px 0;
    z-index: 1;
    padding-left: 10px;
    padding-right: 10px;
}
.basic-product .ribbon-color span {
    font-weight: bold;
    color: #eee;
    text-transform: capitalize;
    text-align: center;
    line-height: calc(20px +(25 - 20)*((100vw - 320px) /(1920 - 320)));
    width: auto;
    display: block;
    background: var(--theme-color);
    position: absolute;
    bottom: 15px;
    left: 0;
    border-radius: 0 30px 30px 0;
    z-index: 1;
    opacity: 0.85;
    padding-left: 10px;
    padding-right: 10px;
}

.basic-product .ribbon-soldout span {
    font-weight: bold;
    color: #eee;
    text-transform: capitalize;
    text-align: center;
    line-height: calc(20px +(25 - 20)*((100vw - 320px) /(1920 - 320)));
    width: auto;
    display: block;
    background: var(--theme-color);
    position: absolute;
    bottom: 15px;
    right: 0;
    border-radius: 30px 0 0 30px;
    z-index: 1;
    opacity: 0.85;
    padding-left: 10px;
    padding-right: 10px;
}
.fs-10{
    font-size:10px!important
}
.fs-11{
    font-size:11px!important
}
.fs-12{
    font-size:12px!important
}
.fs-13{
    font-size:13px!important
}
.fs-14{
    font-size:14px!important
}
.fs-15{
    font-size:15px!important
}
.fs-16{
    font-size:16px!important
}
.fs-17{
    font-size:17px!important
}
.fs-18{
    font-size:18px!important
}
.fs-19{
    font-size:19px!important
}
.fs-20{
    font-size:20px!important
}
.fs-21{
    font-size:21px!important
}
.fs-22{
    font-size:22px!important
}
.fs-23{
    font-size:23px!important
}
.fs-24{
    font-size:24px!important
}
.fs-36{
    font-size:36px!important
}
.fs-48{
    font-size:48px!important
}
.rounded-circle {
    border-radius: 50% !important;
}
.avatar-sm {
    height: 3rem;
    width: 3rem;
}
.img-var{
    border-radius: 100%;
    border: 1px solid #ddd;
    padding: 5px;
    height: 45px;
    width: 45px;

}
.basic-product.theme-product-1 .product-detail .offer-panel-st {
    margin-top: 3px;
    color: #222;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 15px;
    white-space: nowrap;
    position: relative;
    min-height: 50px;
    overflow-x: auto;
    padding-right: 5px;
    padding-left: 5px;
    height: 60px;
}
.scroll-x{
    margin-top: 3px;
    color: #222;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 15px;
    white-space: nowrap;
    position: relative;
    min-height: 50px;
    overflow-x: auto;
    padding-right: 5px;
    padding-left: 5px;
}

* {
    scrollbar-color: #888888 transparent !important;
}


.img-var.active {
    border-color: var(--theme-color);

}

.badge{
    background: var(--theme-color);
    color:white;
}

li .img-category .img-sec{
    height: 83.5px !important;
    width: 83.5px !important;
}

.ui-selectonemenu-panel .ui-selectonemenu-list-item{
    display: list-item !important;
    text-align: right !important;
}
.ui-selectonemenu .ui-selectonemenu-label{
    text-align: right !important;
}
.ui-selectonemenu .ui-selectonemenu-trigger{
    right: auto !important;
    left: 0;
}
.add-round-btn{
    right: calc(8px + (14 - 8) * ((100vw - 320px) / (1920 - 320)));
    bottom: calc(8px + (14 - 8) * ((100vw - 320px) / (1920 - 320)));
    background-color: var(--theme-color);
    color: #fff;
    border-radius: 100%;
    width: calc(24px + (38 - 24) * ((100vw - 320px) / (1920 - 320)));
    height: calc(24px + (38 - 24) * ((100vw - 320px) / (1920 - 320)));
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
        ;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: none;
    font-size: calc(13px + (18 - 13) * ((100vw - 320px) / (1920 - 320)));
}
.basic-product .price{
    color : var(--theme-color);
    font-size: calc(17px + (18 - 15) * ((100vw - 320px) / (1920 - 320)));
}

.collection-collapse-block .collection-accordion .accordion-item .accordion-body{
    scrollbar-color: var(--theme-color) transparent !important;
}


.collection-collapse-block .collection-accordion .accordion-item .accordion-body .collection-listing li .form-check:has(input:checked) .form-check-label {
    color: var(--theme-color);
}
.karat-filter-listing .form-check {
    align-items: center;
}

.karat-filter-label {
    width: 100%;
    display: inline-flex;
    align-items: center;
    gap: 9px;
}

.karat-filter-chip {
    min-width: 86px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 5px 10px;
    border-radius: 999px;
    border: 1px solid rgba(198, 143, 34, .32);
    color: #6f4b0b;
    background: linear-gradient(135deg, rgba(255, 248, 226, .92), rgba(255, 236, 178, .58));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .74);
    line-height: 1.2;
    transition: background .18s ease, color .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.karat-filter-chip i {
    color: #bd8618;
    font-size: 15px;
    line-height: 1;
}

.karat-filter-listing .form-check:has(input:checked) .karat-filter-chip {
    color: #fff;
    border-color: rgba(184, 127, 23, .72);
    background: linear-gradient(135deg, #d8a531, #8a5a10);
    box-shadow: 0 5px 14px rgba(166, 112, 18, .18), inset 0 1px 0 rgba(255, 255, 255, .38);
}

.karat-filter-listing .form-check:has(input:checked) .karat-filter-chip i {
    color: #fff2bd;
}

.price-range-list {
    display: grid;
    gap: 8px;
    direction: rtl;
}

.price-range-option {
    position: relative;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 8px 10px 8px 12px;
    border: 1px solid rgba(36, 32, 27, .08);
    border-radius: 8px;
    color: #2f2b26;
    background: linear-gradient(135deg, #ffffff, #fbfaf7);
    box-shadow: 0 5px 16px rgba(33, 28, 20, .04);
    line-height: 1.25;
    transition: border-color .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.price-range-option:hover,
.price-range-option:focus {
    color: #6f4b0b;
    border-color: rgba(198, 143, 34, .34);
    background: linear-gradient(135deg, #fffdfa, #fff5da);
    box-shadow: 0 8px 20px rgba(166, 112, 18, .12);
    transform: translateY(-1px);
}

.price-range-option.is-active {
    color: #ffffff;
    border-color: rgba(153, 101, 15, .68);
    background: linear-gradient(135deg, #d8a531, #8a5a10);
    box-shadow: 0 10px 24px rgba(138, 90, 16, .22);
}

.price-range-dot {
    width: 12px;
    height: 12px;
    flex: 0 0 12px;
    border-radius: 50%;
    border: 2px solid rgba(198, 143, 34, .55);
    background: #ffffff;
    box-shadow: inset 0 0 0 3px #ffffff;
    transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.price-range-option.is-active .price-range-dot {
    border-color: rgba(255, 244, 199, .92);
    background: #fff4c7;
    box-shadow: inset 0 0 0 3px #9b6510;
}

.price-range-label {
    width: 100%;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 8px;
    font-weight: 700;
    font-size: 13px;
}

.price-range-prefix {
    color: inherit;
    opacity: .72;
    font-weight: 600;
}
body .ui-slider .ui-slider-range{
    background: var(--theme-color);
}

.collection-collapse-block .collection-accordion .accordion-item .accordion-body{
    max-height: fit-content;
}
.product-slick .slick-next{
    right: -10px;
    left: auto;
    z-index: 1;
}
.product-slick .slick-prev{
    left: -10px;
    z-index: 1;
    right: auto;
}
.slider-nav .slick-slide>div img, .rtl-slider-nav .slick-slide>div img, .slider-right-nav .slick-slide>div img, .rtl-slider-right-nav .slick-slide>div img {
    height: calc(80px + (160 - 80) * ((100vw - 320px) / (1920 - 320)));
    width: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    cursor: pointer;
    background-color: rgba(212, 215, 212, 0.2);
}
.slider-nav .slick-slide.slick-active>div img{
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}
.slick-slide img {
    display: block;
    cursor: pointer;
}
.slider-nav .slick-slide>div{
    display: flex;
    margin: 10px 10px 0 10px;
    border: 1px solid #eee;
}
.slider-nav .slick-slide{
    display: flex;
    margin: 10px 10px 0 10px;
    border: 1px solid #eee;
}

@media (max-width: 991px) {
    .product-slick .slick-next, .rtl-product-slick .slick-next, .product-right-slick .slick-next, .rtl-product-right-slick .slick-next {
        right: 20px !important;
    }
    .product-slick .slick-prev, .rtl-product-slick .slick-prev, .product-right-slick .slick-prev, .rtl-product-right-slick .slick-prev {
        left: 20px !important;
    }
}

.p-thumb{
    min-height: 130px;
}
.product-page-details .image-box{
    flex-wrap: wrap;
}
.product-page-details .image-box li span{
    width: 65px;
    text-align: center;
    display: block;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    font-size: 13px;
    color: black;
}
a:hover {
    text-decoration: none !important;
}
.product-page-details .image-box li{
/*    max-width: 30%;*/
    text-align: center;
    padding: 0;
    border-radius: 5px;
}
body.rtl .product-page-details .size-box{
    width: 100%;
    text-align: right;
}
.product-page-details .quantity-variant{
    flex-wrap: wrap;
    width: 100%;
}
.product-page-details .quantity-variant li {
    padding: 0 !important;
    background-color: #fafafa;
    border: 1px solid #dad7d7;
    border-radius: 5px;
}
.product-page-details .quantity-variant li a {
    padding: 8px 10px !important;

}
.text-primary{
    color: var(--theme-color) !important;
}

.product-page-details .price-text h3{
    justify-content: center;
}

.gold-karat-showcase {
    width: 100%;
    max-width: 190px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0;
    margin: 0 auto 14px;
    padding: 2px 0 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    direction: rtl;
    text-align: center;
    position: relative;
    overflow: visible;
    isolation: isolate;
}

.gold-karat-showcase::before {
    content: "";
    position: absolute;
    top: 12px;
    right: 50%;
    width: 78px;
    height: 78px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(239, 190, 72, 0.26), rgba(239, 190, 72, 0) 68%);
    transform: translateX(50%);
    z-index: -1;
}

.gold-karat-showcase::after {
    content: "";
    position: absolute;
    right: 50%;
    bottom: 0;
    width: 112px;
    height: 13px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(72, 42, 3, 0.18), rgba(72, 42, 3, 0));
    transform: translateX(50%);
    pointer-events: none;
    z-index: -1;
}

.gold-karat-orbit {
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    margin-bottom: -6px;
    animation: goldDiamondFloat 3.2s ease-in-out infinite;
}

.gold-karat-orbit::before {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, rgba(255,255,255,0), rgba(255, 230, 143, .95), rgba(158, 99, 8, .18), rgba(255, 241, 184, .9), rgba(255,255,255,0));
    animation: goldKaratSpin 10s linear infinite;
    opacity: .78;
}

.gold-karat-orbit::after {
    content: "";
    position: absolute;
    inset: 6px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, #3a2a12, #14100a 70%);
    box-shadow: inset 0 0 0 1px rgba(255, 225, 133, 0.25), 0 12px 26px rgba(71, 43, 5, .22);
}

.gold-karat-icon {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(145deg, #2a1f10, #0d0a07);
    color: #ffe8a8;
    box-shadow: 0 8px 18px rgba(27, 17, 5, 0.28), inset 0 0 0 1px rgba(255, 232, 158, 0.34);
    font-size: 22px;
    position: relative;
    z-index: 2;
    animation: goldDiamondBreath 3.2s ease-in-out infinite;
}

.gold-karat-icon::after {
    content: "";
    position: absolute;
    top: 6px;
    right: 7px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,.95), rgba(255,255,255,0) 70%);
    opacity: .75;
    animation: goldDiamondFlash 3.2s ease-in-out infinite;
}

.gold-karat-icon i {
    display: inline-block;
    animation: goldDiamondTilt 3.2s ease-in-out infinite;
}

.gold-karat-spark {
    width: 4px;
    height: 4px;
    position: absolute;
    border-radius: 50%;
    background: #fff4bd;
    box-shadow: 0 0 10px rgba(255, 244, 189, 0.95);
    z-index: 3;
    opacity: 0;
    animation: goldSpark 2.4s ease-in-out infinite;
}

.gold-karat-spark.spark-one {
    top: 7px;
    right: 8px;
}

.gold-karat-spark.spark-two {
    bottom: 10px;
    right: 4px;
    animation-delay: .55s;
}

.gold-karat-spark.spark-three {
    top: 13px;
    left: 7px;
    animation-delay: 1.05s;
}

.gold-karat-content {
    min-width: 0;
    min-height: 48px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1px;
    padding: 9px 19px 8px;
    border-radius: 999px;
    background:
        linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.72) 48%, rgba(255,255,255,0) 100%) -140px 0 / 80px 100% no-repeat,
        linear-gradient(135deg, #ffe9a7 0%, #d39d22 45%, #8e5b09 100%);
    box-shadow: 0 9px 20px rgba(91, 59, 8, 0.17), inset 0 1px 0 rgba(255,255,255,.62), inset 0 -1px 0 rgba(82, 45, 2, .18);
    position: relative;
    z-index: 1;
    overflow: hidden;
    animation: goldContentSweep 3.8s ease-in-out infinite;
}

.gold-karat-content::before {
    content: "";
    position: absolute;
    inset: 3px;
    border-radius: 999px;
    border: 1px solid rgba(255, 246, 209, .56);
    pointer-events: none;
}

.gold-karat-content small {
    color: rgba(74, 44, 5, 0.78);
    font-size: 11px;
    font-weight: 800;
    line-height: 1.2;
    position: relative;
    z-index: 1;
}

.gold-karat-content strong {
    color: #ffffff;
    font-size: 20px;
    font-weight: 900;
    line-height: 1.25;
    overflow-wrap: anywhere;
    text-shadow: 0 2px 10px rgba(68, 40, 4, 0.4);
    position: relative;
    z-index: 1;
}

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

@keyframes goldDiamondFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-4px);
    }
}

@keyframes goldDiamondBreath {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 18px rgba(27, 17, 5, 0.28), inset 0 0 0 1px rgba(255, 232, 158, 0.34);
    }
    50% {
        transform: scale(1.035);
        box-shadow: 0 11px 22px rgba(27, 17, 5, 0.32), inset 0 0 0 1px rgba(255, 232, 158, 0.5);
    }
}

@keyframes goldDiamondTilt {
    0%, 100% {
        transform: rotate(0deg) translateY(0);
    }
    35% {
        transform: rotate(-6deg) translateY(-1px);
    }
    70% {
        transform: rotate(5deg) translateY(1px);
    }
}

@keyframes goldDiamondFlash {
    0%, 100% {
        opacity: .35;
        transform: scale(.85);
    }
    48% {
        opacity: .95;
        transform: scale(1.18);
    }
}

@keyframes goldSpark {
    0%, 100% {
        opacity: 0;
        transform: scale(.55);
    }
    42% {
        opacity: 1;
        transform: scale(1.2);
    }
    64% {
        opacity: 0;
        transform: scale(.75);
    }
}

@keyframes goldContentSweep {
    0%, 35% {
        background-position: -140px 0, 0 0;
    }
    65%, 100% {
        background-position: 220px 0, 0 0;
    }
}

@media (max-width: 575px) {
    .gold-karat-showcase {
        max-width: 178px;
    }

    .gold-karat-orbit {
        width: 54px;
        height: 54px;
        flex-basis: 54px;
    }

    .gold-karat-icon {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
        font-size: 21px;
    }

    .gold-karat-content strong {
        font-size: 19px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .gold-karat-orbit::before,
    .gold-karat-orbit,
    .gold-karat-icon,
    .gold-karat-icon::after,
    .gold-karat-icon i,
    .gold-karat-spark,
    .gold-karat-content {
        animation: none;
    }
}

body .ui-commandlink{
    color: black ;
}
.product-page-details .price-text h3{
    font-size: calc(23px + (26 - 16) * ((100vw - 320px) / (1920 - 320))) !important;
}
.ui-spinner-horizontal .ui-spinner-down{
    left: 0;
}
body .ui-button{
    background: var(--theme-color) !important;
    border: 1px solid var(--theme-color) !important;
}
input.ui-spinner-input{
    text-align: center !important;
    padding-left: 10px !important;
    padding-right: 10px !important;
}
body .ui-inputfield.ui-state-focus{
    border-color: var(--theme-color) !important;
}
.product-page-details .product-buttons{
    justify-content: center;
}
.profile-btn{
    max-width: 150px;
}
@media (max-width: 577px) {
    header.header-style-5 .main-nav-center .toggle-nav {
        display: none;
    }
    .rtl .main-menu .menu-left .navbar{
        left: 0 !important;
        position: absolute !important;
        padding-left: 10px !important;
    }
    .back{
        right: 0 !important;
        left: auto !important;
        padding-right: 10px !important;
        padding-left: 0 !important;
    }
    .points-li{
        display: none;
    }
    .profile-btn{
        max-width: 100%;
    }
}





.product-page-details .price-text h3 .discounted-price::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--theme-color);
    opacity: 0.11;
}

.product-page-details .price-text h3 {
    font-size: calc(20px + (26 - 16) * ((100vw - 320px) / (1920 - 320))) !important;
}
.float-end {
    float: left !important;
}

.product-page-details .image-box li img{
    border-top-right-radius: 4px;
    border-top-left-radius: 4px;
}
.slider-nav .slick-slide{
    height: 170px;
    width: 120px;
}
.slick-slide img{
    object-fit: cover;
}
.product-slick .slick-next {
    right: 10px  !important;
}
.product-slick .slick-prev{
    left: 10px  !important;
}

.product-page-details .product-accordion .accordion-item .accordion-header .accordion-button::after{
    position: absolute;
    left: 0;
}
.product-page-details .product-accordion .accordion-item .accordion-body .bordered-box .delivery-details li{
    font-size: calc(13px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
    color: #626262;
    display: list-item;
    margin-right: 25px;
    margin-left: 10px;
}

.tab-product .nav-material.nav-tabs .info-link.active
{
    color: white;
    background-color: var(--theme-color);
    font-weight: 600;
    border: 1px solid var(--theme-color);
}

.basic-product .product-title{
    font-size: calc(13px + (18 - 16) * ((100vw - 320px) / (1920 - 320))) !important;
    max-width: 85%;
}
.product-page-details .image-box li a {
    position: relative;
    display: inline-block;
}

.image-box a  {
    position: relative;
    display: inline-block;
}

.image-box a .out-of-stock::before {
    content: "";
    position: absolute;
    top: 0;
    right: 3px;
    width: 137%;
    height: 2px;
    background-color: var(--theme-color);
    transform: rotate(-45deg);
    transform-origin: top right;
    z-index: 5;
    pointer-events: none;
    border-radius: 5px;
    opacity: 0.6;
}

.disabled:before{
    display: none;
}
.out-of-stock-cont{
    opacity: 0.4;
}

.product-page-details .quantity-variant.circle li,.quick-view-modal .modal-body .quantity-variant.circle li{
    width: auto;
    min-width: 40px;
    border-radius: 10px;
}

.size-option {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    white-space: nowrap;
}

.size-option.out-of-stock-size::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: repeating-linear-gradient(
        50deg,
        transparent,
        transparent calc(50% - 1px),
        var(--theme-color) calc(50% - 1px),
        var(--theme-color) calc(50% + 1px),
        transparent calc(50% + 1px)
        );
    pointer-events: none;
}

.size-option.out-of-stock-size {

    opacity: 0.6;
}
/*.product-page-details .image-box li.active{
    padding-left: 2px;
}*/
.slick-slide img {
    width: 100%;
}
.text-white{
    color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important;
}
body .ui-messages>div {
    padding: 0.6rem;
    margin: 0.5rem 0;
    border-radius: 5px;
}
.ui-messages-error-summary{
    font-size: 14px;
}
.ui-messages-error-icon{
    margin-top: -4px !important;
}
body .ui-messages .ui-messages-error .ui-messages-error-icon{
    float: right;
    font-size: 1.3rem;
}
.timer{
    background-color: #fff2f8;

}
body .ui-button{
    padding-bottom: 10px !important;
    padding-top: 10px !important;
}
body .ui-button.ui-button-text-icon-right .ui-button-text {
    padding-bottom: 0  !important;
    padding-top: 0 !important;
    padding-right: 30px !important;
    padding-left: 0 !important;
}
body .ui-button.ui-button-text-icon-right .ui-icon{
    margin-right: 5px !important;
}

@media (max-width: 1430px) {
    .rtl .timer span .padding-l{
        left: -25px;
        padding-left: 0;
    }
    .product-form-box .timer span {
        width: 50px !important;
    }
}
.swal2-title{
    font-size: 17px !important;
}
.recently-purchase .media-body{
    padding: 0 5px 0 30px !important;
}
.total{
    color: var(--theme-color);
}
.qty-btn-plus,.qty-btn-minus{
    color: #777;
    padding: 0;
}
.qty-btn-plus i,.qty-btn-minus i{
    font-weight: 400 !important;
    color: #777 !important;
}
.product-purchase-qty-wrap{
    width: 100%;
    margin: 16px 0 8px;
}
.product-purchase-qty{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    flex-wrap: wrap;
}
.product-purchase-qty-title{
    color: #222;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
}
.product-qty-box{
    width: 132px;
    height: 40px;
}
.product-qty-box .qty-container{
    width: 100%;
    height: 40px;
    border: 1px solid #e7e7e7;
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 8px 18px rgba(0, 0, 0, .05);
}
.prod-qty-btn{
    width: 40px;
    height: 38px;
    border: 0;
    padding: 0;
    background: #f8f8f8;
    color: var(--theme-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color .2s ease, color .2s ease;
}
.prod-qty-btn i{
    color: inherit !important;
    font-size: 17px;
    line-height: 1;
}
.prod-qty-btn:hover{
    background: var(--theme-color);
    color: #fff;
}
.product-qty-input{
    width: 50px;
    min-width: 50px;
    height: 38px;
    border: 0 !important;
    padding: 0 !important;
    color: #222;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    background: #fff !important;
    box-shadow: none !important;
}
.product-qty-input:focus{
    outline: 0;
    box-shadow: none !important;
}
.quick-view-modal .product-purchase-qty{
    justify-content: center;
}
@media (max-width: 575px){
    .product-purchase-qty{
        justify-content: center;
    }
}
.offcanvas.cart-offcanvas .offcanvas-body .cart_total li .buttons a{
    font-size: calc(13px + 4 * (100vw - 320px) / 1600) !important;
}
.var-badge{
    padding-left: 7px;
    padding-right: 7px;

}
.float-start{
    float: right !important;
}
.checkout-page .checkout-form .checkout-details .promo-code-box .apply-button{
    line-height: 25px !important;
    white-space: nowrap;
    border: 1px solid var(--theme-color) !important;
    border-radius: 0;
    font-weight: 600;
    color: var(--theme-color);
    letter-spacing: unset;
    text-transform: none;
    background-color: transparent !important;
}
.checkout-page .checkout-form .checkout-details .promo-code-box .apply-button:hover {
    background-color: var(--theme-color) !important;
    color: #fff !important;
}
/*.toggle-nav{
    display: none;
}*/

.thank-section{
    background-color: rgb(248, 248, 248);
    position: relative;
    padding: calc(11px + 0.9375vw);
    border-radius: 0px;
    border-width: 1px;
    border-style: solid;
    border-color: rgb(238, 238, 238);
    border-image: initial;
}

@media (max-width: 1199px) {
    .main-nav-center .toggle-nav {
        top: -165px !important;
    }
    .rtl .main-nav-center .toggle-nav,.rtl .main-menu .menu-left .navbar {
        display: none !important;
    }

    .mobile-canv{

    }
}
@media (min-width: 1200px) {


    .mobile-canv{
        display: none !important;
    }
}

.mobile-canv{
    /*    left: 0;
        margin-left: 10px;
        position: absolute;*/
    font-size: 24px;
}


.sticky-cust-cart {
    position: fixed;
    bottom: -200px;
    width: 100%;
    z-index: 9;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    left: 50%;
    -webkit-transform: translateX(-50%) scale(0.95);
    transform: translateX(-50%) scale(0.95)
}
.sticky-cust-cart .qty-box .input-group {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.sticky-cust-cart .cart-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    background-color: #fff;
    padding: 10px;
    -webkit-box-shadow: 0 0 100px rgba(0, 0, 0, 0.06);
    box-shadow: 0 0 100px rgba(0, 0, 0, 0.06)
}

.sticky-cust-cart .cart-content .middle-value {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.sticky-cust-cart .cart-content .middle-value .qty-box input {
    background-color: #f8f8f8;
    border-color: #eee
}

.sticky-cust-cart .cart-content .middle-value .qty-box .input-group span button {
    background: #f8f8f8 !important;
    border-color: #eee
}

.sticky-cust-cart .product-image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.sticky-cust-cart .product-image img {
    width: 70px;
    height: 70px;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: top;
    object-position: top;
    background-color: #f8f8f8
}

.sticky-cust-cart .product-image .content {
    margin-left: 12px
}

.sticky-cust-cart .product-image .content h5,
.sticky-cust-cart .product-image .content h6 {
    margin-bottom: 0
}

.sticky-cust-cart .product-image .content h5 {
    font-size: 18px;
    font-weight: 500
}

.sticky-cust-cart .product-image .content h6 {
    font-weight: 400;
    font-size: 16px;
    color: #222
}

.sticky-cust-cart .product-image .content h6 del {
    margin-left: 7px
}

.sticky-cust-cart .product-image .content h6 span {
    color: var(--theme-color);
    margin-left: 5px
}

.sticky-cust-cart .selection-section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: calc(10px + (20 - 10) * ((100vw - 320px) / (1920 - 320)));
    margin: 0 auto;
    text-align: center
}


.sticky-cust-cart .selection-section h4 {
    margin-bottom: 0;
    margin-right: 10px;
    font-weight: 500
}

.sticky-cust-cart .selection-section .variation-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: calc(26px + 24 * (100vw - 767px) / 1153)
}

.sticky-cust-cart .selection-section .variation-box h4 {
    margin-bottom: 0
}

.sticky-cust-cart .selection-section .form-control {
    background-color: #f8f8f8;
    border: 1px solid #eee;
    font-weight: 500
}

.sticky-cust-cart .selection-section .form-control:focus {
    -webkit-box-shadow: none;
    box-shadow: none
}

.stickyCart .sticky-cust-cart{
    bottom: 20px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transform: translateX(-50%) scale(1);
    transform: translateX(-50%) scale(1)
}


.stickyCart .recently-purchase.show {
    bottom: 125px
}


.modal .btn-close{
    right: 3px;
    top: 5px;
    font-size: 20px;
}
.ui-autocomplete {
    width: 100% !important;
}
@media (max-width: 480px) {
    .home-slider .home {
        height: 17vh !important;
        width: 100%;
    }
}
.mb-6 {
    margin-bottom: 5rem !important;
}
.mb-7 {
    margin-bottom: 6rem !important;
}
.mb-8 {
    margin-bottom: 7rem !important;
}
.order-token{
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    display: contents;
}


.quick-view-modal .modal-body .view-main-slider .slick-arrow.slick-next {
    right: 15px;
    left: auto;
}
.quick-view-modal .modal-body .view-main-slider .slick-arrow.slick-prev {
    left: 15px;
}

.btn{
    min-height: 50px !important;
}

body .ui-autocomplete-panel .ui-autocomplete-items .ui-autocomplete-item.ui-state-highlight{
    background: var(--theme-color);
    color: #fff !important;
}
body .ui-autocomplete-panel .ui-autocomplete-items .ui-autocomplete-item.ui-state-highlight  span{

    color: #fff !important;
}
body .ui-autocomplete-panel,
body .ui-autocomplete-panel.ui-widget-content {
    z-index: 10060 !important;
}

body .ui-autocomplete-panel .ui-autocomplete-items {
    max-height: min(350px, calc(100vh - 120px));
    overflow-y: auto;
}

body .ui-confirm-popup{
    z-index: 5002 !important;
}


.conf-btn{
    min-height: 20px !important;
    height: 40px;
    padding: 7px 18px;
    font-size: 12px;
}

@media (max-width: 577px) {
    .top-header .header-dropdown .mobile-account i {
        color: #999 !important;
    }
}
.mform_search
{
    height: 45px;
    overflow: hidden;
    position: fixed;
    width: 90%;
    background-color: #f5f5f5;
    border-radius: 0;
    box-shadow: 0 0 0 1px #e2e2e2;
}
.mform_search input {
    width: 100%;
    height: 45px;
    font-size: 16px;
    color: darkgrey;
    border: none;
    outline: none;
    background: none;
    padding: 0 10px;
}
.rtl .mform_search button {
    left: 5px;
    right: unset;
}
.mform_search button {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 40px;
    height: 35px;
    padding: 0;
    border: none;
    outline: none;
    cursor: pointer;
    background-color: transparent;
    border-radius: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
        ;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

body .ui-sidebar.ui-sidebar-active{
    height: 65px;
    z-index: 10040 !important;
}

body .ui-sidebar.ui-sidebar-top {
    z-index: 10040 !important;
}

body .ui-sidebar-mask.ui-widget-overlay {
    z-index: 10035 !important;
}
.back-btn{
    right: -50px;
    position: relative;
}
.back-btn.show{
    right: 0;
    position: relative;
    -webkit-transition: all 0.6s ease;
    transition: all 0.6s ease
}


.offcanvas.cart-offcanvas{
    padding-bottom: env(safe-area-inset-bottom, 40px) !important;
}

#cartOffcanvas.offcanvas,
#menuOffcanvas.offcanvas,
.offcanvas.cart-offcanvas#cartOffcanvas,
.offcanvas.cart-offcanvas#menuOffcanvas {
    z-index: 11090 !important;
}

.offcanvas-backdrop {
    z-index: 11080 !important;
}
.prod-img,.prod-img-nav{
    height: 100% !important;
}
.prod-bg{
    width: 100%;
    height: 100%;
    position: absolute;
    filter: blur(5px);
}

.basic-product .img-wrapper {
    position: relative;
}

.product-hover-backdrop-stack {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.product-hover-backdrop {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(14px);
    opacity: 0;
    transition: opacity 0.7s ease, transform 0.9s ease;
    transform: scale(1.14);
}

.product-hover-backdrop.is-active {
    opacity: 1;
    transform: scale(1.08);
}

.product-hover-gallery {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.product-hover-gallery::after {
    content: "";
    position: absolute;
    inset: -8% -38%;
    pointer-events: none;
    opacity: 0;
    z-index: 3;
    background: linear-gradient(110deg, rgba(255, 255, 255, 0) 34%, rgba(255, 255, 255, 0.56) 50%, rgba(255, 255, 255, 0.12) 57%, rgba(255, 255, 255, 0) 72%);
    transform: translateX(-145%) skewX(-14deg);
}

.product-hover-gallery.is-shining::after {
    animation: productHoverShine 0.96s ease-out;
}

@keyframes productHoverShine {
    0% {
        opacity: 0;
        transform: translateX(-145%) skewX(-14deg);
    }
    38% {
        opacity: 0.9;
    }
    100% {
        opacity: 0;
        transform: translateX(130%) skewX(-14deg);
    }
}

.product-hover-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    opacity: 0;
    transition: opacity 0.64s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.82s cubic-bezier(0.22, 0.61, 0.36, 1), filter 0.62s ease;
    transform: translateX(9px) scale(1.04);
    filter: saturate(0.92) brightness(0.94);
    will-change: opacity, transform, filter;
}

.product-hover-image.is-active {
    opacity: 1;
    transform: translateX(0) scale(1);
    filter: saturate(1) brightness(1);
}

.iti{
    width:100%;
}

.basic-product.theme-product-1{
    border-radius: 10px;
}
.basic-product .img-wrapper{
    border-radius: 5px;
}

.ui-inputnumber > .ui-inputfield {
    width: 100%;
    height: 100%;
}

.btn-light {
    background-color: #f8f8f8;
    color: #ec8951 !important;
    padding-top: 12px;
}

.basic-product .ribbon-pt span{
    font-weight: bold;
    color: #eee;
    text-transform: capitalize;
    text-align: center;
    line-height: calc(20px +(25 - 20)*((100vw - 320px) /(1920 - 320)));
    width: auto;
    display: block;
    background: #cbab03;
    position: absolute;
    top: 40px;
    left: 0;
    border-radius: 0 30px 30px 0;
    z-index: 1;
    padding-left: 10px;
    padding-right: 10px;
}

.discounted-pt {
    font-weight: 500;
    padding: 5px calc(12px + 0.0025 * (100vw - 320px));
    border-radius: 0;
    color: black !important;
    display: inline-block;
    margin-bottom: 15px;
    margin-top : 15px;
    margin-left: 12px;
    font-size: 16px;
    position: relative;

}

.discounted-pt::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: gold;
    opacity: 0.5;
}

.prod-pt{
    color: var(--theme-color) !important;
    width: 100%;
    display: block;
    height: 30px;
    font-size : 13px;
}

@media (max-width: 577px) {
    .prod-pt{
        height: 40px !important;
        font-size : 11px !important;
    }
}

.del-price{
    left: 0;
    position: absolute;
    margin-left: 10px;
}
.del-dis{
    left: 0;
    position: absolute;
    margin-left: 5px;
    top: 30px;
}
.city-item{
    min-height: 60px;
}

.list-group.ui-selectoneradio
{
    --bs-list-group-color: var(--bs-body-color);
    --bs-list-group-bg: var(--bs-body-bg);
    --bs-list-group-border-color: var(--bs-border-color);
    --bs-list-group-border-width: var(--bs-border-width);
    --bs-list-group-border-radius: var(--bs-border-radius);
    --bs-list-group-item-padding-x: 1rem;
    --bs-list-group-item-padding-y: 0.5rem;
    --bs-list-group-action-color: var(--bs-secondary-color);
    --bs-list-group-action-hover-color: var(--bs-emphasis-color);
    --bs-list-group-action-hover-bg: var(--bs-tertiary-bg);
    --bs-list-group-action-active-color: var(--bs-body-color);
    --bs-list-group-action-active-bg: var(--bs-secondary-bg);
    --bs-list-group-disabled-color: var(--bs-secondary-color);
    --bs-list-group-disabled-bg: var(--bs-body-bg);
    --bs-list-group-active-color: #fff;
    --bs-list-group-active-bg: #0d6efd;
    --bs-list-group-active-border-color: #0d6efd;
    display: flex;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
    border-radius: var(--bs-list-group-border-radius);
    background-color: var(--bs-body-bg);
    border-color: var(--bs-border-color);
    border-width: var(--bs-border-width);

}
.list-group.ui-selectoneradio td {
    padding: 0.5rem 1rem;
}
.del-dis{
    min-width: 100px;
    text-align: left;
    left: 0;
    position: absolute;
    margin-left: 5px;
    top: 15px;
}
.del-price{
    margin-top: -40px;
    left: 5px;
}

.product-hover-card.basic-product.theme-product-1 {
    border-radius: 18px;
    border: 1px solid rgba(28, 21, 14, 0.08);
    background: #fffdfa;
    box-shadow: 0 10px 28px rgba(27, 20, 12, 0.06);
    padding: 12px;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.product-hover-card.basic-product.theme-product-1:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 38px rgba(27, 20, 12, 0.11);
    border-color: rgba(186, 150, 92, 0.24);
}

.product-hover-card.basic-product.theme-product-1 .img-wrapper {
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 14px;
    background: linear-gradient(180deg, #f6f1ea 0%, #efe6da 100%);
}

.product-hover-card.basic-product.theme-product-1 .product-detail {
    padding: 0;
}

.product-hover-card.basic-product.theme-product-1 .product-detail > div {
    padding: 2px 2px 0;
    border-bottom: 0;
}

.product-hover-card.basic-product.theme-product-1 .brand-w-color {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
}

.product-hover-card.basic-product.theme-product-1 .product-title {
    color: #1f1a14;
    font-size: 15px !important;
    font-weight: 600;
    line-height: 1.6;
    letter-spacing: 0;
    max-width: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 48px;
}

.product-hover-card.basic-product.theme-product-1 .product-title:hover {
    color: #9d7b46;
}

.product-hover-card.basic-product.theme-product-1 .price {
    color: #15110c;
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
    font-size: 19px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
}

.product-hover-card.basic-product.theme-product-1 .price del {
    color: #9b907f;
    font-size: 13px;
    font-weight: 500;
}

.product-hover-card.basic-product.theme-product-1 .prod-pt {
    margin-top: 10px !important;
    padding: 0 !important;
    min-height: auto;
    height: auto;
    color: #8a7352 !important;
    background: transparent !important;
    font-size: 12px;
    text-align: right !important;
}

.product-hover-card.basic-product.theme-product-1 .ribbon-dis span,
.product-hover-card.basic-product.theme-product-1 .ribbon-color span,
.product-hover-card.basic-product.theme-product-1 .ribbon-soldout span {
    line-height: 1.2;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 11px !important;
    font-weight: 600;
    letter-spacing: 0;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 18px rgba(28, 21, 14, 0.08);
}

.product-hover-card.basic-product.theme-product-1 .ribbon-dis span {
    top: 12px;
    left: 12px;
    background: rgba(255, 248, 238, 0.92);
    color: #8c6a38;
    border: 1px solid rgba(186, 150, 92, 0.24);
}

.product-hover-card.basic-product.theme-product-1 .ribbon-color span {
    bottom: 12px;
    left: 12px;
    background: rgba(255, 255, 255, 0.82);
    color: #63533d;
    border: 1px solid rgba(99, 83, 61, 0.12);
}

.product-hover-card.basic-product.theme-product-1 .ribbon-soldout span {
    top: 12px;
    right: 12px;
    bottom: auto;
    background: rgba(23, 19, 14, 0.82);
    color: #fff;
    border: 1px solid rgba(23, 19, 14, 0.18);
}

.product-hover-card.basic-product.theme-product-1 .cart-info {
    top: 12px;
    right: 12px;
    z-index: 4;
    pointer-events: auto;
}

.product-hover-card.basic-product.theme-product-1 .cart-info .wishlist-icon,
.product-hover-card.basic-product.theme-product-1 .add-round-btn {
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.24s ease, transform 0.24s ease, visibility 0.24s ease, background-color 0.24s ease, color 0.24s ease;
}

.product-hover-card.basic-product.theme-product-1:hover .cart-info .wishlist-icon,
.product-hover-card.basic-product.theme-product-1:hover .add-round-btn,
.product-hover-card.basic-product.theme-product-1:focus-within .cart-info .wishlist-icon,
.product-hover-card.basic-product.theme-product-1:focus-within .add-round-btn {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.product-hover-card.basic-product.theme-product-1 .cart-info .wishlist-icon.is-active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.product-hover-card.basic-product.theme-product-1 .cart-info .wishlist-icon {
    width: 38px;
    height: 38px;
    background: rgba(255, 252, 247, 0.88);
    box-shadow: 0 10px 24px rgba(27, 20, 12, 0.12);
}

.product-hover-card.basic-product.theme-product-1 .cart-info .wishlist-icon i {
    color: var(--theme-color);
}

.product-hover-card.basic-product.theme-product-1 .add-round-btn {
    width: 38px;
    height: 38px;
    min-width: 38px;
    background: var(--theme-color);
    box-shadow: 0 10px 24px rgba(27, 20, 12, 0.16);
}

.product-hover-card.basic-product.theme-product-1 .add-round-btn i {
    font-size: 15px;
}

.product-hover-card.basic-product.theme-product-1 .cart-info .wishlist-icon:hover,
.product-hover-card.basic-product.theme-product-1 .add-round-btn:hover {
    background: #b99355;
}

.product-hover-card.basic-product.theme-product-1 .cart-info .wishlist-icon:hover i,
.product-hover-card.basic-product.theme-product-1 .add-round-btn:hover i {
    color: #fff;
}

@media (max-width: 767px) {
    .product-hover-card.basic-product.theme-product-1 {
        padding: 10px;
        border-radius: 14px;
    }

    .product-hover-card.basic-product.theme-product-1 .img-wrapper {
        border-radius: 12px;
        margin-bottom: 12px;
    }

    .product-hover-card.basic-product.theme-product-1 .product-title {
        font-size: 13px !important;
        min-height: 42px;
    }

    .product-hover-card.basic-product.theme-product-1 .price {
        font-size: 16px;
        gap: 6px;
    }

    .product-hover-card.basic-product.theme-product-1 .cart-info .wishlist-icon,
    .product-hover-card.basic-product.theme-product-1 .add-round-btn {
        opacity: 1;
        visibility: visible;
        transform: none;
    }
}
body .ui-radiobutton .ui-radiobutton-box.ui-state-active ,
body .ui-radiobutton .ui-radiobutton-box.ui-state-focus,
body .ui-radiobutton .ui-radiobutton-box.ui-state-active.ui-state-focus.ui-state-hover
{
    background-color: var(--theme-color);
    background: var(--theme-color);
    border-color: var(--theme-color);
}
body .ui-radiobutton .ui-radiobutton-box.ui-state-hover{
    border-color: var(--theme-color);
}
body .ui-radiobutton .ui-radiobutton-box.ui-state-focus{
    box-shadow: 0 0 0 .2rem #cecece;
}

/* Target the table rows of the radio group */
.ui-selectoneradio tbody tr {
    border-bottom: var(--bs-list-group-border-width) solid var(--bs-list-group-border-color); /* adds a line under each row */
    display: table;
    width: 100%;

}

/* Optional: remove border from the last row */
.ui-selectoneradio tbody tr:last-child {
    border-bottom: none;
}

/* Optional: padding inside each row */
.ui-selectoneradio tbody td {
    padding: 10px 0;
}

/* Optional: hover effect */
.ui-selectoneradio tbody tr:hover {
    background-color: #f9f9f9;
}
.ui-selectoneradio label{
    width: 80%
}

.news-container{
    padding-top: 14px;
    padding-bottom: 10px;
    background-color: #ed885124;
}

.icon-trend {
    color: var(--theme-color);
}

.breaking-news-section{
    position: relative;
}
.breaking-news-panel{
    position: relative;
    display: flex;
    align-items: stretch;
    overflow: hidden;
    min-height: 68px;
    border: 1px solid transparent;
    border-radius: 8px;
    background:
        linear-gradient(#fff, #fff) padding-box,
        linear-gradient(110deg, rgba(236, 137, 81, .42), rgba(255, 255, 255, .9), rgba(236, 137, 81, .18)) border-box;
    box-shadow: 0 18px 42px rgba(20, 16, 10, .10);
}
.breaking-news-panel:before{
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 96% 50%, rgba(236, 137, 81, .10), transparent 34%),
        linear-gradient(90deg, rgba(236, 137, 81, .11), rgba(255, 255, 255, 0) 32%, rgba(236, 137, 81, .04));
}
.breaking-news-panel:after{
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 28%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--theme-color), transparent);
    animation: breakingNewsAccent 5.6s ease-in-out infinite;
    pointer-events: none;
}
.breaking-news-badge{
    position: relative;
    z-index: 2;
    flex: 0 0 auto;
    width: 150px;
    padding: 0 15px;
    color: var(--theme-color);
    background:
        linear-gradient(135deg, rgba(236, 137, 81, .18), rgba(236, 137, 81, .08)),
        #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-size: 14px;
    font-weight: 800;
    overflow: hidden;
    border-left: 1px solid rgba(236, 137, 81, .20);
}
.breaking-news-badge:after{
    content: "";
    position: absolute;
    top: -20%;
    bottom: -20%;
    width: 38px;
    background: rgba(255, 255, 255, .44);
    transform: translateX(150px) rotate(18deg);
    animation: breakingNewsShine 5.2s ease-in-out infinite;
}
.breaking-news-badge i{
    position: relative;
    z-index: 1;
    width: 31px;
    height: 31px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--theme-color);
    font-size: 18px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 8px 20px rgba(236, 137, 81, .18);
}
.breaking-news-badge span{
    position: relative;
    z-index: 1;
}
.breaking-news-viewport{
    position: relative;
    z-index: 1;
    flex: 1;
    min-width: 0;
    min-height: 68px;
    overflow: hidden;
    background: transparent;
}
.breaking-news-viewport:before,
.breaking-news-viewport:after{
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 2;
    width: 54px;
    pointer-events: none;
}
.breaking-news-viewport:before{
    right: 0;
    background: linear-gradient(90deg, transparent, #fff);
}
.breaking-news-viewport:after{
    left: 0;
    background: linear-gradient(90deg, #fff, transparent);
}
.breaking-news-track{
    position: relative;
    width: 100%;
    height: 68px;
    min-width: 0;
    padding: 0;
    overflow: hidden;
}
.breaking-news-section.is-single-news .breaking-news-track{
    width: 100%;
    min-width: 0;
}
.breaking-news-section.is-single-news .breaking-news-item{
    width: auto;
    min-width: 0;
    max-width: none;
}
.breaking-news-item{
    position: absolute;
    inset: 10px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    min-width: 0;
    max-width: none;
    min-height: 48px;
    padding: 9px 14px 9px 15px;
    color: #222;
    text-decoration: none;
    border: 1px solid rgba(236, 137, 81, .18);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(255, 255, 255, .82));
    box-shadow: 0 10px 26px rgba(20, 16, 10, .06);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(26px) scale(.985);
    transition: opacity .48s ease, transform .58s cubic-bezier(.22, .8, .25, 1), visibility .48s ease, background-color .22s ease, border-color .22s ease, box-shadow .22s ease;
    will-change: opacity, transform;
}
.breaking-news-section:not(.is-ready) .breaking-news-item:first-child,
.breaking-news-item.is-active{
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}
.breaking-news-item.is-entering{
    opacity: 0;
    visibility: visible;
    transform: translateY(26px) scale(.985);
}
.breaking-news-item.is-exiting{
    opacity: 0;
    visibility: visible;
    transform: translateY(-26px) scale(.985);
    pointer-events: none;
}
.breaking-news-item:before{
    content: "";
    position: absolute;
    inset-inline-start: 0;
    top: 12px;
    bottom: 12px;
    width: 4px;
    border-radius: 4px;
    background: var(--theme-color);
    box-shadow: 0 0 14px rgba(236, 137, 81, .28);
}
.breaking-news-item:after{
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 8px;
    pointer-events: none;
    background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, .72) 45%, transparent 58%);
    transform: translateX(115%);
    transition: transform .65s ease;
}
.breaking-news-item:hover{
    color: #222;
    text-decoration: none;
    transform: translateY(-2px);
    border-color: rgba(236, 137, 81, .40);
    background: #fff;
    box-shadow: 0 16px 34px rgba(20, 16, 10, .10);
}
.breaking-news-item:hover:after{
    transform: translateX(-115%);
}
.breaking-news-copy{
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}
.breaking-news-title{
    flex: 0 0 auto;
    color: var(--theme-color);
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
    letter-spacing: 0;
}
.breaking-news-divider{
    width: 1px;
    height: 20px;
    background: rgba(236, 137, 81, .24);
}
.breaking-news-text{
    color: #252525;
    font-size: 15px;
    font-weight: 700;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.breaking-news-action{
    flex: 0 0 auto;
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--theme-color);
    border-radius: 50%;
    background: rgba(236, 137, 81, .12);
    border: 1px solid rgba(236, 137, 81, .20);
    box-shadow: 0 8px 18px rgba(236, 137, 81, .12);
    transition: transform .24s ease, background-color .24s ease, color .24s ease;
}
.breaking-news-item:hover .breaking-news-action{
    transform: translateX(-3px);
    color: #fff;
    background: var(--theme-color);
}
.breaking-news-action i{
    color: inherit;
    font-size: 18px;
}
.breaking-news-countdown{
    display: none;
}
.breaking-news-item.is-expired,
.breaking-news-section.is-empty{
    display: none;
}
@media (max-width: 767px){
    .breaking-news-section{
        margin-bottom: 28px !important;
    }
    .breaking-news-panel{
        min-height: 0;
        display: block;
        border-radius: 8px;
        margin-left: -12px;
        margin-right: -12px;
        border-left: 1px solid rgba(236, 137, 81, .16);
        border-right: 1px solid rgba(236, 137, 81, .16);
    }
    .breaking-news-badge{
        width: 100%;
        min-height: 46px;
        padding: 0 14px;
        justify-content: flex-start;
        font-size: 14px;
        border-left: 0;
        border-bottom: 1px solid rgba(236, 137, 81, .16);
    }
    .breaking-news-badge i{
        width: 29px;
        height: 29px;
        font-size: 17px;
    }
    .breaking-news-viewport:before,
    .breaking-news-viewport:after{
        width: 28px;
    }
    .breaking-news-viewport{
        min-height: 92px;
    }
    .breaking-news-track{
        height: 92px;
        padding: 0;
    }
    .breaking-news-item{
        inset: 10px 12px;
        min-width: 0;
        max-width: none;
        min-height: 70px;
        gap: 12px;
        padding: 12px 13px;
    }
    .breaking-news-copy{
        display: block;
        min-width: 0;
    }
    .breaking-news-title{
        display: block;
        margin-bottom: 5px;
        font-size: 12px;
    }
    .breaking-news-text{
        display: block;
        max-width: calc(100vw - 124px);
        font-size: 14px;
        line-height: 1.45;
        white-space: normal;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }
    .breaking-news-divider{
        display: none;
    }
    .breaking-news-action{
        width: 32px;
        height: 32px;
    }
}
@media (prefers-reduced-motion: reduce){
    .breaking-news-track,
    .breaking-news-badge:after,
    .breaking-news-panel:after{
        animation: none !important;
    }
    .breaking-news-item:after{
        display: none;
    }
}

.marquee {
    position: relative;
    overflow: hidden;
    background: #ed885124;
    border: 1px solid #ddd;
    padding: 12px 0;
    white-space: nowrap;
}
.marq-elemnt a {
    color: black;
}
/* Scrolling content */
.marquee-content {
    display: inline-block;
    padding-right: 100%; /* Start off-screen to the right */
    animation: marquee 30s linear infinite;
}

/* Pause on hover */
.marquee:hover .marquee-content {
    animation-play-state: paused;
}




.list-group-payment.ui-selectoneradio
{
    --bs-list-group-color: var(--bs-body-color);
    --bs-list-group-bg: var(--bs-body-bg);
    --bs-list-group-border-color: var(--bs-border-color);
    --bs-list-group-border-width: var(--bs-border-width);
    --bs-list-group-border-radius: var(--bs-border-radius);
    --bs-list-group-item-padding-x: 1rem;
    --bs-list-group-item-padding-y: 0.5rem;
    --bs-list-group-action-color: var(--bs-secondary-color);
    --bs-list-group-action-hover-color: var(--bs-emphasis-color);
    --bs-list-group-action-hover-bg: var(--bs-tertiary-bg);
    --bs-list-group-action-active-color: var(--bs-body-color);
    --bs-list-group-action-active-bg: var(--bs-secondary-bg);
    --bs-list-group-disabled-color: var(--bs-secondary-color);
    --bs-list-group-disabled-bg: var(--bs-body-bg);
    --bs-list-group-active-color: #fff;
    --bs-list-group-active-bg: #0d6efd;
    --bs-list-group-active-border-color: #0d6efd;
    display: flex;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
    border-radius: var(--bs-list-group-border-radius);
    background-color: var(--bs-body-bg);
    border-color: var(--bs-border-color);
    border-width: var(--bs-border-width);

}
.list-group-payment.ui-selectoneradio td {
    padding: 0.5rem 1rem;
    gap: 10px;
    border-radius: 0;
    padding-right: calc(12px + (24 - 12) * ((100vw - 320px) / (1920 - 320)));
    padding-left: calc(12px + (24 - 12) * ((100vw - 320px) / (1920 - 320)));
    background-color: #fff;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    cursor: pointer;

}
.list-group-payment.ui-selectoneradio label{
    width:100%;
    margin: 13px 16px 13px 8px;
}
.list-group-payment.ui-selectoneradio .ui-radiobutton
{
    margin: 13px 0 13px 0;
}
.form-control{
        border: 1px solid #808080 !important;
}

/* Keyframes for scrolling */
@keyframes marquee {
    0%   {
        transform: translateX(0);
    }
    100% {
        transform: translateX(100%);
    }
}

@keyframes breakingNewsShine {
    0%, 58% {
        transform: translateX(150px) rotate(18deg);
        opacity: 0;
    }
    68% {
        opacity: 1;
    }
    100% {
        transform: translateX(-150px) rotate(18deg);
        opacity: 0;
    }
}

@keyframes breakingNewsAccent {
    0%, 100% {
        transform: translateX(110%);
        opacity: .25;
    }
    50% {
        transform: translateX(-280%);
        opacity: 1;
    }
}

.currency-switch-form .ui-selectonemenu-label {
 
    padding-left: 2.357rem !important;
    padding-right: 1rem !important;
}

.premium-product-gallery {
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
    min-height: auto;
}

.premium-product-thumbs {
    order: 2;
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 0 4px;
    scroll-behavior: smooth;
    scrollbar-gutter: stable;
}

.premium-product-thumb {
    flex: 0 0 68px;
    width: 68px;
    min-height: 58px;
    border: 0;
    border-radius: 14px;
    padding: 0;
    background: transparent;
    box-shadow: none;
    overflow: hidden;
    transition: transform 0.24s ease, box-shadow 0.24s ease, opacity 0.24s ease;
}

.premium-product-thumb:hover,
.premium-product-thumb.is-active {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(29, 21, 13, 0.14);
}

.premium-thumb-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.premium-product-stage {
    position: relative;
    order: 1;
    flex: 1;
    width: 100%;
    min-width: 0;
}

.premium-product-viewer {
    position: relative;
    min-height: 560px;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(30, 22, 14, 0.08);
    background: linear-gradient(145deg, #faf6f0 0%, #efe5d9 100%);
    box-shadow: 0 28px 60px rgba(29, 21, 13, 0.1);
}

.premium-product-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.38s ease, transform 0.6s ease;
    transform: scale(1.015);
}

.premium-product-slide.is-active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.premium-product-backdrop {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(18px);
    transform: scale(1.12);
    opacity: 0.8;
}

.premium-product-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 253, 249, 0.18) 0%, rgba(255, 253, 249, 0.02) 100%);
}

.premium-product-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    padding: 0;
    z-index: 1;
}

.premium-gallery-arrow {
    position: absolute;
    right: 18px;
    z-index: 5;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 252, 247, 0.88);
    box-shadow: 0 14px 26px rgba(29, 21, 13, 0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #221a12;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.premium-gallery-arrow:hover {
    transform: scale(1.05);
    background: rgba(255, 252, 247, 0.98);
}

.premium-gallery-prev {
    top: 18px;
}

.premium-gallery-next {
    bottom: 18px;
}

.premium-gallery-arrow i {
    font-size: 24px;
    line-height: 1;
}

.premium-product-gallery.is-single-slide .premium-gallery-arrow,
.premium-product-gallery.is-single-slide .premium-product-thumbs {
    display: none;
}

.premium-zoom-lens {
    position: absolute;
    top: 0;
    left: 0;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.82);
    box-shadow: 0 16px 40px rgba(29, 21, 13, 0.22);
    background-repeat: no-repeat;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    z-index: 6;
    transition: opacity 0.18s ease, visibility 0.18s ease;
}

.premium-zoom-lens.is-visible {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 991px) {
    .premium-product-gallery {
        flex-direction: column;
        min-height: auto;
    }

    .premium-product-stage {
        order: 1;
    }

    .premium-product-thumbs {
        order: 2;
        width: 100%;
        flex-direction: row;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 0 0 2px;
    }

    .premium-product-thumb {
        min-width: 58px;
        min-height: 58px;
        border-radius: 14px;
    }

    .premium-product-viewer {
        min-height: 440px;
        border-radius: 24px;
    }

    .premium-gallery-arrow {
        display: none;
    }
}

@media (max-width: 577px) {
    .premium-product-viewer {
        min-height: 360px;
        border-radius: 20px;
    }

    .premium-zoom-lens {
        display: none;
    }
}

@media (min-width: 992px) {
    .premium-product-gallery {
        align-items: stretch;
        min-height: auto;
    }

    .premium-product-thumbs {
        flex: 0 0 auto;
        width: 100%;
        height: auto;
        max-height: none;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 0 0 4px;
    }

    .premium-product-thumb {
        flex: 0 0 auto;
        width: 74px;
        min-height: 58px;
        border-radius: 14px;
    }

    .premium-product-stage {
        height: 640px;
    }

    .premium-product-viewer {
        height: 640px;
        min-height: 640px;
    }

}

.category-hero-banner-section {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
}

.category-hero-banner {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(35, 25, 12, 0.08);
    box-shadow: 0 14px 30px rgba(35, 25, 12, 0.1);
}

.category-hero-banner .img-part {
    max-height: 260px;
}

.category-hero-banner .img-part img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.category-hero-banner .contain-banner {
    top: auto;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    text-align: center;
    padding: 14px 18px;
    background: linear-gradient(180deg, rgba(17, 12, 7, 0) 0%, rgba(17, 12, 7, 0.62) 100%);
}

.category-hero-banner .contain-banner h4 {
    color: #fff;
    margin-bottom: 0;
    font-size: calc(16px + (22 - 16) * ((100vw - 320px) / (1920 - 320)));
    font-weight: 700;
}

.cat-subnav-section {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
}

.cat-subnav-wrap {
    border: 1px solid rgba(37, 28, 17, 0.08);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(37, 28, 17, 0.08);
    padding: 12px;
}

.cat-subnav-title {
    margin: 0 0 10px;
    font-size: 14px;
    font-weight: 700;
    color: #5b5146;
}

.cat-subnav-scroll {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    overflow-x: auto;
    white-space: nowrap;
}

.cat-subnav-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(124, 97, 58, 0.2);
    background: #fefbf5;
    border-radius: 999px;
    padding: 6px 12px 6px 10px;
    min-height: 42px;
    color: #2f271f !important;
    transition: border-color .22s ease, color .22s ease, background-color .22s ease, box-shadow .22s ease;
}

.cat-subnav-link:hover,
.cat-subnav-link:focus {
    border-color: var(--theme-color);
    color: var(--theme-color) !important;
    background: #fff;
    box-shadow: 0 8px 18px rgba(199, 166, 106, 0.22);
}

.cat-subnav-thumb {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    overflow: hidden;
    background: #f2f2f2;
    border: 1px solid rgba(124, 97, 58, 0.18);
    flex: 0 0 28px;
}

.cat-subnav-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cat-subnav-text {
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
}

@media (max-width: 991px) {
    .category-hero-banner .img-part,
    .category-hero-banner .img-part img {
        height: 210px;
        max-height: 210px;
    }

    .cat-subnav-wrap {
        border-radius: 14px;
        padding: 10px;
    }

    .cat-subnav-link {
        min-height: 38px;
        padding: 5px 11px 5px 9px;
    }

    .cat-subnav-thumb {
        width: 24px;
        height: 24px;
        flex-basis: 24px;
    }
}

@media (max-width: 577px) {
    .category-hero-banner .img-part,
    .category-hero-banner .img-part img {
        height: 165px;
        max-height: 165px;
    }

    .category-hero-banner .contain-banner {
        padding: 10px 12px;
    }
}

.fixed-whatsapp-btn {
    position: fixed;
    right: 16px;
    bottom: calc(env(safe-area-inset-bottom, 0px) + 64px);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.28);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(135deg, #2bd66b 0%, #1bb95a 100%);
    box-shadow: 0 12px 30px rgba(16, 112, 53, 0.35);
    z-index: 1100;
    isolation: isolate;
    overflow: visible;
    opacity: 0;
    transform: translateY(16px) scale(0.88);
    animation: waBtnIntro 0.56s cubic-bezier(0.2, 0.8, 0.22, 1) 0.12s forwards;
    transition: transform 0.24s ease, box-shadow 0.24s ease, filter 0.24s ease;
}

.scroll-top-btn {
    position: fixed;
    right: 16px;
    bottom: calc(env(safe-area-inset-bottom, 0px) + 132px);
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: #221914;
    box-shadow: 0 14px 30px rgba(34, 25, 20, 0.22);
    z-index: 1095;
    opacity: 0;
    visibility: hidden;
    transform: translateY(14px) scale(0.92);
    transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease, background-color 0.22s ease;
}

.scroll-top-btn.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.scroll-top-btn:hover,
.scroll-top-btn:focus {
    background: #4a3527;
}

.scroll-top-btn i {
    font-size: 24px;
    line-height: 1;
}

.fixed-whatsapp-btn::before {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(43, 214, 107, 0.28) 0%, rgba(43, 214, 107, 0.12) 48%, rgba(43, 214, 107, 0) 72%);
    opacity: 0;
    transform: scale(0.86);
    transition: opacity 0.28s ease, transform 0.28s ease;
    pointer-events: none;
    z-index: -1;
}

.fixed-whatsapp-btn::after {
    content: attr(data-label);
    position: absolute;
    right: calc(100% + 10px);
    top: 50%;
    transform: translateY(-50%) translateX(8px);
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(17, 20, 24, 0.94);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0;
    white-space: nowrap;
    direction: rtl;
    box-shadow: 0 12px 28px rgba(10, 13, 15, 0.28);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.26s ease, visibility 0.22s linear;
}

.fixed-whatsapp-btn i {
    font-size: 30px;
    line-height: 1;
    transition: transform 0.26s ease;
}

.fixed-whatsapp-btn:hover,
.fixed-whatsapp-btn:focus {
    color: #fff;
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 18px 36px rgba(16, 112, 53, 0.44);
    filter: brightness(1.06);
}

.fixed-whatsapp-btn:hover::before,
.fixed-whatsapp-btn:focus::before {
    opacity: 1;
    transform: scale(1.08);
}

.fixed-whatsapp-btn:hover::after,
.fixed-whatsapp-btn:focus::after {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

.fixed-whatsapp-btn:hover i,
.fixed-whatsapp-btn:focus i {
    transform: translateY(-1px) scale(1.04);
}

.fixed-whatsapp-btn:focus-visible {
    outline: 0;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.66), 0 18px 36px rgba(16, 112, 53, 0.44);
}

@keyframes waBtnIntro {
    0% {
        opacity: 0;
        transform: translateY(18px) scale(0.82);
    }
    68% {
        opacity: 1;
        transform: translateY(-2px) scale(1.03);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 767px) {
    .fixed-whatsapp-btn {
        right: 12px;
        bottom: calc(env(safe-area-inset-bottom, 0px) + 58px);
        width: 52px;
        height: 52px;
    }

    .fixed-whatsapp-btn i {
        font-size: 28px;
    }

    .scroll-top-btn {
        right: 12px;
        bottom: calc(env(safe-area-inset-bottom, 0px) + 118px);
        width: 44px;
        height: 44px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .fixed-whatsapp-btn {
        animation: none;
        opacity: 1;
        transform: none;
        transition: none;
    }

    .scroll-top-btn {
        transition: none;
    }

    .fixed-whatsapp-btn::before,
    .fixed-whatsapp-btn::after,
    .fixed-whatsapp-btn i {
        transition: none;
    }
}

.order-thank-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(190, 145, 45, 0.24);
    border-radius: 6px;
    padding: 42px 22px 38px;
    background:
        radial-gradient(circle at 50% 0%, rgba(248, 220, 118, 0.18) 0%, rgba(248, 220, 118, 0) 34%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 250, 238, 0.99) 43%, rgba(255, 255, 255, 0.96) 100%);
    box-shadow: 0 22px 58px rgba(60, 39, 9, 0.13);
    isolation: isolate;
    transform-origin: center top;
    animation: orderThankEnter 0.78s cubic-bezier(0.2, 0.8, 0.22, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bank-transfer-box {
    border: 1px solid rgba(190, 145, 45, 0.28);
    border-radius: 8px;
    padding: 16px;
    background: #fffaf0;
    color: #2c241b;
}

.bank-transfer-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-weight: 800;
    color: #7b5716;
}

.bank-transfer-title i {
    font-size: 22px;
}

.bank-transfer-box p {
    margin-bottom: 10px;
    line-height: 1.8;
}

.bank-transfer-box ul {
    margin: 0;
    padding: 0 18px 0 0;
}

.bank-transfer-box li {
    margin-bottom: 4px;
}

.whatsapp-prefix-select {
    max-width: 180px;
}

.bank-free-shipping {
    color: #198754;
    font-weight: 800;
}

.site-ad-section {
    padding: 14px 0;
}

.site-ad-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 14px;
}

.site-ad-card {
    overflow: hidden;
    border-radius: 8px;
    background: #fff;
    border: 1px solid rgba(37, 28, 17, 0.08);
}

.site-ad-card img {
    width: 100%;
    max-height: 220px;
    object-fit: cover;
    display: block;
}

.site-floating-ad {
    position: fixed;
    inset: 0;
    z-index: 2147483000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: max(18px, env(safe-area-inset-top)) max(18px, env(safe-area-inset-right)) max(18px, env(safe-area-inset-bottom)) max(18px, env(safe-area-inset-left));
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .32s ease, visibility .32s ease;
    direction: rtl;
}

.site-floating-ad::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(12, 9, 6, 0.72), rgba(38, 27, 13, 0.58)),
        rgba(0, 0, 0, 0.34);
    backdrop-filter: blur(7px) saturate(112%);
    opacity: 0;
    transition: opacity .32s ease;
}

.site-floating-ad.is-ready {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.site-floating-ad.is-ready::before {
    opacity: 1;
}

.site-floating-ad.is-dismissed {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.site-floating-ad.is-hidden {
    display: none;
}

body.floating-ad-open {
    overflow: hidden;
}

.site-floating-ad-shell {
    position: relative;
    z-index: 1;
    width: min(760px, calc(100vw - 44px));
    max-height: calc(100svh - 44px);
    padding: 10px;
    border-radius: 8px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 249, 234, 0.98) 56%, rgba(229, 202, 133, 0.98) 100%);
    border: 1px solid rgba(234, 183, 39, 0.62);
    box-shadow:
        0 34px 90px rgba(0, 0, 0, 0.48),
        0 0 0 1px rgba(255, 255, 255, 0.18) inset;
    opacity: 0;
    transform: translateY(24px) scale(0.92);
    isolation: isolate;
}

.site-floating-ad-shell::before {
    content: "";
    position: absolute;
    inset: 7px;
    z-index: -1;
    border-radius: 6px;
    border: 1px solid rgba(66, 45, 12, 0.12);
    pointer-events: none;
}

.site-floating-ad.is-ready .site-floating-ad-shell {
    animation: floatingAdIn .52s cubic-bezier(.18, .82, .25, 1) both;
}

.site-floating-ad.is-dismissed .site-floating-ad-shell {
    animation: floatingAdOut .26s ease both;
}

.site-floating-ad-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 100%;
    gap: 12px;
    max-height: calc(100svh - 64px);
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0;
    border-radius: 6px;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    overscroll-behavior: contain;
    scrollbar-width: none;
}

.site-floating-ad-track::-webkit-scrollbar {
    display: none;
}

.site-floating-ad-card {
    position: relative;
    scroll-snap-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 160px;
    border-radius: 6px;
    overflow: hidden;
    background:
        linear-gradient(135deg, #0f0c08 0%, #251a0d 100%);
    border: 1px solid rgba(113, 78, 20, 0.34);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.05) inset,
        0 18px 42px rgba(60, 38, 4, 0.2);
}

.site-floating-ad-card a,
.site-floating-ad-card > span {
    display: block;
    width: 100%;
}

.site-floating-ad-card::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0) 38%),
        linear-gradient(110deg, rgba(255, 255, 255, 0) 18%, rgba(255, 224, 118, 0.22) 48%, rgba(255, 255, 255, 0) 76%);
    transform: translateX(100%);
    animation: floatingAdShine 1.45s ease-out .38s both;
}

.site-floating-ad-card img {
    width: 100%;
    height: auto;
    max-height: min(76svh, 640px);
    object-fit: contain;
    display: block;
    background: transparent;
}

.site-floating-ad-card iframe,
.site-floating-ad-card video {
    max-width: 100%;
    max-height: min(76svh, 640px);
    display: block;
}

.site-floating-ad-close {
    position: absolute;
    top: -16px;
    left: -16px;
    z-index: 2;
    width: 42px;
    height: 42px;
    min-height: 42px !important;
    border: 1px solid rgba(66, 45, 12, 0.2);
    border-radius: 50%;
    background: #fff;
    color: #1d160d;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.26);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: transform .18s ease, background-color .18s ease, color .18s ease;
}

.site-floating-ad-close:hover,
.site-floating-ad-close:focus {
    background: var(--theme-color);
    color: #1d160d;
    transform: scale(1.05);
    outline: none;
}

.site-floating-ad-close i {
    font-size: 20px;
    line-height: 1;
}

@keyframes floatingAdIn {
    0% {
        opacity: 0;
        transform: translateY(26px) scale(0.9);
    }
    70% {
        opacity: 1;
        transform: translateY(-4px) scale(1.01);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes floatingAdOut {
    0% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateY(16px) scale(0.96);
    }
}

@keyframes floatingAdShine {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .site-floating-ad,
    .site-floating-ad::before,
    .site-floating-ad-close {
        transition: none;
    }

    .site-floating-ad.is-ready .site-floating-ad-shell,
    .site-floating-ad.is-dismissed .site-floating-ad-shell,
    .site-floating-ad-card::after {
        animation: none;
    }

    .site-floating-ad.is-ready .site-floating-ad-shell {
        opacity: 1;
        transform: none;
    }
}

.contact-breadcrumb {
    margin-bottom: 0;
}

.contact-page-section {
    padding: 54px 0 32px;
    background: #fbfaf7;
}

.contact-page-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
    gap: 22px;
    align-items: stretch;
}

.contact-info-panel,
.contact-details-panel,
.contact-form-card,
.contact-map-panel,
.contact-disabled-card {
    border-radius: 8px;
    border: 1px solid rgba(37, 28, 17, 0.1);
    background: #fff;
    box-shadow: 0 12px 34px rgba(45, 35, 22, 0.08);
}

.contact-info-panel {
    padding: 34px 32px;
    background: linear-gradient(135deg, #211c16 0%, #3a2f22 100%);
    color: #fff;
    min-height: 310px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-kicker {
    display: inline-block;
    color: #eab727;
    font-weight: 800;
    margin-bottom: 12px;
}

.contact-info-panel h1 {
    color: #fff;
    margin-bottom: 12px;
    font-size: 32px;
    line-height: 1.35;
}

.contact-info-panel p {
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.9;
    margin-bottom: 24px;
}

.contact-action-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.contact-page-points {
    display: grid;
    gap: 12px;
    margin-top: 26px;
}

.contact-page-point {
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 12px;
    align-items: start;
    padding: 13px 14px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.07);
}

.contact-page-point > i {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #eab727;
    background: rgba(234, 183, 39, 0.12);
    font-size: 21px;
}

.contact-page-point h3 {
    color: #fff;
    font-size: 15px;
    margin: 0 0 5px;
}

.contact-page-point p {
    margin: 0;
    font-size: 14px;
    line-height: 1.8;
}

.contact-action-btn,
.contact-secondary-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 44px;
}

.contact-secondary-btn {
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.contact-details-panel {
    padding: 24px 22px;
    display: grid;
    gap: 14px;
}

.contact-detail-item {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 12px;
    align-items: start;
}

.contact-detail-item > i {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #7b5716;
    background: #fff4cf;
    font-size: 22px;
}

.contact-detail-item h3,
.contact-social-panel h3 {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 7px;
    color: #261f18;
}

.contact-detail-item p {
    margin: 0;
    color: #5d5349;
    line-height: 1.8;
}

.contact-mail-link {
    display: inline-block;
    color: var(--theme-color);
    margin-top: 4px;
    overflow-wrap: anywhere;
}

.contact-social-links,
.attari-footer-social {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.contact-social-links a,
.attari-footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #2d241a;
    background: #fff4cf;
    transition: transform .2s ease, background-color .2s ease, color .2s ease;
}

.contact-social-links a:hover,
.attari-footer-social a:hover {
    transform: translateY(-2px);
    background: var(--theme-color);
    color: #fff;
}

.contact-form-section {
    padding: 18px 0 58px;
    background: #fbfaf7;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.75fr);
    gap: 22px;
    align-items: stretch;
}

.contact-form-card:only-child {
    grid-column: 1 / -1;
    width: min(760px, 100%);
    margin: 0 auto;
}

.contact-map-panel {
    overflow: hidden;
    min-height: 440px;
}

.contact-map-panel iframe {
    width: 100%;
    height: 100%;
    min-height: 440px;
    border: 0;
    display: block;
}

.contact-form-card {
    padding: 26px;
}

.contact-form-card h2 {
    font-size: 24px;
    margin-bottom: 8px;
    color: #241d16;
}

.contact-form-card > p {
    margin-bottom: 18px;
    color: #6b6258;
    line-height: 1.75;
}

.contact-field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.contact-field {
    margin-bottom: 13px;
}

.contact-field label {
    display: block;
    color: #312820;
    font-weight: 700;
    margin-bottom: 6px;
}

.contact-field-input {
    width: 100%;
    min-height: 44px;
    border: 1px solid rgba(37, 28, 17, 0.16);
    border-radius: 8px;
    background: #fff;
    color: #2d261f;
    padding: 10px 12px;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.contact-field-input:focus {
    border-color: #d6a82a;
    box-shadow: 0 0 0 3px rgba(234, 183, 39, 0.16);
}

.contact-message-input {
    min-height: 126px;
    resize: vertical;
}

.contact-field-error {
    display: block;
    color: #b42318;
    font-size: 13px;
    margin-top: 5px;
}

.contact-submit-btn {
    width: 100%;
    min-height: 46px;
}

.contact-honeypot {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
    left: -9999px !important;
}

.contact-disabled-card {
    max-width: 760px;
    margin: 0 auto;
    padding: 36px 24px;
    text-align: center;
}

.contact-disabled-card i {
    font-size: 42px;
    color: #b8871d;
}

.contact-disabled-card h1 {
    font-size: 26px;
    margin: 12px 0 8px;
}

.contact-disabled-card p {
    color: #6b6258;
    margin: 0;
}

.policy-breadcrumb {
    background: #faf7f0;
}

.policy-page-section {
    padding: 56px 0 68px;
    background:
        linear-gradient(180deg, #fff 0%, #fbf7ef 100%);
}

.policy-hero-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 112px;
    gap: 28px;
    align-items: center;
    padding: 34px 36px;
    margin-bottom: 28px;
    border: 1px solid rgba(145, 126, 95, 0.18);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 14px 38px rgba(24, 19, 12, 0.07);
}

.policy-page-label {
    display: block;
    color: #9a7730;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 10px;
}

.policy-hero-panel h1 {
    margin: 0 0 12px;
    font-size: 34px;
    font-weight: 800;
    color: #241d14;
}

.policy-hero-panel p {
    max-width: 760px;
    margin: 0;
    color: #6d6254;
    font-size: 16px;
    line-height: 1.95;
}

.policy-hero-icon {
    width: 112px;
    height: 112px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(145deg, rgba(234, 183, 39, 0.18), rgba(234, 183, 39, 0.06));
    color: #c89416;
    font-size: 48px;
}

.policy-content-grid {
    display: grid;
    grid-template-columns: minmax(240px, 0.36fr) minmax(0, 1fr);
    gap: 24px;
    align-items: start;
}

.policy-side-panel,
.policy-card {
    border: 1px solid rgba(145, 126, 95, 0.16);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(24, 19, 12, 0.055);
}

.policy-side-panel {
    position: sticky;
    top: 106px;
    padding: 24px;
}

.policy-side-panel h3 {
    margin: 0 0 16px;
    color: #241d14;
    font-size: 18px;
    font-weight: 800;
}

.policy-side-panel ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.policy-side-panel li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: #63594f;
    line-height: 1.8;
}

.policy-side-panel li + li {
    margin-top: 12px;
}

.policy-side-panel i {
    color: #c89416;
    margin-top: 5px;
}

.policy-main-panel {
    display: grid;
    gap: 16px;
}

.policy-card {
    padding: 26px 28px;
}

.policy-card h2 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 12px;
    color: #241d14;
    font-size: 20px;
    font-weight: 800;
}

.policy-card h2 i {
    color: #c89416;
    font-size: 22px;
}

.policy-card p {
    margin: 0;
    color: #6d6254;
    font-size: 15px;
    line-height: 1.95;
}

.attari-footer {
    padding: 42px 0 16px;
    background: #16130f;
    color: rgba(255, 255, 255, 0.78);
    border-top: 1px solid rgba(234, 183, 39, 0.18);
    direction: rtl;
}

.attari-footer-grid {
    display: grid;
    grid-template-columns: minmax(320px, 1.35fr) minmax(220px, 0.75fr) minmax(260px, 0.9fr);
    gap: 34px;
    align-items: start;
}

.attari-footer-logo img {
    width: 148px;
    max-width: 100%;
    margin-bottom: 18px;
}

.attari-footer-brand p {
    max-width: 460px;
    line-height: 1.95;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.66);
}

.attari-footer h3 {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 18px;
    padding-bottom: 10px;
    position: relative;
}

.attari-footer h3::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 42px;
    height: 2px;
    border-radius: 999px;
    background: #eab727;
}

.attari-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.attari-footer li {
    margin-bottom: 11px;
}

.attari-footer a {
    color: rgba(255, 255, 255, 0.78);
    transition: color 0.2s ease, transform 0.2s ease, background-color 0.2s ease;
}

.attari-footer a:hover {
    color: #eab727;
}

.attari-footer-links {
    display: block;
}

.attari-footer-links li {
    display: block;
    width: 100%;
}

.attari-footer-links a {
    display: flex;
    align-items: center;
    gap: 9px;
    width: fit-content;
    min-height: 30px;
    padding: 2px 0;
    line-height: 1.6;
}

.attari-footer-links i {
    color: #eab727;
}

.attari-footer-links a:hover {
    transform: translateX(-3px);
}

.attari-footer-contact li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.72);
}

.attari-footer-contact i {
    color: #eab727;
    flex: 0 0 22px;
    margin-top: 4px;
    font-size: 17px;
}

.attari-footer-contact span,
.attari-footer-contact a {
    overflow-wrap: anywhere;
}

.attari-footer-social {
    margin-top: 22px;
}

.attari-footer-social a {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.attari-footer-social a:hover {
    background: #eab727;
    color: #181512;
    border-color: #eab727;
}

.attari-footer-bottom {
    margin-top: 34px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
}

@media (max-width: 991px) {
    .contact-page-grid,
    .contact-form-grid,
    .attari-footer-grid,
    .policy-hero-panel,
    .policy-content-grid {
        grid-template-columns: 1fr;
    }

    .policy-page-section {
        padding: 36px 0 48px;
    }

    .policy-hero-panel,
    .policy-card,
    .policy-side-panel {
        padding: 24px 20px;
    }

    .policy-hero-panel h1 {
        font-size: 28px;
    }

    .policy-hero-icon {
        width: 88px;
        height: 88px;
        font-size: 38px;
        justify-self: center;
    }

    .policy-side-panel {
        position: static;
    }

    .attari-footer {
        padding-top: 34px;
    }

    .attari-footer-brand,
    .attari-footer-col {
        text-align: center;
    }

    .attari-footer-brand p {
        margin-inline: auto;
    }

    .attari-footer h3::after {
        right: 50%;
        transform: translateX(50%);
    }

    .attari-footer-links a,
    .attari-footer-contact li {
        justify-content: center;
    }

    .attari-footer-links a {
        margin-inline: auto;
        text-align: center;
    }

    .attari-footer-contact li {
        width: fit-content;
        margin-inline: auto;
        align-items: center;
        text-align: center;
    }

    .attari-footer-contact i {
        margin-top: 0;
    }

    .attari-footer-social {
        justify-content: center;
    }

    .contact-info-panel {
        padding: 26px 20px;
    }

    .contact-info-panel h1 {
        font-size: 26px;
    }

    .contact-map-panel,
    .contact-map-panel iframe {
        min-height: 320px;
    }

    .contact-field-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .site-floating-ad {
        padding: 12px;
    }

    .site-floating-ad-shell {
        width: calc(100vw - 22px);
        max-height: calc(100svh - 22px);
        padding: 7px;
    }

    .site-floating-ad-track {
        max-height: calc(100svh - 36px);
    }

    .site-floating-ad-card img {
        max-height: calc(100svh - 96px);
    }

    .site-floating-ad-close {
        top: 10px;
        left: 10px;
        width: 38px;
        height: 38px;
        min-height: 38px !important;
    }
}

.order-thank-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(112deg, rgba(255, 255, 255, 0) 25%, rgba(244, 203, 80, 0.25) 48%, rgba(255, 255, 255, 0) 72%);
    transform: translateX(-75%);
    animation: orderThankShine 1.55s ease-out 0.22s both;
    pointer-events: none;
    z-index: -1;
}

.order-thank-card::after {
    content: "";
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 0;
    height: 4px;
    background: linear-gradient(90deg, rgba(234, 183, 39, 0), #f8dc76 22%, #b77d17 50%, #f6d35a 78%, rgba(234, 183, 39, 0));
    transform: scaleX(0);
    animation: orderThankLine 0.8s cubic-bezier(0.2, 0.8, 0.22, 1) 0.5s forwards;
    transform-origin: center;
}

.order-thank-icon {
    position: relative;
    width: 94px;
    height: 94px;
    margin: 0 auto 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff8d4;
    background:
        radial-gradient(circle at 30% 22%, rgba(255, 255, 255, 0.94) 0%, rgba(255, 247, 196, 0.42) 22%, rgba(255, 247, 196, 0) 38%),
        linear-gradient(135deg, #fff0a9 0%, #f0bd30 36%, #b87913 72%, #f7d45d 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.75),
        inset 0 -12px 22px rgba(91, 55, 7, 0.22),
        0 17px 36px rgba(174, 119, 17, 0.29);
    animation: orderThankIcon 0.72s cubic-bezier(0.2, 0.8, 0.22, 1) 0.08s both;
    isolation: isolate;
}

.order-thank-icon::before {
    content: "";
    position: absolute;
    inset: -9px;
    border-radius: 50%;
    border: 1px solid rgba(214, 160, 34, 0.36);
    opacity: 0;
    transform: scale(0.82);
    animation: orderThankRing 1.4s cubic-bezier(0.2, 0.8, 0.22, 1) 0.36s both;
}

.order-thank-icon::after {
    content: "";
    position: absolute;
    inset: 8px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.18) 18%, rgba(255, 255, 255, 0) 35%);
    opacity: 0.9;
    pointer-events: none;
}

.order-thank-icon > i {
    position: relative;
    z-index: 3;
    font-size: 50px !important;
    line-height: 1;
    color: #fff7c6;
    text-shadow:
        0 2px 8px rgba(83, 52, 8, 0.34),
        0 0 13px rgba(255, 246, 188, 0.58);
}

.order-thank-gold-bars {
    position: absolute;
    left: 50%;
    bottom: -10px;
    width: 92px;
    height: 30px;
    transform: translateX(-50%);
    z-index: -1;
    pointer-events: none;
}

.order-thank-gold-bars span {
    position: absolute;
    bottom: 2px;
    width: 50px;
    height: 19px;
    border-radius: 5px 5px 4px 4px;
    border: 1px solid rgba(116, 73, 10, 0.22);
    background:
        linear-gradient(180deg, #fff7c2 0%, #f8d356 35%, #d79a1d 68%, #9f6610 100%);
    box-shadow:
        inset 0 2px 0 rgba(255, 255, 255, 0.78),
        inset 0 -8px 11px rgba(95, 57, 7, 0.24),
        0 10px 18px rgba(98, 61, 10, 0.24);
}

.order-thank-gold-bars span::after {
    content: "";
    position: absolute;
    left: 10px;
    right: 11px;
    bottom: 5px;
    height: 1px;
    border-radius: 2px;
    background: rgba(83, 50, 7, 0.2);
}

.order-thank-gold-bars span::before {
    content: "";
    position: absolute;
    left: 9px;
    right: 9px;
    top: 5px;
    height: 2px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.54);
}

.order-thank-gold-bars span:first-child {
    left: 6px;
    bottom: 2px;
    transform: rotate(-8deg);
}

.order-thank-gold-bars span:nth-child(2) {
    left: auto;
    right: 6px;
    bottom: 2px;
    transform: rotate(8deg);
    z-index: auto;
}

.order-thank-check-badge {
    position: absolute;
    right: 4px;
    bottom: 2px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.86);
    color: #5b3707;
    background: linear-gradient(135deg, #fff9db 0%, #f1c649 100%);
    box-shadow: 0 8px 18px rgba(78, 48, 7, 0.22);
    z-index: 2;
    animation: orderThankBadge 0.58s cubic-bezier(0.2, 0.8, 0.22, 1) 0.74s both;
}

.order-thank-check-badge i {
    font-size: 20px !important;
    line-height: 1;
    font-weight: 700;
}

.order-thank-gold-emblem {
    position: relative;
    width: 208px;
    height: 174px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 22px 28px rgba(72, 46, 7, 0.18));
    animation: orderThankEmblemEnter 0.72s cubic-bezier(0.2, 0.8, 0.22, 1) 0.08s both;
}

.order-thank-emblem-svg {
    width: 100%;
    height: 100%;
    overflow: visible;
    transform: perspective(560px) rotateX(7deg);
    transform-origin: 50% 82%;
}

.order-emblem-shadow {
    fill: rgba(72, 46, 7, 0.19);
    filter: blur(1px);
}

.order-emblem-halo {
    fill: none;
    stroke: rgba(236, 186, 50, 0.52);
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-dasharray: 170;
    stroke-dashoffset: 170;
    animation: orderThankHaloDraw 1.05s cubic-bezier(0.2, 0.8, 0.22, 1) 0.32s forwards;
}

.order-emblem-ingot {
    stroke-linejoin: round;
    transform-origin: center;
}

.order-emblem-ingot-back {
    opacity: 0.94;
    filter: drop-shadow(0 8px 10px rgba(82, 50, 6, 0.12));
}

.order-emblem-ingot-front {
    filter: drop-shadow(0 15px 18px rgba(82, 50, 6, 0.26));
}

.order-ingot-top {
    fill: url(#emblemGoldTop);
    stroke: rgba(255, 242, 180, 0.55);
    stroke-width: 1.15;
}

.order-ingot-front {
    fill: url(#emblemGoldSide);
    stroke: rgba(73, 43, 5, 0.28);
    stroke-width: 1.15;
}

.order-ingot-side {
    fill: #a6640d;
    stroke: rgba(73, 43, 5, 0.28);
    stroke-width: 1.15;
}

.order-ingot-line {
    fill: none;
    stroke: rgba(255, 255, 255, 0.54);
    stroke-width: 2;
    stroke-linecap: round;
}

.order-emblem-diamond {
    filter: drop-shadow(0 12px 16px rgba(104, 66, 8, 0.28));
}

.order-diamond-base {
    fill: url(#emblemDiamond);
}

.order-diamond-facet {
    fill: none;
    stroke: rgba(70, 45, 8, 0.66);
    stroke-width: 1.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.order-diamond-shine {
    fill: rgba(255, 255, 255, 0.72);
    opacity: 0;
    transform: translateX(-34px) rotate(20deg);
    transform-origin: 96px 48px;
    animation: orderThankEmblemShine 1.25s ease-out 0.72s both;
}

.order-thank-gold-emblem .order-thank-check-badge {
    right: 24px;
    bottom: 18px;
    z-index: 5;
}

.order-thank-copy {
    position: relative;
    z-index: 2;
    width: 100%;
}

.success-text.order-thank-card h2 {
    margin: 0;
    color: #2f271f;
    font-size: 30px;
    line-height: 1.45;
    font-weight: 800;
    letter-spacing: 0;
    animation: orderThankTextIn 0.62s cubic-bezier(0.2, 0.8, 0.22, 1) 0.22s both;
}

.success-text.order-thank-card p {
    margin-bottom: 0;
}

.order-thank-message {
    margin-top: 10px !important;
    color: #6b5636;
    font-size: 17px;
    line-height: 1.8;
    font-weight: 600;
    animation: orderThankTextIn 0.62s cubic-bezier(0.2, 0.8, 0.22, 1) 0.34s both;
}

@keyframes orderThankEnter {
    0% {
        opacity: 0;
        transform: translateY(18px) scale(0.985);
        box-shadow: 0 10px 28px rgba(38, 28, 15, 0.07);
    }
    70% {
        opacity: 1;
        transform: translateY(-2px) scale(1.002);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes orderThankIcon {
    0% {
        opacity: 0;
        transform: translateY(8px) scale(0.78);
    }
    70% {
        opacity: 1;
        transform: translateY(-2px) scale(1.06);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes orderThankShine {
    0% {
        opacity: 0;
        transform: translateX(-70%);
    }
    35% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateX(75%);
    }
}

@keyframes orderThankRing {
    0% {
        opacity: 0;
        transform: scale(0.82);
    }
    28% {
        opacity: 0.85;
    }
    100% {
        opacity: 0;
        transform: scale(1.28);
    }
}

@keyframes orderThankBadge {
    0% {
        opacity: 0;
        transform: translateY(7px) scale(0.72);
    }
    72% {
        opacity: 1;
        transform: translateY(-1px) scale(1.08);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes orderThankTextIn {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes orderThankLine {
    0% {
        transform: scaleX(0);
    }
    100% {
        transform: scaleX(1);
    }
}

@keyframes orderThankEmblemEnter {
    0% {
        opacity: 0;
        transform: translateY(12px) scale(0.94);
    }
    70% {
        opacity: 1;
        transform: translateY(-2px) scale(1.02);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

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

@keyframes orderThankEmblemShine {
    0% {
        opacity: 0;
        transform: translateX(-34px) rotate(20deg);
    }
    42% {
        opacity: 0.8;
    }
    100% {
        opacity: 0;
        transform: translateX(36px) rotate(20deg);
    }
}

@media (max-width: 767px) {
    .order-thank-card {
        padding: 34px 14px 30px;
    }

    .order-thank-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 24px;
    }

    .order-thank-icon > i {
        font-size: 42px !important;
    }

    .order-thank-gold-bars {
        width: 76px;
        height: 24px;
        bottom: -8px;
    }

    .order-thank-gold-bars span {
        width: 41px;
        height: 16px;
    }

    .order-thank-gold-bars span:first-child {
        left: 4px;
        bottom: 2px;
    }

    .order-thank-gold-bars span:nth-child(2) {
        left: auto;
        right: 4px;
        bottom: 2px;
    }

    .order-thank-gold-bars span:last-child {
        right: 4px;
        bottom: 2px;
    }

    .order-thank-check-badge {
        right: 1px;
        bottom: 0;
        width: 27px;
        height: 27px;
    }

    .order-thank-check-badge i {
        font-size: 18px !important;
    }

    .order-thank-gold-emblem {
        width: 166px;
        height: 140px;
        margin-bottom: 16px;
    }

    .order-thank-gold-emblem .order-thank-check-badge {
        right: 17px;
        bottom: 14px;
        width: 28px;
        height: 28px;
    }

    .success-text.order-thank-card h2 {
        font-size: 23px;
        line-height: 1.55;
    }

    .order-thank-message {
        font-size: 15px;
        line-height: 1.7;
    }
}

@media (prefers-reduced-motion: reduce) {
    .order-thank-card,
    .order-thank-card::before,
    .order-thank-card::after,
    .order-thank-icon,
    .order-thank-icon::before,
    .order-thank-gold-emblem,
    .order-emblem-halo,
    .order-diamond-shine,
    .order-thank-check-badge,
    .success-text.order-thank-card h2,
    .order-thank-message {
        animation: none;
    }
}

.customer-reviews-section {
    padding: 48px 0 54px;
    background:
        linear-gradient(180deg, #fff 0%, #fffaf1 100%);
}

.customer-reviews-section.customer-reviews-deferred {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.customer-reviews-section.customer-reviews-deferred.is-ready {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity .28s ease;
}

.customer-reviews-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 22px;
}

.customer-reviews-head span,
.customer-review-form-title span,
.news-letter-head span {
    display: block;
    color: var(--theme-color);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 6px;
}

.customer-reviews-head h2,
.customer-review-form-title h3,
.news-letter-head h1 {
    margin: 0;
    color: #1f1a14;
    font-weight: 800;
    letter-spacing: 0;
}

.customer-review-open-btn {
    border: 0;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 8px;
    background: #17130f;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 800;
    box-shadow: 0 14px 28px rgba(27, 20, 12, 0.14);
    transition: transform 0.22s ease, background-color 0.22s ease, box-shadow 0.22s ease;
}

.customer-review-open-btn:hover,
.customer-review-open-btn:focus {
    background: var(--theme-color);
    color: #17130f;
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(27, 20, 12, 0.18);
}

.customer-review-open-btn i {
    font-size: 18px;
}

.customer-review-shell {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background:
        radial-gradient(circle at 92% 18%, rgba(234, 183, 39, 0.18), transparent 26%),
        linear-gradient(135deg, #17130f 0%, #2b2116 100%);
    padding: 24px 58px 38px;
    box-shadow: 0 22px 48px rgba(27, 20, 12, 0.14);
}

.customer-review-track {
    margin: 0 -10px;
}

.customer-review-slide {
    padding: 0 10px;
}

.customer-review-card {
    position: relative;
    min-height: 236px;
    height: 100%;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    background: rgba(255, 253, 250, 0.96);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.12);
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr) 92px;
    gap: 18px;
    align-items: center;
}

.customer-review-mark {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #17130f;
    background: var(--theme-color);
    font-size: 28px;
    box-shadow: 0 12px 24px rgba(234, 183, 39, 0.22);
}

.customer-review-copy {
    min-width: 0;
}

.customer-review-photo {
    width: 92px;
    height: 118px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(234, 183, 39, 0.32);
    flex: 0 0 auto;
    background: #f3eadb;
}

.customer-review-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.customer-review-photo-empty {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #8c6a38;
    background: rgba(234, 183, 39, 0.12);
    font-size: 34px;
}

.customer-review-card p {
    margin: 0;
    color: #3c3329;
    line-height: 2;
    font-size: 16px;
    font-weight: 600;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.customer-review-card strong {
    display: block;
    margin-top: 16px;
    color: #1f1a14;
    font-size: 15px;
    font-weight: 900;
}

.customer-review-track .slick-dots {
    position: static;
    margin-top: 18px;
}

.customer-review-track .slick-dots li button:before {
    display: none;
}

.customer-review-track .slick-dots li button {
    width: 9px;
    height: 9px;
    padding: 0;
    border-radius: 50%;
    background: rgba(31, 26, 20, 0.16);
}

.customer-review-track .slick-dots li.slick-active button {
    background: var(--theme-color);
}

.customer-review-track .slick-prev,
.customer-review-track .slick-next {
    width: 40px;
    height: 40px;
    z-index: 5;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.16);
}

.customer-review-track .slick-prev {
    right: -47px;
    left: auto;
}

.customer-review-track .slick-next {
    left: -47px;
    right: auto;
}

.customer-review-track .slick-prev:before,
.customer-review-track .slick-next:before {
    color: #17130f;
    font-family: "remixicon";
    font-size: 20px;
    opacity: 1;
}

.customer-review-track .slick-prev:before {
    content: "\ea6c";
}

.customer-review-track .slick-next:before {
    content: "\ea60";
}

.customer-review-empty {
    min-height: 180px;
    color: #fff;
    display: grid;
    place-items: center;
    text-align: center;
    gap: 10px;
}

.customer-review-empty i {
    color: var(--theme-color);
    font-size: 42px;
}

.customer-review-empty strong {
    font-size: 18px;
}

.customer-review-modal .modal-content {
    position: relative;
    padding: 24px;
    border-radius: 8px;
    background: #17130f;
    box-shadow: 0 18px 38px rgba(27, 20, 12, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.customer-review-modal-close {
    position: absolute;
    top: 14px;
    left: 14px;
    filter: invert(1);
    opacity: 0.82;
}

.customer-review-form-title h3 {
    color: #fff;
    font-size: 22px;
}

.customer-review-fields {
    display: grid;
    gap: 12px;
    margin-top: 16px;
}

.customer-review-input {
    width: 100%;
    min-height: 46px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    padding: 12px 14px;
    outline: none;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.customer-review-input::placeholder {
    color: rgba(255, 255, 255, 0.62);
}

.customer-review-input:focus {
    border-color: rgba(234, 183, 39, 0.72);
    background: rgba(255, 255, 255, 0.12);
}

.customer-review-textarea {
    min-height: 118px;
    resize: vertical;
}

.customer-review-file {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.customer-review-file-wrap {
    min-height: 46px;
    border: 1px dashed rgba(234, 183, 39, 0.55);
    border-radius: 8px;
    color: #f8f2e8;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    margin: 0;
}

.customer-review-file-wrap i {
    color: var(--theme-color);
    font-size: 20px;
}

.customer-review-submit {
    width: 100%;
    min-height: 46px;
    border-radius: 8px !important;
}

.news-letter-page {
    padding: 36px 0 60px;
    background: linear-gradient(180deg, #fff 0%, #fffaf1 100%);
}

.news-letter-board {
    position: relative;
    overflow: hidden;
    padding: 26px;
    border-radius: 8px;
    background:
        radial-gradient(circle at 8% 12%, rgba(234, 183, 39, 0.18), transparent 32%),
        linear-gradient(135deg, #17130f 0%, #251b12 100%);
    box-shadow: 0 22px 46px rgba(27, 20, 12, 0.16);
}

.news-letter-board:before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    border: 1px solid rgba(234, 183, 39, 0.18);
    border-radius: 8px;
}

.news-letter-head {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.news-letter-head h1 {
    color: #fff;
    font-size: 32px;
    line-height: 1.4;
}

.news-letter-head span {
    color: var(--theme-color);
}

.news-letter-empty {
    position: relative;
    z-index: 1;
    min-height: 220px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    display: grid;
    place-items: center;
    text-align: center;
    padding: 28px;
}

.news-letter-empty i {
    display: block;
    color: var(--theme-color);
    font-size: 38px;
    margin-bottom: 12px;
}

.news-letter-empty h3 {
    margin: 0;
    color: #fff;
    font-size: 20px;
    font-weight: 800;
}

.news-letter-list {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 10px;
}

.news-letter-row {
    position: relative;
    display: grid;
    grid-template-columns: 74px minmax(0, 1fr) minmax(165px, auto);
    align-items: center;
    gap: 16px;
    min-height: 90px;
    padding: 12px 14px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
    color: #fff;
    transition: transform 0.22s ease, border-color 0.22s ease, background-color 0.22s ease;
}

.news-letter-row:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 4px;
    background: var(--theme-color);
}

.news-letter-row:hover {
    color: #fff;
    border-color: rgba(234, 183, 39, 0.48);
    background: linear-gradient(90deg, rgba(234, 183, 39, 0.14), rgba(255, 255, 255, 0.055));
    transform: translateY(-2px);
}

.news-letter-row:hover .news-letter-thumb img {
    transform: scale(1.06);
}

.news-letter-thumb {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
}

.news-letter-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 7px;
    transition: transform 0.22s ease;
}

.news-letter-info {
    min-width: 0;
    display: grid;
    gap: 5px;
}

.news-letter-title {
    display: -webkit-box;
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.55;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.news-letter-note {
    display: -webkit-box;
    color: rgba(255, 255, 255, 0.68);
    font-size: 13px;
    line-height: 1.7;
    overflow: hidden;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.news-letter-price {
    justify-self: end;
    min-width: 150px;
    display: grid;
    justify-items: end;
    gap: 5px;
}

.news-letter-price strong {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    border-radius: 8px;
    background: linear-gradient(135deg, #f6d35b 0%, #d7a21e 100%);
    color: #17130f;
    font-size: 20px;
    font-weight: 900;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.news-letter-badge {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 0 9px;
    border-radius: 999px;
    border: 1px solid rgba(234, 183, 39, 0.42);
    color: #f8d96d;
    font-size: 12px;
    font-weight: 800;
}

.news-letter-old-price {
    color: rgba(255, 255, 255, 0.48);
    font-size: 13px;
    text-decoration: line-through;
}

.news-letter-discount,
.news-letter-soldout {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
    padding: 6px 9px;
}

.news-letter-discount {
    background: var(--theme-color);
    color: #17130f;
}

.news-letter-soldout {
    background: rgba(255, 255, 255, 0.9);
    color: #17130f;
}

@media (max-width: 991px) {
    .customer-review-shell {
        padding: 20px 22px 34px;
    }

    .customer-review-card {
        grid-template-columns: 46px minmax(0, 1fr) 82px;
        min-height: 220px;
    }

    .customer-review-mark {
        width: 46px;
        height: 46px;
        font-size: 24px;
    }

    .customer-review-photo {
        width: 82px;
        height: 108px;
    }

    .news-letter-board {
        padding: 22px;
    }

    .news-letter-row {
        grid-template-columns: 68px minmax(0, 1fr) minmax(145px, auto);
        gap: 13px;
    }
}

@media (max-width: 575px) {
    .customer-reviews-section,
    .news-letter-page {
        padding: 28px 0 38px;
    }

    .customer-reviews-head h2,
    .news-letter-head h1 {
        font-size: 24px;
    }

    .customer-reviews-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .customer-review-open-btn {
        width: 100%;
    }

    .customer-review-shell {
        padding: 16px;
    }

    .customer-review-card {
        grid-template-columns: 1fr;
        min-height: 0;
        padding: 18px;
        text-align: right;
    }

    .customer-review-mark {
        width: 44px;
        height: 44px;
    }

    .customer-review-media {
        order: -1;
    }

    .customer-review-photo {
        width: 100%;
        height: 190px;
    }

    .customer-review-card p {
        font-size: 15px;
        -webkit-line-clamp: 5;
    }

    .customer-review-modal .modal-content {
        padding: 22px 16px 18px;
    }

    .news-letter-board {
        padding: 16px;
    }

    .news-letter-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
    }

    .news-letter-row {
        grid-template-columns: 58px minmax(0, 1fr);
        gap: 12px;
        min-height: 0;
        padding: 12px;
    }

    .news-letter-thumb {
        width: 56px;
        height: 56px;
    }

    .news-letter-price {
        grid-column: 1 / -1;
        min-width: 0;
        justify-self: stretch;
        justify-items: start;
        margin-right: 70px;
    }

    .news-letter-price strong {
        min-height: 38px;
        font-size: 18px;
        padding: 0 14px;
    }

}

.news-letter-row-static {
    cursor: default;
}

.news-letter-row-static:hover {
    border-color: rgba(255, 255, 255, 0.12);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.045)),
        rgba(255, 255, 255, 0.035);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transform: none;
}

.news-letter-row-static:hover:before {
    opacity: 0;
}

.news-letter-row-static:hover:after {
    inset-inline-start: -110px;
}

.news-letter-locked {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 0 9px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.76);
    font-size: 12px;
    font-weight: 800;
}

/* Final premium newsletter override */
.news-letter-page {
    padding: 44px 0 58px;
    background:
        linear-gradient(135deg, rgba(24, 20, 15, 0.04) 0%, rgba(227, 190, 94, 0.08) 44%, rgba(255, 255, 255, 0) 45%),
        #fbfaf7;
}

.news-letter-board {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 26px;
    border: 1px solid rgba(204, 162, 55, 0.28);
    border-radius: 18px;
    background:
        linear-gradient(115deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0) 32%),
        linear-gradient(145deg, #1b1712 0%, #292017 52%, #110f0c 100%);
    box-shadow: 0 20px 46px rgba(31, 24, 13, 0.18);
}

.news-letter-board:before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    width: auto;
    background:
        linear-gradient(90deg, rgba(231, 183, 64, 0.18), rgba(231, 183, 64, 0) 34%),
        repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.035) 0 1px, rgba(255, 255, 255, 0) 1px 18px);
    pointer-events: none;
}

.news-letter-board:after {
    content: "";
    position: absolute;
    inset-inline: 18px;
    top: 0;
    height: 3px;
    z-index: 1;
    border-radius: 0 0 999px 999px;
    background: linear-gradient(90deg, rgba(246, 211, 91, 0), #f6d35b 22%, #fff0a6 50%, #cf9324 78%, rgba(246, 211, 91, 0));
}

.news-letter-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    gap: 16px;
    margin-bottom: 18px;
}

.news-letter-head-copy {
    min-width: 0;
}

.news-letter-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
    color: #f7db87;
    font-size: 13px;
    font-weight: 900;
}

.news-letter-kicker:before {
    content: "";
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background: #f0c448;
}

.news-letter-head h1 {
    margin: 0;
    color: #fff;
    font-size: 32px;
    font-weight: 900;
    line-height: 1.2;
}

.news-letter-head-live {
    min-width: 82px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid rgba(248, 216, 122, 0.46);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff1ad;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0;
}

.news-letter-head-live span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #f6d35b;
    box-shadow: 0 0 0 0 rgba(246, 211, 91, 0.58);
    animation: newsLetterLivePulse 1.6s ease-out infinite;
}

.news-letter-list {
    display: grid;
    gap: 12px;
}

.news-letter-row {
    position: relative;
    min-height: 104px;
    display: grid;
    grid-template-columns: 44px 84px minmax(0, 1fr) minmax(168px, auto);
    align-items: center;
    gap: 14px;
    padding: 12px 14px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.045)),
        rgba(255, 255, 255, 0.035);
    color: #fff;
    transform: translateY(0);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    animation: newsLetterRowIn 0.5s ease both;
    transition: transform 0.24s ease, border-color 0.24s ease, background-color 0.24s ease, box-shadow 0.24s ease;
}

.news-letter-row:before {
    content: "";
    position: absolute;
    inset: 0;
    width: auto;
    opacity: 0;
    background: linear-gradient(90deg, rgba(246, 211, 91, 0.18), rgba(246, 211, 91, 0) 44%);
    transition: opacity 0.24s ease;
}

.news-letter-row:after {
    content: "";
    position: absolute;
    top: -40%;
    bottom: -40%;
    width: 76px;
    inset-inline-start: -110px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 243, 184, 0.18), rgba(255, 255, 255, 0));
    transform: rotate(14deg);
    transition: inset-inline-start 0.5s ease;
    pointer-events: none;
}

.news-letter-row:hover {
    color: #fff;
    border-color: rgba(246, 211, 91, 0.44);
    background:
        linear-gradient(135deg, rgba(246, 211, 91, 0.14), rgba(255, 255, 255, 0.055)),
        rgba(255, 255, 255, 0.055);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.11);
    transform: translateY(-3px);
}

.news-letter-row:hover:before {
    opacity: 1;
}

.news-letter-row:hover:after {
    inset-inline-start: 110%;
}

.news-letter-index {
    position: relative;
    z-index: 1;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(248, 216, 122, 0.38);
    border-radius: 12px;
    background: rgba(19, 16, 12, 0.48);
    color: #f7d86c;
    font-size: 14px;
    font-weight: 900;
}

.news-letter-thumb {
    position: relative;
    z-index: 1;
    width: 78px;
    height: 78px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 14px;
    background: linear-gradient(145deg, #fff, #f6f1e6);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.2);
}

.news-letter-thumb img {
    padding: 8px;
}

.news-letter-info,
.news-letter-price {
    position: relative;
    z-index: 1;
}

.news-letter-title {
    color: #fff;
    font-size: 17px;
    font-weight: 900;
    line-height: 1.55;
}

.news-letter-note {
    color: rgba(255, 255, 255, 0.64);
}

.news-letter-price {
    min-width: 168px;
    justify-items: end;
    margin-right: 0;
}

.news-letter-price strong {
    position: relative;
    overflow: hidden;
    min-height: 44px;
    padding: 0 18px;
    border: 1px solid rgba(255, 243, 184, 0.52);
    border-radius: 12px;
    background: linear-gradient(135deg, #fff0a6 0%, #f1c64e 40%, #c9871d 100%);
    color: #17130f;
    font-size: 21px;
    font-weight: 900;
    box-shadow: 0 12px 26px rgba(156, 103, 22, 0.26);
}

.news-letter-price strong:after {
    content: "";
    position: absolute;
    top: -30%;
    bottom: -30%;
    width: 44px;
    inset-inline-start: -70px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0));
    transform: rotate(14deg);
    animation: newsLetterPriceSweep 2.8s ease-in-out infinite;
}

.news-letter-empty {
    min-height: 190px;
    display: grid;
    place-items: center;
    gap: 8px;
    border: 1px dashed rgba(248, 216, 122, 0.36);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.045);
    color: rgba(255, 255, 255, 0.82);
    text-align: center;
}

.news-letter-empty i {
    color: #f6d35b;
    font-size: 34px;
}

.news-letter-empty h3 {
    margin: 0;
    color: #fff;
    font-size: 18px;
    font-weight: 900;
}

@media (max-width: 991px) {
    .news-letter-board {
        padding: 22px;
        border-radius: 16px;
    }

    .news-letter-row {
        grid-template-columns: 40px 76px minmax(0, 1fr) minmax(148px, auto);
        min-height: 98px;
        gap: 12px;
    }

    .news-letter-thumb {
        width: 70px;
        height: 70px;
    }

    .news-letter-price {
        min-width: 148px;
    }
}

@media (max-width: 575px) {
    .news-letter-page {
        padding: 30px 0 40px;
    }

    .news-letter-board {
        padding: 16px 12px 18px;
        border-radius: 16px;
    }

    .news-letter-head {
        align-items: center;
        flex-direction: row;
        gap: 10px;
        margin-bottom: 14px;
    }

    .news-letter-kicker {
        margin-bottom: 4px;
        font-size: 12px;
    }

    .news-letter-head h1 {
        font-size: 26px;
    }

    .news-letter-head-live {
        min-width: 68px;
        height: 34px;
        font-size: 11px;
    }

    .news-letter-row {
        grid-template-columns: 34px 62px minmax(0, 1fr);
        gap: 10px;
        min-height: 94px;
        padding: 10px;
        border-radius: 13px;
    }

    .news-letter-index {
        width: 30px;
        height: 30px;
        border-radius: 10px;
        font-size: 12px;
    }

    .news-letter-thumb {
        width: 60px;
        height: 60px;
        border-radius: 12px;
    }

    .news-letter-title {
        font-size: 15px;
        line-height: 1.5;
    }

    .news-letter-price {
        grid-column: 2 / -1;
        min-width: 0;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: flex-start;
        justify-self: stretch;
        justify-items: start;
        gap: 6px;
        margin-right: 0;
    }

    .news-letter-price strong {
        min-height: 38px;
        max-width: 100%;
        padding: 0 13px;
        font-size: 17px;
        white-space: normal;
        word-break: break-word;
    }
}
