/* ============ Odisha Book Emporium Extras ============ */
body { -webkit-font-smoothing: antialiased; }
a { color: inherit; }
a:hover { color: #0868e8; }
img { max-width: 100%; }
button { font-family: "Inter", Arial, sans-serif; }

/* Breadcrumb / page banner */
.bh-banner {
    background: linear-gradient(100deg, #0754bb 0%, #0868e8 100%);
    color: #fff;
    padding: 42px 4.2%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.bh-banner h1 { font-family: "Inter", sans-serif; font-size: 30px; margin: 0; }
.bh-banner p { margin: 6px 0 0; opacity: .85; font-size: 14px; }
.bh-banner .bh-breadcrumb a { color: rgba(255,255,255,.8); text-decoration: none; }
.bh-banner .bh-breadcrumb a:hover { color: #fff; }

/* General sections */
.bh-section { padding: 30px 0; }
.bh-section-head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 18px; flex-wrap: wrap; gap: 8px; }
.bh-section-head h2 { font-family: "Inter", sans-serif; font-size: 24px; margin: 0; }
.bh-section-head a { font-size: 12px; color: #0868e8; text-decoration: none; font-weight: 700; }

/* Buttons */
.bh-btn { display: inline-block; padding: 12px 26px; border-radius: 6px; font-size: 15px; font-weight: 700; cursor: pointer; text-decoration: none; border: 1px solid transparent; transition: .2s; text-align: center; }
.bh-btn-primary { background: #0754bb; color: #fff; border-color: #0754bb; }
.bh-btn-primary:hover { background: #0a4f2f; color: #fff; }
.bh-btn-outline { background: #fff; color: #0754bb; border-color: #0754bb; }
.bh-btn-outline:hover { background: #0754bb; color: #fff; }
.bh-btn-sm { padding: 8px 16px; font-size: 13px; }
.bh-btn-block { display: block; width: 100%; text-align: center; }
.bh-btn[disabled] { opacity: .6; cursor: not-allowed; }
.bh-btn-dark { background: #24343d; color: #fff; border-color: #24343d; }
.bh-btn-dark:hover { background: #111c22; color: #fff; }

/* Forms */
.bh-form { max-width: 520px; margin: 30px auto; }
.bh-form-card { border: 1px solid #e4e4e4; border-radius: 10px; padding: 30px; background: #fff; box-shadow: 0 4px 18px rgba(0,0,0,.04); }
.bh-form-card h2 { font-family: "Inter", sans-serif; font-size: 24px; margin: 0 0 6px; }
.bh-form-card > p { color: #666; font-size: 14px; margin: 0 0 22px; }
.bh-field { margin-bottom: 16px; }
.bh-field label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; color: #333; }
.bh-input, .bh-textarea, .bh-select {
    width: 100%; border: 1px solid #d8d8d8; border-radius: 6px; padding: 11px 14px; font-size: 14px;
    font-family: "Inter", Arial, sans-serif; outline: none; background: #fff; transition: border .2s;
}
.bh-input:focus, .bh-textarea:focus, .bh-select:focus { border-color: #0868e8; box-shadow: 0 0 0 3px rgba(8,104,232,.1); }
.bh-textarea { min-height: 100px; resize: vertical; }
.bh-field-err { color: #d32f2f; font-size: 12px; margin-top: 5px; }
.bh-hint { font-size: 12px; color: #888; margin-top: 6px; }
.bh-inline { display: flex; gap: 12px; }
.bh-inline > div { flex: 1; }
.bh-check { display: flex; align-items: center; gap: 8px; font-size: 13px; color: #444; cursor: pointer; }

/* Alerts */
.bh-alert { border-radius: 7px; padding: 13px 16px; font-size: 14px; margin-bottom: 16px; }
.bh-alert-success { background: #e6f0ff; color: #0a5c38; border: 1px solid #b7e0cb; }
.bh-alert-error { background: #fdecec; color: #a01f1f; border: 1px solid #f3c4c4; }
.bh-alert-info { background: #e8f0fb; color: #1c4f91; border: 1px solid #c2d6f0; }
.bh-alert-warning { background: #fdf6e7; color: #8a6116; border: 1px solid #f0dcaa; }

/* Product grid */
.bh-product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.bh-product-card {
    border: 1px solid #eee; border-radius: 8px; overflow: hidden; background: #fff; position: relative;
    transition: box-shadow .25s, transform .25s; display: flex; flex-direction: column;
}
.bh-product-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,.09); transform: translateY(-3px); }
.bh-product-media-wrap { position: relative; }
.bh-product-media { position: relative; background: #f7f7f7; display: flex; align-items: center; justify-content: center; padding: 18px 14px 6px; min-height: 190px; }
.bh-product-media .bh-book-cover { width: 108px; height: 150px; }
.bh-product-badge { position: absolute; top: 10px; left: 10px; background: #f28a15; color: #fff; font-size: 10px; font-weight: 700; padding: 4px 8px; border-radius: 4px; }
.bh-product-badge-new { background: #0868e8; }
.bh-product-badge-off { background: #e53935; }
.bh-product-actions { position: absolute; top: 10px; right: 10px; display: flex; flex-direction: column; gap: 6px; opacity: 0; transition: .2s; }
.bh-product-card:hover .bh-product-actions { opacity: 1; }
.bh-product-actions a, .bh-product-actions button {
    width: 34px; height: 34px; border-radius: 50%; background: #fff; border: 1px solid #e5e5e5; display: flex;
    align-items: center; justify-content: center; font-size: 15px; color: #333; text-decoration: none; cursor: pointer; transition: .2s;
}
.bh-product-actions a:hover, .bh-product-actions button:hover { background: #0868e8; color: #fff; border-color: #0868e8; }
.bh-product-actions .active { background: #0868e8; color: #fff; border-color: #0868e8; }
.bh-product-body { padding: 12px 14px 14px; flex: 1; display: flex; flex-direction: column; }
.bh-product-cat { font-size: 10px; text-transform: uppercase; letter-spacing: .6px; color: #0868e8; font-weight: 700; margin-bottom: 4px; }
.bh-product-title { font-size: 14px; font-weight: 600; color: #222; text-decoration: none; line-height: 1.35; }
.bh-product-title:hover { color: #0868e8; }
.bh-product-author { font-size: 12px; color: #777; margin: 4px 0 6px; }
.bh-product-stars { color: #f1a300; font-size: 12px; margin: 2px 0 6px; }
.bh-product-stars span { color: #777; }
.bh-product-foot { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-top: auto; padding-top: 10px; }
.bh-product-price { display: flex; align-items: baseline; gap: 6px; flex-wrap: wrap; }
.bh-product-price strong { font-size: 16px; color: #17221d; }
.bh-product-price del { font-size: 12px; color: #999; }
.bh-product-price .off { font-size: 10px; color: #0868e8; background: #e8f0ff; padding: 3px 6px; border-radius: 3px; font-weight: 700; }
.bh-add-cart { padding: 8px 14px; width: auto; white-space: nowrap; border-radius: 8px; background: #0754bb; color: #fff; border: 0; font-weight: 700; font-size: 13px; cursor: pointer; transition: .2s; }
.bh-add-cart:hover { background: #0a4f2f; }
.bh-add-cart[disabled] { background: #9dc7b1; cursor: not-allowed; }

/* Book cover placeholder (CSS book) */
.bh-book-cover {
    border-radius: 4px; box-shadow: 2px 3px 8px rgba(0,0,0,.25); display: flex; align-items: center; justify-content: center;
    text-align: center; font-weight: 700; white-space: pre-line; color: #fff; overflow: hidden; position: relative; font-family: "Inter", sans-serif;
    background-size: cover; background-position: center;
}
.bh-book-cover .bh-cover-text { padding: 10px; font-size: 13px; line-height: 1.3; text-shadow: 0 1px 3px rgba(0,0,0,.35); z-index: 1; }
.bh-book-cover img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }

/* Sidebar filters (shop page) */
.bh-filter-panel { border: 1px solid #e4e4e4; border-radius: 8px; overflow: hidden; margin-bottom: 20px; background: #fff; }
.bh-filter-head { background: #0754bb; color: #fff; padding: 12px 16px; font-weight: 700; font-size: 14px; }
.bh-filter-body { padding: 14px 16px; }
.bh-filter-body h5 { font-size: 13px; margin: 0 0 10px; color: #333; }
.bh-filter-group { margin-bottom: 18px; }
.bh-filter-group:last-child { margin-bottom: 0; }
.bh-filter-link { display: block; padding: 6px 0; font-size: 14px; color: #333; text-decoration: none; border-bottom: 1px dashed #f0f0f0; }
.bh-filter-link:hover { color: #0868e8; }
.bh-filter-link.active { color: #0868e8; font-weight: 700; }
.bh-filter-price { display: flex; align-items: center; gap: 8px; font-size: 13px; color: #555; }
.bh-filter-price input { width: 100%; }

/* Shop toolbar */
.bh-toolbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; flex-wrap: wrap; gap: 10px; }
.bh-toolbar .bh-result { font-size: 14px; color: #555; }
.bh-toolbar .bh-sort { display: flex; align-items: center; gap: 8px; font-size: 14px; }
.bh-toolbar select { border: 1px solid #d8d8d8; border-radius: 6px; padding: 8px 10px; font-size: 13px; }

/* Product detail */
.bh-detail { display: grid; grid-template-columns: 360px 1fr; gap: 34px; padding: 26px 20px; }
.bh-detail-main-cover { border: 1px solid #eee; border-radius: 8px; padding: 26px; display: flex; justify-content: center; background: #fafafa; }
.bh-detail-main-cover .bh-book-cover { width: 220px; height: 300px; }
.bh-detail-thumbs { display: flex; gap: 8px; margin-top: 12px; flex-wrap: wrap; }
.bh-detail-thumbs a { width: 62px; height: 84px; border: 2px solid #e5e5e5; border-radius: 5px; overflow: hidden; display: block; }
.bh-detail-thumbs a.active { border-color: #0868e8; }
.bh-detail-thumbs .bh-book-cover { width: 100%; height: 100%; border-radius: 0; box-shadow: none; }
.bh-detail-info h1 { font-family: "Inter", sans-serif; font-size: 30px; margin: 0 0 4px; }
.bh-detail-author { font-size: 15px; color: #555; margin: 0 0 8px; }
.bh-detail-author a { color: #0868e8; text-decoration: none; }
.bh-detail-stars { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; }
.bh-detail-stars .stars { margin: 0; }
.bh-detail-price { display: flex; align-items: baseline; gap: 12px; margin: 14px 0; flex-wrap: wrap; }
.bh-detail-price strong { font-size: 28px; color: #0754bb; }
.bh-detail-price del { font-size: 16px; color: #999; }
.bh-detail-price .off { font-size: 12px; color: #0868e8; background: #e8f0ff; padding: 5px 8px; border-radius: 4px; font-weight: 700; }
.bh-detail-desc { color: #444; font-size: 14px; line-height: 1.7; margin: 16px 0; }
.bh-detail-meta { border-top: 1px solid #eee; margin-top: 18px; padding-top: 14px; }
.bh-detail-meta table { width: 100%; font-size: 14px; }
.bh-detail-meta td { padding: 6px 0; }
.bh-detail-meta td:first-child { color: #888; width: 120px; }
.bh-detail-actions { display: flex; gap: 12px; margin-top: 20px; flex-wrap: wrap; align-items: center; }
.bh-qty { display: flex; align-items: center; border: 1px solid #d8d8d8; border-radius: 6px; overflow: hidden; }
.bh-qty button { width: 38px; height: 44px; border: 0; background: #f4f4f4; font-size: 18px; cursor: pointer; }
.bh-qty input { width: 50px; height: 44px; border: 0; text-align: center; font-size: 15px; outline: none; }

/* Tabs */
.bh-tabs { margin: 30px 20px; }
.bh-tab-nav { display: flex; border-bottom: 2px solid #e8e8e8; gap: 4px; flex-wrap: wrap; }
.bh-tab-nav button { padding: 11px 20px; background: none; border: 0; border-bottom: 3px solid transparent; font-weight: 600; font-size: 14px; color: #555; cursor: pointer; margin-bottom: -2px; }
.bh-tab-nav button.active { color: #0868e8; border-bottom-color: #0868e8; }
.bh-tab-panel { display: none; padding: 22px 4px; }
.bh-tab-panel.active { display: block; }

/* Reviews */
.bh-review { border-bottom: 1px solid #eee; padding: 14px 0; }
.bh-review-head { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 6px; }
.bh-review-head b { font-size: 14px; }
.bh-review-head .bh-review-date { font-size: 12px; color: #999; }
.bh-review p { font-size: 14px; color: #444; margin: 8px 0 0; line-height: 1.6; }

/* Cart */
.bh-cart-wrap { display: grid; grid-template-columns: 1fr 330px; gap: 22px; padding: 26px 20px; }
.bh-cart-table { width: 100%; border-collapse: collapse; background: #fff; }
.bh-cart-table thead th { background: #0754bb; color: #fff; padding: 12px 14px; font-size: 13px; text-align: left; }
.bh-cart-table tbody td { padding: 16px 14px; border-bottom: 1px solid #eee; vertical-align: middle; }
.bh-cart-table tbody tr:hover { background: #fafdfb; }
.bh-cart-item { display: flex; gap: 14px; align-items: center; }
.bh-cart-item .bh-book-cover { width: 58px; height: 80px; flex-shrink: 0; }
.bh-cart-item b { font-size: 14px; display: block; }
.bh-cart-item small { color: #777; }
.bh-cart-remove { color: #d32f2f; background: none; border: 0; cursor: pointer; font-size: 17px; }
.bh-summary-card { border: 1px solid #e4e4e4; border-radius: 8px; padding: 20px; position: sticky; top: 20px; background: #fff; }
.bh-summary-card h3 { font-family: "Inter", sans-serif; font-size: 20px; margin: 0 0 16px; }
.bh-summary-row { display: flex; justify-content: space-between; padding: 7px 0; font-size: 14px; color: #444; }
.bh-summary-row.total { border-top: 1px solid #eee; margin-top: 8px; padding-top: 14px; font-weight: 700; font-size: 17px; color: #17221d; }
.bh-coupon-form { display: flex; gap: 8px; margin-bottom: 14px; }
.bh-coupon-form input { flex: 1; }
.bh-empty { text-align: center; padding: 60px 20px; }
.bh-empty .bh-empty-icon { font-size: 60px; margin-bottom: 14px; }
.bh-empty h2 { font-family: "Inter", sans-serif; margin: 0 0 8px; }
.bh-empty p { color: #777; margin: 0 0 20px; }

/* Checkout */
.bh-checkout-wrap { display: grid; grid-template-columns: 1fr 360px; gap: 24px; padding: 26px 20px; }
.bh-checkout-form .bh-form-card { margin: 0; max-width: none; }
.bh-checkout-form .bh-form-card + .bh-form-card { margin-top: 16px; }
.bh-pay-method { display: flex; gap: 12px; flex-wrap: wrap; }
.bh-pay-option { flex: 1; min-width: 140px; border: 2px solid #e4e4e4; border-radius: 8px; padding: 14px; cursor: pointer; text-align: center; font-size: 14px; font-weight: 600; }
.bh-pay-option.selected { border-color: #0868e8; background: #eef5ff; }
.bh-pay-option .bh-pay-icon { font-size: 26px; display: block; margin-bottom: 6px; }

/* Account */
.bh-account-wrap { display: grid; grid-template-columns: 250px 1fr; gap: 24px; padding: 26px 20px; }
.bh-account-side { border: 1px solid #e4e4e4; border-radius: 8px; overflow: hidden; align-self: start; background: #fff; }
.bh-account-user { background: #0754bb; color: #fff; padding: 20px; text-align: center; }
.bh-account-avatar { width: 62px; height: 62px; border-radius: 50%; background: #fff; color: #0754bb; font-size: 26px; display: flex; align-items: center; justify-content: center; margin: 0 auto 10px; font-weight: 700; }
.bh-account-user b { display: block; font-size: 15px; }
.bh-account-user small { opacity: .8; }
.bh-account-nav a { display: flex; align-items: center; gap: 10px; padding: 13px 18px; text-decoration: none; color: #333; font-size: 14px; border-bottom: 1px solid #f0f0f0; transition: .2s; }
.bh-account-nav a:hover { background: #f2f7ff; color: #0868e8; }
.bh-account-nav a.active { background: #e6f0ff; color: #0868e8; font-weight: 700; border-left: 3px solid #0868e8; }
.bh-stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 24px; }
.bh-stat-card { border: 1px solid #e4e4e4; border-radius: 8px; padding: 18px; background: #fff; }
.bh-stat-card b { display: block; font-size: 26px; color: #0754bb; font-family: "Inter", sans-serif; }
.bh-stat-card span { font-size: 13px; color: #777; }

/* Tables */
.bh-table { width: 100%; border-collapse: collapse; background: #fff; }
.bh-table thead th { background: #0754bb; color: #fff; padding: 11px 14px; font-size: 13px; text-align: left; }
.bh-table tbody td { padding: 12px 14px; border-bottom: 1px solid #eee; font-size: 14px; }
.bh-table tbody tr:hover { background: #fafdfb; }
.bh-badge { display: inline-block; padding: 4px 10px; border-radius: 12px; font-size: 11px; font-weight: 700; }
.bh-badge-green { background: #e6f0ff; color: #0a5c38; }
.bh-badge-orange { background: #fdf3e4; color: #9a6416; }
.bh-badge-red { background: #fdecec; color: #a01f1f; }
.bh-badge-blue { background: #e8f0fb; color: #1c4f91; }
.bh-badge-grey { background: #eee; color: #555; }

/* Cart / checkout */
.bh-table-wrap { border: 1px solid #e4e4e4; border-radius: 8px; background: #fff; padding: 8px; overflow-x: auto; }
.bh-cart-grid { align-items: start; }
.bh-cart-table thead th { border-bottom: 1px solid #0a4f2f; }
@media (max-width: 900px) {
    .bh-cart-grid { grid-template-columns: 1fr !important; }
    .bh-detail { grid-template-columns: 1fr !important; }
    .bh-blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .bh-blog-grid { grid-template-columns: 1fr; }
}
.bh-panel { border: 1px solid #e4e4e4; border-radius: 8px; background: #fff; padding: 22px; }
.bh-panel h3 { font-family: "Inter", sans-serif; font-size: 19px; margin: 0 0 18px; }
.bh-checkout-grid { display: grid; grid-template-columns: 1fr 360px; gap: 24px; padding: 26px 20px; align-items: start; }
@media (max-width: 900px) {
    .bh-checkout-grid { grid-template-columns: 1fr !important; }
    .bh-checkout-grid aside { position: static !important; }
}
.bh-address-option { display: flex; gap: 14px; padding: 16px; border: 2px solid #eee; border-radius: 8px; margin-bottom: 12px; cursor: pointer; transition: .2s; align-items: flex-start; }
.bh-address-option:hover { border-color: #0868e8; }
.bh-address-option.selected { border-color: #0868e8; background: #f2f7ff; }
.bh-address-option input { accent-color: #0868e8; margin-top: 4px; flex-shrink: 0; }
.bh-pay-option { display: flex; align-items: center; gap: 14px; padding: 16px; border: 1px solid #eee; border-radius: 8px; margin-bottom: 12px; cursor: pointer; transition: .2s; }
.bh-pay-option:hover, .bh-pay-option.selected { border-color: #0868e8; background: #f2f7ff; }
.bh-order-line { display: flex; justify-content: space-between; margin-bottom: 12px; color: #555; font-size: 14px; }
.bh-order-total { display: flex; justify-content: space-between; align-items: baseline; font-size: 22px; font-weight: 800; color: #0754bb; font-family: "Inter", sans-serif; }
.bh-summary-item { display: flex; gap: 12px; align-items: center; padding: 10px 0; border-bottom: 1px dashed #eee; }
.bh-summary-item img { width: 44px; height: 58px; object-fit: cover; border-radius: 4px; border: 1px solid #eee; }
.bh-coupon { display: flex; gap: 8px; }
.bh-coupon .bh-input { flex: 1; }

/* Blog */
.bh-blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; padding: 26px 20px; }
.bh-blog-card { border: 1px solid #eee; border-radius: 8px; overflow: hidden; background: #fff; transition: box-shadow .25s; }
.bh-blog-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,.09); }
.bh-blog-thumb { height: 200px; overflow: hidden; background: #eee; }
.bh-blog-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.bh-blog-card:hover .bh-blog-thumb img { transform: scale(1.05); }
.bh-blog-body { padding: 16px 18px 20px; }
.bh-blog-body h3 { font-size: 18px; margin: 0 0 8px; line-height: 1.4; font-family: "Inter", sans-serif; }
.bh-blog-body h3 a { text-decoration: none; color: #17221d; }
.bh-blog-body h3 a:hover { color: #0868e8; }
.bh-blog-body p { font-size: 13px; color: #666; line-height: 1.6; margin: 0 0 12px; }
.bh-blog-meta { font-size: 12px; color: #999; margin-bottom: 8px; }

/* Blog detail / static pages content */
.bh-prose { padding: 30px 0; max-width: 860px; margin: 0 auto; }
.bh-prose h2 { font-family: "Inter", sans-serif; font-size: 26px; margin: 28px 0 12px; }
.bh-prose h3 { font-family: "Inter", sans-serif; font-size: 21px; margin: 22px 0 10px; }
.bh-prose p { font-size: 15px; line-height: 1.85; color: #3d4a44; margin: 0 0 14px; }
.bh-prose ul, .bh-prose ol { font-size: 15px; line-height: 1.85; color: #3d4a44; padding-left: 22px; margin: 0 0 14px; }
.bh-prose li { margin-bottom: 6px; }
.bh-prose img { border-radius: 8px; margin: 14px 0; }
.bh-blog-detail-head { padding: 20px 0 6px; }
.bh-blog-detail-head h1 { font-family: "Inter", sans-serif; font-size: 34px; margin: 0 0 10px; }

/* Pagination */
.bh-pagination { display: flex; gap: 6px; justify-content: center; margin: 26px 0; }
.bh-pagination a, .bh-pagination span { display: flex; align-items: center; justify-content: center; min-width: 38px; height: 38px; padding: 0 10px; border: 1px solid #ddd; border-radius: 6px; font-size: 14px; color: #333; text-decoration: none; }
.bh-pagination a:hover { border-color: #0868e8; color: #0868e8; }
.bh-pagination .active span, .bh-pagination span.current { background: #0868e8; color: #fff; border-color: #0868e8; }
.bh-pagination .disabled span { color: #bbb; }

/* Category dropdown (searchbar) */
.category-drop { position: relative; }
.category-dropdown {
    display: none; position: absolute; top: 52px; left: 0; width: 285px; background: #fff; border: 1px solid #e4e4e4;
    border-radius: 0 0 8px 8px; box-shadow: 0 12px 30px rgba(0,0,0,.12); z-index: 50; overflow: hidden;
}
.category-dropdown.open { display: block; }
.category-dropdown a { display: flex; align-items: center; gap: 10px; padding: 11px 18px; text-decoration: none; color: #27302c; font-size: 14px; border-bottom: 1px solid #f0f0f0; }
.category-dropdown a:hover { background: #eef5ff; color: #0868e8; }
.category-dropdown a i { margin-left: auto; font-style: normal; color: #aaa; }

/* Subscription plans */
.bh-plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; padding: 30px 20px; }
.bh-plan-card { border: 1px solid #e4e4e4; border-radius: 12px; padding: 28px 24px; background: #fff; text-align: center; position: relative; transition: box-shadow .25s; display: flex; flex-direction: column; }
.bh-plan-card:hover { box-shadow: 0 12px 30px rgba(0,0,0,.09); }
.bh-plan-card.popular { border: 2px solid #0868e8; }
.bh-plan-popular { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: #0868e8; color: #fff; font-size: 11px; font-weight: 700; padding: 5px 16px; border-radius: 14px; }
.bh-plan-name { font-family: "Inter", sans-serif; font-size: 22px; margin: 0 0 6px; }
.bh-plan-desc { font-size: 13px; color: #777; margin: 0 0 16px; }
.bh-plan-price { font-family: "Inter", sans-serif; margin-bottom: 18px; }
.bh-plan-price b { font-size: 40px; color: #0754bb; }
.bh-plan-price small { font-size: 14px; color: #777; }
.bh-plan-features { list-style: none; padding: 0; margin: 0 0 22px; text-align: left; flex: 1; }
.bh-plan-features li { display: flex; align-items: flex-start; gap: 10px; padding: 7px 0; font-size: 14px; color: #3d4a44; }
.bh-plan-features li::before { content: "âœ“"; color: #0868e8; font-weight: 700; }

/* Order confirmation / success */
.bh-success { text-align: center; padding: 50px 20px; max-width: 640px; margin: 0 auto; }
.bh-success-icon { width: 84px; height: 84px; border-radius: 50%; background: #e6f0ff; color: #0a5c38; font-size: 40px; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.bh-success h1 { font-family: "Inter", sans-serif; font-size: 32px; margin: 0 0 10px; }
.bh-success p { color: #666; font-size: 15px; margin: 0 0 8px; }

/* Compare */
.bh-compare-table { width: 100%; border-collapse: collapse; background: #fff; margin: 26px 20px; }
.bh-compare-table th, .bh-compare-table td { border: 1px solid #eee; padding: 12px 16px; font-size: 14px; text-align: center; }
.bh-compare-table th { background: #0754bb; color: #fff; }
.bh-compare-table td:first-child { background: #f7faf8; font-weight: 600; text-align: left; }

/* Track order */
.bh-timeline { list-style: none; padding: 0; margin: 22px 0; }
.bh-timeline li { display: flex; gap: 14px; padding: 10px 0; position: relative; }
.bh-timeline li .bh-tl-dot { width: 14px; height: 14px; border-radius: 50%; background: #ddd; margin-top: 4px; flex-shrink: 0; }
.bh-timeline li.done .bh-tl-dot { background: #0868e8; }
.bh-timeline li.done .bh-tl-label { color: #0868e8; }
.bh-timeline .bh-tl-label { font-weight: 600; font-size: 14px; }
.bh-timeline .bh-tl-note { font-size: 13px; color: #777; }

/* Footer */
.bh-footer { background: #0b3a24; color: #dfe9e3; margin-top: 30px; }
.bh-footer-main { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 30px; padding: 44px 4.2%; }
.bh-footer-brand { display: flex; align-items: center; gap: 12px; }
.bh-footer-brand strong { font-family: "Inter", sans-serif; font-size: 24px; color: #fff; line-height: 1; }
.bh-footer-brand small { display: block; color: #a8c9b6; margin-top: 4px; }
.bh-footer-col h4 { color: #fff; font-size: 15px; margin: 0 0 16px; }
.bh-footer-col p { font-size: 13px; line-height: 1.7; color: #a8c9b6; margin: 16px 0; }
.bh-footer-col ul { list-style: none; padding: 0; margin: 0; }
.bh-footer-col ul li { margin-bottom: 10px; }
.bh-footer-col ul a { color: #a8c9b6; text-decoration: none; font-size: 13px; }
.bh-footer-col ul a:hover { color: #fff; }
.bh-social { display: flex; gap: 10px; }
.bh-social a { width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,.1); color: #fff; display: flex; align-items: center; justify-content: center; text-decoration: none; font-size: 14px; }
.bh-social a:hover { background: #0868e8; }
.bh-footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 18px 4.2%; display: flex; justify-content: space-between; gap: 10px; flex-wrap: wrap; font-size: 13px; color: #a8c9b6; }

/* Responsive */
@media (max-width: 1100px) {
    .bh-product-grid { grid-template-columns: repeat(3, 1fr); }
    .bh-plans-grid { grid-template-columns: 1fr; }
    .bh-footer-main { grid-template-columns: 1fr 1fr; }
    .bh-account-wrap { grid-template-columns: 1fr; }
    .bh-cart-wrap, .bh-checkout-wrap { grid-template-columns: 1fr; }
    .bh-stat-grid { grid-template-columns: repeat(2, 1fr); }
    .bh-detail { grid-template-columns: 1fr; }
    .bh-detail-gallery { max-width: 360px; }
}
@media (max-width: 800px) {
    .bh-product-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .bh-blog-grid { grid-template-columns: 1fr; }
    .bh-footer-main { grid-template-columns: 1fr; }
    .bh-banner { padding: 28px 20px; }
    .bh-banner h1 { font-size: 24px; }
    .bh-cart-table thead { display: none; }
    .bh-cart-table, .bh-cart-table tbody, .bh-cart-table tr, .bh-cart-table td { display: block; width: 100%; }
    .bh-cart-table tr { border-bottom: 1px solid #eee; }
    .bh-cart-table td { border: 0; padding: 10px 14px; }
    .bh-summary-card { position: static; }
}

