body {
    margin: 0;
    color: #efe0cb;
    font-family: Georgia, serif;
    background:
        linear-gradient(rgba(9,7,6,.78), rgba(9,7,6,.86)),
        url("./images/site-bg.png") center top / cover no-repeat fixed;
}

a {
    text-decoration: none;
    color: inherit;
}

.tarave-container {
    width: 100%;
    max-width: 1560px;
    margin: 0 auto;
    padding-left: 26px;
    padding-right: 26px;
    box-sizing: border-box;
}

.tarave-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(12, 10, 9, 0.45);
    border-bottom: 1px solid rgba(200, 160, 94, 0.35);
    backdrop-filter: blur(8px);
}

.tarave-header::after {
    content: "";
    display: block;
    height: 1px;
    background: rgba(200, 160, 94, 0.22);
}

.tarave-header-inner {
    min-height: 88px;
    display: grid;
    grid-template-columns: 180px 1fr 120px;
    align-items: center;
    gap: 24px;
}

.tarave-logo a {
    font-size: 48px;
    color: #e0bb84;
    letter-spacing: -0.02em;
}

.tarave-nav {
    display: flex;
    gap: 42px;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    color: rgba(239,224,203,0.92);
}

.tarave-nav a {
    position: relative;
    transition: color .25s ease;
}

.tarave-nav a:hover {
    color: #f4ddba;
}

.tarave-nav a:first-child::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    height: 1px;
    background: rgba(224,187,132,0.75);
}

.tarave-header-tools {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
    position: relative;
    z-index: 20;
}

.tarave-header-cart {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 0 12px;
    border: 1px solid rgba(200, 160, 94, 0.35);
    background: rgba(12, 10, 9, 0.35);
    color: #d9b57a;
    white-space: nowrap;
    transition: color .25s ease, border-color .25s ease, background-color .25s ease, transform .25s ease;
    box-sizing: border-box;
    position: relative;
    z-index: 21;
    pointer-events: auto;
    cursor: pointer;
}

.tarave-header-cart:hover {
    color: #f4ddba;
    border-color: rgba(224,187,132,.75);
    background: rgba(18, 16, 14, 0.72);
    transform: translateY(-1px);
}

.tarave-header-cart-icon {
    font-size: 22px;
    line-height: 1;
}

.tarave-cart-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    border-radius: 999px;
    background: rgba(224,187,132,.16);
    border: 1px solid rgba(224,187,132,.34);
    font-size: 13px;
    line-height: 1;
    color: #f4ddba;
    box-sizing: border-box;
}

.tarave-menu-btn {
    border: 0;
    background: transparent;
    color: #d9b57a;
    font-size: 28px;
    cursor: pointer;
}

/* HERO */
.tarave-hero {
    min-height: 380px;
    background:
        radial-gradient(circle at 22% 38%, rgba(223,185,123,.18) 0%, rgba(223,185,123,.08) 18%, rgba(223,185,123,0) 42%),
        linear-gradient(90deg, rgba(9,7,6,.62) 0%, rgba(9,7,6,.28) 42%, rgba(9,7,6,.10) 100%),
        url("./images/hero-bg.png") center center / cover no-repeat;
    border-bottom: 1px solid rgba(200, 160, 94, 0.30);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.tarave-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(255,255,255,.03), transparent 18%, transparent 82%, rgba(0,0,0,.12)),
        radial-gradient(circle at 30% 32%, rgba(236,199,140,.10), transparent 28%);
    pointer-events: none;
}

.tarave-hero-inner {
    padding: 40px 0 40px;
    position: relative;
    z-index: 1;
}

.tarave-hero-text {
    max-width: 690px;
}

.tarave-hero-text h1 {
    margin: 0 0 18px;
    font-size: 56px;
    line-height: 1.03;
    font-weight: 400;
    color: #f3e3cf;
    text-shadow:
        0 2px 18px rgba(0,0,0,.22),
        0 0 24px rgba(223,185,123,.06);
    position: relative;
}

.tarave-hero-text h1::after {
    content: "";
    display: block;
    width: 180px;
    height: 1px;
    margin-top: 20px;
    background: linear-gradient(90deg, rgba(223,185,123,.95) 0%, rgba(223,185,123,.38) 70%, transparent 100%);
    box-shadow: 0 0 16px rgba(223,185,123,.18);
}

.tarave-hero-subtitle {
    margin: 0 0 24px;
    max-width: 520px;
    font-size: 18px;
    line-height: 1.55;
    color: rgba(243,227,207,.88);
}

.tarave-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding: 0 32px;
    border: 1px solid rgba(204, 162, 96, 0.6);
    box-sizing: border-box;
    font-family: inherit;
    font-size: 20px;
    transition: transform .24s ease, background-color .24s ease, border-color .24s ease, box-shadow .24s ease;
    cursor: pointer;
}

.tarave-btn:hover {
    transform: translateY(-2px);
}

.tarave-btn-outline,
.tarave-btn-dark {
    background: rgba(12, 10, 9, 0.64);
    color: #f0dfc3;
}

.tarave-btn-outline:hover,
.tarave-btn-dark:hover {
    background: rgba(18, 16, 14, 0.88);
    border-color: rgba(224,187,132,.95);
    box-shadow: 0 8px 26px rgba(0,0,0,.28);
}

/* премиальная кнопка в hero */
.tarave-hero .tarave-btn {
    position: relative;
    overflow: hidden;
    box-shadow:
        0 10px 28px rgba(0,0,0,.22),
        inset 0 1px 0 rgba(255,255,255,.04);
}

.tarave-hero .tarave-btn::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: -130%;
    width: 55%;
    transform: skewX(-24deg);
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.16), transparent);
    transition: left .7s ease;
}

.tarave-hero .tarave-btn:hover::before {
    left: 140%;
}

.tarave-hero .tarave-btn:hover {
    transform: translateY(-2px);
    box-shadow:
        0 14px 34px rgba(0,0,0,.28),
        0 0 22px rgba(223,185,123,.14);
}

.tarave-btn-gold {
    background: linear-gradient(180deg, #ddb56a 0%, #bb8435 100%);
    color: #1a120d;
    font-weight: 700;
    border-color: rgba(235,196,130,.95);
}

.tarave-btn-gold:hover {
    box-shadow: 0 12px 28px rgba(201,164,92,.28);
}

.tarave-catalog-section {
    padding: 22px 0 34px;
    overflow: visible;
}

.tarave-catalog-grid {
    display: flex;
    justify-content: center;
    border-top: 1px solid rgba(200, 160, 94, 0.20);
    padding-top: 12px;
    overflow: visible;
}

.tarave-catalog-grid > * {
    min-width: 0;
}

.tarave-about {
    display: none !important;
}

.tarave-about h2 {
    margin: 0 0 26px;
    font-size: 58px;
    line-height: 1;
    font-weight: 400;
    color: #e0bb84;
}

.tarave-about p {
    margin: 0 0 14px;
    font-size: 18px;
    line-height: 1.55;
    color: #f0dfc3;
}

.tarave-products {
    padding-top: 52px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 0;
    padding-right: 0;
}

.tarave-section-title {
    margin: 0 0 16px;
    text-align: center;
    font-weight: 400;
    font-size: 30px;
    color: #d9b57a;
    position: relative;
}

.tarave-section-title span {
    display: inline-block;
    padding: 0 18px;
    position: relative;
}

.tarave-section-title::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 1px;
    background: rgba(200, 160, 94, 0.20);
    transform: translateY(-50%);
}

.tarave-section-title span::before,
.tarave-section-title span::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 120px;
    height: 1px;
    background: rgba(200, 160, 94, 0.35);
    transform: translateY(-50%);
}

.tarave-section-title span::before { right: 100%; margin-right: 18px; }
.tarave-section-title span::after { left: 100%; margin-left: 18px; }

.tarave-products-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(220px, 1fr));
    gap: 28px;
    justify-content: center;
    align-items: stretch;
}

.tarave-product-card {
    background: rgba(20, 16, 14, 0.36);
    border: 1px solid rgba(200, 160, 94, 0.30);
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.03);
    transition: transform .35s cubic-bezier(.2,.8,.2,1), border-color .35s ease, box-shadow .35s ease, background-color .35s ease;
}

.tarave-product-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top center, rgba(224,187,132,.10), transparent 48%);
    opacity: 0;
    transition: opacity .35s ease;
    pointer-events: none;
}

.tarave-product-card:hover {
    transform: translateY(-8px) scale(1.012);
    border-color: rgba(224,187,132,.78);
    background: rgba(20,16,14,.52);
    box-shadow:
        0 18px 42px rgba(0,0,0,.45),
        0 0 0 1px rgba(224,187,132,.12),
        0 0 22px rgba(224,187,132,.12);
}

.tarave-product-card:hover::before {
    opacity: 1;
}

.tarave-product-image-link {
    display: block;
    overflow: hidden;
}

.tarave-product-image {
    width: 100%;
    height: 330px;
    object-fit: cover;
    display: block;
    filter: saturate(0.96) contrast(1.02);
    transition: transform .55s ease, filter .35s ease;
}

.tarave-product-card:hover .tarave-product-image {
    transform: scale(1.045);
    filter: saturate(1.05) contrast(1.05);
}

.tarave-product-content {
    padding: 12px 16px 16px;
    text-align: center;
}

.tarave-product-title {
    margin: 0 0 6px;
    font-size: 26px;
    line-height: 1.06;
    font-weight: 400;
    color: #ead8bb;
}

.tarave-product-price {
    font-size: 18px;
    color: #f0dfc3;
    margin-bottom: 14px;
}

.tarave-product-card .tarave-btn {
    width: 100%;
    min-height: 48px;
    font-size: 17px;
}

.tarave-sidebar-cart {
    display: none !important;
}

.tarave-cart-box {
    background: rgba(17, 14, 12, 0.72);
    border: 1px solid rgba(200, 160, 94, 0.28);
    box-shadow: 0 12px 32px rgba(0,0,0,.28);
    padding: 16px;
    position: relative;
    border-radius: 2px;
    width: 100%;
    box-sizing: border-box;
}

.tarave-cart-head {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ead7bb;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(200,160,94,.18);
}

.tarave-cart-head-icon {
    font-size: 16px;
    color: #d8b172;
}

.tarave-cart-head-title {
    flex: 1;
    text-align: center;
    font-size: 24px;
}

.tarave-cart-close {
    border: 0;
    background: transparent;
    color: #d8b172;
    font-size: 24px;
    cursor: pointer;
}

.tarave-cart-items {
    padding-top: 10px;
}

.tarave-cart-item {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.tarave-cart-item-media img {
    width: 44px;
    height: 30px;
    object-fit: cover;
    display: block;
    border: 1px solid rgba(200,160,94,.18);
}

.tarave-cart-item-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
}

.tarave-cart-item-name {
    font-size: 15px;
    line-height: 1.15;
    color: #ead8bb;
}

.tarave-cart-item-price {
    font-size: 15px;
    white-space: nowrap;
    color: #ead8bb;
}

.tarave-cart-item-controls {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}

.tarave-qty-btn,
.tarave-remove-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    padding: 0;
    border: 1px solid rgba(200,160,94,.28);
    background: rgba(12,10,9,.55);
    color: #f0dfc3;
    cursor: pointer;
    font-size: 15px;
    line-height: 1;
    font-family: inherit;
    transition: border-color .25s ease, background-color .25s ease;
}

.tarave-remove-btn {
    font-size: 17px;
}

.tarave-qty-btn:hover,
.tarave-remove-btn:hover {
    border-color: rgba(224,187,132,.72);
    background: rgba(30,24,20,.92);
}

.tarave-cart-empty {
    font-size: 16px;
    text-align: center;
    padding: 18px 12px;
    border: 1px dashed rgba(200,160,94,.20);
    color: #ead8bb;
}

.tarave-cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 20px;
    margin: 16px 0;
    color: #f0dfc3;
}

.tarave-cart-total strong {
    font-size: 22px;
}

.tarave-cart-actions {
    display: grid;
    gap: 10px;
}

.tarave-cart-actions .tarave-btn {
    width: 100%;
    min-height: 48px;
    font-size: 16px;
}

.tarave-page {
    min-height: 60vh;
    padding: 50px 0;
}

.tarave-page-content {
    max-width: 900px;
}

.tarave-page-title {
    font-size: 56px;
    color: #d8b172;
    margin: 0 0 24px;
}

.tarave-footer {
    border-top: 1px solid rgba(200,160,94,.20);
    padding: 26px 0 36px;
    text-align: center;
    font-size: 20px;
    color: #ead8bb;
}

.tarave-b2b-section {
    padding: 72px 0 88px;
    border-top: 1px solid rgba(200,160,94,.20);
}

.tarave-b2b-inner {
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
}

.tarave-b2b-title {
    margin: 0 0 26px;
    font-size: 44px;
    line-height: 1.15;
    font-weight: 400;
    color: #e0bb84;
}

.tarave-b2b-text {
    margin: 0 auto 18px;
    max-width: 860px;
    font-size: 21px;
    line-height: 1.7;
    color: rgba(239,224,203,.90);
}

.tarave-cart-page {
    min-height: calc(100vh - 160px);
}

.tarave-cart-page-section {
    padding: 56px 0 80px;
}

.tarave-cart-page-box {
    background: rgba(17, 14, 12, 0.58);
    border: 1px solid rgba(200, 160, 94, 0.28);
    padding: 28px;
    box-sizing: border-box;
    box-shadow: 0 12px 32px rgba(0,0,0,.20);
}

.woocommerce {
    color: #efe0cb;
}

.woocommerce table.shop_table {
    background: rgba(12, 10, 9, 0.42);
    border-color: rgba(200, 160, 94, 0.24);
    color: #efe0cb;
    border-collapse: collapse;
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
    border-color: rgba(200, 160, 94, 0.18);
    color: #efe0cb;
}

.woocommerce table.shop_table thead th {
    color: #e0bb84;
    font-weight: 400;
}

.woocommerce a {
    color: #e0bb84;
}

.woocommerce a:hover {
    color: #f4ddba;
}

.woocommerce .product-name a {
    color: #efe0cb;
}

.woocommerce .product-name a:hover {
    color: #f4ddba;
}

.woocommerce .quantity .qty {
    background: rgba(12,10,9,.55);
    border: 1px solid rgba(200,160,94,.28);
    color: #efe0cb;
    min-height: 42px;
}

.woocommerce input.input-text,
.woocommerce textarea,
.woocommerce select {
    background: rgba(12,10,9,.55);
    border: 1px solid rgba(200,160,94,.28);
    color: #efe0cb;
}

.woocommerce input.input-text:focus,
.woocommerce textarea:focus,
.woocommerce select:focus,
.woocommerce .quantity .qty:focus {
    outline: none;
    border-color: rgba(224,187,132,.78);
    box-shadow: 0 0 0 1px rgba(224,187,132,.18);
}

.woocommerce .button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce a.button,
.woocommerce .actions .button,
.woocommerce .checkout-button.button.alt,
.woocommerce button[name="update_cart"] {
    background: rgba(12, 10, 9, 0.72) !important;
    color: #f0dfc3 !important;
    border: 1px solid rgba(204, 162, 96, 0.6) !important;
    border-radius: 0 !important;
    padding: 12px 22px !important;
    font-family: inherit;
    font-weight: 400 !important;
    transition: transform .24s ease, background-color .24s ease, border-color .24s ease, box-shadow .24s ease;
    box-shadow: none !important;
}

.woocommerce .button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce a.button:hover,
.woocommerce .actions .button:hover,
.woocommerce .checkout-button.button.alt:hover,
.woocommerce button[name="update_cart"]:hover {
    background: rgba(18, 16, 14, 0.88) !important;
    border-color: rgba(224,187,132,.95) !important;
    color: #f4ddba !important;
    transform: translateY(-1px);
}

.woocommerce .checkout-button.button.alt {
    background: linear-gradient(180deg, #ddb56a 0%, #bb8435 100%) !important;
    color: #1a120d !important;
    border-color: rgba(235,196,130,.95) !important;
    font-weight: 700 !important;
}

.woocommerce .checkout-button.button.alt:hover {
    box-shadow: 0 12px 28px rgba(201,164,92,.28) !important;
}

.woocommerce-cart table.cart img {
    width: 72px;
    height: auto;
    border: 1px solid rgba(200,160,94,.18);
}

.woocommerce .cart_totals,
.woocommerce .cart-collaterals .cart_totals {
    background: rgba(12, 10, 9, 0.42);
    border: 1px solid rgba(200, 160, 94, 0.24);
    padding: 20px;
}

.woocommerce .cart_totals h2 {
    color: #e0bb84;
    font-weight: 400;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
    background: rgba(17, 14, 12, 0.78);
    color: #efe0cb;
    border-top-color: rgba(224,187,132,.75);
    transition: opacity .35s ease, transform .35s ease;
}

.woocommerce-message::before,
.woocommerce-info::before,
.woocommerce-error::before {
    color: #e0bb84;
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
    margin-bottom: 0;
}

.woocommerce button[name="update_cart"],
.woocommerce .actions button[name="update_cart"],
.woocommerce-cart .actions .button[name="update_cart"] {
    display: none !important;
}

.woocommerce-cart table.cart td.product-thumbnail,
.woocommerce table.shop_table td.product-thumbnail {
    width: 84px;
    min-width: 84px;
}

.woocommerce-cart table.cart td.product-thumbnail a,
.woocommerce table.shop_table td.product-thumbnail a {
    display: inline-block;
    width: 54px;
}

.woocommerce-cart table.cart td.product-thumbnail img,
.woocommerce table.shop_table td.product-thumbnail img,
.woocommerce-cart .shop_table .product-thumbnail img,
.woocommerce .shop_table .product-thumbnail img {
    width: 54px !important;
    min-width: 54px !important;
    max-width: 54px !important;
    height: 54px !important;
    object-fit: cover;
    display: block;
    margin: 0;
    border: 1px solid rgba(200,160,94,.18);
    box-sizing: border-box;
}

/* Premium toast */
.tarave-toast {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 9999;
    width: min(380px, calc(100vw - 32px));
    opacity: 0;
    transform: translateY(26px) scale(.96);
    pointer-events: none;
    transition:
        opacity .45s ease,
        transform .65s cubic-bezier(.22,.9,.28,1);
}

.tarave-toast.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.tarave-toast.is-hiding {
    opacity: 0;
    transform: translateY(54px) scale(.98);
}

.tarave-toast-inner {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(24,19,16,.96) 0%, rgba(14,11,10,.96) 100%);
    border: 1px solid rgba(224,187,132,.28);
    box-shadow:
        0 18px 44px rgba(0,0,0,.38),
        0 0 0 1px rgba(224,187,132,.06),
        inset 0 1px 0 rgba(255,255,255,.04);
    backdrop-filter: blur(14px);
}

.tarave-toast-glow {
    position: absolute;
    inset: -30% auto auto -10%;
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, rgba(224,187,132,.18) 0%, rgba(224,187,132,0) 68%);
    pointer-events: none;
}

.tarave-toast-icon-wrap {
    position: relative;
    z-index: 1;
    flex: 0 0 auto;
}

.tarave-toast-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(224,187,132,.42);
    background:
        linear-gradient(180deg, rgba(224,187,132,.16) 0%, rgba(224,187,132,.07) 100%);
    color: #f4ddba;
    font-size: 17px;
    line-height: 1;
    box-shadow:
        0 0 0 1px rgba(224,187,132,.08),
        inset 0 1px 0 rgba(255,255,255,.06);
}

.tarave-toast-content {
    position: relative;
    z-index: 1;
    min-width: 0;
}

.tarave-toast-title {
    font-size: 16px;
    line-height: 1.2;
    color: #f3e3cf;
    margin-bottom: 4px;
    letter-spacing: .01em;
}

.tarave-toast-product {
    font-size: 14px;
    line-height: 1.35;
    color: rgba(239,224,203,.76);
    word-break: break-word;
}

.tarave-single-product-page {
    min-height: calc(100vh - 160px);
}

.tarave-single-product-section {
    padding: 56px 0 80px;
}

.tarave-single-product-top {
    margin-bottom: 24px;
}

.tarave-single-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #e0bb84;
    font-size: 16px;
    transition: color .25s ease, transform .25s ease;
}

.tarave-single-back:hover {
    color: #f4ddba;
    transform: translateX(-2px);
}

.tarave-single-product-layout {
    display: grid;
    grid-template-columns: minmax(0, 560px) minmax(0, 1fr);
    gap: 44px;
    align-items: start;
}

.tarave-single-product-media,
.tarave-single-product-summary,
.tarave-single-product-description-box {
    min-width: 0;
}

.tarave-single-product-image-wrap {
    background: rgba(17, 14, 12, 0.58);
    border: 1px solid rgba(200, 160, 94, 0.28);
    box-shadow: 0 12px 32px rgba(0,0,0,.20);
    overflow: hidden;
}

.tarave-single-product-image {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.tarave-single-product-summary {
    background: rgba(17, 14, 12, 0.58);
    border: 1px solid rgba(200, 160, 94, 0.28);
    box-shadow: 0 12px 32px rgba(0,0,0,.20);
    padding: 32px;
    box-sizing: border-box;
}

.tarave-single-product-title {
    margin: 0 0 14px;
    font-size: 48px;
    line-height: 1.04;
    font-weight: 400;
    color: #f3e3cf;
}

.tarave-single-product-price {
    margin-bottom: 18px;
    font-size: 30px;
    color: #e0bb84;
}

.tarave-single-product-price ins {
    text-decoration: none;
}

.tarave-single-product-price del {
    opacity: .6;
    margin-right: 10px;
}

.tarave-single-product-excerpt {
    margin-bottom: 28px;
    font-size: 18px;
    line-height: 1.7;
    color: rgba(239,224,203,.88);
}

.tarave-single-product-excerpt p:last-child {
    margin-bottom: 0;
}

.tarave-single-product-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 28px;
}

.tarave-single-product-actions .tarave-btn {
    min-width: 220px;
}

.tarave-single-product-stock {
    display: inline-flex;
    align-items: center;
    min-height: 52px;
    padding: 0 18px;
    border: 1px solid rgba(200, 160, 94, 0.30);
    background: rgba(12, 10, 9, 0.50);
    color: #f0dfc3;
    box-sizing: border-box;
}

.tarave-single-product-stock-out {
    border-color: rgba(180, 110, 110, 0.35);
    color: #f0c4c4;
}

.tarave-single-product-meta {
    display: grid;
    gap: 10px;
    padding-top: 22px;
    border-top: 1px solid rgba(200,160,94,.18);
}

.tarave-single-product-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 16px;
    line-height: 1.5;
}

.tarave-single-product-meta-label {
    color: rgba(239,224,203,.64);
}

.tarave-single-product-meta-value {
    color: #efe0cb;
}

.tarave-single-product-description-box {
    margin-top: 34px;
    background: rgba(17, 14, 12, 0.58);
    border: 1px solid rgba(200, 160, 94, 0.28);
    box-shadow: 0 12px 32px rgba(0,0,0,.20);
    padding: 32px;
    box-sizing: border-box;
}

.tarave-single-product-description-title {
    margin: 0 0 18px;
    font-size: 32px;
    line-height: 1.15;
    font-weight: 400;
    color: #e0bb84;
}

.tarave-single-product-description {
    font-size: 18px;
    line-height: 1.75;
    color: rgba(239,224,203,.90);
}

.tarave-single-product-description > *:first-child {
    margin-top: 0;
}

.tarave-single-product-description > *:last-child {
    margin-bottom: 0;
}

@media (max-width: 1200px) {
    .tarave-catalog-grid {
        display: block;
    }

    .tarave-products {
        max-width: 100%;
        padding-left: 0;
        padding-right: 0;
    }

    .tarave-products-grid {
        grid-template-columns: repeat(2, minmax(220px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 1000px) {
    .tarave-single-product-layout {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .tarave-single-product-title {
        font-size: 40px;
    }

    .tarave-single-product-summary,
    .tarave-single-product-description-box {
        padding: 24px;
    }
}

@media (max-width: 900px) {
    .tarave-header-inner {
        min-height: auto;
        padding: 16px 0;
        display: flex;
        flex-wrap: wrap;
    }

    .tarave-logo a {
        font-size: 38px;
    }

    .tarave-nav {
        width: 100%;
        order: 3;
        gap: 18px;
        justify-content: flex-start;
        font-size: 16px;
        flex-wrap: wrap;
    }

    .tarave-hero {
        min-height: 420px;
    }

    .tarave-hero-text h1 {
        font-size: 44px;
    }

    .tarave-hero-text h1::after {
        width: 140px;
        margin-top: 16px;
    }

    .tarave-about h2 {
        font-size: 44px;
    }

    .tarave-products-grid {
        grid-template-columns: repeat(2, minmax(200px, 1fr));
        gap: 18px;
    }

    .tarave-product-image {
        height: 270px;
    }

    .tarave-b2b-section {
        padding: 56px 0 68px;
    }

    .tarave-b2b-title {
        font-size: 34px;
    }

    .tarave-b2b-text {
        font-size: 18px;
        line-height: 1.65;
    }
}

@media (max-width: 640px) {
    .tarave-container {
        width: 100%;
        padding-left: 16px;
        padding-right: 16px;
    }

    .tarave-products-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .tarave-hero {
        min-height: 340px;
    }

    .tarave-hero-inner {
        padding: 28px 0 30px;
    }

    .tarave-hero-text h1 {
        font-size: 38px;
    }

    .tarave-btn {
        width: 100%;
    }

    .tarave-section-title span::before,
    .tarave-section-title span::after {
        display: none;
    }

    .tarave-product-image {
        height: 220px;
    }

    .tarave-b2b-title {
        font-size: 28px;
    }

    .tarave-b2b-text {
        font-size: 17px;
    }

    .tarave-cart-page-box {
        padding: 18px;
    }

    .woocommerce-cart table.cart img {
        width: 54px;
    }

    .woocommerce .cart_totals,
    .woocommerce .cart-collaterals .cart_totals {
        padding: 16px;
    }

    .tarave-toast {
        right: 16px;
        left: 16px;
        bottom: 16px;
        width: auto;
    }

    .tarave-toast-inner {
        padding: 14px 15px;
    }

    .tarave-toast-title {
        font-size: 15px;
    }

    .tarave-toast-product {
        font-size: 13px;
    }

    .tarave-toast-icon {
        width: 30px;
        height: 30px;
        font-size: 15px;
    }

    .tarave-single-product-section {
        padding: 36px 0 56px;
    }

    .tarave-single-product-title {
        font-size: 32px;
    }

    .tarave-single-product-price {
        font-size: 24px;
    }

    .tarave-single-product-excerpt,
    .tarave-single-product-description {
        font-size: 16px;
    }

    .tarave-single-product-actions {
        flex-direction: column;
    }

    .tarave-single-product-actions .tarave-btn,
    .tarave-single-product-stock {
        width: 100%;
        min-width: 0;
    }

    .tarave-single-product-summary,
    .tarave-single-product-description-box {
        padding: 18px;
    }
}
.tarave-checkout-page {
    min-height: calc(100vh - 160px);
}

.tarave-checkout-section {
    padding: 56px 0 80px;
}

.tarave-checkout-top {
    margin-bottom: 24px;
}

.tarave-checkout-wrap {
    max-width: 1200px;
    margin: 0 auto;
}

.tarave-checkout-box {
    background: rgba(17, 14, 12, 0.58);
    border: 1px solid rgba(200, 160, 94, 0.28);
    padding: 28px;
    box-sizing: border-box;
    box-shadow: 0 12px 32px rgba(0,0,0,.20);
}

.woocommerce-checkout .col2-set,
.woocommerce-checkout #customer_details {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
    gap: 28px;
    width: 100%;
}

.woocommerce-checkout .col-1,
.woocommerce-checkout .col-2 {
    float: none !important;
    width: auto !important;
    max-width: none !important;
}

.woocommerce-checkout #order_review_heading,
.woocommerce-checkout .woocommerce-billing-fields h3,
.woocommerce-checkout .woocommerce-additional-fields h3 {
    color: #e0bb84;
    font-size: 28px;
    font-weight: 400;
    margin: 0 0 18px;
}

.woocommerce-checkout .form-row label {
    color: rgba(239,224,203,.82);
    font-size: 15px;
    margin-bottom: 6px;
}

.woocommerce-checkout .woocommerce-input-wrapper {
    display: block;
    width: 100%;
}

.woocommerce-checkout input.input-text,
.woocommerce-checkout textarea,
.woocommerce-checkout select,
.select2-container--default .select2-selection--single,
.select2-container--default .select2-selection--multiple {
    width: 100% !important;
    min-height: 48px;
    background: rgba(12,10,9,.55) !important;
    border: 1px solid rgba(200,160,94,.28) !important;
    color: #efe0cb !important;
    border-radius: 0 !important;
    box-sizing: border-box;
}

.woocommerce-checkout textarea {
    min-height: 120px;
    padding: 12px 14px !important;
}

.woocommerce-checkout input.input-text,
.woocommerce-checkout select {
    padding: 0 14px !important;
}

.woocommerce-checkout input.input-text:focus,
.woocommerce-checkout textarea:focus,
.woocommerce-checkout select:focus,
.select2-container--default.select2-container--focus .select2-selection--single,
.select2-container--default.select2-container--focus .select2-selection--multiple {
    outline: none;
    border-color: rgba(224,187,132,.78) !important;
    box-shadow: 0 0 0 1px rgba(224,187,132,.18);
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #efe0cb !important;
    line-height: 46px !important;
    padding-left: 14px !important;
    padding-right: 34px !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 46px !important;
    right: 8px !important;
}

.select2-dropdown {
    background: rgba(17, 14, 12, 0.98) !important;
    border: 1px solid rgba(200,160,94,.28) !important;
    color: #efe0cb !important;
}

.select2-results__option {
    color: #efe0cb !important;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background: rgba(224,187,132,.14) !important;
    color: #f4ddba !important;
}

.woocommerce-checkout-review-order,
#order_review {
    background: rgba(12, 10, 9, 0.42);
    border: 1px solid rgba(200, 160, 94, 0.24);
    padding: 20px;
    box-sizing: border-box;
}

.woocommerce-checkout-review-order-table {
    background: transparent !important;
}

.woocommerce-checkout-review-order-table th,
.woocommerce-checkout-review-order-table td {
    color: #efe0cb !important;
    border-color: rgba(200,160,94,.18) !important;
}

.woocommerce-checkout-review-order-table thead th,
.woocommerce-checkout-review-order-table tfoot th {
    color: #e0bb84 !important;
    font-weight: 400 !important;
}

.woocommerce-checkout-payment {
    background: rgba(12, 10, 9, 0.42) !important;
    border: 1px solid rgba(200, 160, 94, 0.24) !important;
    margin-top: 20px !important;
}

.woocommerce-checkout-payment ul.payment_methods {
    border-bottom: 1px solid rgba(200,160,94,.18) !important;
}

.woocommerce-checkout-payment div.payment_box {
    background: rgba(17, 14, 12, 0.72) !important;
    color: #efe0cb !important;
}

.woocommerce-checkout-payment div.payment_box::before {
    border-bottom-color: rgba(17, 14, 12, 0.72) !important;
}

.woocommerce-checkout #place_order {
    width: 100%;
    min-height: 54px;
    background: linear-gradient(180deg, #ddb56a 0%, #bb8435 100%) !important;
    color: #1a120d !important;
    border: 1px solid rgba(235,196,130,.95) !important;
    font-weight: 700 !important;
    border-radius: 0 !important;
    transition: transform .24s ease, box-shadow .24s ease;
}

.woocommerce-checkout #place_order:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 28px rgba(201,164,92,.28) !important;
}

.woocommerce-checkout .woocommerce-form-coupon-toggle,
.woocommerce-checkout .woocommerce-form-login-toggle {
    margin-bottom: 18px;
}

.woocommerce-checkout .woocommerce-info,
.woocommerce-checkout .woocommerce-error,
.woocommerce-checkout .woocommerce-message {
    background: rgba(17, 14, 12, 0.78);
    color: #efe0cb;
    border-top-color: rgba(224,187,132,.75);
}

.woocommerce-checkout .woocommerce-info a,
.woocommerce-checkout .woocommerce-error a,
.woocommerce-checkout .woocommerce-message a {
    color: #f4ddba;
}

@media (max-width: 980px) {
    .woocommerce-checkout .col2-set,
    .woocommerce-checkout #customer_details {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .tarave-checkout-section {
        padding: 36px 0 56px;
    }

    .tarave-checkout-box,
    .woocommerce-checkout-review-order,
    #order_review {
        padding: 18px;
    }

    .woocommerce-checkout #order_review_heading,
    .woocommerce-checkout .woocommerce-billing-fields h3,
    .woocommerce-checkout .woocommerce-additional-fields h3 {
        font-size: 24px;
    }
}