/* ============================================================
   CARTPULSE — Extended Page Components
   ============================================================ */

/* ── Page wrapper ── */
.bm-page { background: #faf9f7; min-height: 60vh; }
.bm-page-inner { padding: 36px 0 80px; }

/* ── Breadcrumb ── */
.bm-breadcrumb {
  font-size: 11px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: #747876; margin-bottom: 24px;
  display: flex; align-items: center; gap: 8px;
}
.bm-breadcrumb a { color: #747876; }
.bm-breadcrumb a:hover { color: #010202; }
.bm-breadcrumb-sep { opacity: 0.4; }

/* ── Section Titles ── */
.bm-section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(24px, 3vw, 36px); font-weight: 700;
  color: #010202; margin-bottom: 8px;
}
.bm-section-sub { font-size: 15px; color: #434846; line-height: 1.6; }

/* ── Product Detail Page ── */
.bm-product-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.bm-product-gallery { position: sticky; top: 100px; }
.bm-gallery-main { aspect-ratio: 4/5; overflow: hidden; background: #f4f3f1; margin-bottom: 12px; }
.bm-gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.bm-gallery-thumbs { display: flex; gap: 8px; }
.bm-gallery-thumb { width: 72px; height: 72px; overflow: hidden; cursor: pointer; border: 2px solid transparent; transition: border-color 0.2s; }
.bm-gallery-thumb.active, .bm-gallery-thumb:hover { border-color: #010202; }
.bm-gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }

.bm-product-info { padding: 8px 0; }
.bm-product-info-cat { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: #747876; margin-bottom: 12px; }
.bm-product-info-name { font-family: 'Playfair Display', serif; font-size: clamp(24px, 3vw, 36px); font-weight: 700; color: #010202; margin-bottom: 8px; line-height: 1.2; }
.bm-product-info-price { font-size: 26px; font-weight: 700; color: #010202; margin-bottom: 4px; }
.bm-product-info-compare { font-size: 14px; color: #747876; text-decoration: line-through; margin-bottom: 24px; }
.bm-product-info-desc { font-size: 15px; line-height: 1.75; color: #434846; margin-bottom: 28px; }

.bm-product-variants { margin-bottom: 24px; }
.bm-product-variant-label { font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: #434846; margin-bottom: 10px; display: block; }
.bm-variant-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.bm-variant-pill {
  padding: 8px 16px; border: 1px solid #c4c7c5; cursor: pointer;
  font-size: 13px; font-weight: 500; color: #1a1c1b; transition: all 0.2s;
}
.bm-variant-pill:hover, .bm-variant-pill.active { border-color: #010202; background: #010202; color: #fff; }

.bm-product-qty-row { display: flex; gap: 16px; align-items: center; margin-bottom: 20px; flex-wrap: wrap; }
.bm-add-to-cart {
  flex: 1; min-width: 200px; padding: 16px 32px;
  background: #010202; color: #fff; border: none; cursor: pointer;
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  transition: all 0.3s;
}
.bm-add-to-cart:hover { background: #2f3130; transform: translateY(-2px); }
.bm-wishlist-btn {
  width: 52px; height: 52px; border: 1px solid #c4c7c5;
  background: none; cursor: pointer; color: #010202;
  display: flex; align-items: center; justify-content: center; transition: all 0.2s;
}
.bm-wishlist-btn:hover { background: #010202; color: #fff; border-color: #010202; }
.bm-wishlist-btn.active { color: #ba1a1a; }

.bm-product-meta { margin-top: 28px; padding-top: 28px; border-top: 1px solid #c4c7c5; }
.bm-product-meta-row { display: flex; gap: 8px; font-size: 13px; color: #434846; margin-bottom: 8px; }
.bm-product-meta-key { font-weight: 600; color: #1a1c1b; min-width: 80px; }

@media (max-width: 900px) { .bm-product-detail { grid-template-columns: 1fr; gap: 40px; } .bm-product-gallery { position: static; } }

/* ── Related Products ── */
.bm-related { padding: 80px 0; background: #f4f3f1; }

/* ── Reviews ── */
.bm-reviews { padding: 60px 0; }
.bm-review-card { background: #fff; padding: 24px; border: 1px solid #c4c7c5; margin-bottom: 16px; }
.bm-review-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 12px; }
.bm-reviewer-name { font-weight: 600; font-size: 14px; color: #010202; }
.bm-review-date { font-size: 12px; color: #747876; }
.bm-review-body { font-size: 14px; line-height: 1.65; color: #434846; }
.bm-review-form { background: #fff; border: 1px solid #c4c7c5; padding: 28px; }

/* ── Category Filter Tabs ── */
.bm-filter-tabs { display: flex; gap: 0; border-bottom: 1px solid #c4c7c5; margin-bottom: 32px; overflow-x: auto; }
.bm-filter-tab {
  padding: 12px 20px; font-size: 12px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: #747876; border-bottom: 2px solid transparent;
  white-space: nowrap; cursor: pointer; transition: all 0.2s; background: none; border-top: none; border-left: none; border-right: none;
}
.bm-filter-tab:hover { color: #010202; }
.bm-filter-tab.active { color: #010202; border-bottom-color: #010202; }

/* ══════════════════════════════════════════════
   CART PAGE — Full Redesign
   ══════════════════════════════════════════════ */

/* Page wrapper */
.bm-cart-page { background: #faf9f7; padding: 48px 0 100px; }
.bm-page-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* Breadcrumb */
.bm-breadcrumb { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: #747876; margin-bottom: 32px; }
.bm-breadcrumb a { color: #747876; text-decoration: none; }
.bm-breadcrumb a:hover { color: #010202; }

/* Page title */
.bm-cart-title { font-family: 'Playfair Display', serif; font-size: clamp(28px, 4vw, 44px); font-weight: 700; color: #010202; letter-spacing: -0.02em; margin-bottom: 40px; }

/* Grid layout */
.bm-cart-grid { display: grid; grid-template-columns: 1fr 360px; gap: 40px; align-items: start; }
.bm-cart-grid > div { min-width: 0; }

/* ── Cart Table ── */
.bm-cart-table-wrap { background: #fff; border: 1px solid #e8e7e5; border-radius: 6px; overflow-x: auto; box-shadow: 0 1px 3px rgba(1,2,2,0.04); }
.bm-cart-table { width: 100%; min-width: 620px; table-layout: fixed; border-collapse: collapse; }
.bm-cart-table thead tr { border-bottom: 2px solid #010202; }
.bm-cart-table thead th { padding: 14px 20px; font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: #747876; text-align: left; }
.bm-cart-table thead th:nth-child(2),
.bm-cart-table thead th:nth-child(3),
.bm-cart-table thead th:nth-child(4) { text-align: center; }
.bm-cart-table tbody tr { border-bottom: 1px solid #f0eeec; transition: background 0.2s; }
.bm-cart-table tbody tr:last-child { border-bottom: none; }
.bm-cart-table tbody tr:hover { background: #faf9f7; }
.bm-cart-table td { padding: 20px; vertical-align: middle; }
.bm-cart-table td:nth-child(2),
.bm-cart-table td:nth-child(4) { text-align: center; }
.bm-cart-table td:nth-child(3) { text-align: center; padding-left: 12px; padding-right: 12px; }

/* Product cell */
.bm-cart-product { display: flex; align-items: center; gap: 16px; min-width: 0; }
.bm-cart-product img { width: 80px; height: 80px; object-fit: cover; border: 1px solid #e8e7e5; border-radius: 4px; flex-shrink: 0; }
.bm-cart-product > div { min-width: 0; }
.bm-cart-product h4 { font-family: 'Playfair Display', serif; font-size: 14px; font-weight: 700; color: #010202; margin-bottom: 5px; line-height: 1.35; }
.bm-cart-product p { font-size: 12px; color: #747876; line-height: 1.5; }

/* Price */
.bm-cart-price { font-size: 14px; font-weight: 700; color: #010202; white-space: nowrap; }

/* Quantity stepper */
.bm-cart-qty { display: inline-flex; align-items: stretch; border: 1px solid #c4c7c5; height: 40px; border-radius: 4px; overflow: hidden; }
.bm-cart-qty button { width: 36px; background: none; border: none; cursor: pointer; font-size: 16px; font-weight: 300; color: #010202; transition: background 0.15s, color 0.15s; display: flex; align-items: center; justify-content: center; }
.bm-cart-qty button:hover { background: #010202; color: #fff; }
.bm-cart-qty input { width: 44px; text-align: center; border: none; border-left: 1px solid #c4c7c5; border-right: 1px solid #c4c7c5; font-size: 13px; font-weight: 700; color: #010202; background: #fff; outline: none; -moz-appearance: textfield; }
.bm-cart-qty input::-webkit-outer-spin-button,
.bm-cart-qty input::-webkit-inner-spin-button { -webkit-appearance: none; }

/* Remove button */
.bm-cart-remove { background: none; border: none; cursor: pointer; color: #c4c7c5; font-size: 15px; padding: 8px; border-radius: 50%; transition: color 0.2s, background 0.2s; }
.bm-cart-remove:hover { color: #dc2626; background: #fdecec; }

/* Cart footer row */
.bm-cart-foot { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; border-top: 1px solid #e8e7e5; background: #faf9f7; flex-wrap: wrap; gap: 12px; }
.bm-cart-continue { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #010202; text-decoration: none; display: flex; align-items: center; gap: 8px; transition: gap 0.2s; }
.bm-cart-continue:hover { gap: 12px; }
.bm-cart-promo { display: flex; height: 40px; border: 1px solid #c4c7c5; border-radius: 4px; overflow: hidden; }
.bm-cart-promo input { flex: 1; padding: 0 14px; font-size: 13px; color: #010202; border: none; background: #fff; outline: none; min-width: 180px; }
.bm-cart-promo input::placeholder { color: #aaa; }
.bm-cart-promo button { padding: 0 20px; background: #010202; color: #fff; border: none; font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer; transition: background 0.2s; white-space: nowrap; }
.bm-cart-promo button:hover { background: #1a1d1c; }

/* ── Order Summary Card ── */
.bm-summary-card { background: #fff; border: 1px solid #e8e7e5; border-radius: 6px; padding: 28px; position: sticky; top: 100px; box-shadow: 0 1px 3px rgba(1,2,2,0.04); }
.bm-summary-card h3 { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: #010202; margin-bottom: 24px; padding-bottom: 16px; border-bottom: 2px solid #010202; }
.bm-summary-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; font-size: 14px; color: #434846; }
.bm-summary-row span:first-child { color: #747876; }
.bm-summary-row span:last-child { font-weight: 600; color: #010202; }
.bm-summary-divider { border: none; border-top: 1px solid #e8e7e5; margin: 12px 0; }
.bm-summary-total { display: flex; justify-content: space-between; align-items: center; padding: 14px 0 20px; font-size: 16px; font-weight: 700; color: #010202; }
.bm-summary-total span:last-child { font-size: 20px; }

/* Shipping info box */
.bm-ship-box { display: flex; gap: 12px; align-items: flex-start; background: #faf9f7; border: 1px solid #e8e7e5; border-radius: 4px; border-left: 3px solid #e9c349; padding: 14px 16px; margin-bottom: 20px; font-size: 13px; color: #434846; line-height: 1.6; }
.bm-ship-box i { color: #e9c349; font-size: 16px; flex-shrink: 0; margin-top: 2px; }
.bm-ship-box strong { display: block; font-weight: 700; color: #010202; margin-bottom: 2px; font-size: 13px; }

/* Checkout button */
.bm-btn-checkout { display: flex; align-items: center; justify-content: center; gap: 10px; width: 100%; height: 52px; background: #010202; color: #fff; font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; text-decoration: none; border: none; border-radius: 4px; cursor: pointer; transition: background 0.2s, transform 0.15s; margin-bottom: 20px; }
.bm-btn-checkout:hover { background: #1a1d1c; transform: translateY(-1px); }

/* Payment icons */
.bm-pay-icons { font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: #747876; text-align: center; }
.bm-pay-icons div { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 10px; color: #434846; font-size: 1.6rem; }

/* Secure bar */
.bm-secure-bar { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 12px; font-size: 11px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: #747876; }
.bm-secure-bar i { color: #16a34a; font-size: 14px; }

/* Empty cart */
.bm-cart-empty { text-align: center; padding: 80px 0; }
.bm-cart-empty i { font-size: 48px; color: #c4c7c5; margin-bottom: 20px; display: block; }
.bm-cart-empty h2 { font-family: 'Playfair Display', serif; font-size: 24px; color: #010202; margin-bottom: 10px; }
.bm-cart-empty p { font-size: 15px; color: #434846; margin-bottom: 28px; }

/* ── Responsive ── */
@media (max-width: 960px) {
    .bm-cart-grid { grid-template-columns: 1fr; }
    .bm-summary-card { position: static; }
}
@media (max-width: 640px) {
    .bm-cart-table thead th:nth-child(2) { display: none; }
    .bm-cart-table td:nth-child(2) { display: none; }
    .bm-cart-product img { width: 60px; height: 60px; }
    .bm-cart-foot { flex-direction: column; align-items: flex-start; }
    .bm-cart-promo { width: 100%; }
    .bm-cart-promo input { min-width: unset; }
}

/* ── Checkout ── */
.bm-checkout-layout { display: grid; grid-template-columns: 1fr 400px; gap: 48px; align-items: start; }
.bm-checkout-section { margin-bottom: 32px; }
.bm-checkout-section-title { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 600; color: #010202; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid #c4c7c5; }
.bm-order-summary-sticky { position: sticky; top: 100px; }
.bm-order-line { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; font-size: 14px; color: #434846; border-bottom: 1px solid #efeeec; }
.bm-order-line:last-child { border-bottom: none; font-weight: 700; font-size: 16px; color: #010202; padding-top: 16px; }
.bm-order-thumbnail { width: 52px; height: 52px; object-fit: cover; background: #efeeec; flex-shrink: 0; }
@media (max-width: 900px) { .bm-checkout-layout { grid-template-columns: 1fr; } .bm-order-summary-sticky { position: static; } }

/* ── Account Dashboard ── */
.bm-account-layout { display: grid; grid-template-columns: 240px 1fr; gap: 32px; align-items: start; }
.bm-account-sidebar { background: #fff; border: 1px solid #e8e7e5; border-radius: 6px; overflow: hidden; box-shadow: 0 1px 3px rgba(1,2,2,0.04); position: sticky; top: 100px; }
.bm-account-sidebar-head { padding: 28px 24px; border-bottom: 1px solid #e8e7e5; text-align: center; background: #faf9f7; }
.bm-account-sidebar-head .account-sidebar-avatar { margin: 0 auto 14px; }
.bm-account-sidebar-name { font-family: 'Playfair Display', serif; font-size: 17px; font-weight: 600; color: #010202; line-height: 1.3; }
.bm-account-sidebar-email { font-size: 12px; color: #747876; margin-top: 4px; word-break: break-all; }
.bm-account-nav { padding: 10px; }
.bm-account-nav-link { display: flex; align-items: center; gap: 12px; padding: 12px 14px; border-radius: 4px; font-size: 13px; font-weight: 500; color: #434846; border-left: 2px solid transparent; transition: all 0.2s; }
.bm-account-nav-link i { width: 16px; text-align: center; color: #747876; }
.bm-account-nav-link:hover, .bm-account-nav-link.active { color: #010202; border-left-color: #e9c349; background: #faf9f7; }
.bm-account-nav-link.active i { color: #e9c349; }
.bm-account-nav-link.is-danger { color: #ba1a1a; margin-top: 12px; border-top: 1px solid #f0eeec; border-radius: 0; padding-top: 18px; }
.bm-account-nav-link.is-danger i { color: #ba1a1a; }
.bm-account-nav-link.is-danger:hover { background: #fdecec; border-left-color: #ba1a1a; color: #ba1a1a; }

.bm-account-content { background: #fff; border: 1px solid #e8e7e5; border-radius: 6px; box-shadow: 0 1px 3px rgba(1,2,2,0.04); padding: 44px 48px; }
.bm-account-heading { font-family: 'Playfair Display', serif; font-size: clamp(24px, 3vw, 32px); font-weight: 700; color: #010202; margin-bottom: 32px; }

.bm-account-table-wrap { background: #fff; border: 1px solid #e8e7e5; border-radius: 6px; overflow: hidden; }
.bm-account-table-wrap .account-table { margin: 0; }
.bm-order-action-btn { display: inline-flex; align-items: center; gap: 8px; padding: 9px 20px; background: #010202; color: #fff; border-radius: 4px; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.06em; text-decoration: none; transition: background 0.2s, transform 0.2s; }
.bm-order-action-btn:hover { background: #1a1d1c; transform: translateY(-2px); }

.bm-wish-card { background: #fff; border: 1px solid #e8e7e5; border-radius: 6px; overflow: hidden; transition: box-shadow 0.2s, transform 0.2s; }
.bm-wish-card:hover { box-shadow: 0 8px 24px rgba(1,2,2,0.08); transform: translateY(-3px); }
.bm-wish-card .info { padding: 16px 18px 20px; }

.bm-input-group label { display: block; font-size: 11px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: #434846; margin-bottom: 8px; }
.bm-input-group input, .bm-input-group select { width: 100%; padding: 12px 14px; border: 1px solid #e8e7e5; border-radius: 4px; background: #faf9f7; font-family: inherit; font-size: 0.9rem; transition: border-color 0.2s, background 0.2s; }
.bm-input-group input:focus, .bm-input-group select:focus { outline: none; border-color: #010202; background: #fff; }
.bm-input-group input:disabled { color: #747876; cursor: not-allowed; }

.bm-account-status { padding: 4px 12px; border-radius: 50px; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.02em; }
.bm-account-status.pending { background: #fff3d6; color: #8a5a00; }
.bm-account-status.processing { background: #e5e3fb; color: #4338ca; }
.bm-account-status.shipped { background: #dcf1fc; color: #0369a1; }
.bm-account-status.delivered { background: #e0f5e5; color: #15803d; }
.bm-account-status.cancelled { background: #fde0e0; color: #b91c1c; }
.bm-account-status.returned { background: #f3e5fb; color: #7e22ce; }
.bm-account-status.refunded { background: #e9e8e6; color: #434846; }

.bm-account-section { margin-bottom: 52px; padding-bottom: 52px; border-bottom: 1px solid #f0eeec; }
.bm-account-section:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.bm-account-section-title { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 600; letter-spacing: 0.02em; margin-bottom: 24px; padding-bottom: 12px; border-bottom: 1px solid #e8e7e5; color: #010202; }

@media (max-width: 900px) {
    .bm-account-layout { grid-template-columns: 1fr; }
    .bm-account-sidebar { position: static; }
    .bm-account-content { padding: 32px 24px; }
}

/* ── User Avatar (generic, used across account pages) ── */
.user-avatar { border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.user-avatar--img { object-fit: cover; }
.user-avatar--initial { background: #010202; color: #e9c349; font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.5em; text-transform: uppercase; }

/* ── Order Detail ── */
.bm-order-header { background: #fff; border: 1px solid #c4c7c5; padding: 28px; margin-bottom: 24px; }
.bm-order-id { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: #010202; }
.bm-order-meta { display: flex; gap: 32px; margin-top: 12px; flex-wrap: wrap; }
.bm-order-meta-item { font-size: 13px; color: #434846; }
.bm-order-meta-item strong { color: #010202; font-weight: 600; display: block; font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 2px; }

/* ── Blog Layout ── */
.bm-blog-layout { display: grid; grid-template-columns: 1fr 300px; gap: 60px; align-items: start; }
.bm-blog-sidebar { position: sticky; top: 100px; }
.bm-blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
@media (max-width: 1024px) { .bm-blog-layout { grid-template-columns: 1fr; } .bm-blog-sidebar { position: static; } .bm-blog-grid { grid-template-columns: 1fr; } }

/* ── Shipping Info ── */
.bm-shipping-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 48px; }
.bm-shipping-card { background: #fff; border: 1px solid #c4c7c5; padding: 28px; text-align: center; }
.bm-shipping-card i { font-size: 32px; color: #e9c349; margin-bottom: 16px; display: block; }
.bm-shipping-card h3 { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 600; color: #010202; margin-bottom: 8px; }
.bm-shipping-card p { font-size: 14px; color: #434846; line-height: 1.6; }
@media (max-width: 768px) { .bm-shipping-grid { grid-template-columns: 1fr; } }

/* ── Product Detail Page — Full CSS ── */

/* Page wrapper */
.bm-pd-page { background: #faf9f7; }
.bm-pd-page .bm-page-inner { padding: 28px 0 100px; }

/* Grid: gallery left, info right */
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
  margin-bottom: 80px;
}

/* Gallery column */
.gallery-wrapper { display: flex; gap: 14px; align-items: flex-start; }

/* Thumbnail strip */
.bm-thumbs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 68px;
  flex-shrink: 0;
}
.bm-thumb {
  width: 68px;
  height: 68px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s;
  background: #efeeec;
  flex-shrink: 0;
}
.bm-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.bm-thumb:hover { border-color: #c4c7c5; }
.bm-thumb.active { border-color: #010202; }

/* Main image */
.bm-gallery-main {
  flex: 1;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: #efeeec;
  position: relative;
  margin-bottom: 0;
}
.bm-gallery-main img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s ease; }

/* Badge on gallery */
.bm-gallery-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #e9c349;
  color: #010202;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  z-index: 2;
}

/* Product info column */
.product-info { padding-top: 8px; }

.bm-pd-brand {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #747876;
  margin-bottom: 10px;
}
.bm-pd-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  color: #010202;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.bm-pd-stars {
  font-size: 16px;
  color: #e9c349;
  letter-spacing: 2px;
}
.bm-pd-price {
  font-size: 26px;
  font-weight: 700;
  color: #010202;
  margin-right: 12px;
}
.bm-pd-price-old {
  font-size: 16px;
  font-weight: 400;
  color: #747876;
  text-decoration: line-through;
}
.bm-pd-stock {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #536256;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.bm-pd-stock i { font-size: 10px; }

/* Size buttons */
.bm-size-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #434846;
  margin-bottom: 10px;
}
.bm-size-btns { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.bm-size-btn {
  padding: 8px 18px;
  border: 1px solid #c4c7c5;
  background: none;
  font-size: 13px;
  font-weight: 500;
  color: #1a1c1b;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}
.bm-size-btn:hover, .bm-size-btn.active { border-color: #010202; background: #010202; color: #fff; }

/* Actions row */
.bm-pd-actions {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
  align-items: stretch;
}
.bm-qty-box {
  display: flex;
  align-items: stretch;
  border: 1px solid #c4c7c5;
  height: 52px;
  flex-shrink: 0;
}
.bm-qty-box button {
  width: 44px;
  border: none;
  background: #f4f3f1;
  color: #010202;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
}
.bm-qty-box button:hover { background: #e3e2e0; }
.bm-qty-box input {
  width: 52px;
  border: none;
  border-left: 1px solid #c4c7c5;
  border-right: 1px solid #c4c7c5;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  color: #010202;
  background: #fff;
  outline: none;
  font-family: inherit;
  -moz-appearance: textfield;
}
.bm-qty-box input::-webkit-outer-spin-button,
.bm-qty-box input::-webkit-inner-spin-button { -webkit-appearance: none; }

.bm-btn-add-cart {
  flex: 1;
  height: 52px;
  background: #010202;
  color: #fff;
  border: none;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.2s, transform 0.2s;
  font-family: inherit;
}
.bm-btn-add-cart:hover { background: #2f3130; transform: translateY(-1px); }
.bm-btn-add-cart i { font-size: 14px; }

/* Wishlist circle button */
.wishlist-toggle {
  width: 52px !important;
  height: 52px !important;
  border-radius: 0 !important;
  background: #f4f3f1 !important;
  border: 1px solid #c4c7c5 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 18px !important;
  color: #747876 !important;
  cursor: pointer;
  transition: all 0.2s;
  flex-shrink: 0;
}
.wishlist-toggle:hover { background: #010202 !important; color: #fff !important; border-color: #010202 !important; }
.wishlist-toggle.active { color: #ba1a1a !important; background: #fff1f2 !important; border-color: #fecdd3 !important; }

/* Shipping note */
.bm-pd-ship-note {
  font-size: 12px;
  color: #747876;
  line-height: 1.6;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #efeeec;
}

/* ── Tabs ── */
.bm-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid #c4c7c5;
  margin-bottom: 28px;
  overflow-x: auto;
}
.bm-tab {
  padding: 12px 28px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #747876;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  background: none;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
  white-space: nowrap;
}
.bm-tab:hover { color: #010202; }
.bm-tab.active { color: #010202; border-bottom-color: #010202; }
.bm-tab-panel { display: none; }
.bm-tab-panel.active { display: block; }
.bm-tab-panel p { font-size: 15px; color: #434846; line-height: 1.75; margin-bottom: 16px; }

/* Spec table */
.bm-spec-table { width: 100%; border-collapse: collapse; }
.bm-spec-table tr { border-bottom: 1px solid #efeeec; }
.bm-spec-table th {
  text-align: left;
  padding: 12px 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #010202;
  width: 160px;
  padding-right: 24px;
}
.bm-spec-table td { padding: 12px 0; font-size: 14px; color: #434846; }

/* Shipping list in tab */
.bm-ship-list { list-style: none; padding: 0; margin: 0 0 16px; }
.bm-ship-list li { padding: 12px 0; border-bottom: 1px solid #efeeec; font-size: 14px; color: #434846; line-height: 1.6; }
.bm-ship-list li:last-child { border-bottom: none; }
.bm-ship-list a { color: #010202; font-weight: 600; }

/* Desc HTML block */
.bm-pd-desc-html { font-size: 14px; color: #434846; line-height: 1.75; margin-top: 12px; }
.bm-pd-desc-html p { margin-bottom: 12px; }
.bm-pd-desc-html ul { padding-left: 20px; margin-bottom: 12px; }
.bm-pd-desc-html li { margin-bottom: 6px; }

/* ── Features section ── */
.bm-features-section {
  padding: 60px 0;
  border-top: 1px solid #c4c7c5;
}
.bm-features-head { margin-bottom: 36px; }
.bm-features-head h2 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: #010202;
}
.bm-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.bm-feature-card {
  background: #fff;
  border: 1px solid #efeeec;
  padding: 32px 24px;
  box-shadow: 0 2px 12px rgba(1,2,2,0.04);
  transition: transform 0.2s, box-shadow 0.2s;
}
.bm-feature-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(1,2,2,0.08); }
.bm-feature-icon {
  width: 44px;
  height: 44px;
  background: #1a1d1c;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.bm-feature-icon i { color: #e9c349; font-size: 18px; }
.bm-feature-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 700;
  color: #010202;
  margin-bottom: 8px;
}
.bm-feature-card p { font-size: 13px; color: #747876; line-height: 1.65; margin: 0; }

/* ── Cross-sell ── */
.bm-crosssell {
  padding: 60px 0;
  border-top: 1px solid #c4c7c5;
}
.bm-crosssell-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}
.bm-crosssell-head h2 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: #010202;
}
.bm-sec-link {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #010202;
  border-bottom: 1px solid #010202;
  padding-bottom: 2px;
  transition: opacity 0.2s;
}
.bm-sec-link:hover { opacity: 0.6; }
.bm-crosssell-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.bm-xs-card {
  position: relative;
  background: #fff;
  border: 1px solid #efeeec;
  overflow: hidden;
}
.bm-xs-card .img { aspect-ratio: 1/1; overflow: hidden; background: #f4f3f1; }
.bm-xs-card .img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; display: block; }
.bm-xs-card:hover .img img { transform: scale(1.05); }
.bm-xs-card .info { padding: 14px 14px 48px; }
.bm-xs-card .info h4 { font-family: 'Playfair Display', serif; font-size: 14px; font-weight: 600; color: #010202; margin-bottom: 4px; line-height: 1.3; }
.bm-xs-card .info .price { font-size: 13px; font-weight: 700; color: #010202; }
.bm-xs-card .xs-add {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  background: #010202;
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: background 0.2s;
}
.bm-xs-card .xs-add:hover { background: #e9c349; color: #010202; }

/* ── Reviews section ── */
.reviews-section { padding: 80px 0; }
.reviews-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: #010202;
  margin-bottom: 20px;
}
div[style*="grid-template-columns: 1fr 2fr"] { display: grid; grid-template-columns: 1fr 2fr; gap: 80px; }
.review-card { border-bottom: 1px solid #efeeec; padding-bottom: 28px; margin-bottom: 28px; }
.review-card h4 { font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 600; color: #010202; margin-bottom: 8px; }
.stars { color: #e9c349; letter-spacing: 2px; }

/* Responsive product detail */
@media (max-width: 1024px) {
  .product-detail-grid { gap: 36px; }
  .bm-crosssell-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .product-detail-grid { grid-template-columns: 1fr !important; gap: 28px !important; }
  .gallery-wrapper { flex-direction: column-reverse; }
  .bm-thumbs { flex-direction: row !important; width: 100% !important; overflow-x: auto; }
  .bm-thumb { width: 60px !important; height: 60px !important; flex-shrink: 0; }
  .bm-gallery-main { aspect-ratio: 4/3; }
  .bm-features-grid { grid-template-columns: 1fr 1fr; }
  div[style*="grid-template-columns: 1fr 2fr"] { grid-template-columns: 1fr !important; gap: 40px !important; }
}
@media (max-width: 540px) {
  .bm-features-grid { grid-template-columns: 1fr; }
  .bm-crosssell-grid { grid-template-columns: repeat(2, 1fr); }
  .bm-pd-actions { flex-wrap: wrap; }
  .bm-btn-add-cart { flex: 1 1 auto; }
}

/* ── Newsletter Section ── */
.bm-newsletter { background: #1a1d1c; padding: 80px 0; text-align: center; }
.bm-newsletter h2 { font-family: 'Playfair Display', serif; font-size: clamp(24px, 3vw, 36px); font-weight: 700; color: #fff; margin-bottom: 12px; }
.bm-newsletter p { font-size: 15px; color: rgba(255,255,255,0.65); margin-bottom: 32px; }
.bm-newsletter-form { display: flex; max-width: 440px; margin: 0 auto; }
.bm-newsletter-input { flex: 1; padding: 14px 20px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.15); border-right: none; color: #fff; font-family: inherit; font-size: 14px; outline: none; }
.bm-newsletter-input::placeholder { color: rgba(255,255,255,0.4); }
.bm-newsletter-btn { padding: 14px 24px; background: #e9c349; color: #010202; border: none; font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer; transition: background 0.2s; }
.bm-newsletter-btn:hover { background: #ffe088; }
