

/* Start:/land/wood-bruce/style.css?17863692405174*/
.wood-bruce-page {
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 15px;
    font-family: inherit;
    color: #2b325c;
}

.wood-bruce-page h1 {
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #000000;
}

.wood-bruce-description {
    line-height: 1.7;
    margin-bottom: 40px;
    font-size: 15px;
    color: #555;
}

.wood-bruce-description p {
    margin-bottom: 15px;
}

.price-section-title {
    font-size: 24px;
    font-weight: 800;
    margin: 35px 0 15px 0;
    color: #000000;
    border-bottom: none;
    padding-bottom: 0;
}

.wood-price-table-wrapper {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(59, 68, 125, 0.08);
    border: 1px solid rgba(59, 68, 125, 0.14);
    overflow: hidden;
    margin-bottom: 35px;
    transition: box-shadow 0.3s ease;
}

.wood-price-table-wrapper:hover {
    box-shadow: 0 14px 40px rgba(59, 68, 125, 0.14);
}

.wood-price-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    border: none;
}

.wood-price-table th,
.wood-price-table td {
    padding: 14px 16px;
    border: none;
    border-right: 1px solid #ffffff;
    border-bottom: 1px solid #ffffff;
    vertical-align: middle;
    font-size: 14px;
    color: #2b325c;
}

.wood-price-table th {
    background-color: #3b447d;
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.wood-price-table th.th-name { width: 30%; }
.wood-price-table th.th-specs { width: 25%; }
.wood-price-table th.th-unit { width: 10%; text-align: center; }
.wood-price-table th.th-qty { width: 15%; text-align: center; }
.wood-price-table th.th-price { width: 20%; text-align: right; }

.wood-price-table th:last-child,
.wood-price-table td:last-child {
    border-right: none;
}

.wood-price-table tbody tr:last-child td {
    border-bottom: none;
}

.wood-price-table td.td-unit {
    text-align: center;
}

.wood-price-table td.td-qty {
    text-align: center;
}

.wood-price-table tbody tr {
    background-color: #ffffff;
}

.wood-price-table tbody tr:nth-child(even) {
    background-color: #f4f6fa;
}

.wood-price-table tbody tr:hover {
    background-color: #e9eef7;
}

.product-title {
    font-weight: 700;
    color: #2b325c;
    font-size: 15px;
}

.product-specs {
    color: #6b7280;
    font-weight: 500;
}

.quantity-control {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(59, 68, 125, 0.2);
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
}

.quantity-btn {
    width: 32px;
    height: 34px;
    background: #f0f3fa;
    border: none;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    color: #3b447d;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    user-select: none;
}

.quantity-btn:hover {
    background: #e2e7f3;
}

.quantity-input {
    width: 48px;
    height: 34px;
    border: none;
    border-left: 1px solid rgba(59, 68, 125, 0.2);
    border-right: 1px solid rgba(59, 68, 125, 0.2);
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: #2b325c;
    -moz-appearance: textfield;
}

.quantity-input::-webkit-outer-spin-button,
.quantity-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.price-cell {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}

.price-display {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.price-amount {
    font-size: 16px;
    font-weight: 700;
    color: #2b325c;
    white-space: nowrap;
}

.price-unit-info {
    font-size: 11px;
    color: #888;
    margin-top: 2px;
}

.btn-buy {
    background: #3b447d;
    color: #fff;
    border: none;
    padding: 9px 22px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.btn-buy:hover {
    background: #2b325c;
    color: #fff;
    box-shadow: 0 4px 12px rgba(59, 68, 125, 0.25);
}

@media (max-width: 768px) {
    .wood-price-table {
        font-size: 13px;
    }

    .wood-price-table th, 
    .wood-price-table td {
        padding: 10px 8px;
    }

    .price-cell {
        flex-direction: column;
        align-items: flex-end;
        gap: 8px;
    }

    .price-amount {
        font-size: 15px;
    }
}

.wood-seo-text {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(59, 68, 125, 0.14);
    line-height: 1.7;
    color: #444;
}

.wood-seo-text h2 {
    font-size: 22px;
    font-weight: 800;
    color: #000000;
    margin-bottom: 15px;
}

.wood-seo-text h3 {
    font-size: 18px;
    font-weight: 700;
    color: #2b325c;
    margin: 25px 0 12px 0;
}

.wood-seo-text p {
    margin-bottom: 15px;
}

.wood-seo-text ul {
    margin: 0 0 20px 20px;
    padding: 0;
}

.wood-seo-text li {
    margin-bottom: 8px;
    line-height: 1.6;
}



/* End */
/* /land/wood-bruce/style.css?17863692405174 */
