:root {
    --bnd-clay: #b88a58;
    --bnd-clay-dark: #a07342;
    --bnd-azure: #4da6b3;
    --bnd-azure-light: #eaf6f8;
    --bnd-dark: #1e2329;
    --bnd-dark-alt: #14171a;
    --bnd-border: #ede4d8;
    --bnd-gray-bg: #f6f1e8;
    --bnd-text: #333333;
    --bnd-text-muted: #8c8278;
    --bnd-white: #ffffff;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body {
    background-color: #faf7f2;
    color: var(--bnd-text);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 13px;
    line-height: 1.6;
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; transition: all 0.2s ease; }
a:hover { color: var(--bnd-clay); }

.bnd-container { max-width: 1220px; margin: 0 auto; padding: 0 15px; }

.bnd-header {
    background: var(--bnd-white);
    border-bottom: 1px solid var(--bnd-border);
}
.bnd-header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}
.bnd-logo img { height: 38px; max-width: 180px; object-fit: contain; }

.bnd-search-box {
    display: flex;
    align-items: center;
    border: 1px solid var(--bnd-border);
    border-radius: 20px;
    padding: 4px 15px;
    background: var(--bnd-gray-bg);
    width: 320px;
}
.bnd-search-box input {
    border: none;
    background: transparent;
    outline: none;
    font-size: 12px;
    width: 100%;
    color: #333;
}

.bnd-nav-bar {
    background: var(--bnd-white);
    border-top: 1px solid #f2eae0;
    border-bottom: 1px solid var(--bnd-border);
}
.bnd-nav-list {
    display: flex;
    list-style: none;
    align-items: center;
    justify-content: center;
    overflow-x: auto;
    white-space: nowrap;
}
.bnd-nav-list li a {
    display: block;
    padding: 12px 22px;
    color: var(--bnd-dark);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
}
.bnd-nav-list li a:hover, .bnd-nav-list li.active a {
    color: var(--bnd-clay);
}

.bnd-notice-bar {
    background: #fbf6ee;
    border-bottom: 1px solid #f2e3cf;
    padding: 10px 0;
    color: var(--bnd-clay-dark);
    font-size: 12px;
    text-align: center;
}

.bnd-sec-title {
    text-align: center;
    margin: 45px 0 25px;
}
.bnd-sec-title h2 {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--bnd-dark);
}
.bnd-sec-title p {
    font-size: 12px;
    color: var(--bnd-text-muted);
    margin-top: 4px;
}

.bnd-hero-duos {
    margin: 25px 0 35px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.bnd-hero-card {
    background: linear-gradient(135deg, #f7f1e8 0%, #ede1d1 100%);
    border: 1px solid #e5d5c0;
    border-radius: 8px;
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 15px rgba(184,138,88,0.08);
}
.bnd-hero-info { flex: 1; padding-right: 15px; }
.bnd-hero-badge {
    display: inline-block;
    background: var(--bnd-clay);
    color: #fff;
    font-size: 10px;
    padding: 2px 8px;
    border-radius: 20px;
    margin-bottom: 8px;
    font-weight: 700;
}
.bnd-hero-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--bnd-dark);
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.bnd-hero-price { font-size: 20px; font-weight: 800; color: var(--bnd-clay-dark); }
.bnd-hero-img {
    width: 85px;
    height: 85px;
    object-fit: contain;
    background: #fff;
    padding: 6px;
    border-radius: 50%;
}

.bnd-service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 35px;
}
.bnd-service-card {
    background: var(--bnd-white);
    border: 1px solid var(--bnd-border);
    border-radius: 6px;
    padding: 20px 15px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.02);
}
.bnd-service-card img {
    width: 45px;
    height: 45px;
    object-fit: contain;
    margin: 0 auto 10px;
}
.bnd-service-title {
    font-size: 12px;
    font-weight: 600;
    color: var(--bnd-dark);
    height: 34px;
    overflow: hidden;
    margin-bottom: 6px;
}

.bnd-promo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}
.bnd-promo-card {
    background: var(--bnd-white);
    border: 1px solid var(--bnd-border);
    border-radius: 6px;
    padding: 20px;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}
.bnd-promo-card img {
    width: 75px;
    height: 75px;
    object-fit: contain;
    margin-right: 20px;
    background: var(--bnd-gray-bg);
    padding: 6px;
    border-radius: 4px;
}
.bnd-promo-info { flex: 1; overflow: hidden; }
.bnd-promo-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--bnd-dark);
    margin-bottom: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bnd-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 35px;
}
.bnd-card-4 {
    background: var(--bnd-white);
    border: 1px solid var(--bnd-border);
    border-radius: 6px;
    padding: 15px;
    text-align: center;
    position: relative;
    box-shadow: 0 2px 8px rgba(0,0,0,0.02);
}
.bnd-card-4:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(184,138,88,0.1);
}
.bnd-card-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--bnd-gray-bg);
    color: var(--bnd-clay-dark);
    font-size: 9px;
    padding: 1px 6px;
    border-radius: 2px;
    font-weight: 700;
}
.bnd-card-thumb {
    width: 100%;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px 0;
    background: var(--bnd-gray-bg);
    border-radius: 4px;
}
.bnd-card-thumb img {
    max-width: 80px;
    max-height: 80px;
    object-fit: contain;
}
.bnd-card-title {
    font-size: 12px;
    font-weight: 600;
    color: var(--bnd-dark);
    height: 34px;
    overflow: hidden;
    margin-bottom: 6px;
}
.bnd-card-price {
    font-size: 14px;
    font-weight: 800;
    color: var(--bnd-clay-dark);
}

.bnd-deal-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}
.bnd-deal-card {
    background: var(--bnd-dark);
    border-radius: 6px;
    padding: 20px;
    display: flex;
    align-items: center;
    color: #fff;
    border-left: 4px solid var(--bnd-clay);
}
.bnd-deal-card img {
    width: 75px;
    height: 75px;
    object-fit: contain;
    margin-right: 20px;
    background: #fff;
    padding: 6px;
    border-radius: 4px;
}
.bnd-deal-info { flex: 1; overflow: hidden; }
.bnd-deal-name {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bnd-review-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}
.bnd-review-card {
    background: var(--bnd-white);
    border: 1px solid var(--bnd-border);
    border-radius: 6px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.02);
}
.bnd-review-head {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}
.bnd-review-head img {
    width: 45px;
    height: 45px;
    object-fit: contain;
    margin-right: 12px;
    background: var(--bnd-gray-bg);
    padding: 4px;
    border-radius: 50%;
}

.bnd-mini-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 40px;
}
.bnd-mini-card {
    background: var(--bnd-white);
    border: 1px solid var(--bnd-border);
    border-radius: 6px;
    padding: 12px;
    display: flex;
    align-items: center;
}
.bnd-mini-card img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    margin-right: 12px;
    background: var(--bnd-gray-bg);
    padding: 3px;
    border-radius: 4px;
}
.bnd-mini-info { flex: 1; overflow: hidden; }
.bnd-mini-title {
    font-size: 12px;
    font-weight: 600;
    color: var(--bnd-dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 2px;
}

.bnd-catalog-box {
    background: var(--bnd-white);
    border: 1px solid var(--bnd-border);
    border-radius: 6px;
    padding: 20px;
    margin-bottom: 50px;
}
.bnd-catalog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}
.bnd-catalog-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    background: var(--bnd-gray-bg);
    border-radius: 4px;
}
.bnd-catalog-item:hover { background: #efe6d8; }
.bnd-catalog-left { display: flex; align-items: center; flex: 1; overflow: hidden; }
.bnd-catalog-left img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    margin-right: 10px;
    background: #fff;
    padding: 2px;
}
.bnd-catalog-title {
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.bnd-catalog-right {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: 10px;
}

.bnd-panel-wrap {
    max-width: 980px;
    margin: 40px auto 60px;
    background: var(--bnd-white);
    border: 1px solid var(--bnd-border);
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}
.bnd-detail-layout {
    display: flex;
    flex-wrap: wrap;
    padding: 35px;
    gap: 35px;
}
.bnd-detail-media {
    flex: 0 0 340px;
    text-align: center;
    border-right: 1px solid var(--bnd-border);
    padding-right: 35px;
}
.bnd-detail-media img {
    max-width: 240px;
    max-height: 240px;
    object-fit: contain;
}
.bnd-detail-form { flex: 1; min-width: 300px; }
.bnd-detail-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--bnd-dark);
    margin-bottom: 12px;
}
.bnd-price-badge-box {
    background: var(--bnd-gray-bg);
    border: 1px solid var(--bnd-border);
    padding: 15px 20px;
    border-radius: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}
.bnd-price-lg { font-size: 26px; font-weight: 800; color: var(--bnd-clay-dark); }

.bnd-form-group { margin-bottom: 18px; }
.bnd-form-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--bnd-dark);
    margin-bottom: 6px;
}
.bnd-form-control {
    width: 100%;
    height: 40px;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 0 12px;
    font-size: 13px;
    outline: none;
}
.bnd-form-control:focus { border-color: var(--bnd-clay); }
.bnd-btn-submit {
    width: 100%;
    height: 44px;
    background: var(--bnd-clay);
    color: var(--bnd-white);
    font-size: 14px;
    font-weight: 700;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s ease;
}
.bnd-btn-submit:hover { background: var(--bnd-clay-dark); }

.bnd-tabs-head {
    display: flex;
    background: var(--bnd-gray-bg);
    border-bottom: 1px solid var(--bnd-border);
}
.bnd-tab-btn {
    flex: 1;
    text-align: center;
    padding: 14px 0;
    font-weight: 600;
    color: #666;
    border-right: 1px solid var(--bnd-border);
}
.bnd-tab-btn:last-child { border-right: none; }
.bnd-tab-btn.active {
    background: var(--bnd-white);
    color: var(--bnd-clay-dark);
    border-top: 3px solid var(--bnd-clay);
}

.bnd-footer {
    background: var(--bnd-dark-alt);
    color: #9c9288;
    padding: 35px 0 25px;
    text-align: center;
    font-size: 12px;
    border-top: 3px solid var(--bnd-clay);
}
.bnd-footer-nav { margin-bottom: 12px; }
.bnd-footer-nav a { color: #dcd4cc; margin: 0 12px; }
.bnd-footer-nav a:hover { color: var(--bnd-clay); }
.bnd-copyright { color: #6e6459; font-size: 11px; }

@media (max-width: 1024px) {
    .bnd-service-grid, .bnd-grid-4, .bnd-review-grid, .bnd-mini-grid { grid-template-columns: repeat(2, 1fr); }
    .bnd-catalog-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .bnd-hero-duos, .bnd-promo-grid, .bnd-deal-grid, .bnd-service-grid, .bnd-grid-4, .bnd-review-grid, .bnd-mini-grid { grid-template-columns: 1fr; }
    .bnd-detail-layout { flex-direction: column; }
    .bnd-detail-media { border-right: none; border-bottom: 1px solid var(--bnd-border); padding-right: 0; padding-bottom: 25px; }
}
