/* ===================== Modern homepage (template-matched) ===================== */

.am-section {
    padding: 0 16px;
    margin: 0 auto;
    max-width: 1300px;
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin: 36px 0 16px 0;
}
.section-head h2 {
    font-size: 21px;
    font-weight: 700;
    letter-spacing: .3px;
    margin: 0;
    text-transform: uppercase;
}
.section-head a {
    font-size: 13px;
    font-weight: 600;
    color: #98010b;
    text-decoration: none;
    white-space: nowrap;
}

/* ---- Hero ---- */
.page-top-spacer {
    margin-top: 110px;
}

.am-hero-slider {
    position: relative;
    overflow: hidden;
    background: #f3efec;
    line-height: 0;
}
.am-hero-slider .carousel-inner {
    position: relative;
    width: 100%;
    overflow: hidden;
}
.am-hero-slider .carousel-item {
    position: relative;
    display: none;
    width: 100%;
}
.am-hero-slider .carousel-item.active { display: block; }

.hero-slide {
    display: block;
    position: relative;
    width: 100%;
    color: inherit;
    text-decoration: none;
}
.hero-slide-pic {
    display: block;
    width: 100%;
}
.hero-slide-pic img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 520px;
    min-height: 260px;
    object-fit: cover;
    object-position: center;
}
@media (max-width: 768px) {
    .hero-slide-pic img { max-height: 360px; min-height: 200px; }
}
.hero-slide-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 50px 32px 30px 32px;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.35) 45%, rgba(0,0,0,.8) 100%);
    color: #fff;
}
.hero-slide-caption h1 {
    font-family: 'Playfair Display', 'Montserrat', serif;
    font-size: 34px;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: #fff;
    max-width: 600px;
    text-shadow: 0 2px 10px rgba(0,0,0,.55);
    line-height: 1.2;
}
.hero-slide-caption p {
    font-size: 14px;
    margin: 0 0 16px 0;
    color: #fff;
    opacity: .95;
    max-width: 480px;
    text-shadow: 0 1px 6px rgba(0,0,0,.5);
}
.am-btn {
    display: inline-block;
    background: #5a2a12;
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    padding: 11px 26px;
    border-radius: 26px;
    text-decoration: none;
    letter-spacing: .3px;
}
.am-btn.dark { background: #5a2a12; color: #fff; }

/* ---- Hero carousel controls (fully self-contained: does not rely on Bootstrap's CSS loading) ---- */
.am-hero-slider .carousel-control-prev,
.am-hero-slider .carousel-control-next {
    position: absolute !important;
    top: 0;
    bottom: 0;
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 60px;
    opacity: 1;
    z-index: 4;
    background: none;
    border: none;
}
.am-hero-slider .carousel-control-prev { left: 0; }
.am-hero-slider .carousel-control-next { right: 0; }
.am-hero-arrow {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #fff;
    color: #5a2a12;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    box-shadow: 0 2px 8px rgba(0,0,0,.15);
}
@media (max-width: 768px) {
    .hero-slide-caption { padding: 24px 18px 18px 18px; }
    .hero-slide-caption h1 { font-size: 19px; max-width: 100%; }
    .hero-slide-caption p { font-size: 12px; max-width: 100%; }
    .am-hero-slider .carousel-control-prev,
    .am-hero-slider .carousel-control-next { width: 40px; }
    .am-hero-arrow { width: 30px; height: 30px; font-size: 11px; }
    .section-head { flex-wrap: wrap; gap: 6px; margin: 26px 0 12px 0; }
    .section-head h2 { font-size: 17px; }
}

/* ---- USP row ---- */
.usp-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    padding: 26px 16px;
    max-width: 1300px;
    margin: 0 auto;
}
.usp-row .usp-item {
    display: flex;
    align-items: center;
    gap: 12px;
}
.usp-row .usp-item .usp-icon-wrap {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #fbeede;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.usp-row .usp-item i {
    font-size: 18px;
    color: #e8a33d;
}
.usp-row .usp-item strong { display: block; font-size: 13.5px; }
.usp-row .usp-item span { display: block; font-size: 11.5px; color: #888; }
@media (max-width: 768px) {
    .usp-row { grid-template-columns: 1fr; gap: 10px; }
}

/* ---- Category banner cards (light card, side photo — like the reference template) ---- */
.cat-banner-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 16px;
}
.cat-banner-grid .cat-banner-card:first-child {
    grid-row: span 2;
}
@media (max-width: 768px) {
    .cat-banner-grid { grid-template-columns: 1fr; grid-template-rows: none; }
    .cat-banner-grid .cat-banner-card:first-child { grid-row: auto; }
}
.cat-banner-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #f3efec;
    display: flex;
    text-decoration: none;
    color: #222;
    min-height: 220px;
}
.cat-banner-card .cb-body {
    flex: 1 1 55%;
    padding: 22px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.cat-banner-card .cb-photo {
    flex: 1 1 45%;
    position: relative;
    overflow: hidden;
}
.cat-banner-card .cb-photo img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cat-banner-card .cb-count {
    display: inline-block;
    background: #fff;
    color: #222;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
    width: fit-content;
    box-shadow: 0 1px 4px rgba(0,0,0,.08);
}
.cat-banner-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 8px 0;
}
.cat-banner-card .cb-link {
    font-size: 12.5px;
    font-weight: 700;
    text-decoration: underline;
    color: #5a2a12;
}
.cat-banner-grid .cat-banner-card:not(:first-child) {
    min-height: 0;
}
@media (max-width: 768px) {
    .cat-banner-card { min-height: 160px; }
}
@media (max-width: 480px) {
    .cat-banner-card { flex-direction: column; }
    .cat-banner-card .cb-photo { flex: none; height: 120px; }
}

/* ---- Top sellers / product grid ---- */
.filter-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}
.filter-tabs button {
    padding: 7px 16px;
    border-radius: 20px;
    border: 1px solid #ddd;
    background: #fff;
    font-size: 12.5px;
    font-weight: 600;
    color: #555;
    cursor: pointer;
}
.filter-tabs button.active {
    background: #98010b;
    border-color: #98010b;
    color: #fff;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
@media (max-width: 991px) {
    .product-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
    .product-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}
.search-product-grid { grid-template-columns: repeat(3, 1fr); margin-top: 4px; }
@media (max-width: 991px) {
    .search-product-grid { grid-template-columns: repeat(2, 1fr); }
}

.am-product-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #f1e9e3;
    box-shadow: 0 2px 10px rgba(0,0,0,.05);
    text-decoration: none;
    color: inherit;
    display: block;
    position: relative;
    transition: box-shadow .4s cubic-bezier(.25,.8,.25,1), transform .4s cubic-bezier(.25,.8,.25,1);
}
.am-product-card:hover {
    box-shadow: 0 14px 28px rgba(0,0,0,.13);
    transform: translateY(-4px);
}
.am-product-card .pc-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1.08;
    background: #f5f0ee;
    overflow: hidden;
}
.am-product-card .pc-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    will-change: opacity, transform;
    transition: opacity .5s ease, transform .6s cubic-bezier(.25,.8,.25,1);
}
.am-product-card .pc-slide.active {
    opacity: 1;
}
.am-product-card:hover .pc-slide.active {
    transform: scale(1.045);
}
.am-product-card .pc-dots {
    position: absolute;
    bottom: 8px;
    left: 0;
    right: 0;
    z-index: 2;
    display: flex;
    justify-content: center;
    gap: 4px;
    opacity: 0;
    transition: opacity .25s ease;
}
.am-product-card:hover .pc-dots { opacity: 1; }
.am-product-card .pc-dots span {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(255,255,255,.55);
    transition: background .2s ease, transform .2s ease;
}
.am-product-card .pc-dots span.active {
    background: #fff;
    transform: scale(1.3);
}
.am-product-card .pc-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #fff;
    color: #1a7d36;
    font-size: 10.5px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 12px;
    z-index: 2;
    box-shadow: 0 1px 4px rgba(0,0,0,.1);
}
.am-product-card .pc-body { padding: 12px 14px 14px 14px; }
.am-product-card .pc-category {
    display: block;
    font-size: 10px;
    color: #a98a76;
    text-transform: uppercase;
    letter-spacing: .6px;
    margin-bottom: 2px;
}
.am-product-card .pc-name {
    font-size: 14px;
    font-weight: 600;
    color: #2a2a2a;
    margin: 0 0 5px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.am-product-card .pc-price { font-size: 14.5px; font-weight: 700; color: #222; }
.am-product-card .pc-cross { font-size: 11.5px; color: #999; text-decoration: line-through; margin-left: 5px; font-weight: 400; }
.am-product-card .pc-off { display: block; font-size: 11px; font-weight: 700; color: #1a7d36; margin-top: 2px; }
.am-product-card .pc-shop-now {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 8px;
    padding: 7px 0;
    background: #5a2a12;
    color: #fff !important;
    font-size: 11px;
    font-weight: 600;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(90,42,18,.25);
    transition: background .25s ease, transform .15s ease;
}
.am-product-card:hover .pc-shop-now {
    background: #98010b;
    transform: translateY(-1px);
}

/* ---- Promo banner ---- */
.promo-banner {
    margin-top: 36px;
    border-radius: 16px;
    background: linear-gradient(120deg, #98010b, #c4202c);
    color: #fff;
    padding: 34px 30px;
    text-align: center;
}
.promo-banner h3 { font-size: 22px; font-weight: 700; margin: 0 0 6px 0; color: #fff; }
.promo-banner p { font-size: 13px; opacity: .9; margin-bottom: 16px; color: #fff; }
.promo-eyebrow { color: #fff; }
.promo-banner.has-image h3 { font-size: 27px; color: #1c1c1c; max-width: 380px; }
.promo-banner.has-image p { color: #777; opacity: 1; max-width: 380px; }
.promo-banner.has-image .promo-eyebrow { color: #98010b; }

/* ---- Instagram gallery ---- */
.insta-section { background: #f7f4f2; padding: 36px 16px 44px 16px; margin-top: 36px; border-radius: 16px; }
.insta-head { flex-direction: column; align-items: center; text-align: center; margin: 0 0 22px 0; }
.insta-eyebrow { font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: #98010b; margin-bottom: 4px; }
.insta-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}
.insta-tile {
    position: relative;
    display: block;
    aspect-ratio: 1/1;
    border-radius: 10px;
    overflow: hidden;
}
.insta-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.insta-tile:hover img { transform: scale(1.06); }
.insta-icon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0);
    color: transparent;
    font-size: 22px;
    transition: all .25s;
}
.insta-tile:hover .insta-icon { background: rgba(0,0,0,.35); color: #fff; }
@media (max-width: 768px) {
    .insta-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 420px) {
    .insta-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---- Collection promo blocks ---- */
/* ---- FAQ ---- */
.faq-item {
    border-bottom: 1px solid #eee;
    padding: 14px 0;
}
.faq-item button {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    font-size: 14.5px;
    font-weight: 600;
    color: #222;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}
.faq-item .faq-answer {
    display: none;
    font-size: 13px;
    color: #666;
    margin-top: 10px;
    line-height: 1.6;
}
.faq-item.open .faq-answer { display: block; }
.faq-item.open button i { transform: rotate(45deg); }
.faq-item button i { transition: transform .2s; }

/* ---- Sitewide bottom app nav (mobile) ---- */
#appBottomNav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    border-top: 1px solid #eee;
    box-shadow: 0 -2px 10px rgba(0,0,0,.06);
    z-index: 1050;
    height: 58px;
}
#appBottomNav .abn-row { display: flex; height: 100%; }
#appBottomNav a {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #888;
    font-size: 10.5px;
    font-weight: 600;
    gap: 2px;
}
#appBottomNav a i { font-size: 18px; }
#appBottomNav a.active { color: #98010b; }

@media (max-width: 768px) {
    #appBottomNav { display: block; }
    body { padding-bottom: 58px; }
    .mobile-filter-toggle { bottom: 58px !important; }
    .social-vertical { bottom: 64px; }
    /* Product page also has a fixed Add-to-Cart/Buy-Now bar sitting above the icon nav — leave room for both. */
    body.pd-page { padding-bottom: 130px; }
}

/* ---- Product card wishlist icon ---- */
.am-product-card .pc-wish {
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 2;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255,255,255,.9);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #98010b;
    font-size: 12px;
}

/* ---- Promo banner with image ---- */
.promo-banner.has-image {
    display: flex;
    align-items: stretch;
    overflow: hidden;
    padding: 0;
    text-align: left;
    background: #fbf3ef;
}
.promo-banner-img {
    width: 42%;
    object-fit: cover;
    flex-shrink: 0;
}
.promo-banner-text {
    flex: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: inherit;
}
.promo-banner:not(.has-image) .promo-banner-text { color: #fff; }
.promo-eyebrow {
    font-size: 11.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    opacity: .8;
    margin-bottom: 6px;
    display: block;
}
@media (max-width: 600px) {
    .promo-banner.has-image { flex-direction: column; }
    .promo-banner-img { width: 100%; height: 180px; }
}

/* ---- Deals grid (products + collection promos mixed) ---- */
.deals-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
@media (max-width: 991px) { .deals-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .deals-grid { grid-template-columns: 1fr; } }

.coll-promo-block {
    display: flex;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: #222;
    grid-column: span 2;
}
@media (max-width: 991px) { .coll-promo-block { grid-column: span 2; } }
@media (max-width: 480px) { .coll-promo-block { grid-column: span 1; } }
.coll-promo-block:nth-child(odd)  { background: #f3efec; }
.coll-promo-block:nth-child(even) { background: #f0a93b; }
.coll-promo-block .cpb-inner {
    flex: 1 1 55%;
    padding: 18px 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.coll-promo-block .cpb-photo {
    flex: 1 1 45%;
    position: relative;
    min-height: 130px;
}
.coll-promo-block .cpb-photo img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cpb-badge {
    display: inline-block;
    background: #fff;
    color: #222;
    font-size: 10.5px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 14px;
    margin-bottom: 8px;
    width: fit-content;
}
.coll-promo-block h4 { font-size: 16px; font-weight: 700; margin: 0 0 8px 0; }
.cpb-link { font-size: 12px; font-weight: 700; text-decoration: underline; color: #5a2a12; }
@media (max-width: 480px) {
    .coll-promo-block { flex-direction: column; }
    .coll-promo-block .cpb-photo { min-height: 100px; }
}

/* ---- Testimonials ---- */
.testi-nav { display: flex; gap: 8px; }
.testi-nav button {
    width: 34px; height: 34px; border-radius: 50%;
    border: none; background: #f0e6e3; color: #98010b; cursor: pointer;
}
.testi-wrap { position: relative; background: #faf6f4; border-radius: 16px; padding: 26px; min-height: 180px; }
.testi-card { display: none; gap: 20px; align-items: center; flex-wrap: wrap; }
.testi-card.active { display: flex; }
.testi-photo { width: 90px; height: 90px; border-radius: 12px; overflow: hidden; flex-shrink: 0; }
.testi-photo img { width: 100%; height: 100%; object-fit: cover; }
.testi-body { flex: 1; min-width: 200px; }
.testi-stars { color: #e8a33d; font-size: 13px; margin-bottom: 8px; }
.testi-stars span { color: #444; font-weight: 700; margin-left: 6px; }
.testi-quote { font-size: 13.5px; color: #555; margin-bottom: 8px; }
.testi-name { font-weight: 700; font-size: 13.5px; margin: 0; }
.testi-title { font-size: 12px; color: #888; margin: 0; }

/* ---- Blog grid ---- */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
@media (max-width: 768px) { .blog-grid { grid-template-columns: 1fr; } }
.blog-card .blog-img-wrap { position: relative; border-radius: 12px; overflow: hidden; aspect-ratio: 16/10; margin-bottom: 10px; }
.blog-card img { width: 100%; height: 100%; object-fit: cover; }
.blog-card .blog-date {
    position: absolute; bottom: 8px; left: 8px;
    background: #e8a33d; color: #222; font-size: 11px; font-weight: 700;
    padding: 3px 9px; border-radius: 10px;
}
.blog-card h4 { font-size: 15px; font-weight: 700; margin: 0 0 6px 0; }
.blog-card p { font-size: 12.5px; color: #777; }
.blog-read-more {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: #5a2a12;
    text-decoration: underline;
}

/* ---- Newsletter ---- */
.newsletter-block { text-align: center; padding: 40px 16px; }
.nl-eyebrow { font-size: 12px; color: #98010b; font-weight: 700; text-transform: uppercase; }
.newsletter-block h3 { font-size: 20px; font-weight: 700; max-width: 480px; margin: 8px auto 18px auto; }
.newsletter-block form { display: flex; justify-content: center; gap: 0; max-width: 420px; margin: 0 auto; }
.newsletter-block input[type=email] {
    flex: 1; padding: 11px 16px; border: 1px solid #ddd; border-radius: 26px 0 0 26px; font-size: 13px; outline: none;
}
.newsletter-block button {
    background: #98010b; color: #fff; border: none; padding: 11px 22px; border-radius: 0 26px 26px 0; font-weight: 700; font-size: 13px; cursor: pointer;
}
@media (max-width: 480px) {
    .newsletter-block form { flex-direction: column; max-width: 280px; }
    .newsletter-block input[type=email] { border-radius: 26px; margin-bottom: 8px; }
    .newsletter-block button { border-radius: 26px; }
}

/* ===================== Site-wide vintage type & buttons ===================== */
body, p, input, textarea, select, .testi-quote, .blog-card p, .faq-item .faq-answer {
    font-family: 'Lora', 'Montserrat', serif !important;
}
h1, h2, h3, h4, h5, h6,
.section-head h2, .pc-name, .cat-banner-card h3, .coll-promo-block h4,
.blog-card h4, .testi-name, .newsletter-block h3, .promo-banner h3 {
    font-family: 'Playfair Display', 'Montserrat', serif;
}

.am-btn,
.button-card-1,
.button-bynow,
.location-button,
.sign-me-up,
button[type="submit"],
input[type="submit"] {
    font-family: 'Playfair Display', 'Montserrat', serif;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    font-weight: 600;
    font-size: 12.5px;
    border-radius: 3px;
    border: 1px solid currentColor;
    transition: background .25s ease, color .25s ease, opacity .25s ease;
}
.am-btn:hover,
.button-bynow:hover,
.sign-me-up:hover {
    opacity: .88;
}

.pc-shop-now, .cb-link, .cpb-link, .blog-read-more {
    font-family: 'Playfair Display', 'Montserrat', serif;
    text-transform: uppercase;
    letter-spacing: .8px;
}

.newsletter-block button {
    font-family: 'Playfair Display', 'Montserrat', serif;
    text-transform: uppercase;
    letter-spacing: 1.4px;
}

/* ---- Search/listing page: sidebar polish ---- */
#filterSidebar .category-1 {
    margin-bottom: 22px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f1e9e3;
}
#filterSidebar .card-headers strong {
    font-family: 'Playfair Display', 'Montserrat', serif;
    font-size: 15.5px;
    letter-spacing: .3px;
    color: #2a2a2a;
}
#filterSidebar .category-options > li > a,
#filterSidebar .short-price,
#filterSidebar .color-name {
    transition: color .2s ease;
}
#filterSidebar .category-options > li > a:hover,
#filterSidebar .short-price:hover,
#filterSidebar .color-name:hover {
    color: #98010b !important;
}
#filterSidebar a.font-weight-bold {
    color: #98010b !important;
}
#filterSidebar .btn-outline-secondary {
    font-family: 'Playfair Display', 'Montserrat', serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 11px;
    border-radius: 3px;
    border-color: #5a2a12;
    color: #5a2a12;
}
#filterSidebar .btn-outline-secondary:hover {
    background: #5a2a12;
    color: #fff;
}

/* ---- PLP header / breadcrumb ---- */
.plp-head-wrap { margin-top: 10px; }
.plp-breadcrumb {
    font-size: 12.5px;
    color: #999;
    margin-bottom: 10px;
}
.plp-breadcrumb a { color: #999; text-decoration: none; }
.plp-breadcrumb a:hover { color: #5a2a12; }
.plp-breadcrumb span { margin: 0 6px; }
.plp-breadcrumb .current { color: #5a2a12; font-weight: 600; }
.plp-head-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    border-bottom: 1px solid #f1e9e3;
    padding-bottom: 16px;
    margin-bottom: 6px;
}
.plp-title {
    font-family: 'Playfair Display', 'Montserrat', serif;
    font-size: 24px;
    font-weight: 700;
    color: #2a2a2a;
    margin: 0;
    text-transform: capitalize;
}
.plp-count {
    font-family: 'Lora', 'Montserrat', serif;
    font-size: 14px;
    font-weight: 400;
    color: #999;
    margin-left: 6px;
}
.plp-sort .btn {
    background: #fff;
    border: 1px solid #e4dcd6;
    border-radius: 3px;
    font-size: 13px;
    color: #444;
}
.plp-sort .btn strong { color: #2a2a2a; }

/* ---- PLP filter sidebar ---- */
.plp-filters-label {
    font-family: 'Playfair Display', 'Montserrat', serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #2a2a2a;
    margin-bottom: 14px;
}
.plp-checklist {
    list-style: none;
    padding-left: 0;
    margin: 0;
}
.plp-check-row {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 6px 0;
    text-decoration: none !important;
    color: #515050;
    font-size: 13.5px;
}
.plp-checkbox {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    border: 1.5px solid #c9beb5;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: #fff;
    background: #fff;
}
.plp-check-row.is-checked .plp-checkbox {
    background: #5a2a12;
    border-color: #5a2a12;
}
.plp-check-row.is-checked .plp-check-label {
    color: #5a2a12;
    font-weight: 600;
}
.plp-check-count {
    color: #aaa;
    font-size: 12px;
    margin-left: auto;
}
.plp-color-swatch {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1px solid #ddd;
}
.plp-check-row:hover .plp-check-label { color: #98010b; }

@media (max-width: 768px) {
    .plp-title { font-size: 19px; }
    .plp-head-row { align-items: flex-start; }
}

/* ---- Product page thumbnail scroll buttons ---- */
.scroll-button {
    background: #f8f3f0 !important;
    border: 1px solid #e4dcd6 !important;
    border-radius: 4px !important;
    height: 24px !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: background .2s ease;
}
.scroll-button:hover {
    background: #efe2da !important;
}
.scroll-button img {
    height: 16px !important;
    width: auto !important;
    margin: 0 !important;
    opacity: .65;
}
#scroll-up img { transform: rotate(180deg); }

/* ---- Product page Add to Cart / Buy Now ---- */
#floatingButton.fixed-button {
    position: static !important;
    visibility: visible !important;
    transform: none !important;
    box-shadow: none !important;
    background: transparent !important;
    display: flex;
    gap: 14px;
    margin-top: 22px;
}
.button-card-1, .button-bynow {
    flex: 1;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 0 !important;
    margin: 0 !important;
    width: auto !important;
    font-size: 13px !important;
    letter-spacing: 1.6px;
    border-radius: 6px !important;
    transition: background .25s ease, color .25s ease, transform .2s ease, box-shadow .2s ease;
}
.button-card-1 {
    background: #5a2a12 !important;
    color: #fff !important;
    border: 1px solid #5a2a12 !important;
    box-shadow: 0 6px 16px rgba(90,42,18,.22);
}
.button-card-1:hover {
    background: #98010b !important;
    border-color: #98010b !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(90,42,18,.3);
    color: #fff !important;
}
.button-bynow {
    background: #fff !important;
    color: #5a2a12 !important;
    border: 1.5px solid #5a2a12 !important;
}
.button-bynow:hover {
    background: #5a2a12 !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(90,42,18,.18);
}
@media (max-width: 769px) {
    #floatingButton.fixed-button {
        position: fixed !important;
        left: 0; bottom: 58px;
        margin-top: 0;
        padding: 10px 14px;
        background: #fff !important;
        box-shadow: 0 0 10px rgba(0,0,0,.12) !important;
        z-index: 1040;
    }
    .button-card-1, .button-bynow { padding: 12px 0 !important; }
}

/* ---- Login / OTP page ---- */
.login-section {
    max-width: 480px;
    padding: 50px 15px 80px;
    margin-top: 170px;
}
.login-card {
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 32px 28px;
    box-shadow: 0 4px 18px rgba(0,0,0,.05);
}
.login-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 22px;
}
.login-phone-input {
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 4px;
    overflow: hidden;
}
.login-phone-input .prefix {
    padding: 12px 14px;
    border-right: 1px solid #ccc;
    background: #fafafa;
    color: #555;
    font-weight: 600;
}
.login-phone-input input {
    flex: 1;
    border: none;
    padding: 12px 14px;
    outline: none;
    font-size: 15px;
}
.login-btn {
    width: 100%;
    background: #5a2a12;
    color: #fff;
    font-weight: 700;
    padding: 12px;
    border-radius: 4px;
    border: none;
    letter-spacing: .5px;
}
.login-btn:hover { background: #45200d; color: #fff; }
.otp-icon {
    width: 70px; height: 70px;
    border-radius: 50%;
    background: #fdeef0;
    display: flex; align-items: center; justify-content: center;
    font-size: 26px;
    color: #98010b;
    margin-bottom: 18px;
}
.otp-boxes {
    display: flex;
    gap: 12px;
    margin: 18px 0 10px;
}
.otp-box {
    width: 52px; height: 52px;
    text-align: center;
    font-size: 22px;
    border: 1px solid #ccc;
    border-radius: 6px;
}
.otp-box:focus { outline: none; border-color: #98010b; }
#btnResendOtp { color: #98010b; font-weight: 600; text-decoration: none; }
@media (max-width: 480px) {
    .otp-box { width: 44px; height: 44px; }
}

/* ---- Header account icon / dropdown ---- */
.account-dropdown { display: inline-block; position: relative; }
.account-icon {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    color: #333;
    text-decoration: none;
}
.account-icon i { font-size: 18px; }
.account-icon .text-search { font-size: 11px; margin-top: 2px; }
.account-icon.dropdown-toggle::after { display: none; }
.account-dropdown-menu {
    min-width: 220px;
    padding: 0;
    border-radius: 6px;
    box-shadow: 0 6px 20px rgba(0,0,0,.12);
    border: none;
}
.account-dropdown-hello {
    padding: 14px 18px;
    font-weight: 700;
    border-bottom: 1px solid #eee;
}
.account-dropdown-menu .dropdown-item {
    padding: 10px 18px;
    font-size: 14px;
}
.account-dropdown-menu .dropdown-item:hover { background: #fdeef0; color: #98010b; }

/* ---- Cart / Wishlist pages ---- */
.cart-section, .wishlist-section {
    padding: 30px 15px 70px;
    margin-top: 170px;
}
.cart-heading {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 24px;
}
.cart-empty {
    text-align: center;
    padding: 60px 15px;
    color: #777;
}
.cart-empty i { font-size: 48px; color: #ccc; margin-bottom: 16px; display: block; }
.cart-items { border: 1px solid #eee; border-radius: 8px; }
.cart-item-row {
    display: flex;
    gap: 16px;
    padding: 18px;
    border-bottom: 1px solid #eee;
}
.cart-item-row:last-child { border-bottom: none; }
.cart-item-img img {
    width: 90px; height: 110px;
    object-fit: cover;
    border-radius: 4px;
}
.cart-item-info { flex: 1; }
.cart-item-name { font-weight: 600; color: #222; text-decoration: none; display: block; }
.cart-item-price { margin: 6px 0; }
.cart-item-price .eff { font-weight: 700; margin-right: 8px; }
.cart-item-price .mrp { color: #999; text-decoration: line-through; font-size: 13px; }
.cart-item-qty { display: flex; align-items: center; gap: 10px; margin-top: 8px; }
.qty-btn {
    width: 28px; height: 28px;
    border: 1px solid #ccc;
    background: #fff;
    border-radius: 4px;
    font-size: 16px;
    line-height: 1;
}
.qty-val { min-width: 20px; text-align: center; font-weight: 600; }
.cart-remove-link { color: #98010b; font-size: 13px; text-decoration: none; }
.cart-summary {
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 20px;
}
.cart-summary h5 { font-size: 15px; font-weight: 700; margin-bottom: 14px; }
.cart-summary-row { display: flex; justify-content: space-between; margin-bottom: 10px; font-size: 14px; }
.cart-summary-row.total { font-weight: 700; font-size: 16px; }
.wishlist-card {
    border: 1px solid #eee;
    border-radius: 6px;
    position: relative;
    overflow: hidden;
    height: 100%;
}
.wishlist-card img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.wishlist-card-body { padding: 12px; }
.wishlist-name { display: block; font-weight: 600; color: #222; text-decoration: none; font-size: 14px; margin-bottom: 4px; }
.wishlist-remove {
    position: absolute; top: 8px; right: 8px;
    width: 26px; height: 26px;
    border-radius: 50%;
    background: rgba(255,255,255,.9);
    border: none;
    z-index: 2;
}
.btn-move-to-bag { width: 100%; }

/* ---- Checkout page ---- */
.checkout-section { padding: 30px 15px 70px; margin-top: 170px; }
.checkout-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
    font-weight: 700;
    letter-spacing: .5px;
    color: #aaa;
}
.checkout-steps .step.active { color: #98010b; }
.checkout-steps .step-sep { width: 40px; height: 1px; background: #ddd; }
.checkout-panel { border: 1px solid #eee; border-radius: 8px; padding: 20px; }
.addr-card {
    display: flex;
    gap: 12px;
    border: 1px solid #eee;
    border-radius: 6px;
    padding: 14px;
    margin-bottom: 12px;
    cursor: pointer;
}
.addr-card input[type="radio"] { margin-top: 4px; }
.addr-type-badge {
    display: inline-block;
    border: 1px solid #98010b;
    color: #98010b;
    font-size: 11px;
    padding: 1px 8px;
    border-radius: 10px;
    margin-left: 6px;
}
.pay-option {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #eee;
    border-radius: 6px;
    padding: 14px;
    margin-bottom: 10px;
    cursor: pointer;
}
.pay-option i { width: 20px; text-align: center; color: #98010b; }

/* ---- Order details ---- */
.order-details-section { padding: 30px 15px 70px; margin-top: 170px; }
.order-header { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 10px; }
.order-status-badge { font-size: 13px; padding: 6px 14px; }

/* ---- Profile page ---- */
.profile-section { padding: 30px 15px 70px; margin-top: 170px; }
.profile-sidebar { border: 1px solid #eee; border-radius: 8px; padding: 18px; }
.profile-sidebar .nav-link { color: #444; padding: 10px 6px; border-radius: 4px; }
.profile-sidebar .nav-link.active { background: #fdeef0; color: #98010b; font-weight: 600; }
.order-card { border: 1px solid #eee; border-radius: 8px; padding: 16px; margin-bottom: 14px; display: flex; gap: 14px; align-items: center; }
.order-card img { width: 60px; height: 75px; object-fit: cover; border-radius: 4px; }
.order-card .order-card-info { flex: 1; }
