/* ============================================================
   BARGAIN BOOK HUT — Pixel-Perfect CSS
   Exact colors from design:
     Orange accent:  #C95E1F
     Dark navy:      #283241
     Body text:      #1a1a1a / #3d3d3d
     Muted text:     #6b6b6b
     Light bg:       #f5f5f5
     White:          #ffffff
     Star gold:      #f5a623
     Green badge:    #2d4155 (dark blue-green for Bestseller badge)
============================================================ */

/* ── RESET ──────────────────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family:
        "Inter",
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    background: #ffffff;
    color: #1a1a1a;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    font-family: inherit;
    border: none;
    background: none;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 48px;
}
/* ── HEADER ─────────────────────────────────────────────────── */
.header {
    padding: 6px;
    position: sticky;
    top: 0;
    z-index: 200;
    background: #2a3141;
    border-bottom: 1px solid #2a3141;
}

.header__container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 48px;
    height: 60px;
    display: flex;
    align-items: center;
    gap: 32px;
}

/* Logo */
.header__logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.header__logo-img {
    height: 40px;
    width: auto;
}

.header__logo-fallback {
    display: flex;
    align-items: center;
}

.header__logo-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #c95e1f;
    color: white;
    padding: 4px 8px;
    border-radius: 6px;
    line-height: 1.1;
}

.header__logo-b {
    font-size: 0.6rem;
    font-weight: 900;
    letter-spacing: 0.05em;
}

.header__logo-bk {
    font-size: 0.85rem;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.header__logo-hu {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

/* Nav */
.header__nav {
    flex: 1;
}

.header__nav-list {
    display: flex;
    align-items: center;
    gap: 0;
}

.header__nav-link {
    display: block;
    padding: 0 14px;
    font-size: 0.83rem;
    font-weight: 400;
    color: #ffffff;
    white-space: nowrap;
    line-height: 60px;
    transition: color 0.2s;
}

.header__nav-link:hover {
    color: #c95e1f;
}

.sunburst {
    font-size: 0.7em;
}

/* Actions */
.header__actions {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: auto;
}

.header__icon-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #ffffff;
    transition: background 0.2s;
}

.header__icon-btn:hover {
    /* background: #f5f5f5; */
}

.header__avatar {
    padding: 0;
    overflow: hidden;
}

.header__hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    padding: 8px;
    border-radius: 6px;
}

.header__hamburger span {
    display: block;
    height: 2px;
    background: #1a1a1a;
    border-radius: 2px;
    transition: 0.3s;
}

/* ── BREADCRUMB ─────────────────────────────────────────────── */
.breadcrumb {
    background: #fff;
    border-bottom: 1px solid #e8e8e8;
    padding: 10px 0;
}

.breadcrumb__nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    /*font-size: 0.78rem;
    color: #6b6b6b;*/
    font-weight: 400;
    font-size: 0.8125rem;
    color: #4a5b6e;
    line-height: 19.5px;
    word-wrap: break-word;
    font-family: "Red Hat Text", sans-serif;
}

.breadcrumb__nav a {
    color: #6b6b6b;
    transition: color 0.2s;
}

.breadcrumb__nav a:hover {
    color: #c95e1f;
}

.badge--outline-green .breadcrumb__nav span {
    color: #1a1a1a;
}

.breadcrumb__current {
    color: #1a1a1a;
    font-weight: 500;
    font-size: 0.8229rem;
}

/* ── PRODUCT SECTION ────────────────────────────────────────── */
.product {
    padding: 36px 0 60px;
    background: #fff;
}

.product__grid {
    display: grid;
    grid-template-columns: 520px 1fr;
    gap: 64px;
    align-items: start;
}

/* Gallery */
.gallery {
    display: flex;
    flex-direction: row;
    gap: 14px;
    width: 100%;
    align-items: flex-start;
}

/* ── Vertical scrollable thumbnail strip ── */
.gallery__strip {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 72px;
    flex-shrink: 0;
    /* Show ~3.5 thumbs, last one half-visible = scroll hint */
    max-height: calc((72px * 3) + (10px * 2) + 36px);
    overflow-y: scroll;
    overflow-x: hidden;
    scrollbar-width: none;
    scroll-behavior: smooth;
    padding-bottom: 4px;
    /* Fade bottom to hint more content below */
    -webkit-mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
}

.gallery__strip::-webkit-scrollbar {
    display: none;
}

/* ── Each thumbnail ── */
.gallery__thumb {
    width: 72px;
    height: 100px;
    flex-shrink: 0;
    border: 2px solid transparent;
    border-radius: 8px;
    overflow: hidden;
    padding: 0;
    background: #f4f4f4;
    cursor: pointer;
    transition:
        border-color 0.2s,
        box-shadow 0.2s,
        transform 0.2s;
    display: block;
}

.gallery__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery__thumb:hover {
    border-color: #c95e1f;
    transform: scale(1.03);
}

.gallery__thumb.is-active {
    border-color: #c95e1f;
    box-shadow: 0 0 0 3px rgba(201, 94, 31, 0.15);
}

/* ── Big main image ── */
.gallery__main-wrap {
    flex: 1;
    aspect-ratio: 1 / 1;
    border-radius: 12px;
    overflow: hidden;
    background: #f4f4f4;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.gallery__main-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
    display: block;
}

.gallery__main-wrap:hover img {
    transform: scale(1.03);
}

/* Product Info */
.pinfo__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 16px;
}

.badge {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
}

/* Orange filled pill */
.badge--orange {
  /*  background: #c95e1f;*/
    color: #fff;
}

/* Dark navy pill */
.badge--dark {
   /* background: #2d4155;*/
    color: #fff;
}

/* Outlined pill */
.badge--outline {
    border: 1.5px solid #c8c8c8;
    color: #4a5b6e;
    background: #fff;
}

/* Green-tinted outlined */
.badge--outline-green {
    border: 1.5px solid #8fa689;
    color: #1f3047;
   /* background: #c5d4bc;*/
}

.pinfo__title {
    /* font-family: "Fraunces", Georgia, serif;
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1.15;
    color: #1a1a1a;
    margin-bottom: 8px; */
    color: #1a2b3c;
    font-size: 40px;
    font-family: Fraunces;
    font-weight: 400;
    line-height: 48.53px;
    word-wrap: break-word;
}

.pinfo__meta {
    font-size: 0.88rem;
    color: #4a5b6e;
    margin-bottom: 16px;
}

.pinfo__author-link {
    color: #c95e1f;
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}

.pinfo__author-link:hover {
    border-color: #c95e1f;
}


 .wylt__row,
.wpb__pill,
.lr__pill,
.gtbtg__pill,
.wilco-house__pill,
.wilco-house__pill ,
.dotm__pill {
     min-height: 30px !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Goodreads row */
.pinfo__goodreads {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 6px 14px;
    font-size: 0.82rem;
    color: #3d3d3d;
    margin-bottom: 24px;
}

.gr-stars {
    color: #f5a623;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.gr-half {
    opacity: 0.4;
}

.gr-score {
    font-weight: 700;
    font-size: 0.9rem;
    color: #1a1a1a;
}

.gr-on {
    color: #9a9a9a;
    font-size: 0.78rem;
}

.gr-logo {
    font-family: Georgia, serif;
    font-weight: 700;
    font-size: 0.88rem;
    color: #553b08;
    letter-spacing: -0.01em;
}

.gr-count {
    color: #9a9a9a;
    font-size: 0.78rem;
}

/* Price */
.pinfo__price-row {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 4px;
}

.pinfo__price {
    font-family: "Fraunces", sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: #c95e1f;
    line-height: 1;
}

.pinfo__mrp {
    font-size: 1rem;
    color: #9a9a9a;
    text-decoration: line-through;
    font-weight: 400;
}

.pinfo__off-badge {
    background: #c95e1f;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: 0.04em;
    align-self: center;
}

.pinfo__savings {
    font-size: 0.78rem;
    color: #5a7a5a;
    margin-bottom: 16px;
}


/* Member strip */
.member-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
   /* background: #fdf6f0;
    border: 1.5px solid #e8c8a8;*/
    border-radius: 6px;
    padding: 10px 16px;
    font-size: 0.82rem;
    color: #3d3d3d;
    margin-bottom: 24px;
    gap: 12px;
}

.member-strip strong {
    color: #c95e1f;
}

.member-strip__cta {
    color: #1a2b3c;
    font-weight: 600;
    white-space: nowrap;
    font-size: 0.82rem;
    transition: opacity 0.2s;
}

.member-strip__cta:hover {
    opacity: 0.75;
}

/* Format tabs */
.pinfo__label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: #8a8a8a;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.format-tabs {
    
      display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

.format-tab {
   /* flex: 1;
    border: 1.5px solid #d8d8d8;
    border-radius: 6px;
    padding: 10px 12px;
    text-align: left;
    cursor: pointer;
    background: #fff;
    transition:
        border-color 0.2s,
        background 0.2s;
    display: flex;
    flex-direction: column;
    gap: 2px;*/
    
     border: 1.5px solid #d8d8d8;
    border-radius: 6px;
    padding: 16px 12px;
    text-align: left;
    cursor: pointer;
    background: #fff;
    transition:
        border-color 0.2s,
        background 0.2s;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.format-tab__name {
    font-size: 0.85rem;
    font-weight: 500;
    color: #1a1a1a;
}

.format-tab__sub {
    font-size: 0.72rem;
    color: #8a8a8a;
}

.format-tab--active {
    border-color: #c95e1f;
    background: #fffbf7;
}

.format-tab--active .format-tab__name {
    color: #c95e1f;
}

.format-tab--muted .format-tab__name {
    color: #ababab;
}

.format-tab--muted .format-tab__sub {
    color: #bbb;
}

.format-tab:hover:not(.format-tab--active) {
    border-color: #aaa;
}

/* Quantity + Add to Bag */
.buy-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.qty {
    display: flex;
    align-items: center;
    border: 1.5px solid #d8d8d8;
    border-radius: 6px;
    overflow: hidden;
}

.qty__btn {
    width: 38px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #3d3d3d;
    transition: background 0.15s;
}

.qty__btn:hover {
    background: #f5f5f5;
}

.qty__val {
    min-width: 36px;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
}

.btn-bag {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #c95e1f;
    color: #fff;
    border-radius: 6px;
    height: 44px;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    transition:
        background 0.2s,
        transform 0.15s;
}

.btn-bag:hover {
    background: #a85210;
    transform: translateY(-1px);
}

.btn-bag:active {
    transform: none;
}

.btn-bookmark,
.btn-wish {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
   /* border: 1.5px solid #d8d8d8;*/
    border-radius: 6px;
    color: #6b6b6b;
    transition:
        border-color 0.2s,
        color 0.2s,
        background 0.2s;
    flex-shrink: 0;
}

.btn-bookmark:hover {
    border-color: #c95e1f;
    color: #c95e1f;
    background: #fffbf7;
}

.btn-wish:hover {
    border-color: #e84393;
    color: #e84393;
    background: #fff0f6;
}

.btn-wish.is-wished {
    border-color: #e84393;
    color: #e84393;
}

.btn-wish.is-wished svg {
    fill: #e84393;
    stroke: #e84393;
}

.bulk-note {
    font-size: 0.78rem;
    color: #8a8a8a;
    margin-bottom: 20px;
}

.bulk-note strong {
    color: #1a1a1a;
}

.bulk-note a {
    color: #c95e1f;
    font-weight: 500;
    border-bottom: 1px dotted #c95e1f;
}

/* Delivery perks */
.perks {
    display: flex;
    gap: 0;
    border-top: 1px solid #ebebeb;
    border-bottom: 1px solid #ebebeb;
    padding: 16px 0;
    margin-bottom: 16px;
}

.perk {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    flex: 1;
    padding: 0 16px 0 0;
}

.perk+.perk {
    padding-left: 16px;
    border-left: 1px solid #ebebeb;
}

.perk__h {
    font-size: 0.82rem;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.3;
}

.perk__s {
    font-size: 0.72rem;
    color: #8a8a8a;
    line-height: 1.3;
}

/* Extras */
.extras {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.extra-btn {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: #f9f9f9;
    border: 1.5px solid #e8e8e8;
    border-radius: 8px;
    padding: 12px 16px;
    flex: 1;
    min-width: 180px;
    cursor: pointer;
    text-align: left;
    transition:
        border-color 0.2s,
        background 0.2s;
}

.extra-btn:hover {
    border-color: #c95e1f;
    background: #fffbf7;
}

.extra-btn strong {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: #1a1a1a;
}

.extra-btn span {
    font-size: 0.72rem;
    color: #8a8a8a;
}

.extra-btn svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: #6b6b6b;
}

/* ── ABOUT SECTION ──────────────────────────────────────────── */
.about {
    padding: 64px 0;
    background: #fff;
    border-top: 1px solid #ebebeb;
}

.about__grid {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 80px;
    align-items: start;
}

.about__label h2 {
    font-family: "Fraunces", Georgia, serif;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.15;
    color: #1a1a1a;
}

.about__body p {
    font-size: 0.92rem;
    line-height: 1.8;
    color: #3d3d3d;
    margin-bottom: 14px;
}

.dropcap {
    float: left;
    font-family: "Fraunces", Georgia, serif;
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 0.78;
    margin-right: 6px;
    margin-top: 6px;
    color: #c95e1f;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.tag {
    border: 1px solid #d8d8d8;
    border-radius: 20px;
    padding: 4px 12px;
    font-size: 0.75rem;
    color: #5a5a5a;
    background: #fff;
    transition:
        border-color 0.2s,
        color 0.2s;
}

.tag:hover {
    border-color: #c95e1f;
    color: #c95e1f;
}

/* ── REVIEWS SECTION ────────────────────────────────────────── */
.reviews {
    background: #f5f5f5;
    padding: 64px 0;
}

.reviews__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 36px;
}

.reviews__title {
    font-family: "Fraunces";
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.reviews__gr-word {
    /*font-style: italic; */
    color: #1a1a1a;
}

.reviews__sub {
    font-size: 0.8rem;
    color: #8a8a8a;
}

.reviews__all-link {
    font-size: 0.82rem;
    font-weight: 600;
    color: #c95e1f;
    white-space: nowrap;
    transition: opacity 0.2s;
}

.reviews__all-link:hover {
    opacity: 0.7;
}

.reviews__body {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 28px;
    align-items: start;
}

/* Rating summary box */
.rsum {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    padding: 28px;
}

.rsum__big {
    font-family: "Fraunces", Georgia, serif;
    font-size: 3.6rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1;
}

.rsum__big span {
    font-size: 1.4rem;
    color: #8a8a8a;
    font-family: "Inter", sans-serif;
    font-weight: 400;
}

.rsum__stars {
    font-size: 1.3rem;
    color: #f5a623;
    margin: 6px 0 4px;
}

.rsum__count {
    font-size: 0.72rem;
    color: #8a8a8a;
    margin-bottom: 16px;
}

.rsum__bars {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.rbar {
    display: grid;
    grid-template-columns: 28px 1fr 36px;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    color: #6b6b6b;
}

.rbar__track {
    background: #ebebeb;
    height: 6px;
    border-radius: 3px;
    overflow: hidden;
}

.rbar__fill {
    height: 100%;
    background: #f5a623;
    border-radius: 3px;
    transition: width 1s ease;
}

/* Review list */
.rlist {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.rcard {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    padding: 20px 24px;
    transition: box-shadow 0.2s;
}

.rcard:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.rcard__top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.rcard__avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: #fff;
    flex-shrink: 0;
}

.rcard__meta strong {
    font-size: 0.88rem;
    font-weight: 600;
    display: block;
}

.rcard__stars {
    font-size: 0.75rem;
    color: #f5a623;
    line-height: 1.2;
}

.rcard__date {
    font-size: 0.72rem;
    color: #9a9a9a;
}

.rcard__text {
    font-size: 0.85rem;
    line-height: 1.7;
    color: #3d3d3d;
    font-style: italic;
    margin-bottom: 10px;
}

.rcard__footer {
    display: flex;
    gap: 16px;
    font-size: 0.72rem;
    color: #9a9a9a;
}

/* Mention box */
.mention-box {
    background: #fff;
    border: 1px dashed #d8d8d8;
    border-radius: 10px;
    padding: 20px 24px;
}

.mention-box__label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #9a9a9a;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.mention-box__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.mention-box__tags span {
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    padding: 4px 12px;
    font-size: 0.75rem;
    color: #3d3d3d;
    background: #f9f9f9;
    transition: background 0.2s;
}

.mention-box__tags span:hover {
    background: #fffbf7;
    border-color: #c95e1f;
}

.mention-box__tags strong {
    color: #c95e1f;
    font-weight: 600;
}

/* ── AUTHOR SECTION ─────────────────────────────────────────── */
.author {
    background: #c95e1f;
    padding: 72px 0 0;
    color: #fff;
}

.author__grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 64px;
    align-items: start;
    padding-bottom: 52px;
}

.author__photo img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    object-position: top;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.author__label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.65);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.author__name {
    font-family: "Fraunces", Georgia, serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 4px;
}

.author__tagline {
    font-family: "Fraunces", serif;
    font-style: italic;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.author__text {
    font-family: "Red Hat Text", sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 14px;
}

.author__stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 28px;
    padding-top: 20px;
}

.astat {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-right: 16px;
}

.astat__key {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.astat__val {
    font-size: 0.88rem;
    font-weight: 600;
    color: #fff;
}

/* More by author */
.more-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 16px;
}

.book-scroll {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 32px;
    scrollbar-width: none;
}

.book-scroll::-webkit-scrollbar {
    display: none;
}

.bk {
    flex-shrink: 0;
    width: 140px;
    cursor: pointer;
}

.bk img {
    width: 100%;
    aspect-ratio: 2/3;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    transition:
        transform 0.25s,
        box-shadow 0.25s;
    margin-bottom: 6px;
}

.bk:hover img {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.bk p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
}

.bk p s {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.7rem;
}

/* ── RECOMMENDATIONS ────────────────────────────────────────── */
.reco {
    background: #fff;
    padding: 72px 0;
}

.reco__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 36px;
    flex-wrap: wrap;
    gap: 12px;
}

.reco__title {
    font-family: "Piazzolla", Georgia, serif;
    font-size: 2.2rem;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.reco__sub {
    font-size: 0.82rem;
    color: #8a8a8a;
}

.reco__browse {
    font-size: 0.82rem;
    font-weight: 600;
    color: #c95e1f;
    white-space: nowrap;
    transition: opacity 0.2s;
}

.reco__browse:hover {
    opacity: 0.7;
}

/* Reco section — horizontal scroll carousel with fixed card size */
.reco__grid {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 16px;
    scrollbar-width: none;
}

.reco__grid::-webkit-scrollbar {
    display: none;
}

.rbook {
    flex: 0 0 280px;
    /* fixed card width */
    width: 280px;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    display: flex;
    flex-direction: column;
    scroll-snap-align: start;
    transition:
        box-shadow 0.25s,
        transform 0.25s;
    cursor: pointer;
    padding-bottom: 20px;
}

.rbook:hover {
    box-shadow: 0 10px 36px rgba(0, 0, 0, 0.13);
    transform: translateY(-5px);
}

.rbook__cover {
    overflow: hidden;
    flex-shrink: 0;
}

.rbook__cover img {
    width: 100%;
    aspect-ratio: 2/3;
    object-fit: cover;
    display: block;
    border-radius: 0;
    transition: transform 0.35s ease;
}

.rbook:hover .rbook__cover img {
    transform: scale(1.04);
}

.rbook__title {
    font-family: Piazzolla, Georgia, serif;
    font-size: 1rem;
    font-weight: 400;
    color: #1a1a1a;
    padding: 14px 14px 4px;
    line-height: 1.35;
    flex: 1;
}

.rbook__author {
    font-size: 0.75rem;
    color: #8a8a8a;
    padding: 4px 14px 8px;
}

.rbook__price {
    font-size: 0.85rem;
    color: #8a8a8a;
    padding: 0 14px 10px;
}

.rbook__price strong {
    color: #c95e1f;
    font-weight: 700;
    margin-right: 6px;
    font-size: 1rem;
}

.rbook__price s {
    font-size: 0.82rem;
}

.rbook__btn {
    
    
    width: 100%;
    padding: 9px 0;
    /* background: #fff; */
    color: #bc580a;
    font-family: "Red Hat Text", sans-serif;
    font-size: 0.84rem;
    font-weight: 700;
    border-radius: 6px;
    border: 1px solid;
    cursor: pointer;
    letter-spacing: 0.02em;
    margin-top: auto;
    transition: background 0.18s, transform 0.14s;
    /*display: block;
    width: calc(100% - 28px);
    margin: 0 14px 14px;
    background: #c95e1f;
    color: #fff;
    border-radius: 8px;
    padding: 11px;
    font-size: 0.88rem;
    font-weight: 600;
    text-align: center;
    transition: background 0.2s;
    border: none;
    cursor: pointer;*/
}

.rbook__btn:hover {
    background: #a85210;
}

/* ── CAN'T FIND ─────────────────────────────────────────────── */
.cant-find {
    background: #283241;
    padding: 48px 0;
    border-top: 1px solid #ebebeb;
    padding-bottom: 1px;
}

.cant-find__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    padding-bottom: 2px;
}

.cant-find__title {
    font-family: "Piazzolla", Georgia, serif;
    font-size: 2rem;
    font-weight: 400;
    color: #fff;
    margin-bottom: 6px;
}

.cant-find__sub {
    /* font-size: 0.85rem;
    color: #6b6b6b;
    max-width: 400px; */
    color: white;
    font-size: 1rem;
    font-family: Red Hat Text;
    font-weight: 400;
    line-height: 24px;
    max-width: 327px;
}

.cant-find__cta {
    font-size: 0.85rem;
    font-weight: 600;
    color: #c95e1f;
    white-space: nowrap;
    transition: opacity 0.2s;
}

.cant-find__cta:hover {
    opacity: 0.7;
}

/* ── FOOTER ─────────────────────────────────────────────────── */
.footer {
    background: #283241;
    padding: 64px 0 0px;
}

.footer__grid {
    display: grid;
    grid-template-columns: 280px repeat(3, 1fr);
    gap: 48px;
    padding-bottom: 48px;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer__logo-icon {
    flex-shrink: 0;
}

.footer__logo-name {
    /*font-family: "Fraunces", Georgia, serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff; */
    color: white;
    font-size: 32px;
    font-family: Piazzolla;
    font-weight: 400;
    line-height: 38.4px;
    word-wrap: break-word;
}

.footer__desc {
    font-size: 0.8rem;
    line-height: 1.7;
    color: #8a9ab0;
    margin-bottom: 20px;
}

.footer__social {
    display: flex;
    gap: 10px;
}

.footer__social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8a9ab0;
    transition:
        background 0.2s,
        color 0.2s;
}

.footer__social-icon:hover {
    background: rgba(200, 100, 20, 0.3);
    color: #fff;
}

.footer__col h4 {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 16px;
}

.footer__col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__col a {
    font-size: 0.82rem;
    color: #8a9ab0;
    transition: color 0.2s;
}

.footer__col a:hover {
    color: #fff;
}

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1100px) {
    .product__grid {
        grid-template-columns: 420px 1fr;
        gap: 48px;
    }

    /* reco is a scroll carousel - no grid override needed */
    .footer__grid {
        grid-template-columns: 220px repeat(3, 1fr);
        gap: 32px;
    }

    .author__stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 900px) {
    .container {
        padding: 0 24px;
    }

    .header__container {
        padding: 0 24px;
    }

    .header__nav {
        display: none;
    }

    .header__hamburger {
        display: flex;
    }

    .header__nav.is-open {
        display: block;
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: #2a3141;
        border-bottom: 1px solid #3a4255;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
        z-index: 199;
    }

    .header__nav.is-open .header__nav-list {
        flex-direction: column;
        padding: 8px 0;
    }

    .header__nav.is-open .header__nav-link {
        line-height: 1;
        padding: 14px 24px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        font-size: 0.95rem;
        color: #ffffff;
    }

    .product__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .gallery__strip {
        width: 56px;
        max-height: calc((56px * 1.4 * 3) + (10px * 2) + 28px);
    }

    .gallery__thumb {
        width: 56px;
        height: 78px;
    }

    .gallery__main-wrap {
        max-height: 420px;
    }

    .about__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .reviews__body {
        grid-template-columns: 1fr;
    }

    .rsum {
        max-width: 320px;
    }

    .author__grid {
        grid-template-columns: 1fr;
    }

    .author__photo img {
        max-width: 260px;
        margin: 0 auto;
    }

    /* reco carousel shows all cards via scroll */

    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .cant-find__inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 600px) {

    .product__grid,
    .about__grid {
        gap: 24px;
    }

    .pinfo__title {
        font-size: 1.9rem;
    }

    .format-tabs {
        flex-direction: column;
    }

    .buy-bar {
        flex-wrap: wrap;
    }

    .btn-bag {
        width: 100%;
    }

    .perks {
        flex-direction: column;
        gap: 12px;
    }

    .perk+.perk {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid #ebebeb;
        padding-top: 12px;
    }

    /* reco carousel - mobile scrolls naturally */
    .footer__grid {
        grid-template-columns: 1fr;
    }

    .author__stats {
        grid-template-columns: 1fr 1fr;
    }

    .reviews__title {
        font-size: 1.5rem;
    }
}

/* ── REAL LOGO SVG sizing ───────────────────────────────────── */
.header__logo-svg {
    display: flex;
    align-items: center;
}

.header__logo-svg svg {
    width: 44px;
    height: 42px;
    display: block;
}

/* Footer logo SVG */
.footer-svg-wrap {
    display: flex;
    align-items: center;
}

.footer-svg-wrap svg {
    width: 52px;
    height: 50px;
    display: block;
}

/* Avatar in header */
.header__avatar img {
    width: 30px !important;
    height: 30px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    object-position: top center !important;
    border: 2px solid #e8e8e8;
}

/* ═══════════════════════════════════════════════════════════════
   BESTSELLERS SECTION — pixel-perfect match
═══════════════════════════════════════════════════════════════ */
.bs {
    padding: 25px 0 80px;
    background: #fff;
}

.bs__inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 48px;
}

/* Head row */
.bs__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 24px;
}

.bs__title {
    font-family: "Piazzolla", Georgia, serif;
    font-size: clamp(32px, 3.8vw, 52px);
    font-weight: 400;
    line-height: 1.05;
    color: #1B150E;
    letter-spacing: -0.01em;
}

.bs__sub {
    font-family: "Red Hat Text", sans-serif;
    font-size: clamp(0.875rem, 2.5vw, 1rem);
    font-weight: 400;
    color: #000;
    margin-top: 8px;
    line-height: 1.5;
}

.bs__browse {
    font-family: "Red Hat Text", sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #e77e38;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
    padding: 0;
    transition: gap 0.2s;
    flex-shrink: 0;
    margin-bottom: 4px;
}

.bs__browse:hover {
    gap: 9px;
}

/* Filter pills */
.bs__filters {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 4px;
    margin-bottom: 36px;
    flex-wrap: nowrap;
    cursor: grab;
}

.bs__filters::-webkit-scrollbar {
    display: none;
}

.bs__pill {
    flex-shrink: 0;
    height: 38px;
    padding: 0 20px;
    border-radius: 100px;
    border: 1.5px solid #e0e0e0;
    background: #fff;
    font-family: "Red Hat Text", sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: #1a1a1a;
    cursor: pointer;
    transition: all 0.15s;
    white-space: nowrap;
}

.bs__pill:hover {
    border-color: #283241;
    color: #283241;
}

.bs__pill.active {
    background: #fcf4ee;
    border-color: #fcf4ee;
    color: #2A3141;
    font-weight: 700;
}

/* Cards row — bleeds to edges so scroll works */
.bs__row {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding-bottom: 8px;
    /* Pull row full-width beyond .bs__inner padding */
    margin-left: -48px;
    margin-right: -48px;
    padding-left: 48px;
    padding-right: 48px;
    /* Fade right edge — hints more content
    -webkit-mask-image: linear-gradient(to right, black 88%, transparent 100%);
    mask-image: linear-gradient(to right, black 88%, transparent 100%);*/
    cursor: grab;
}

.bs__row:active {
    cursor: grabbing;
}

.bs__row::-webkit-scrollbar {
    display: none;
}

/* Individual card */
.bs__card {
    flex-shrink: 0;
    width: 560px;
    min-width: 0;
    border: 1px solid #ebebeb;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    scroll-snap-align: start;
    background: #fff;
    transition:
        box-shadow 0.22s,
        transform 0.22s;
    /* cursor: pointer; */
}

.bs__card:hover {
    box-shadow: 0 10px 36px rgba(0, 0, 0, 0.09);
    transform: translateY(-2px);
}

/* Cover */
.bs__cover {
    width: 240px;
    flex-shrink: 0;
    overflow: hidden;
    position: relative;
    min-height: 360px;
    background: #f0f0f0;
}

.bs__cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.38s ease;
}

.bs__card:hover .bs__cover img {
    transform: scale(1.04);
}

.bs__badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: #e77e38;
    color: #fff;
    font-family: "Red Hat Text", sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 100px;
    letter-spacing: 0.03em;
}

/* Body */
.bs__body {
    flex: 1;
    min-width: 0;
    padding: 24px 22px 20px;
    display: flex;
    flex-direction: column;
    gap: 0;
    overflow: hidden;
}

.bs__name {
    font-family: "Piazzolla", Georgia, serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.3;
    margin-bottom: 4px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.bs__author {
    font-family: "Red Hat Text", sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.bs__gr {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 14px;
}

.bs__stars {
    display: flex;
    gap: 2px;
}

.bs__stars svg {
    width: 15px;
    height: 15px;
}

.bs__gr-text {
    font-family: "Red Hat Text", sans-serif;
    font-size: 0.78rem;
    color: #888;
}

.bs__gr-logo {
    font-family: "Fraunces", sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    color: #372213;
    letter-spacing: -0.01em;
}

.bs__desc {
    font-family: "Red Hat Text", sans-serif;
    font-size: 0.875rem;
    line-height: 1.65;
    color: #4a4a4a;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    /* margin-bottom: auto; */
}

.bs__footer {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bs__price-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.bs__btn-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.bs__price-now {
    font-family: "Red Hat Text", sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
}

.bs__price-was {
    font-family: "Red Hat Text", sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    color: #afafaf;
    text-decoration: line-through;
}

.bs__off {
    margin-left: auto;
    background: #f4af00;
    color: #fff;
    font-family: "Red Hat Text", sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 100px;
    letter-spacing: 0.02em;
}

.bs__atb {
     height: 40px;
    padding: 0 20px;
    border-radius: 8px;
   /* background: #fff;*/
    color: #c95e1f;
    font-family: "Red Hat Text", sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    border: 1px solid;
    cursor: pointer;
    transition:
        background 0.15s,
        transform 0.15s;
    white-space: nowrap;
    display: flex;
    align-items: center;
}

.bs__atb:hover {
    background: #F7ECE7;
    transform: scale(1.03);
}

.bs__save {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: 1.5px solid #e0e0e0;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    cursor: pointer;
    transition:
        border-color 0.15s,
        color 0.15s;
    flex-shrink: 0;
}

.bs__save:hover {
    border-color: #c95e1f;
    color: #c95e1f;
}


/* ═══════════════════════════════════════════════════════════════
   MOBILE RESPONSIVE — Bestsellers
═══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    .bs__inner {
        padding: 0 20px;
    }

    .bs__title {
        font-size: 2rem;
    }

    .bs__card {
        width: 85vw;
        min-width: 280px;
        flex-direction: column;
    }

    .bs__cover {
        width: 100%;
        min-height: 220px;
        max-height: 260px;
    }

    .bs__body {
        padding: 16px 16px 14px;
    }

    .bs__name {
        font-size: 1.4rem;
    }

    .bs__desc {
        -webkit-line-clamp: 3;
        line-clamp: 3;
    }

    .bs__footer {
        gap: 8px;
    }

    .bs__price-now {
        font-size: 1rem;
    }

    .bs__atb {
        height: 36px;
        padding: 0 14px;
        font-size: 0.8rem;
    }

    .bs__save {
        width: 36px;
        height: 36px;
    }

    .bs__row {
        margin-left: -20px;
        margin-right: -20px;
        padding-left: 20px;
        padding-right: 20px;
        /* -webkit-mask-image: linear-gradient(
            to right,
            black 80%,
            transparent 100%
        );
        mask-image: linear-gradient(to right, black 80%, transparent 100%);*/
    }

    .bs__head {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .bs {
        padding: 40px 0 56px;
    }

    .bs__filters {
        gap: 6px;
        margin-bottom: 24px;
    }

    .bs__pill {
        height: 34px;
        padding: 0 14px;
        font-size: 0.8rem;
    }
}

/* ── FOOTER ─────────────────────────────────────────────────── */
.footer {
    background: #283241;
    padding: 64px 0 0px;
}

.footer__grid {
    display: grid;
    grid-template-columns: 280px repeat(3, 1fr);
    gap: 48px;
    padding-bottom: 48px;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer__logo-icon {
    flex-shrink: 0;
}

.footer__logo-name {
    /*font-family: "Fraunces", Georgia, serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff; */
    color: white;
    font-size: 32px;
    font-family: Piazzolla;
    font-weight: 400;
    line-height: 38.4px;
    word-wrap: break-word;
}

.footer__desc {
    font-size: 0.8rem;
    line-height: 1.7;
    color: #8a9ab0;
    margin-bottom: 20px;
}

.footer__social {
    display: flex;
    gap: 10px;
}

.footer__social-icon {
    width: 31px;
    height: 31px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #232425;
    background: white;
    transition:
        background 0.2s,
        color 0.2s;
}

.footer__social-icon:hover {
    background: rgba(200, 100, 20, 0.3);
    color: #fff;
}

.footer__col h4 {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 16px;
}

.footer__col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__col a {
    font-size: 0.82rem;
    color: #8a9ab0;
    transition: color 0.2s;
}

.footer__col a:hover {
    color: #fff;
}


/* ═══════════════════════════════════════════════════════════════
   FULL MOBILE RESPONSIVE — Bargain Book Hut Homepage
   Breakpoints: 900px (tablet), 600px (large mobile), 480px (small mobile)
   Rule: No font-family, color, or aesthetic changes. Layout only.
═══════════════════════════════════════════════════════════════ */

/* ── HEADER: hamburger color fix for dark bg ── */
.header__hamburger span {
    background: #ffffff;
}

/* ══════════════════════════════════════
   TABLET — 900px and below
══════════════════════════════════════ */
@media (max-width: 900px) {

    /* Search bar */
    #searchBarInner {
        padding: 0 24px;
    }

    #searchHints {
        padding: 0 24px;
    }

    /* Footer bottom bar */
    .footer__bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

/* ══════════════════════════════════════
   LARGE MOBILE — 768px and below
══════════════════════════════════════ */
@media (max-width: 768px) {

    /* ── Shared container padding ── */
    .container {
        padding: 0 20px;
    }

    /* ── Footer grid ── */
    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
        padding-bottom: 32px;
    }

    .footer__logo-name {
        font-size: 24px;
        line-height: 1.2;
    }

    /* ── Bestsellers section inner ── */
    .bs__inner {
        padding: 0 20px;
    }

    .bs__row {
        margin-left: -20px;
        margin-right: -20px;
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* ══════════════════════════════════════
   MOBILE — 600px and below
══════════════════════════════════════ */
@media (max-width: 600px) {

    /* Footer single column */
    .footer__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    /* Can't find section */
    .cant-find__title {
        font-size: 1.5rem;
    }

    .cant-find__sub {
        font-size: 0.9rem;
        max-width: 100%;
    }

    /* Reco section */
    .reco__title {
        font-size: 1.6rem;
    }

    .reco__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .rbook {
        flex: 0 0 200px;
    }

    /* Author section */
    .author {
        padding: 48px 0 0;
    }

    .author__name {
        font-size: 1.8rem;
    }

    .author__stats {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    /* Reviews */
    .reviews {
        padding: 40px 0;
    }

    .rsum {
        max-width: 100%;
    }

    /* About */
    .about {
        padding: 40px 0;
    }

    .about__label h2 {
        font-size: 1.5rem;
    }

    .dropcap {
        font-size: 3rem;
    }
}

/* ══════════════════════════════════════
   SMALL MOBILE — 480px and below
══════════════════════════════════════ */
@media (max-width: 480px) {

    /* Header */
    .header__container {
        padding: 0 16px;
        gap: 16px;
    }

    /* Footer */
    .footer {
        padding: 40px 0 0;
    }

    .footer__grid {
        grid-template-columns: 1fr;
    }

    .footer__logo-name {
        font-size: 22px;
    }

    /* Search bar */
    #searchBarInner {
        padding: 0 16px;
    }

    #searchHints {
        padding: 0 16px;
    }

    #searchPill {
        height: 48px;
    }

    /* Can't find */
    .cant-find {
        padding: 36px 0;
    }

    .cant-find__title {
        font-size: 1.3rem;
    }

    /* Reco */
    .rbook {
        flex: 0 0 180px;
    }

    /* Bs section */
    .bs__inner {
        padding: 0 16px;
    }

    .bs__row {
        margin-left: -16px;
        margin-right: -16px;
        padding-left: 16px;
        padding-right: 16px;
    }
}

/* Mothers day section */
.mday-wrap {
    position: relative;
    width: 100%;
    margin: 0 auto;
    font-family: "Red Hat Text", system-ui, -apple-system, sans-serif;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
}

.mday-carousel {
    position: relative;
    width: calc(100% - 80px);
    max-width: 1200px;
    margin: 60px auto 0;
    border-radius: 20px;
    background: #F8F6EF;
    z-index: 5;
}

.mday-slide {
    display: none;
    position: relative;
    width: 100%;
    border-radius: 20px;
    padding: 40px;
}

.mday-slide.is-active {
    display: block;
}

.mday-content {
    position: relative;
    width: 100%;
    z-index: 5;
}

.mday-title {
    color: #1B150E;
    font-family: Piazzolla;
    font-size: 64px;
    font-style: normal;
    font-weight: 400;
    line-height: 76.8px;
}

.mday-title em {
    color: #1B150E;
    font-family: Piazzolla;
    font-size: 64px;
    font-style: italic;
    font-weight: 400;
    line-height: 76.8px;
}

.mday-subtitle {
    color: #1B150E;
    font-family: "Red Hat Text";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}

.mday-discount-box {
    display: flex;
    flex-direction: column;
    margin: 40px 0;
}

.mday-save-text {
    color: #1B150E;
    font-family: "Red Hat Text";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.mday-percentage {
    color: #2A3141;
    font-family: Piazzolla;
    font-size: 60px;
    font-style: normal;
    font-weight: 700;
    line-height: 78px;
    margin-top: -12px;
}

.mday-select-titles {
    color: #1B150E;
    font-family: "Red Hat Text";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.mday-btn {
    color: #FFF;
    font-family: "Red Hat Text";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    display: flex;
    height: 44px;
    padding: 16px 24px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 8px;
    background: #BC580A;
}

.mday-btn:hover {
    background-color: #A34C08;
}

.mday-image-wrapper {
    position: absolute;
    right: 0;
    bottom: 0px;
    width: 100%;
    height: 90%;
    z-index: 1;
    pointer-events: none;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.mday-image-wrapper img {
    width: auto;
    height: 100%;
    max-width: 100%;
    object-fit: contain;
    object-position: bottom right;
}

.mday-arrow {
    position: absolute;
    top: 50%;
    right: -25px;
    z-index: 10;
}

.mday-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.mday-trust {
    margin-top: 60px;
    width: 100%;
    background: #BC580A;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 64px;
    padding: 45px 40px;
}

.mday-trust__item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mday-trust__icon-box {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mday-trust__icon-box svg {
    max-width: 100%;
    max-height: 100%;
    height: auto;
}

.mday-trust__content {
    display: flex;
    flex-direction: column;
}

.mday-trust__name {
    color: #FFF;
    font-family: Piazzolla;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
}

.mday-trust__desc {
    width: 150px;
    color: #FFF;
    font-family: "Red Hat Text";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}

@media (max-width: 1024px) {

    .mday-title,
    .mday-title em,
    .mday-percentage {
        font-size: 45px;
    }

    .mday-subtitle {
        font-size: 18px;
    }

    .mday-save-text,
    .mday-select-titles,
    .mday-btn {
        font-size: 14px;
    }

    .mday-discount-box {
        margin: 30px 0;
    }

    .mday-slide {
        padding: 30px;
    }

    .mday-image-wrapper {
        height: 85%;
    }

    .mday-dots {
        width: 40px;
        margin-top: 18px;
    }

    .mday-trust {
        margin-top: 45px;
        padding: 35px 30px;
        gap: 50px;
    }

    .mday-trust__icon-box {
        width: 60px;
        height: 60px;
    }

    .mday-trust__name {
        font-size: 20px;
    }

    .mday-trust__desc {
        font-size: 12px;
    }
}

@media (max-width: 768px) {

    .mday-title,
    .mday-title em,
    .mday-percentage {
        line-height: 120%;
        font-size: 35px;
    }

    .mday-title {
        margin: 15px 0;
    }

    .mday-subtitle {
        font-size: 14px;
    }

    .mday-save-text,
    .mday-select-titles,
    .mday-btn {
        font-size: 10px;
    }

    .mday-btn {
        padding: 12px 18px;
    }

    .mday-discount-box {
        margin: 12px 0;
    }

    .mday-slide {
        padding: 20px;
    }

    .mday-image-wrapper {
        height: 75%;
    }

    .mday-arrow {
        height: 30px;
    }

    .mday-dots {
        width: 36px;
        margin-top: 16px;
    }

    .mday-trust {
        margin-top: 32px;
        padding: 25px 20px;
        gap: 30px;
    }

    .mday-trust__icon-box {
        width: 40px;
        height: 40px;
    }

    .mday-trust__name {
        font-size: 16px;
    }

    .mday-trust__desc {
        font-size: 10px;
    }
}

@media (max-width: 480px) {

    .mday-slide {
        padding: 16px;
    }

    .mday-title,
    .mday-title em {
        font-size: 24px;
        line-height: 100%;
        margin: 10px 0;
    }

    .mday-subtitle {
        line-height: 1;
    }

    .mday-percentage {
        font-size: 24px;
        margin-top: -6px;
    }

    .mday-save-text,
    .mday-select-titles,
    .mday-btn {
        font-size: 10px;
    }

    .mday-btn {
        padding: 8px 16px;
        height: auto;
    }

    .mday-discount-box {
        margin: 10px 0;
    }

    .mday-image-wrapper {
        height: 68%;
    }

    .mday-arrow {
        height: 24px;
    }

    .mday-dots {
        width: 32px;
        margin-top: 14px;
    }

    .mday-trust {
        margin-top: 24px;
        padding: 20px 16px;
        gap: 24px;
    }

    .mday-trust__item {
        gap: 10px;
    }

    .mday-trust__icon-box {
        width: 36px;
        height: 36px;
    }

    .mday-trust__name {
        font-size: 14px;
    }

    .mday-trust__desc {
        width: 120px;
        font-size: 10px;
        line-height: 150%;
    }
}

/* Chapter 2 - The Han Kang Edition */
.hk-meetup-wrap {
    position: relative;
    width: 100%;
    margin: 0 auto;
    font-family: "Red Hat Text", system-ui, -apple-system, sans-serif;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
}

.hk-meetup-card {
    position: relative;
    width: 100%;
    max-width: 1200px;
    height: 600px;
    aspect-ratio: 2 / 1;
    border-radius: 20px;
    margin: 80px auto;
    padding: 40px 51px;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    box-sizing: border-box;
    box-shadow: 0 0 14px 2px rgba(148, 148, 148, 0.25);
    overflow: hidden;
}

.hk-meetup-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    align-self: stretch;
    z-index: 5;
}

.hk-meetup-title {
    width: 100%;
    max-width: 1017px;
    color: #1B150E;
    font-family: "Piazzolla", Georgia, serif;
    font-size: 58px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    margin: 0;
}

.hk-meetup-title em {
    font-style: italic;
    font-family: "Piazzolla", Georgia, serif;
}

.hk-meetup-subtitle-bold {
    color: #1B150E;
    font-family: "Red Hat Text", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    margin: 0;
}

.hk-meetup-subtitle {
    width: 100%;
    max-width: 516px;
    color: #1B150E;
    font-family: "Red Hat Text", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    margin: 0;
}

.hk-meetup-info-strip {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 20px 0;
}

.hk-meetup-info-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.hk-meetup-info-icon-box {
    display: flex;
    padding: 12.857px;
    gap: 5.357px;
    width: 60.004px;
    height: 60.004px;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    flex-shrink: 0;
    border-radius: 6.429px;
    border: 1.071px solid rgba(0, 0, 0, 0.20);
    background: transparent;
}

.hk-meetup-icon {
    display: flex;
    width: 34.286px;
    height: 34.286px;
    justify-content: center;
    align-items: center;
}

.hk-meetup-icon-calender {
    width: 29.29px;
    height: 29.29px;
    flex-shrink: 0;
}

.hk-meetup-info-text {
    display: flex;
    flex-direction: column;
}

.hk-meetup-info-label {
    color: #1B150E;
    font-family: "Red Hat Text", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}

.hk-meetup-info-desc {
    color: #1B150E;
    font-family: "Red Hat Text", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}

.hk-meetup-action-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.hk-meetup-badge {
    display: flex;
    width: 160px;
    padding: 8px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 8px;
    background: #383838;
    color: #FFFFFF;
    font-family: "Red Hat Text", sans-serif;
    font-size: 12px;
    font-weight: 700;
    box-sizing: border-box;
}

.hk-meetup-btn {
    display: flex;
    height: 44px;
    padding: 16px 24px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 8px;
    background: #BC580A;
    color: #FFFFFF;
    font-family: "Red Hat Text", sans-serif;
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.hk-meetup-btn:hover {
    background-color: #A34C08;
}

@media (max-width: 1240px) {
    .hk-meetup-card {
        width: calc(100% - 40px);
        height: auto;
        aspect-ratio: auto;
    }
}

@media (max-width: 992px) {
    .hk-meetup-card {
        padding: 40px 36px;
        background-position: 30% 50%;
    }

    .hk-meetup-title {
        font-size: 44px;
    }

    .hk-meetup-subtitle,
    .hk-meetup-info-desc {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .hk-meetup-card {
        background-position: 15% 50%;
        padding: 36px 24px;
    }

    .hk-meetup-content {
        width: 100%;
        gap: 12px;
    }

    .hk-meetup-title {
        font-size: 32px;
    }

    .hk-meetup-subtitle-bold {
        font-size: 18px;
    }

    .hk-meetup-subtitle {
        font-size: 16px;
        max-width: 80%;
    }

    .hk-meetup-info-strip {
        gap: 14px;
        margin: 12px 0;
    }

    .hk-meetup-info-desc {
        font-size: 15px;
        max-width: 80%;
    }

    .hk-meetup-info-label {
        font-size: 12px;
    }

    .hk-meetup-info-icon-box {
        width: 48px;
        height: 48px;
    }

    .hk-meetup-icon {
        width: 26px;
        height: 26px;
    }
}

@media (max-width: 480px) {
    .hk-meetup-card {
        padding: 28px 16px;
        background-position: 10% 50%;
    }

    .hk-meetup-title {
        font-size: 24px;
        line-height: 130%;
    }

    .hk-meetup-subtitle-bold {
        font-size: 15px;
    }

    .hk-meetup-subtitle {
        font-size: 14px;
        max-width: 100%;
    }

    .hk-meetup-info-strip {
        gap: 12px;
    }

    .hk-meetup-info-desc {
        font-size: 13px;
        max-width: 100%;
    }

    .hk-meetup-info-label {
        font-size: 11px;
    }

    .hk-meetup-info-icon-box {
        width: 40px;
        height: 40px;
        padding: 8px;
    }

    .hk-meetup-icon {
        width: 22px;
        height: 22px;
    }

    .hk-meetup-badge {
        width: 140px;
        font-size: 11px;
        padding: 6px;
    }

    .hk-meetup-btn {
        font-size: 14px;
        height: 40px;
        padding: 12px 20px;
    }
}

/* HERIITAGE- Wilco Book */
.wilco-house__wrap {
    background: #FFFAEB;
    padding: 80px 0;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

.wilco-house__inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 48px);
    box-sizing: border-box;
}

.wilco-house__head {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 24px;
    width: 100%;
}

.wilco-house__header-main {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: baseline;
    gap: 24px;
}

.wilco-house__branding {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: nowrap;
}

.wilco-house__title {
    color: #1B150E;
    font-family: "Piazzolla", Georgia, serif;
    font-size: 60px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    margin: 0;
    white-space: nowrap;
}

.wilco-house__logo {
    width: 256px;
    height: 80px;
    aspect-ratio: 16 / 5;
    background-position: 0px 0px;
    background-size: contain;
    background-repeat: no-repeat;
    flex-shrink: 0;
}

.wilco-house__sub {
    color: #000000;
    font-family: "Red Hat Text", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    margin: 6px 0 0 0;
}

.wilco-house__browse {
    color: #BC580A;
    font-family: "Red Hat Text", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    text-decoration: none;
    text-align: right;
    white-space: nowrap;
    flex-shrink: 0;
}

.wilco-house__filters {
    display: flex;
    flex-wrap: nowrap;
    gap: 16px;
    margin-bottom: 32px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 4px;
    width: 100%;
}

.wilco-house__filters::-webkit-scrollbar {
    display: none;
}

.wilco-house__pill {
     font-family: "Red Hat Text", sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    padding: 7px 18px;
    color: #1a1a1a;
    background: #ffffff;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    transition: all 0.15s;
    /*height: 38px;*/
    box-sizing: border-box;
    border-radius: 32px;
    border: 1px solid #AAA;
}

.wilco-house__pill:hover {
    border-color: #b0a99f;
}

.wilco-house__pill.active {
    /*background: #FFE1CD;
    color: #1B150E;*/
    background: #F7ECE7;
    			   border-color: #F7ECE7;
    			   color: #1B150E;
    font-weight: 700;
    border: 0px;
}

.wilco-house__row {
    display: flex;
    gap: 40px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    user-select: none;
    width: 100%;
    padding-top: 10px;
}

.wilco-house__row::-webkit-scrollbar {
    display: none;
}

.wilco-house__card {
    flex: 0 0 200px;
    scroll-snap-align: start;
    background: #ffffff;
    border: 1px solid #ebebeb;
    border-radius: 10px;
    overflow: visible;
    position: relative;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    transition: transform 0.26s ease, box-shadow 0.26s ease;
}

.wilco-house__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.1);
}

.wilco-house__cover {
    position: relative;
    height: 256px;
    background: #e8e2d8;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
    width: 100%;
}

.wilco-house__cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.wilco-house__badge {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 70px;
    height: 70px;
    z-index: 10;
    pointer-events: none;
}

.wilco-house__badge-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.wilco-house__badge-text {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1.1;
}

.wilco-house__badge-pct {
    font-family: "Red Hat Text", sans-serif;
    font-size: 11px;
    font-weight: 800;
    color: #1a1a1a;
}

.wilco-house__badge-off {
    font-family: "Red Hat Text", sans-serif;
    font-size: 9px;
    font-weight: 700;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.wilco-house__body {
    padding: 12px 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex: 1;
    box-sizing: border-box;
}

.wilco-house__name {
    font-family: "Lora", Georgia, serif;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.35;
    min-height: 38px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.wilco-house__author {
    font-family: "Red Hat Text", sans-serif;
    font-size: 12px;
    color: #6b6b6b;
    margin-bottom: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.wilco-house__pricing {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 10px;
}

.wilco-house__price-now {
    font-family: "Red Hat Text", sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #bc580a;
}

.wilco-house__price-was {
    font-family: "Red Hat Text", sans-serif;
    font-size: 12px;
    color: #b0a99f;
    text-decoration: line-through;
}

.wilco-house__atb {
    width: 100%;
    padding: 9px 0;
    background:  #fff;
    color: #bc580a;
    font-family: "Red Hat Text", sans-serif;
    font-size: 13px;
    font-weight: 700;
    border-radius: 6px;
    border: 1px solid;
    cursor: pointer;
    letter-spacing: 0.02em;
    margin-top: auto;
}

.wilco-house__atb:hover {
                /*background: #bc580a;*/
                
                background:#F7ECE7;
                transform: translateY(-1px);
            }

@media (max-width: 1024px) {
    .wilco-house__header-main {
        flex-wrap: nowrap;
        gap: 16px;
    }

    .wilco-house__title {
        font-size: 44px;
    }

    .wilco-house__logo {
        width: 200px;
        height: 62px;
    }
}

@media (max-width: 768px) {
    .wilco-house__title {
        font-size: 36px;
    }

    .wilco-house__logo {
        width: 160px;
        height: 50px;
    }

    .wilco-house__sub {
        font-size: 14px;
        margin-top: 10px;
    }

    .wilco-house__browse {
        font-size: 14px;
        margin-top: 6px;
    }

    .wilco-house__row {
        gap: 16px;
    }

    .wilco-house__cover {
       /* height: 230px; */
    }

    .wilco-house__name {
        font-size: 13px;
    }

    .wilco-house__filters {
        gap: 12px;
    }

    .wilco-house__pill {
        
        font-size: 12px;
        padding: 2px 18px;
        min-height: 30px;
    }
}

@media (max-width: 480px) {
    .wilco-house__header-main {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .wilco-house__branding {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        width: 100%;
    }

    .wilco-house__title {
        font-size: 34px;
        line-height: 115%;
        white-space: normal;
    }

    .wilco-house__logo {
        width: 150px;
        height: 46px;
    }

    .wilco-house__sub {
        font-size: 13px;
        line-height: 140%;
        margin-top: 8px;
    }

    .wilco-house__browse {
        text-align: left;
        margin-top: 2px;
        font-size: 13px;
    }

    .wilco-house__filters {
        gap: 8px;
        margin-bottom: 20px;
    }

    .wilco-house__pill {
        font-size: 12px;
        padding: 0 14px;
        height: 32px;
    }

    .wilco-house__cover {
       /* height: 210px; */
    }

    .wilco-house__body {
        padding: 10px 10px 14px;
    }

    .wilco-house__name {
        font-size: 13px;
        min-height: 34px;
    }

    .wilco-house__author {
        font-size: 11px;
        margin-bottom: 6px;
    }

    .wilco-house__pricing {
        gap: 4px;
        margin-bottom: 8px;
    }

    .wilco-house__price-now {
        font-size: 16px;
    }

    .wilco-house__price-was {
        font-size: 11px;
    }

    .wilco-house__atb {
        padding: 8px 0;
        font-size: 12px;
    }
}

/* GRAB THESE SECTION */
.gtbtg {
    background: #2a3141;
    padding: 80px 0;
    overflow: hidden;
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

.gtbtg__inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 48px);
    box-sizing: border-box;
    will-change: transform;
}

.gtbtg__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 16px;
}

.gtbtg__title {
    color: #FAF9F8;
    font-family: Piazzolla;
    font-size: 60px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
}

.gtbtg__sub {
    color: #FAF9F8;
    font-family: "Red Hat Text";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}

.gtbtg__explore {
    color: #E77E38;
    text-align: right;
    font-family: "Red Hat Text";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    white-space: nowrap;
    flex-shrink: 0;
    text-decoration: none;
    transition: color 0.2s;
}

.gtbtg__explore:hover {
    color: #f5a623;
}

.gtbtg__filters {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    margin-bottom: 40px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 4px;
}

.gtbtg__filters::-webkit-scrollbar {
    display: none;
}

.gtbtg__pill {
    flex-shrink: 0;
    white-space: nowrap;
    font-family: "Red Hat Text", sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    padding: 7px 18px;
    border-radius: 100px;
    border: 1.5px solid rgba(252, 247, 243, 0.2);
    color: rgba(252, 247, 243, 0.62);
    background: transparent;
    cursor: pointer;
    transition: border-color 0.18s, color 0.18s, background 0.18s;
}

.gtbtg__pill:hover {
    border-color: #1D2434;
    color: #fcf7f3;
}

/*.gtbtg__pill.active {
    background: #4f596e;
    border-color: #4f596e;
    color: #faf9f8;
    font-weight: 700;
}*/


.gtbtg__pill.active {
  background: #323A4D;
                border-color: #525251;
    color: #faf9f8;
    font-weight: 700;
}

.gtbtg__row {
    display: flex;
    gap: 40px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 12px;
    cursor: grab;
    user-select: none;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.gtbtg__row:active {
    cursor: grabbing;
}

.gtbtg__row::-webkit-scrollbar {
    display: none;
}

.gtbtg__card {
    flex: 0 0 210px;
    scroll-snap-align: start;
    background: #323A4D;
    border-radius: 10px;
    overflow: visible;
    position: relative;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.gtbtg__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.5);
}

.gtbtg__cover {
    position: relative;
    height: 272px;
    background: #151d2b;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
    width: 100%;
}

.gtbtg__cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.gtbtg__card:hover .gtbtg__cover img {
    transform: scale(1.04);
}

.gtbtg__badge {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 70px;
    height: 70px;
    z-index: 10;
    pointer-events: none;
}

.gtbtg__badge-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.gtbtg__badge-text {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1.1;
}

.gtbtg__badge-pct {
    font-family: "Red Hat Text", sans-serif;
    font-size: 0.72rem;
    font-weight: 800;
    color: #1a1a1a;
    letter-spacing: -0.01em;
}

.gtbtg__badge-off {
    font-family: "Red Hat Text", sans-serif;
    font-size: 0.58rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.gtbtg__body {
    padding: 14px 16px 18px;
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex: 1;
    box-sizing: border-box;
}

.gtbtg__name {
    font-family: "Lora", serif;
    font-size: 0.93rem;
    font-weight: 600;
    color: #fcf7f3;
    line-height: 1.35;
    min-height: 38px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
    -webkit-box-orient: vertical;
}

.gtbtg__author {
    font-family: "Inter", sans-serif;
    font-size: 0.77rem;
    color: rgba(252, 247, 243, 0.42);
    margin-bottom: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.gtbtg__pricing {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 12px;
}

.gtbtg__price-now {
    font-family: "Red Hat Text", sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #bc580a;
}

.gtbtg__price-was {
    font-family: "Red Hat Text", sans-serif;
    font-size: 0.8rem;
    color: rgba(252, 247, 243, 0.28);
    text-decoration: line-through;
}


.gtbtg__atb {
    width: 100%;
    padding: 10px 0;
    /*background: #fff;*/
    color: #bc580a;
    font-family: "Red Hat Text", sans-serif;
    font-size: 0.84rem;
    font-weight: 700;
    border-radius: 6px;
    border: 1px solid;
    cursor: pointer;
    letter-spacing: 0.02em;
    margin-top: auto;
    transition: background 0.18s, transform 0.14s;
}

.gtbtg__atb:hover {
   /* background: #c95e1f;*/
      background:#1D2434;
    transform: translateY(-1px);
}

.gtbtg__atb:active {
    transform: translateY(0);
}

@media (max-width: 1024px) {
    .gtbtg__title {
        font-size: 46px;
    }
}

@media (max-width: 768px) {
    .gtbtg__head {
        gap: 12px;
        margin-bottom: 24px;
    }

    .gtbtg__title {
        font-size: 36px;
    }

    .gtbtg__sub {
        font-size: 12px;
    }

    .gtbtg__explore {
        font-size: 14px;
    }

    .gtbtg__filters {
        margin-bottom: 28px;
        gap: 6px;
    }

    .gtbtg__pill {
        font-size: 0.78rem;
        padding: 6px 14px;
        min-height: 0;
    }

    .gtbtg__row {
        gap: 16px;
    }

    .gtbtg__cover {
       /* height: 240px; */
    }

    .gtbtg__body {
        padding: 12px;
    }

    .gtbtg__name {
        font-size: 0.88rem;
        min-height: 36px;
    }

    .gtbtg__atb {
        min-height: 0;
    }
}

@media (max-width: 480px) {
    .gtbtg__head {
        margin-bottom: 20px;
        flex-direction: column;
        align-items: start;
    }

    .gtbtg__title {
        font-size: 24px;
        line-height: 130%;
    }

    .gtbtg__filters {
        margin-bottom: 20px;
    }

    .gtbtg__cover {
       /* height: 210px; */
    }

    .gtbtg__body {
        padding: 10px;
    }

    .gtbtg__name {
        font-size: 0.82rem;
        min-height: 32px;
    }

    .gtbtg__author {
        font-size: 0.7rem;
        margin-bottom: 6px;
    }

    .gtbtg__pricing {
        gap: 6px;
        margin-bottom: 8px;
    }

    .gtbtg__price-now {
        font-size: 1rem;
    }

    .gtbtg__price-was {
        font-size: 0.75rem;
    }

    .gtbtg__atb {
        padding: 8px 0;
        font-size: 0.78rem;
    }

    .gtbtg__badge {
        width: 60px;
        height: 60px;
        top: -6px;
        left: -6px;
    }

    .gtbtg__badge-pct {
        font-size: 0.65rem;
    }

    .gtbtg__badge-off {
        font-size: 0.52rem;
    }
}

/* READER QUIZ SECTION */
.reader-quiz-section {
    background: #FCF5EF;
    width: 100%;
    min-height: 832px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    padding: 60px 40px;
    overflow: hidden;
    position: relative;
}

.reader-quiz-container {
    display: flex;
    width: 100%;
    max-width: 1240px;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    box-sizing: border-box;
    position: relative;
}

.reader-quiz-content-box {
    display: flex;
    width: 100%;
    max-width: 450px;
    flex-direction: column;
    align-items: flex-start;
    gap: 36px;
    box-sizing: border-box;
    flex-shrink: 0;
}

.reader-quiz-text-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
}

.reader-quiz-main-title {
    color: #1B150E;
    font-family: "Piazzolla", Georgia, serif;
    font-size: 60px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    margin: 0;
}

.reader-quiz-subtitle {
    color: #000000;
    font-family: "Red Hat Text", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    margin: 0;
}

.reader-quiz-meta-strip {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    width: 100%;
}

.reader-quiz-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.reader-quiz-meta-item:first-child {
    border-right: 1px solid #d4ceca;
    padding-right: 16px;
}

.reader-quiz-meta-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reader-quiz-meta-text {
    color: #000000;
    font-family: "Red Hat Text", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    white-space: nowrap;
}

.reader-quiz-btn {
    display: flex;
    height: 44px;
    padding: 16px 24px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 8px;
    background: #BC580A;
    color: #FFFFFF;
    font-family: "Red Hat Text", sans-serif;
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    transition: background-color 0.2s ease;
}

.reader-quiz-btn:hover {
    background-color: #A34C08;
}

.reader-quiz-media-box {
    position: relative;
    width: 822px;
    height: 549px;
    aspect-ratio: 274 / 183;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    flex-shrink: 0;
}

.reader-quiz-illustration {
    width: 100%;
    height: 100%;
    background-position: 50% 50%;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    z-index: 4;
}

.reader-quiz-blur-glow {
    position: absolute;
    width: 956px;
    height: 252px;
    border-radius: 956px;
    background: #F3DBC6;
    filter: blur(50px);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    pointer-events: none;
}

@media (max-width: 1200px) {
    .reader-quiz-container {
        gap: 32px;
        justify-content: space-between;
    }

    .reader-quiz-main-title {
        font-size: 52px;
    }

    .reader-quiz-media-box {
        width: 550px;
        height: 367px;
    }
}

@media (max-width: 1024px) {
    .reader-quiz-section {
        min-height: auto;
        padding: 80px 32px;
    }

    .reader-quiz-container {
        flex-direction: column-reverse;
        align-items: center;
        gap: 48px;
        justify-content: center;
    }

    .reader-quiz-content-box {
        max-width: 600px;
        align-items: center;
        text-align: center;
        gap: 36px;
    }

    .reader-quiz-text-group {
        align-items: center;
    }

    .reader-quiz-main-title {
        font-size: 54px;
        line-height: 120%;
    }

    .reader-quiz-subtitle {
        font-size: 16px;
        max-width: 520px;
    }

    .reader-quiz-meta-strip {
        justify-content: center;
        gap: 16px;
    }

    .reader-quiz-meta-text {
        font-size: 16px;
    }

    .reader-quiz-media-box {
        width: 100%;
        max-width: 720px;
        height: 480px;
    }

    .reader-quiz-blur-glow {
        width: 100%;
        max-width: 850px;
        height: 220px;
    }
}

@media (max-width: 992px) {
    .reader-quiz-section {
        padding: 60px 24px;
    }

    .reader-quiz-container {
        gap: 40px;
    }

    .reader-quiz-content-box {
        max-width: 550px;
        gap: 32px;
    }

    .reader-quiz-main-title {
        font-size: 44px;
    }

    .reader-quiz-media-box {
        max-width: 600px;
        height: 400px;
    }
}

@media (max-width: 768px) {
    .reader-quiz-main-title {
        font-size: 40px;
    }
}

@media (max-width: 480px) {
    .reader-quiz-section {
        padding: 48px 16px;
    }

    .reader-quiz-main-title {
        font-size: 32px;
        line-height: 125%;
    }

    .reader-quiz-subtitle,
    .reader-quiz-meta-text {
        font-size: 15px;
    }

    .reader-quiz-meta-strip {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .reader-quiz-meta-item:first-child {
        border-right: none;
        padding-right: 0;
    }

    .reader-quiz-content-box {
        gap: 28px;
        width: 100%;
    }

    .reader-quiz-btn {
        width: auto;
        align-self: center;
        font-size: 15px;
    }

    .reader-quiz-media-box {
        max-width: 100%;
        height: auto;
        aspect-ratio: 274 / 183;
    }

    .reader-quiz-blur-glow {
        width: 100%;
        height: 140px;
    }
}

/* Bag Section */
.cart-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    z-index: 99998;
    transition: opacity 0.35s ease;
}

.cart-drawer-overlay.is-active {
    opacity: 1;
    visibility: visible;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 444px;
    height: 100%;
    z-index: 99999;
    transform: translateX(100%);
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    background: transparent;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    overflow: hidden;
}

.cart-drawer.is-active {
    transform: translateX(0);
}

.cart-drawer__layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.cart-drawer__close-trigger {
    position: absolute;
    left: 12px;
    top: 16px;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    background-color: #FAF7F5;
}

.cart-drawer__close-trigger svg {
    width: 24px;
    height: 24px;
}

.cart-drawer__content-flow {
    position: relative;
    z-index: 5;
    flex: 1;
    margin-left: 55px;
    padding: 33px 24px 140px 24px;
    background-color: #FAF7F5;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-sizing: border-box;
}

.cart-drawer__header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 22px;
    flex-shrink: 0;
}

.cart-drawer__title-group {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.cart-drawer__title {
    color: #1B150E;
    font-family: Piazzolla;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

.cart-drawer__count {
    color: #1B150E;
    font-family: "Red Hat Text";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

.cart-drawer__wishlist-btn {
    color: #E77E38;
    text-align: right;
    font-family: "Red Hat Text";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
}

.cart-drawer__coins-alert {
    display: flex;
    width: 100%;
    max-width: 352px;
    padding: 20px 12px;
    justify-content: space-between;
    align-items: center;
    border-radius: 12px;
    border: 1px solid #E9EAED;
    box-sizing: border-box;
    flex-shrink: 0;
}

.cart-drawer__coins-text {
    color: #1B150E;
    font-family: "Red Hat Text";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}

.cart-drawer__coins-apply {
    color: #E77E38;
    text-align: right;
    font-family: "Red Hat Text";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
}

.cart-drawer__items-container {
    margin-top: 19px;
    display: flex;
    width: 100%;
    max-width: 352px;
    flex-direction: column;
    align-items: flex-start;
    gap: 19px;
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 4px;
}

.cart-drawer__items-container::-webkit-scrollbar {
    width: 4px;
}

.cart-drawer__items-container::-webkit-scrollbar-thumb {
    background: #E5E0DB;
    border-radius: 4px;
}

.cart-drawer__item {
    display: flex;
    padding: 12px;
    justify-content: space-between;
    align-items: flex-start;
    align-self: stretch;
    border-radius: 12px;
    background: #FAF9F8;
    box-shadow: 4px 4px 6px 0 rgba(227, 225, 224, 0.70);
    gap: 12px;
    box-sizing: border-box;
}

.cart-drawer__item-cover {
    width: 76px;
    height: 104px;
    flex-shrink: 0;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.cart-drawer__item-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-drawer__item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cart-drawer__item-top-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
}

.cart-drawer__item-meta {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.cart-drawer__item-title {
    color: #1B150E;
    font-family: Piazzolla, serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 130%;
    margin: 0;
}

.cart-drawer__item-author {
    color: #1B150E;
    font-family: "Red Hat Text", sans-serif;
    font-size: 12px;
    font-weight: 500;
    line-height: 150%;
    margin-top: 4px;
}

.cart-drawer__item-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.cart-drawer__qty-box {
    display: flex;
    align-items: center;
    gap: 4px;
}

.cart-drawer__qty-lbl {
    color: #1B150E;
    font-family: "Red Hat Text", sans-serif;
    font-size: 12px;
    font-weight: 400;
}

.cart-drawer__qty-dropdown {
    border: none;
    background: transparent;
    color: #1B150E;
    font-family: "Red Hat Text", sans-serif;
    font-size: 12px;
    font-weight: 400;
    outline: none;
    cursor: pointer;
    padding-right: 4px;
    appearance: none;
}

.cart-drawer__item-remove {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px;
    display: flex;
}

.cart-drawer__item-bottom-row {
    display: flex;
    align-items: center;
    margin-top: 12px;
    width: 100%;
}

.cart-drawer__item-prices {
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.cart-drawer__price-current {
    color: #BC580A;
    font-family: "Red Hat Text", sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 150%;
}

.cart-drawer__price-original {
    color: #636363;
    font-family: "Red Hat Text", sans-serif;
    font-size: 16px;
    font-weight: 400;
    text-decoration: line-through;
    line-height: 150%;
}

.cart-drawer__price-details {
    margin-top: auto;
    padding-top: 20px;
    padding-bottom: 24px;
    flex-shrink: 0;
}

.cart-drawer__details-title {
    max-width: 160px;
    color: #1B150E;
    font-family: Piazzolla;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    margin-bottom: 11px;
}

.cart-drawer__price-row {
    display: flex;
    justify-content: space-between;
    font-family: "Red Hat Text", sans-serif;
    font-size: 14px;
    color: #1B150E;
    margin-bottom: 12px;
    gap: 32px;
}

.cart-drawer__price-row span {
    max-width: 160px;
    color: #1B150E;
    text-align: right;
    font-family: "Red Hat Text";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}

.cart-drawer__price-row span:first-child {
    text-align: left;
}

.cart-drawer__price-row span:last-child {
    text-align: right;
}

#summaryFinalTotal {
    color: #1B150E;
    text-align: right;
    font-family: "Red Hat Text";
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
}

.cart-drawer__sticky-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    background: #FAF7F5;
    flex-shrink: 0;
}

.cart-drawer__savings-bar {
    display: flex;
    width: 100%;
    padding: 8px 24px;
    align-items: center;
    gap: 10px;
    background: #4E9D5E;
    color: #FFF;
    font-family: "Red Hat Text";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    box-sizing: border-box;
}

.cart-drawer__savings-bar span {
    color: #FFF;
    font-family: "Red Hat Text";
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
}

.cart-drawer__pay-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 24px;
}

.cart-drawer__payable-info {
    display: flex;
    flex-direction: column;
}

.cart-drawer__final-amt {
    align-self: stretch;
    color: #1B150E;
    font-family: "Red Hat Text";
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
}

.cart-drawer__final-lbl {
    align-self: stretch;
    color: #1B150E;
    font-family: "Red Hat Text";
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}

.cart-drawer__checkout {
    display: flex;
    width: 160px;
    height: 44px;
    padding: 16px 24px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    border-radius: 8px;
    border-top: 1px solid rgba(99, 99, 99, 0.50);
    background: #BC580A;
    color: #FFFFFF;
    border-left: none;
    border-right: none;
    border-bottom: none;
    cursor: pointer;
}

.cart-drawer__checkout:hover {
    background-color: #A34C08;
}

/* ==========================================================================
   Responsive Breakpoints (Tablet & Mobile Optimized)
   ========================================================================== */

/* --- Tablet Mode (Font sizes reduced perfectly) --- */
@media (max-width: 768px) {
    .cart-drawer {
        width: 380px;
    }

    .cart-drawer__close-trigger {
        left: 8px;
        top: 14px;
        width: 36px;
        min-height: 0;
        height: 36px;
    }

    .cart-drawer__close-trigger svg {
        width: 18px;
        height: 18px;
    }

    .cart-drawer__content-flow {
        margin-left: 44px;
        padding: 24px 16px 130px 16px;
    }

    .cart-drawer__title {
        font-size: 18px;
        /* Reduced from 20px */
    }

    .cart-drawer__count {
        font-size: 12px;
        /* Reduced from 14px */
    }

    .cart-drawer__wishlist-btn {
        font-size: 13px;
        /* Reduced from 14px */
    }

    .cart-drawer__coins-alert {
        padding: 12px 10px;
    }

    .cart-drawer__coins-text,
    .cart-drawer__coins-apply {
        font-size: 13px;
        /* Reduced from 14px */
    }

    .cart-drawer__items-container {
        gap: 14px;
        margin-top: 14px;
        max-width: 100%;
    }

    .cart-drawer__item {
        padding: 10px;
        gap: 10px;
    }

    .cart-drawer__item-cover {
        width: 64px;
        height: 88px;
    }

    .cart-drawer__item-title {
        font-size: 13px;
        /* Added control for item titles in tablet */
    }

    .cart-drawer__item-author {
        font-size: 11px;
        /* Added control for author subtext */
    }

    .cart-drawer__price-current {
        font-size: 16px;
        /* Reduced from 18px */
    }

    .cart-drawer__price-original {
        font-size: 13px;
        /* Reduced from 14px */
    }

    .cart-drawer__details-title {
        font-size: 16px;
        /* Reduced from 18px */
        margin-bottom: 8px;
    }

    .cart-drawer__price-row span {
        font-size: 12px;
        /* Controlled list item text size */
    }

    .cart-drawer__price-details {
        padding-top: 14px;
        padding-bottom: 16px;
    }

    .cart-drawer__savings-bar {
        padding: 6px 16px;
        font-size: 12px;
        /* Reduced from 13px */
    }

    .cart-drawer__savings-bar span {
        font-size: 12px;
        /* Reduced from 13px */
    }

    .cart-drawer__pay-row {
        padding: 10px 16px;
    }

    .cart-drawer__final-amt {
        font-size: 18px;
        /* Reduced from 20px */
    }

    .cart-drawer__final-lbl {
        font-size: 11px;
    }

    .cart-drawer__checkout {
        width: 130px;
        height: 38px;
        padding: 8px 16px;
        font-size: 13px;
    }
}

/* --- Mobile Mode (Enhanced Padding & Center Alignment) --- */
@media (max-width: 480px) {
    .cart-drawer {
        width: 100%;
    }

    .cart-drawer__content-flow {
        margin-left: 0;
        padding: 64px 24px 135px 24px;
        align-items: center;
    }

    .cart-drawer__close-trigger {
        left: auto;
        right: 24px;
        top: 18px;
        width: 32px;
        height: 32px;
        background-color: transparent;
        z-index: 15;
    }

    .cart-drawer__close-trigger svg {
        width: 18px;
        height: 18px;
    }

    .cart-drawer__header-row {
        width: 100%;
        max-width: 352px;
        margin-bottom: 16px;
        padding-right: 0;
    }

    .cart-drawer__title {
        font-size: 18px;
    }

    .cart-drawer__count {
        font-size: 12px;
    }

    .cart-drawer__wishlist-btn {
        font-size: 13px;
    }

    .cart-drawer__coins-alert {
        width: 100%;
        max-width: 352px;
        padding: 12px 14px;
        border-radius: 8px;
    }

    .cart-drawer__coins-text,
    .cart-drawer__coins-apply {
        font-size: 13px;
    }

    .cart-drawer__items-container {
        width: 100%;
        max-width: 352px;
        gap: 14px;
        margin-top: 16px;
        padding-right: 2px;
        align-items: stretch;
    }

    .cart-drawer__item {
        padding: 12px;
        gap: 12px;
    }

    .cart-drawer__item-title {
        font-size: 13px;
    }

    .cart-drawer__item-author {
        font-size: 11px;
    }

    .cart-drawer__qty-lbl,
    .cart-drawer__qty-dropdown {
        font-size: 11px;
    }

    .cart-drawer__price-current {
        font-size: 16px;
    }

    .cart-drawer__price-original {
        font-size: 13px;
    }

    .cart-drawer__price-details {
        width: 100%;
        max-width: 352px;
        margin-left: auto;
        margin-right: auto;
        padding-top: 18px;
        padding-bottom: 12px;
    }

    .cart-drawer__price-row {
        margin-bottom: 10px;
        gap: 16px;
    }

    .cart-drawer__price-row span {
        font-size: 13px;
    }

    .cart-drawer__sticky-footer {
        width: 100%;
    }

    .cart-drawer__savings-bar {
        padding: 8px 24px;
        font-size: 13px;
        justify-content: center;
    }

    .cart-drawer__savings-bar span {
        font-size: 13px;
    }

    .cart-drawer__pay-row {
        padding: 12px 24px;
    }

    .cart-drawer__final-amt {
        font-size: 20px;
    }

    .cart-drawer__final-lbl {
        font-size: 11px;
    }

    .cart-drawer__checkout {
        width: 140px;
        height: 40px;
        padding: 10px 16px;
        font-size: 14px;
    }
}
