/* ============================================================
   Storefront additions — real product cards & themed sections
   Loaded after style.css, so these rules win where they overlap.
   ============================================================ */

/* ---------- Logged-in user profile in header ---------- */
.nav-user-link {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    max-width: 190px;
    margin-left: 14px !important;
}

.nav-user-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    object-fit: cover;
    border: 1.5px solid var(--gold);
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-black-3);
}

.nav-user-avatar-fallback {
    font-size: .68rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: .3px;
}

.nav-user-meta {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
    min-width: 0;
}

.nav-user-name {
    font-size: .82rem;
    color: var(--gold);
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 130px;
}

.nav-user-link:hover .nav-user-name {
    color: var(--gold-light);
}

.nav-user-link:hover .nav-user-avatar {
    border-color: var(--orange);
}

@media (max-width: 991px) {
    .nav-user-meta {
        display: none;
    }
}

/* ---------- Themed product bands (Festival Special, Gifting Hampers, ...) ---------- */
.product-band {
    padding: 46px 0;
    border-bottom: 1px solid var(--border-gold);
}

.band-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 26px;
}

.band-title {
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.band-title i {
    font-size: 1.25rem;
    color: var(--orange);
}

.band-sub {
    color: var(--text-muted);
    font-size: .86rem;
    margin: 6px 0 0;
}

.btn-view-all {
    flex: none;
    border: 1px solid var(--gold);
    color: var(--gold);
    background: transparent;
    padding: 8px 22px;
    border-radius: 4px;
    font-size: .82rem;
    letter-spacing: .5px;
    text-decoration: none;
    transition: background .2s, color .2s, box-shadow .2s;
}

.btn-view-all:hover {
    background: var(--gold);
    color: #111;
    box-shadow: 0 8px 20px rgba(221, 162, 63, .25);
}

.band-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: none;
}

@media (max-width: 575px) {
    .band-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .band-title {
        font-size: 1.3rem;
    }
}

/* ---------- Trending slider ---------- */
.trending-band {
    background:
        radial-gradient(ellipse at 12% 0%, rgba(229, 129, 31, .10), transparent 55%),
        var(--bg-black);
}

.trend-swiper {
    padding-bottom: 4px;
}

/* equal-height cards inside the slider */
.trend-swiper .swiper-slide {
    height: auto;
    display: flex;
}

.trend-swiper .swiper-slide > .pouch-card {
    width: 100%;
}

.trend-swiper .round-arrow.swiper-button-disabled {
    opacity: .35;
    cursor: default;
}

/* ---------- Product card with a real uploaded image ---------- */
.pouch-card {
    position: relative;
}

.pouch-media {
    position: relative;
    margin-bottom: 12px;
}

.pouch-media .pouch-visual {
    margin-bottom: 0;
}

.pouch-rating {
    position: absolute;
    bottom: 8px;
    left: 8px;
    z-index: 3;
    height: 32px;
    min-width: 32px;
    padding: 0 9px;
    border-radius: 999px;
    border: 1px solid var(--border-gold);
    background: rgba(11, 10, 9, .78);
    color: var(--gold-light);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    text-decoration: none;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .2px;
    line-height: 1;
    transition: color .2s, border-color .2s, background .2s, transform .2s;
}

.pouch-rating i {
    font-size: .72rem;
    color: var(--orange);
}

.pouch-rating:hover {
    color: #fff;
    border-color: var(--orange);
    transform: scale(1.04);
}

.pouch-like {
    position: absolute;
    top: auto;
    bottom: 8px;
    right: 8px;
    z-index: 3;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--border-gold);
    background: rgba(11, 10, 9, .72);
    color: var(--text-muted);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    font-size: .95rem;
    transition: color .2s, border-color .2s, background .2s, transform .2s;
}

.pouch-like:hover {
    color: var(--orange);
    border-color: var(--orange);
    transform: scale(1.06);
}

.pouch-like.is-liked {
    color: var(--orange);
    border-color: var(--orange);
}

.pouch-like:disabled {
    opacity: .6;
    cursor: wait;
}

.pouch-visual {
    position: relative;
    display: block;
    background: radial-gradient(circle at 50% 35%, #1d1a16, #0c0b09 70%);
}

.pouch-visual img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    padding: 10px;
    transition: transform .35s;
}

.pouch-card:hover .pouch-visual img {
    transform: scale(1.06);
}

.pouch-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: #1a1103;
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .6px;
    padding: 4px 9px;
    border-radius: 3px;
}

/* Placeholder shown until an image is uploaded from the admin panel */
.pouch-fallback {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px;
    text-align: center;
    border-radius: 8px;
    background:
        radial-gradient(circle at 50% 30%, rgba(221, 162, 63, .16), transparent 62%),
        linear-gradient(160deg, var(--bg-black-3), var(--bg-black));
}

.pouch-fallback i {
    font-size: 2.2rem;
    color: rgba(221, 162, 63, .55);
}

.pouch-fallback-name {
    color: var(--text-muted);
    font-size: .78rem;
    line-height: 1.35;
}

.pouch-card .p-name {
    display: block;
    color: var(--text-light);
    text-decoration: none;
    transition: color .2s;
}

.pouch-card .p-name:hover {
    color: var(--gold-light);
}

.pouch-card .p-meta {
    color: var(--text-muted);
    font-size: .74rem;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
}

.pouch-card .p-meta .dot {
    opacity: .6;
}

.pouch-card .p-price s {
    color: var(--text-muted);
    font-size: .8rem;
    font-weight: 400;
    margin-left: 6px;
}

.pouch-card .p-stockout {
    color: #d97a6c;
    font-size: .76rem;
    margin-top: auto;
    margin-bottom: 10px;
}

.pouch-card .p-stock-left {
    color: var(--orange);
    font-size: .72rem;
    font-weight: 600;
    margin: 0;
    white-space: nowrap;
}

.btn-cart-ghost {
    display: block;
    text-align: center;
    text-decoration: none;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    line-height: 1.6;
}

/* ---------- About collage with real pack shots ---------- */
.about-collage .tile {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: radial-gradient(circle at 50% 40%, rgba(221, 162, 63, .14), var(--bg-black-2) 70%);
}

.about-collage .tile img {
    width: 78%;
    height: 78%;
    object-fit: contain;
    transition: transform .3s;
}

.about-collage .tile:hover img {
    transform: scale(1.1);
}

/* ---------- Hero product photo ---------- */
.hero-price {
    margin-top: 16px;
    color: var(--gold);
    font-size: 1.6rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-price s {
    color: var(--text-muted);
    font-size: 1rem;
    font-weight: 400;
}

.hero-off {
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: #1a1103;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .6px;
    padding: 5px 10px;
    border-radius: 4px;
}

.hero-visual img {
    display: block;
    width: 100%;
    max-height: 360px;
    object-fit: contain;
    filter: drop-shadow(0 18px 30px rgba(0, 0, 0, .55));
}

/* keep the arrows readable on top of light banner artwork */
.hero-swiper .swiper-button-next,
.hero-swiper .swiper-button-prev {
    background: rgba(9, 7, 5, .6);
    backdrop-filter: blur(2px);
}

/* ---------- Full width banner slide ---------- */
.hero-banner {
    position: relative;
    display: block;
    text-decoration: none;
}

/* the ratio matches the recommended 1920x700 artwork so nothing gets cropped */
.hero-banner img {
    display: block;
    width: 100%;
    aspect-ratio: 1920 / 700;
    object-fit: cover;
    object-position: center;
}

.hero-banner-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, rgba(9, 7, 5, .82) 0%, rgba(9, 7, 5, .55) 45%, rgba(9, 7, 5, 0) 75%);
}

.hero-banner-overlay .container {
    max-width: 560px;
    margin-right: auto;
}

.hero-banner-overlay h5 {
    color: var(--text-light);
    font-weight: 400;
    font-size: 1.15rem;
}

.hero-banner-overlay h1 {
    color: var(--gold);
    font-weight: 800;
    font-size: 3rem;
    line-height: 1.1;
    text-shadow: 0 0 30px rgba(221, 162, 63, .35);
}

.hero-banner-overlay p.lead-sub {
    color: var(--text-muted);
    font-size: 1.05rem;
}

@media (max-width: 767px) {
    .hero-banner-overlay {
        background: linear-gradient(90deg, rgba(9, 7, 5, .88) 0%, rgba(9, 7, 5, .6) 70%, rgba(9, 7, 5, .25) 100%);
    }

    .hero-banner-overlay h1 {
        font-size: 1.6rem;
    }

    .hero-banner-overlay h5,
    .hero-banner-overlay p.lead-sub {
        font-size: .85rem;
    }

    .hero-banner-overlay .btn-shop {
        padding: 7px 16px;
        font-size: .78rem;
    }
}

/* ---------- Category strip with real images ---------- */
/* the scroller must be allowed to shrink, otherwise its content pushes the
   arrow columns onto a second line */
.categories-section .row > .col {
    min-width: 0;
}

.cat-track {
    display: flex;
    gap: 26px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding: 4px 2px 8px;
}

.cat-track::-webkit-scrollbar {
    display: none;
}

.cat-track .cat-item {
    flex: 0 0 auto;
    width: 118px;
    text-align: center;
}

@media (max-width: 575px) {
    .cat-track .cat-item {
        width: 96px;
    }
}

.cat-item .cat-link {
    display: block;
    text-decoration: none;
}

.cat-badge {
    overflow: hidden;
    position: relative;
}

/* pack shots, so contain them inside the gold ring instead of cropping */
.cat-badge img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 14px;
    border-radius: 50%;
    transition: transform .3s;
}

.cat-item:hover .cat-badge img {
    transform: scale(1.08);
}

.cat-track .cat-label {
    min-height: 2.5em;
    line-height: 1.25;
}

.cat-item .cat-count {
    display: block;
    color: var(--text-muted);
    font-size: .72rem;
    margin-top: 2px;
}

/* ---------- Product detail gallery with real images ---------- */
.detail-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    overflow: hidden;
    background: radial-gradient(circle at 50% 35%, #1d1a16, #0c0b09 72%);
}

.detail-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 18px;
}

.thumb-slide.detail-thumb {
    width: 74px;
    height: 74px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-gold);
    cursor: pointer;
    background: var(--bg-black-3);
    transition: border-color .2s;
}

.thumb-slide.detail-thumb.active,
.thumb-slide.detail-thumb:hover {
    border-color: var(--gold);
}

.thumb-slide.detail-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 5px;
}

a.btn-wishlist {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

/* ---------- Add-to-cart toast ---------- */
.sr-toast {
    position: fixed;
    left: 50%;
    bottom: 28px;
    transform: translate(-50%, 20px);
    z-index: 3000;
    background: linear-gradient(160deg, var(--bg-black-3), var(--bg-black-2));
    border: 1px solid var(--gold);
    color: var(--text-light);
    padding: 12px 22px;
    border-radius: 8px;
    font-size: .85rem;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .55);
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s, transform .25s, visibility .25s;
}

.sr-toast.show {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

/* ---------- Empty states ---------- */
.empty-note {
    border: 1px dashed var(--border-gold);
    border-radius: 10px;
    padding: 38px 20px;
    text-align: center;
    color: var(--text-muted);
}

.empty-note i {
    font-size: 1.8rem;
    color: var(--gold);
    display: block;
    margin-bottom: 10px;
}

/* ---------- Shop page: real pagination + counts ---------- */
.shop-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.shop-pagination a,
.shop-pagination span {
    min-width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    border: 1px solid var(--border-gold);
    border-radius: 5px;
    color: var(--text-light);
    text-decoration: none;
    font-size: .85rem;
    transition: all .2s;
}

.shop-pagination a:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.shop-pagination .is-active {
    background: var(--orange);
    border-color: var(--orange);
    color: #181103;
    font-weight: 600;
}

.shop-pagination .is-disabled {
    opacity: .4;
}

.cat-list li.active,
.cat-list li:hover {
    color: var(--gold);
}

.cat-list a {
    color: inherit;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.tag-cloud a {
    border: 1px solid var(--border-gold);
    padding: 5px 12px;
    border-radius: 16px;
    font-size: 12px;
    color: var(--text-muted);
    text-decoration: none;
    transition: .2s;
}

.tag-cloud a:hover,
.tag-cloud a.active {
    border-color: var(--orange);
    color: var(--orange);
}

a.clear-filters {
    text-decoration: none;
}

.products-main.is-loading {
    position: relative;
    min-height: 280px;
    pointer-events: none;
}

.shop-page-wrap {
    padding-top: 18px;
    padding-bottom: 40px;
    max-width: 100%;
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
}

/* Full-bleed filter layout: remove large left/right gutters */
.shop-page-wrap.container,
.container.shop-page-wrap {
    max-width: 100% !important;
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
}

.shop-page-wrap .shop-layout {
    grid-template-columns: 300px 1fr;
    gap: 18px;
    padding: 0 0 24px !important;
}

.shop-page-wrap .side-block {
    padding: 14px;
    margin-bottom: 14px;
}

.shop-page-wrap .side-block h3 {
    margin-bottom: 10px;
    padding-bottom: 8px;
    font-size: 14px;
}

.shop-page-wrap .side-block-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border-gold);
}

.shop-page-wrap .side-block-head h3 {
    margin: 0;
    padding: 0;
    border: none;
}

.shop-page-wrap .side-clear-btn {
    background: none;
    border: none;
    padding: 0;
    color: var(--gold-light);
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    letter-spacing: 0.4px;
    cursor: pointer;
    text-decoration: none;
}

.shop-page-wrap .side-clear-btn:hover {
    color: var(--orange);
}

.shop-page-wrap .price-edit {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
}

.shop-page-wrap .price-edit input[type="number"] {
    flex: 1;
    min-width: 0;
    background: var(--bg-black);
    border: 1px solid var(--border-gold);
    border-radius: 5px;
    color: var(--gold);
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    padding: 8px 10px;
    outline: none;
    text-align: center;
    -moz-appearance: textfield;
}

.shop-page-wrap .price-edit input[type="number"]::-webkit-outer-spin-button,
.shop-page-wrap .price-edit input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.shop-page-wrap .price-edit input[type="number"]:focus {
    border-color: var(--orange);
    color: var(--gold-light);
}

.shop-page-wrap .price-edit-sep {
    color: var(--gold);
    font-size: 14px;
    flex-shrink: 0;
}

.shop-page-wrap .shop-toolbar {
    margin-bottom: 14px;
}

/* Product cards on filter page */
.shop-page-wrap .pouch-card {
    padding: 12px !important;
    border-radius: 10px;
    height: auto !important;
    min-height: 0;
    position: relative;
    z-index: 1;
}

.shop-page-wrap .pouch-card:hover {
    /* no upward move — top border stays fully visible */
    transform: none !important;
    border-color: var(--orange) !important;
    box-shadow:
        0 0 0 1.5px var(--orange),
        0 8px 20px rgba(0, 0, 0, .4);
    z-index: 3;
}

.shop-page-wrap .pouch-media {
    margin-bottom: 10px !important;
    height: 260px !important;
    max-height: 260px !important;
    overflow: hidden;
}

.shop-page-wrap .pouch-visual {
    aspect-ratio: unset !important;
    width: 100% !important;
    height: 260px !important;
    max-height: 260px !important;
    min-height: 0 !important;
    margin-bottom: 0 !important;
    overflow: hidden;
}

.shop-page-wrap .pouch-visual img {
    padding: 6px !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
}

.shop-page-wrap .pouch-card .p-name {
    font-size: .84rem !important;
    line-height: 1.25 !important;
    margin-bottom: 2px !important;
    text-decoration: none !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.shop-page-wrap .pouch-card .p-price-row {
    margin-bottom: 8px !important;
}

.shop-page-wrap .pouch-card .p-price {
    font-size: .9rem !important;
    margin-bottom: 0 !important;
}

.shop-page-wrap .pouch-card .p-stockout {
    font-size: .75rem;
    margin: 0 0 8px !important;
    text-decoration: none !important;
}

.shop-page-wrap .qty-box {
    height: 34px !important;
    margin-bottom: 8px !important;
    margin-top: 0 !important;
    border-radius: 6px !important;
}

.shop-page-wrap .qty-box button {
    flex: 0 0 34px !important;
    width: 34px !important;
    height: auto !important;
    font-size: .95rem !important;
    color: var(--orange, #e5811f) !important;
}

.shop-page-wrap .qty-box button:disabled,
.shop-page-wrap .qty-box button[aria-disabled="true"] {
    color: var(--orange, #e5811f) !important;
    opacity: 1 !important;
    cursor: not-allowed !important;
    pointer-events: none !important;
}

.shop-page-wrap .qty-box input {
    height: 100% !important;
    font-size: .85rem !important;
    font-weight: 600 !important;
    padding: 0 2px !important;
    border: none !important;
    border-left: 1px solid rgba(221, 162, 63, .28) !important;
    border-right: 1px solid rgba(221, 162, 63, .28) !important;
    outline: none !important;
    box-shadow: none !important;
    background: transparent !important;
    -moz-appearance: textfield;
    appearance: textfield;
}

.shop-page-wrap .qty-box input:focus,
.shop-page-wrap .qty-box input:focus-visible {
    outline: none !important;
    box-shadow: none !important;
}

.shop-page-wrap .qty-box input::-webkit-outer-spin-button,
.shop-page-wrap .qty-box input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
    display: none;
}

.shop-page-wrap .btn-cart,
.shop-page-wrap .btn-cart-ghost {
    flex: 0 0 auto !important;
    height: 36px !important;
    min-height: 36px !important;
    max-height: 36px !important;
    padding: 0 10px !important;
    font-size: .76rem !important;
    letter-spacing: 0.2px;
    border-radius: 6px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1 !important;
}

.shop-page-wrap .pouch-badge {
    top: 8px;
    left: 8px;
    font-size: .58rem;
    padding: 3px 7px;
}

.shop-page-wrap .pouch-rating {
    height: 28px;
    min-width: 28px;
    bottom: 8px;
    left: 8px;
    padding: 0 7px;
    font-size: .72rem;
}

.shop-page-wrap .pouch-rating i {
    font-size: .66rem;
}

.shop-page-wrap .pouch-like {
    width: 28px;
    height: 28px;
    bottom: 8px;
    right: 8px;
    font-size: .85rem;
}

.shop-page-wrap .row.g-4 {
    --bs-gutter-x: 0.7rem;
    --bs-gutter-y: 0.7rem;
    overflow: visible;
    padding-top: 10px;
}

.shop-page-wrap .products-main,
.shop-page-wrap .products-main .col {
    overflow: visible;
}

@media (min-width: 992px) {
    .shop-page-wrap.container,
    .container.shop-page-wrap {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
}

@media (max-width: 980px) {
    .shop-page-wrap .shop-layout {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .shop-page-wrap .pouch-media,
    .shop-page-wrap .pouch-visual {
        height: 220px !important;
        max-height: 220px !important;
    }
}

/* Compact top announcement bar */
.topbar {
    padding: 2px 0 !important;
    font-size: 11px !important;
    line-height: 1.2;
}

.topbar .container {
    height: auto !important;
    min-height: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.topbar .social a {
    margin-left: 10px;
    font-size: .78rem;
}

.products-main.is-loading::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 5;
    background: rgba(11, 10, 9, .45);
    backdrop-filter: blur(1px);
}

.products-main.is-loading::before {
    content: '';
    position: absolute;
    top: 40%;
    left: 50%;
    z-index: 6;
    width: 34px;
    height: 34px;
    margin: -17px 0 0 -17px;
    border: 3px solid rgba(221, 162, 63, .25);
    border-top-color: var(--orange);
    border-radius: 50%;
    animation: shopSpin .7s linear infinite;
}

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

button.clear-filters {
    border: 0;
    background: transparent;
    color: var(--text-muted);
    font-size: 12px;
    letter-spacing: .6px;
    cursor: pointer;
}

button.clear-filters:hover {
    color: var(--orange);
}

/* ---------- Customer account page ---------- */
.account-page {
    padding: 42px 0 60px;
}

.account-page > .container,
.account-page > .container-fluid {
    max-width: 100% !important;
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
}

@media (min-width: 1200px) {
    .account-page > .container,
    .account-page > .container-fluid {
        padding-left: 28px !important;
        padding-right: 28px !important;
    }
}

@media (min-width: 992px) {
    .account-page .account-sidebar-col {
        flex: 0 0 28% !important;
        max-width: 28% !important;
        width: 28% !important;
    }

    .account-page .account-main-col {
        flex: 0 0 72% !important;
        max-width: 72% !important;
        width: 72% !important;
    }
}

.account-alert {
    margin-bottom: 22px;
    padding: 12px 16px;
    border: 1px solid rgba(143, 208, 106, .35);
    border-radius: 8px;
    background: rgba(143, 208, 106, .08);
    color: #8fd06a;
    font-size: 13px;
}

.account-card {
    background: linear-gradient(160deg, var(--bg-black-3), var(--bg-black-2));
    border: 1px solid var(--border-gold);
    border-radius: 12px;
    padding: 26px;
}

.account-avatar {
    width: 104px;
    height: 104px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold);
    margin: 0 auto;
    display: block;
}

.account-avatar-form {
    margin-bottom: 16px;
}

.account-avatar-wrap {
    position: relative;
    width: 104px;
    margin: 0 auto 10px;
}

.account-avatar-btn {
    position: absolute;
    right: -4px;
    bottom: -4px;
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid var(--bg-black-2);
    background: var(--orange);
    color: #1a1204;
    font-size: 14px;
    cursor: pointer;
    transition: .2s;
}

.account-avatar-btn:hover {
    background: var(--gold);
}

.account-avatar-remove {
    border: 0;
    background: none;
    color: var(--text-muted);
    font-size: 11.5px;
    text-decoration: underline;
    cursor: pointer;
}

.account-avatar-remove:hover {
    color: #e35b5b;
}

.account-avatar-initials {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(160deg, var(--gold), var(--orange-dark));
    color: #1a1206;
    font-size: 34px;
    font-weight: 600;
    border: 0;
}

.account-name {
    color: var(--gold-light);
    font-size: 1.25rem;
    margin-bottom: 4px;
}

.account-meta {
    color: var(--text-muted);
    font-size: 13px;
    margin-bottom: 12px;
    word-break: break-all;
}

.account-status {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 14px;
    font-size: 11px;
    letter-spacing: .5px;
}

.account-status.is-active {
    background: rgba(143, 208, 106, .12);
    color: #8fd06a;
}

.account-status.is-inactive {
    background: rgba(227, 91, 91, .12);
    color: #e35b5b;
}

.account-stats {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin: 24px 0;
    padding: 16px 0;
    border-top: 1px solid var(--border-gold);
    border-bottom: 1px solid var(--border-gold);
}

.account-stats > div {
    flex: 1;
}

.account-stats .value {
    display: block;
    color: var(--gold);
    font-size: 1rem;
    font-weight: 600;
}

.account-stats .label {
    display: block;
    color: var(--text-muted);
    font-size: 10.5px;
    letter-spacing: .4px;
    margin-top: 2px;
}

.btn-account-logout {
    width: 100%;
    padding: 11px;
    border: 1px solid var(--border-gold);
    border-radius: 7px;
    background: transparent;
    color: var(--text-light);
    font-size: 13px;
    cursor: pointer;
    transition: .2s;
}

.btn-account-logout:hover {
    border-color: #e35b5b;
    color: #e35b5b;
}

.account-card-title {
    color: var(--gold-light);
    font-size: 1.05rem;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-gold);
}

.account-label {
    display: block;
    color: var(--text-muted);
    font-size: 12px;
    margin-bottom: 6px;
}

.account-input {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid var(--border-gold);
    border-radius: 7px;
    background: var(--bg-black-2);
    color: var(--text-light);
    font-size: 13px;
    outline: none;
    transition: .2s;
}

.account-input:focus {
    border-color: var(--gold);
}

.account-input.is-invalid {
    border-color: #e35b5b;
}

.account-input.is-readonly {
    opacity: .72;
    cursor: not-allowed;
    background: rgba(255, 255, 255, .03);
}

.account-textarea {
    min-height: 96px;
    resize: vertical;
}

.account-hint {
    display: block;
    margin-top: 5px;
    color: var(--text-muted);
    font-size: 11px;
}

.account-error {
    display: block;
    margin-top: 5px;
    color: #e35b5b;
    font-size: 11.5px;
}

.btn-account-save {
    margin-top: 22px;
    padding: 12px 26px;
    border: 0;
    border-radius: 7px;
    background: var(--orange);
    color: #1a1204;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .4px;
    cursor: pointer;
    transition: .2s;
}

.btn-account-save:hover {
    background: var(--orange-dark);
}

.account-address {
    color: var(--text-muted);
    font-size: 13.5px;
    line-height: 1.9;
    margin: 0;
}

.account-empty {
    color: var(--text-muted);
    font-size: 13px;
    margin-bottom: 14px;
}

.account-table {
    width: 100%;
    font-size: 13px;
}

.account-table th {
    color: var(--gold);
    font-weight: 500;
    padding: 10px 12px;
    border-bottom: 1px solid var(--border-gold);
    white-space: nowrap;
}

.account-table td {
    color: var(--text-muted);
    padding: 12px;
    border-bottom: 1px solid rgba(221, 162, 63, .1);
}

.account-menu {
    display: grid;
    gap: 6px;
    margin: 0 0 20px;
    text-align: left;
}

.account-menu a {
    display: grid;
    grid-template-columns: 22px 1fr 16px;
    align-items: center;
    gap: 10px;
    padding: 11px 12px;
    border: 1px solid transparent;
    border-radius: 7px;
    color: var(--text-muted);
    font-size: 13px;
    text-decoration: none;
    transition: .2s;
}

.account-menu a:hover,
.account-menu a.active {
    border-color: var(--border-gold);
    background: rgba(221, 162, 63, .08);
    color: var(--gold-light);
}

.account-menu a > i:last-child {
    font-size: 10px;
    text-align: right;
}

.account-help {
    margin: -7px 0 22px;
    color: var(--text-muted);
    font-size: 12.5px;
    line-height: 1.7;
}

.account-password-form {
    max-width: 560px;
}

.account-password-field {
    margin-bottom: 18px;
}

.account-password-input {
    position: relative;
}

.account-password-input .account-input {
    padding-right: 46px;
}

.account-password-input button {
    position: absolute;
    top: 50%;
    right: 7px;
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-50%);
    border: 0;
    border-radius: 6px;
    background: transparent;
    color: var(--gold);
    cursor: pointer;
}

.account-password-input button:hover {
    background: rgba(221, 162, 63, .08);
}

.account-order-number,
.account-order-total {
    color: var(--gold-light) !important;
    font-weight: 500;
}

.account-orders-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border-gold);
}

.account-orders-head .account-card-title {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    border-bottom: 0 !important;
}

.account-order-tabs {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.account-order-tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    border-radius: 999px;
    border: 1px solid var(--border-gold);
    color: var(--text-muted);
    text-decoration: none;
    font-size: .82rem;
    font-weight: 500;
    transition: .2s;
}

.account-order-tab:hover {
    color: var(--gold-light);
    border-color: var(--gold);
}

.account-order-tab.is-active {
    color: #1a1204;
    background: var(--orange);
    border-color: var(--orange);
}

.account-order-tab .tab-count {
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .72rem;
    font-weight: 600;
    background: rgba(255, 255, 255, .12);
    color: inherit;
}

.account-order-tab.is-active .tab-count {
    background: rgba(0, 0, 0, .18);
    color: #1a1204;
}

.account-order-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.account-order-card {
    border: 1px solid var(--border-gold);
    border-radius: 10px;
    background: var(--bg-black);
    padding: 14px;
}

.account-order-card-head,
.account-order-card-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.account-order-date {
    color: var(--text-muted);
    font-size: .78rem;
    margin-top: 3px;
}

.account-order-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.account-order-items {
    margin: 14px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.account-order-item {
    display: grid;
    grid-template-columns: 48px 1fr auto;
    gap: 10px;
    align-items: center;
}

.account-order-thumb {
    width: 48px;
    height: 48px;
    border-radius: 6px;
    border: 1px solid var(--border-gold);
    background: var(--bg-black-3);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: var(--gold);
}

.account-order-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 3px;
}

.account-order-item-info .name {
    color: var(--text-light);
    font-size: .9rem;
    font-weight: 500;
}

.account-order-item-info .meta {
    color: var(--text-muted);
    font-size: .75rem;
}

.account-order-item-total {
    color: var(--gold);
    font-weight: 600;
    font-size: .9rem;
}

a.account-order-number {
    text-decoration: none;
}

a.account-order-number:hover {
    color: var(--orange) !important;
}

.btn-order-view {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--orange);
    text-decoration: none;
    font-size: .85rem;
    font-weight: 600;
}

.btn-order-view:hover {
    color: var(--gold-light);
}

.account-back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--gold);
    text-decoration: none;
    font-size: .82rem;
    margin-bottom: 8px;
}

.account-order-box {
    border: 1px solid var(--border-gold);
    border-radius: 10px;
    padding: 14px;
    background: var(--bg-black);
}

.account-order-box h5 {
    color: var(--gold-light);
    font-size: .95rem;
    margin-bottom: 10px;
}

.account-order-box p {
    margin: 0 0 4px;
    color: var(--text-muted);
    font-size: .84rem;
}

.account-order-cost {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    color: var(--text-muted);
    font-size: .85rem;
    margin-bottom: 6px;
}

.account-order-cost.is-total {
    color: var(--gold-light);
    font-weight: 700;
    border-top: 1px solid var(--border-gold);
    padding-top: 8px;
    margin-top: 8px;
}

.account-order-timeline {
    list-style: none;
    margin: 0;
    padding: 0;
}

.account-order-timeline li {
    border-left: 2px solid var(--border-gold);
    padding: 0 0 12px 12px;
    margin-left: 4px;
}

.account-order-timeline li strong {
    display: block;
    color: var(--gold);
}

.account-order-timeline li span,
.account-order-timeline li em {
    display: block;
    color: var(--text-muted);
    font-size: .78rem;
    font-style: normal;
}

.order-pill {
    display: inline-block;
    padding: 4px 9px;
    border-radius: 12px;
    background: rgba(221, 162, 63, .1);
    color: var(--gold-light);
    font-size: 10.5px;
    white-space: nowrap;
}

.order-pill.status-delivered,
.order-pill.payment-paid {
    background: rgba(143, 208, 106, .12);
    color: #8fd06a;
}

.order-pill.status-cancelled,
.order-pill.status-returned,
.order-pill.payment-failed {
    background: rgba(227, 91, 91, .12);
    color: #e35b5b;
}

.account-pagination {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 22px;
    color: var(--text-muted);
    font-size: 12px;
}

.account-pagination a,
.account-pagination .disabled {
    padding: 7px 12px;
    border: 1px solid var(--border-gold);
    border-radius: 6px;
    color: var(--gold-light);
    text-decoration: none;
}

.account-pagination .disabled {
    opacity: .4;
}

.account-orders-empty {
    padding: 28px 12px 20px;
    text-align: center;
}

.account-orders-empty > i {
    color: var(--gold);
    font-size: 42px;
}

.account-orders-empty h5 {
    margin: 12px 0 6px;
    color: var(--gold-light);
}

.account-orders-empty p {
    margin-bottom: 20px;
    color: var(--text-muted);
    font-size: 13px;
}

/* ---------- Dynamic cart page ---------- */
.cart-page {
    padding: 38px 0 70px;
}

.cart-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
}

.cart-toolbar p {
    margin: 0;
    color: var(--text-muted);
    font-size: 13px;
}

.cart-toolbar strong {
    color: var(--gold);
}

.cart-clear-btn {
    padding: 8px 14px;
    border: 1px solid var(--border-gold);
    border-radius: 6px;
    background: transparent;
    color: var(--text-muted);
    font-size: 12px;
    cursor: pointer;
}

.cart-clear-btn:hover {
    border-color: #e35b5b;
    color: #e35b5b;
}

.cart-list {
    overflow: hidden;
    border: 1px solid var(--border-gold);
    border-radius: 12px;
    background: var(--bg-black-2);
}

.cart-item {
    display: grid;
    grid-template-columns: 88px minmax(150px, 1fr) auto 110px 34px;
    align-items: center;
    gap: 18px;
    padding: 18px;
    border-bottom: 1px solid var(--border-gold);
}

.cart-item:last-child {
    border-bottom: 0;
}

.cart-item-image {
    width: 88px;
    height: 88px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 8px;
    background: #100f0d;
    color: var(--gold);
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cart-item-image i {
    font-size: 30px;
}

.cart-item-info {
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
}

.cart-item-name {
    color: var(--text-light);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
}

.cart-item-name:hover {
    color: var(--gold);
}

.cart-item-category {
    color: var(--text-muted);
    font-size: 11px;
}

.cart-item-price {
    margin-top: 3px;
    color: var(--gold);
    font-size: 13px;
    font-weight: 600;
}

.cart-item-stock {
    color: #8fd06a;
    font-size: 10.5px;
}

.cart-item-qty {
    display: grid;
    grid-template-columns: 30px 36px 30px;
    align-items: center;
    overflow: hidden;
    border: 1px solid var(--border-gold);
    border-radius: 6px;
    text-align: center;
}

.cart-item-qty button {
    height: 34px;
    border: 0;
    background: transparent;
    color: var(--gold);
    cursor: pointer;
}

.cart-item-qty button:disabled {
    opacity: .35;
    cursor: not-allowed;
}

.cart-item-qty span {
    color: var(--text-light);
    font-size: 13px;
}

.cart-item-total {
    color: var(--gold-light);
    font-size: 14px;
    text-align: right;
}

.cart-item-remove {
    width: 34px;
    height: 34px;
    border: 1px solid var(--border-gold);
    border-radius: 6px;
    background: transparent;
    color: var(--text-muted);
    cursor: pointer;
}

.cart-item-remove:hover {
    border-color: #e35b5b;
    color: #e35b5b;
}

.cart-summary {
    position: sticky;
    top: 100px;
    padding: 24px;
    border: 1px solid var(--border-gold);
    border-radius: 12px;
    background: linear-gradient(160deg, var(--bg-black-3), var(--bg-black-2));
}

.cart-summary h3 {
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border-gold);
    color: var(--gold-light);
    font-family: 'Playfair Display', serif;
    font-size: 20px;
}

.cart-summary-line,
.cart-summary-total {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    padding: 9px 0;
    color: var(--text-muted);
    font-size: 12.5px;
}

.cart-summary-line strong {
    color: var(--text-light);
    font-weight: 500;
    text-align: right;
}

.cart-summary-total {
    margin-top: 8px;
    padding: 16px 0;
    border-top: 1px solid var(--border-gold);
    color: var(--gold-light);
    font-size: 16px;
}

.cart-checkout-btn {
    display: block;
    margin-top: 10px;
    padding: 12px;
    border-radius: 7px;
    background: var(--orange);
    color: #1a1204;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
}

.cart-checkout-btn:hover {
    background: var(--orange-dark);
    color: #1a1204;
}

.cart-continue-link {
    display: block;
    margin-top: 15px;
    color: var(--text-muted);
    font-size: 12px;
    text-align: center;
    text-decoration: none;
}

.cart-continue-link:hover {
    color: var(--gold);
}

.cart-empty {
    padding: 70px 20px;
    border: 1px solid var(--border-gold);
    border-radius: 12px;
    background: var(--bg-black-2);
    text-align: center;
}

.cart-empty > i {
    color: var(--border-gold);
    font-size: 54px;
}

.cart-empty h3 {
    margin: 14px 0 7px;
    color: var(--gold-light);
    font-family: 'Playfair Display', serif;
}

.cart-empty p {
    margin-bottom: 24px;
    color: var(--text-muted);
    font-size: 13px;
}

@media (max-width: 767px) {
    .cart-item {
        grid-template-columns: 70px 1fr 34px;
        gap: 12px;
    }

    .cart-item-image {
        width: 70px;
        height: 70px;
    }

    .cart-item-qty {
        grid-column: 2;
        width: max-content;
    }

    .cart-item-total {
        grid-column: 3;
        grid-row: 2;
    }

    .cart-item-remove {
        grid-column: 3;
        grid-row: 1;
    }

    .cart-summary {
        position: static;
    }
}

/* Wishlist product thumbnails */
.pouch-sm-img {
    width: 56px;
    height: 56px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
    display: block;
    background: var(--bg-black-3);
    border: 1px solid var(--border-gold);
}

.pouch-sm-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    padding: 4px;
}

.pouch-sm-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.1rem;
}

.empty-state a.btn-solid {
    display: inline-block;
    text-decoration: none;
    color: #1a1204;
}

.prod-cell .name,
.wl-card .name {
    text-decoration: none;
}

.prod-cell a.name:hover,
.wl-card a.name:hover {
    color: var(--orange);
}

a.add-cart-mini {
    text-decoration: none;
}

/* —— Storefront blogs —— */
.blog-list-section,
.blog-detail-section {
    padding: 48px 0 72px;
}

.blog-empty {
    max-width: 480px;
    margin: 0 auto;
    padding: 48px 16px;
    color: #b3b3b3;
}

.blog-empty p {
    margin-bottom: 24px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.blog-grid-related {
    grid-template-columns: repeat(3, 1fr);
}

.blog-card {
    background: linear-gradient(165deg, #1a1610 0%, #120e09 100%);
    border: 1px solid rgba(201, 162, 39, 0.22);
    overflow: hidden;
    transition: border-color 0.25s ease, transform 0.25s ease;
}

.blog-card:hover {
    border-color: rgba(232, 145, 42, 0.55);
    transform: translateY(-3px);
}

.blog-card-media {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #0d0b08;
}

.blog-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-media img {
    transform: scale(1.04);
}

.blog-card-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold, #c9a227);
    font-size: 2.4rem;
    opacity: 0.55;
}

.blog-card-body {
    padding: 20px 22px 24px;
}

.blog-card-body time {
    display: block;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--orange, #e8912a);
    margin-bottom: 10px;
}

.blog-card-body h2 {
    font-family: 'Marcellus', 'Playfair Display', serif;
    font-size: 1.25rem;
    line-height: 1.35;
    margin: 0 0 12px;
}

.blog-card-body h2 a {
    color: var(--gold-light, #f0d78c);
    text-decoration: none;
}

.blog-card-body h2 a:hover {
    color: var(--orange, #e8912a);
}

.blog-card-body p {
    color: #9a9a9a;
    font-size: 0.92rem;
    line-height: 1.55;
    margin: 0 0 16px;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold, #c9a227);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-decoration: none;
    text-transform: uppercase;
}

.blog-read-more:hover {
    color: var(--orange, #e8912a);
}

.blog-pagination {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.blog-pagination nav {
    color: #b3b3b3;
}

.blog-detail {
    max-width: 820px;
    margin: 0 auto;
}

.blog-detail-hero {
    margin-bottom: 28px;
    border: 1px solid rgba(201, 162, 39, 0.25);
    overflow: hidden;
    background: #0d0b08;
}

.blog-detail-hero img {
    width: 100%;
    max-height: 440px;
    object-fit: cover;
    display: block;
}

.blog-detail-meta {
    margin-bottom: 16px;
    color: var(--orange, #e8912a);
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.blog-detail-meta i {
    margin-right: 6px;
}

.blog-detail-excerpt {
    font-size: 1.1rem;
    line-height: 1.65;
    color: #d4c4a0;
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(201, 162, 39, 0.2);
}

.blog-detail-content {
    color: #c8c8c8;
    font-size: 1.02rem;
    line-height: 1.8;
}

.blog-detail-content p {
    margin-bottom: 1.1em;
}

.blog-detail-content h2,
.blog-detail-content h3,
.blog-detail-content h4 {
    font-family: 'Marcellus', 'Playfair Display', serif;
    color: var(--gold-light, #f0d78c);
    margin: 1.4em 0 0.6em;
}

.blog-detail-content ul,
.blog-detail-content ol {
    margin: 0 0 1.1em 1.25em;
}

.blog-detail-content a {
    color: var(--orange, #e8912a);
}

.blog-detail-content img {
    max-width: 100%;
    height: auto;
    margin: 1.2em 0;
    border: 1px solid rgba(201, 162, 39, 0.2);
}

.blog-detail-content blockquote {
    margin: 1.2em 0;
    padding: 12px 18px;
    border-left: 3px solid var(--gold, #c9a227);
    color: #d4c4a0;
    background: rgba(201, 162, 39, 0.06);
}

.blog-detail-back {
    margin-top: 40px;
    padding-top: 28px;
    border-top: 1px solid rgba(201, 162, 39, 0.2);
}

.blog-related {
    margin-top: 64px;
    padding-top: 40px;
    border-top: 1px solid rgba(201, 162, 39, 0.18);
}

.blog-related .section-head {
    text-align: center;
    margin-bottom: 32px;
}

@media (max-width: 991px) {
    .blog-grid,
    .blog-grid-related {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 575px) {
    .blog-grid,
    .blog-grid-related {
        grid-template-columns: 1fr;
    }

    .blog-detail-hero img {
        max-height: 260px;
    }
}

/* Product reviews */
.reviews-header {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 22px;
}

.reviews-subtitle {
    margin: 6px 0 0;
    color: #8a8478;
    font-size: 0.9rem;
}

.reviews-summary {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    border-radius: 16px;
    border: 1px solid rgba(221, 162, 63, 0.28);
    background: linear-gradient(135deg, rgba(221, 162, 63, 0.12), rgba(229, 129, 31, 0.08));
}

.reviews-summary-score {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 2rem;
    line-height: 1;
    color: #f0c375;
    font-weight: 700;
}

.reviews-summary-stars {
    display: flex;
    gap: 2px;
    color: #3a3a3a;
    font-size: 0.95rem;
    letter-spacing: 1px;
}

.reviews-summary-stars .is-filled,
.review-rating-stars .is-filled {
    color: #e5811f;
}

.reviews-summary-count {
    margin-top: 2px;
    color: #a39d90;
    font-size: 0.78rem;
}

.product-reviews {
    display: grid;
    gap: 28px;
}

.review-list {
    display: grid;
    gap: 18px;
}

.review-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(221, 162, 63, 0.18);
    border-radius: 20px;
    background:
        radial-gradient(120% 120% at 0% 0%, rgba(221, 162, 63, 0.1), transparent 45%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015));
    transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.review-card:hover {
    border-color: rgba(221, 162, 63, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
}

.review-card-accent {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #dda23f, #e5811f);
}

.review-card-body {
    padding: 22px 22px 20px 26px;
}

.review-card-head {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 14px;
}

.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(145deg, rgba(221, 162, 63, 0.35), rgba(229, 129, 31, 0.2));
    color: #f0c375;
    font-weight: 700;
    font-size: 1.05rem;
    flex-shrink: 0;
    border: 1px solid rgba(221, 162, 63, 0.35);
    box-shadow: inset 0 0 0 3px rgba(0, 0, 0, 0.25);
}

.review-meta {
    min-width: 0;
    flex: 1;
}

.review-meta-top {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 10px;
    margin-bottom: 4px;
}

.review-author {
    color: #f6f1e7;
    font-size: 1rem;
    font-weight: 600;
}

.review-verified {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px 8px;
    border-radius: 999px;
    background: rgba(34, 197, 94, 0.12);
    color: #86efac;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.review-verified i {
    font-size: 0.75rem;
}

.review-rating-stars {
    display: flex;
    gap: 2px;
    color: #3a3a3a;
    font-size: 0.95rem;
    letter-spacing: 1px;
    line-height: 1;
}

.review-date {
    margin-left: auto;
    color: #7c7c7c;
    font-size: 0.75rem;
    white-space: nowrap;
    padding-top: 4px;
}

.review-photos {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 4px 0 14px;
}

.review-photo {
    display: inline-block;
    margin: 0;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(221, 162, 63, 0.22);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.review-current-photos {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 12px;
}

.review-current-photo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
}

.review-photo:hover {
    transform: scale(1.02);
    border-color: rgba(221, 162, 63, 0.5);
}

.review-photo img {
    width: 72px;
    height: 72px;
    object-fit: cover;
    display: block;
}

.review-text {
    color: #cfc8bb;
    margin: 0;
    line-height: 1.75;
    font-size: 0.98rem;
    font-style: italic;
    border: 0;
    padding: 0;
}

.review-empty {
    display: grid;
    place-items: center;
    gap: 6px;
    text-align: center;
    margin: 0;
    padding: 36px 20px;
    border-radius: 20px;
    border: 1px dashed rgba(221, 162, 63, 0.28);
    background: rgba(255, 255, 255, 0.02);
    color: #a39d90;
}

.review-empty-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 6px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(221, 162, 63, 0.12);
    color: #dda23f;
    font-size: 1.4rem;
}

.review-empty p {
    margin: 0;
    color: #f6f1e7;
    font-size: 1.05rem;
    font-weight: 600;
}

.review-empty span {
    font-size: 0.88rem;
    color: #8a8478;
}

@media (max-width: 575px) {
    .review-card-head {
        flex-wrap: wrap;
    }

    .review-date {
        margin-left: 62px;
        width: 100%;
        padding-top: 0;
    }

    .reviews-summary {
        width: 100%;
    }
}

.review-form-wrap {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
}

.review-form-title {
    font-family: inherit;
    font-size: 1.15rem;
    color: #fff;
    margin: 0 0 16px;
}

.review-form {
    display: grid;
    gap: 14px;
    max-width: 560px;
}

.review-field label {
    display: block;
    margin-bottom: 6px;
    color: #b3b3b3;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.review-optional {
    text-transform: none;
    letter-spacing: 0;
    color: #7c7c7c;
}

.review-input,
.review-file {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    background: #111;
    color: #fff;
    padding: 10px 14px;
}

.review-input:focus {
    outline: none;
    border-color: #d4af37;
}

.review-file {
    padding: 8px 12px;
    color: #b3b3b3;
}

.review-stars {
    display: inline-flex;
    flex-direction: row-reverse;
    gap: 4px;
}

.review-stars input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.review-stars label {
    cursor: pointer;
    font-size: 1.6rem;
    color: #3a3a3a;
    margin: 0;
    text-transform: none;
    letter-spacing: 0;
    transition: color 0.15s ease;
}

.review-stars label:hover,
.review-stars label:hover ~ label,
.review-stars input:checked ~ label {
    color: #ff8c00;
}

.review-error {
    margin: 6px 0 0;
    color: #ef4444;
    font-size: 0.8rem;
}

.review-hint {
    margin: 0;
    color: #7c7c7c;
    font-size: 0.85rem;
}

.review-hint a {
    color: #d4af37;
}

.review-alert {
    border-radius: 12px;
    padding: 12px 14px;
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.review-alert-success {
    background: rgba(34, 197, 94, 0.12);
    color: #86efac;
    border: 1px solid rgba(34, 197, 94, 0.25);
}

.review-alert-error {
    background: rgba(239, 68, 68, 0.12);
    color: #fca5a5;
    border: 1px solid rgba(239, 68, 68, 0.25);
}

.review-alert-info {
    background: rgba(212, 175, 55, 0.1);
    color: #e8c96a;
    border: 1px solid rgba(212, 175, 55, 0.25);
}

.review-login-box {
    display: grid;
    gap: 14px;
    max-width: 420px;
    padding: 18px 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.02);
}

.review-login-box p {
    margin: 0;
    color: #b3b3b3;
}

.review-login-box .btn-solid {
    width: fit-content;
}

/* Product tabs: show all sections, click scrolls to id */
#product-tabs .product-tab-block {
    display: block !important;
    scroll-margin-top: 110px;
    padding: 28px 0 12px;
    border-top: 1px solid rgba(212, 175, 55, 0.18);
}

#product-tabs .product-tab-block:first-of-type {
    border-top: 0;
    padding-top: 8px;
}

#product-tabs .product-tab-heading {
    color: #fff;
    font-size: 1.15rem;
    font-weight: 600;
    margin: 0 0 14px;
}

#product-tabs .tab-heads {
    position: sticky;
    top: 70px;
    z-index: 20;
    background: #0a0a0a;
    padding-top: 8px;
}

#product-tabs .tab-heads button {
    scroll-margin-top: 100px;
}

.review-current-photo {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 10px;
}

.review-current-photo img {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.review-remove-photo {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    color: #b3b3b3;
    font-size: 0.8rem;
    text-transform: none;
    letter-spacing: 0;
    cursor: pointer;
}

.review-form-wrap .review-alert strong {
    color: #e8c96a;
    text-transform: capitalize;
}

.sr-review-swal {
    border: 1px solid rgba(221, 162, 63, 0.28) !important;
    border-radius: 18px !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45) !important;
}

