:root {
    --wh-black: #050505;
    --wh-matte-black: #0b0b0b;
    --wh-graphite: #141414;
    --wh-soft-graphite: #1f1f1f;
    --wh-border: #2a2a2a;
    --wh-white: #f5f2ea;
    --wh-muted-white: #a8a29a;
    --wh-champagne: #c8a96a;
    --wh-burgundy: #7a1020;
    --wh-radius: 8px;
    --wh-shadow: 0 24px 80px rgba(0, 0, 0, .45);
}

* {
    box-sizing: border-box;
}

html {
    background: var(--wh-black);
    color: var(--wh-white);
    scroll-behavior: smooth;
}

html.wh-age-locked,
html.wh-age-locked body {
    overflow: hidden;
}

body {
    margin: 0;
    background: radial-gradient(circle at 78% 8%, rgba(122, 16, 32, .22), transparent 28rem), radial-gradient(circle at 50% -20%, rgba(200, 169, 106, .08), transparent 34rem), var(--wh-black);
    color: var(--wh-white);
    font-family: Inter, "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
}

img {
    max-width: 100%;
    height: auto;
}

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

button,
input,
textarea,
select {
    font: inherit;
}

input,
textarea,
select {
    width: 100%;
    min-height: 48px;
    border: 1px solid var(--wh-border);
    border-radius: var(--wh-radius);
    background: #0c0c0c;
    color: var(--wh-white);
    padding: 12px 14px;
}

input[type="checkbox"],
input[type="radio"] {
    width: auto;
    min-height: 0;
    padding: 0;
    accent-color: var(--wh-champagne);
}

.woocommerce-form__label-for-checkbox,
.woocommerce-form-login__rememberme,
.form-row label.checkbox {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

input:focus,
textarea:focus,
select:focus {
    border-color: rgba(200, 169, 106, .72);
    outline: none;
}

.wh-container {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.wh-main {
    min-height: 70vh;
}

.wh-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    background: rgba(3, 3, 3, .84);
    backdrop-filter: blur(18px);
}

.wh-header__inner {
    display: flex;
    align-items: center;
    min-height: 74px;
    gap: 24px;
}

.wh-brand-menu {
    position: relative;
}

.wh-brand-menu::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: min(320px, 100vw - 32px);
    height: 16px;
}

.wh-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: 1px solid transparent;
    border-radius: 999px;
    background: transparent;
    color: var(--wh-white);
    font-weight: 600;
    letter-spacing: .02em;
    padding: 6px 12px 6px 6px;
    cursor: pointer;
    transition: border-color .18s ease, background .18s ease, color .18s ease;
}

.wh-brand img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
}

.wh-brand-toggle:hover,
.wh-brand-toggle:focus,
.wh-brand-menu.is-open .wh-brand-toggle {
    border-color: rgba(200, 169, 106, .34);
    background: rgba(20, 20, 20, .78);
    color: var(--wh-champagne);
    outline: none;
}

.wh-nav {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    z-index: 70;
    display: grid;
    gap: 4px;
    min-width: 280px;
    padding: 10px;
    border: 1px solid rgba(200, 169, 106, .26);
    border-radius: 12px;
    background: rgba(8, 8, 8, .98);
    box-shadow: var(--wh-shadow);
    color: var(--wh-muted-white);
    font-size: 14px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity .18s ease .12s, transform .18s ease .12s, visibility 0s linear .3s;
    visibility: hidden;
}

.wh-brand-menu:hover .wh-nav,
.wh-brand-menu:focus-within .wh-nav,
.wh-brand-menu.is-open .wh-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    transition-delay: 0s;
    visibility: visible;
}

.wh-nav a {
    display: flex;
    align-items: center;
    min-height: 42px;
    border-radius: 8px;
    padding: 10px 12px;
    transition: background .18s ease, color .18s ease;
}

.wh-nav a:hover,
.wh-nav a:focus,
.wh-account-link:hover,
.wh-cart-link:hover {
    color: var(--wh-champagne);
}

.wh-nav a:hover,
.wh-nav a:focus {
    background: rgba(242, 242, 242, .06);
    outline: none;
}

.wh-header__actions {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-left: auto;
}

.wh-cart-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--wh-white);
    font-size: 14px;
}

.wh-cart-link strong {
    font-weight: 500;
}

.wh-cart-link em {
    display: grid;
    min-width: 24px;
    height: 24px;
    place-items: center;
    border: 1px solid var(--wh-border);
    border-radius: 999px;
    color: var(--wh-champagne);
    font-style: normal;
    font-size: 12px;
}

.wh-account-link {
    color: var(--wh-muted-white);
    font-size: 14px;
}

.wh-hero {
    padding: 92px 0 34px;
}

.wh-hero__inner,
.wh-two-col {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, .82fr);
    align-items: center;
    gap: 56px;
}

.wh-hero h1 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(42px, 7vw, 86px);
    line-height: .96;
    letter-spacing: -.04em;
}

.wh-hero p,
.wh-section p,
.wh-page p {
    color: var(--wh-muted-white);
}

.wh-hero__inner > div > p:not(.wh-eyebrow) {
    max-width: 680px;
    margin: 24px 0 0;
    font-size: 19px;
}

.wh-hero__actions,
.wh-age-gate__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.wh-button,
.button,
.single_add_to_cart_button,
.checkout-button,
#place_order {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border: 1px solid var(--wh-border);
    border-radius: var(--wh-radius);
    background: var(--wh-white);
    color: var(--wh-black);
    padding: 13px 18px;
    cursor: pointer;
    font-weight: 600;
    line-height: 1.2;
    transition: border-color .2s ease, background .2s ease, color .2s ease, transform .2s ease;
}

.wh-button:hover,
.button:hover,
.single_add_to_cart_button:hover,
.checkout-button:hover,
#place_order:hover {
    border-color: var(--wh-champagne);
    transform: translateY(-1px);
}

.wh-button--ghost,
.wh-buy-now {
    background: transparent;
    color: var(--wh-white);
}

.wh-button--primary {
    background: var(--wh-white);
    color: var(--wh-black);
}

.wh-eyebrow {
    margin: 0 0 14px;
    color: var(--wh-champagne) !important;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.wh-hero__visual {
    display: grid;
    min-height: 420px;
    place-items: center;
    border: 1px solid var(--wh-border);
    border-radius: 8px;
    background: linear-gradient(145deg, #050505, #111);
    box-shadow: var(--wh-shadow);
}

.wh-hero__visual img {
    width: min(72%, 420px);
    opacity: .92;
}

.wh-trust-points,
.wh-cart-trust {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 34px;
}

.wh-trust-points span,
.wh-trust-item,
.wh-cart-trust span,
.wh-feature-list span,
.wh-privacy-grid span {
    border: 1px solid var(--wh-border);
    border-radius: var(--wh-radius);
    background: rgba(20, 20, 20, .72);
    color: var(--wh-muted-white);
    padding: 16px;
}

.wh-trust-item {
    position: relative;
    cursor: help;
    outline: none;
}

.wh-trust-item--visual {
    display: flex;
    align-items: flex-start;
    min-height: 132px;
    background-color: rgba(20, 20, 20, .72);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: visible;
    text-shadow: 0 2px 22px rgba(0, 0, 0, .78);
}

.wh-trust-item--visual::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    border-radius: inherit;
    background: linear-gradient(90deg, rgba(5, 5, 5, .88), rgba(5, 5, 5, .52) 58%, rgba(5, 5, 5, .78)), linear-gradient(180deg, rgba(5, 5, 5, .2), rgba(5, 5, 5, .78));
    pointer-events: none;
}

.wh-trust-item--visual::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    border-radius: inherit;
    background: radial-gradient(circle at 76% 18%, rgba(200, 169, 106, .16), transparent 34%);
    pointer-events: none;
}

.wh-trust-item--package {
    background-image: url("../img/categories/category-dlya-neyi.png");
}

.wh-trust-item--dispatch {
    background-image: url("../img/categories/category-dlya-nogo.png");
}

.wh-trust-item--payment {
    background-image: url("../img/categories/category-premium.png");
}

.wh-trust-item--delivery {
    background-image: url("../img/categories/category-pershyy-dosvid.png");
}

.wh-trust-item--support {
    background-image: url("../img/categories/category-doglyad-i-aksesuary.png");
}

.wh-trust-item > span {
    position: relative;
    z-index: 1;
    display: block;
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
}

.wh-trust-item--visual > span {
    max-width: 72%;
    color: var(--wh-white);
    line-height: 1.35;
}

.wh-trust-item:hover,
.wh-trust-item:focus,
.wh-trust-item:focus-within {
    border-color: rgba(200, 169, 106, .62);
    color: var(--wh-white);
}

.wh-trust-tooltip {
    position: absolute;
    left: 12px;
    right: 12px;
    top: calc(100% + 12px);
    z-index: 20;
    display: grid;
    gap: 8px;
    min-width: 260px;
    padding: 18px;
    border: 1px solid rgba(200, 169, 106, .34);
    border-radius: var(--wh-radius);
    background: rgba(8, 8, 8, .98);
    box-shadow: var(--wh-shadow);
    color: var(--wh-white);
    opacity: 0;
    pointer-events: none;
    transform: none;
    transition: opacity .18s ease;
}

.wh-trust-tooltip::before {
    content: "";
    position: absolute;
    top: -6px;
    left: 22px;
    width: 10px;
    height: 10px;
    border-left: 1px solid rgba(200, 169, 106, .34);
    border-top: 1px solid rgba(200, 169, 106, .34);
    background: rgba(8, 8, 8, .98);
    transform: rotate(45deg);
}

.wh-trust-tooltip strong {
    color: var(--wh-champagne);
    font-size: 13px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.wh-trust-tooltip p {
    margin: 0;
    color: var(--wh-white);
    font-size: 14px;
    line-height: 1.45;
}

.wh-trust-tooltip small {
    color: var(--wh-muted-white);
    font-size: 12px;
    line-height: 1.45;
}

.wh-trust-item:hover .wh-trust-tooltip,
.wh-trust-item:focus .wh-trust-tooltip,
.wh-trust-item:focus-within .wh-trust-tooltip {
    opacity: 1;
    pointer-events: auto;
    transform: none;
}

.wh-trust-item:nth-last-child(-n+2) .wh-trust-tooltip {
    left: auto;
    right: 12px;
}

.wh-section,
.wh-page,
.wh-shop-shell,
.wh-product-shell {
    padding: 92px 0;
}

.wh-section h2,
.wh-shop-hero h1,
.wh-content h1 {
    margin: 0;
    font-size: clamp(32px, 4vw, 54px);
    line-height: 1.05;
    letter-spacing: -.03em;
}

.wh-section h3,
.wh-info-panel h2 {
    margin: 0 0 10px;
    font-size: 20px;
}

.wh-feature-list {
    display: grid;
    gap: 12px;
}

.wh-privacy-hero {
    background: linear-gradient(135deg, #080808, #141414);
    border-top: 1px solid var(--wh-border);
    border-bottom: 1px solid var(--wh-border);
}

.wh-privacy-hero .wh-container > p:not(.wh-eyebrow) {
    max-width: 780px;
}

.wh-privacy-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 28px;
}

.wh-steps,
.wh-category-grid,
.wh-product-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 28px;
}

.wh-steps article,
.wh-category-card,
.wh-info-panel,
.wh-support-card,
.wh-faq details {
    border: 1px solid var(--wh-border);
    border-radius: var(--wh-radius);
    background: rgba(20, 20, 20, .72);
    padding: 22px;
}

.wh-steps article span {
    display: block;
    margin-bottom: 28px;
    color: var(--wh-champagne);
    font-size: 13px;
    letter-spacing: .16em;
}

.wh-category-grid {
    grid-template-columns: repeat(3, 1fr);
}

.wh-category-card {
    position: relative;
    overflow: hidden;
}

.wh-category-card--visual {
    display: flex;
    align-items: end;
    min-height: 300px;
    background-position: center;
    background-size: cover;
    isolation: isolate;
}

.wh-category-card--visual::before,
.wh-category-card--visual::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
}

.wh-category-card--visual::before {
    background: linear-gradient(180deg, rgba(5, 5, 5, .28), rgba(5, 5, 5, .86) 72%), linear-gradient(90deg, rgba(5, 5, 5, .74), rgba(5, 5, 5, .18));
}

.wh-category-card--visual::after {
    border: 1px solid rgba(200, 169, 106, .12);
    background: radial-gradient(circle at 78% 20%, rgba(200, 169, 106, .14), transparent 32%), rgba(5, 5, 5, .08);
}

.wh-category-card__content {
    display: grid;
    gap: 16px;
    width: 100%;
}

.wh-category-card--visual h3,
.wh-category-card--visual p,
.wh-category-card--visual a {
    text-shadow: 0 2px 22px rgba(0, 0, 0, .72);
}

.wh-category-card--visual h3 {
    color: var(--wh-white);
}

.wh-category-card--visual:hover {
    background-position: center 46%;
}

.wh-category-card a,
.wh-section-head a {
    color: var(--wh-champagne);
    font-weight: 600;
}

.wh-section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 28px;
}

.wh-support-block {
    border-top: 1px solid var(--wh-border);
    border-bottom: 1px solid var(--wh-border);
    background: #060606;
}

.wh-faq-list {
    display: grid;
    gap: 10px;
    margin-top: 28px;
}

.wh-faq summary {
    cursor: pointer;
    font-weight: 600;
}

.wh-final-cta {
    text-align: center;
}

.wh-final-cta p {
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

.wh-footer {
    border-top: 1px solid var(--wh-border);
    background: #050505;
    color: var(--wh-muted-white);
    padding: 48px 0 24px;
}

.wh-footer__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 28px;
}

.wh-footer h2 {
    margin: 0 0 10px;
    color: var(--wh-white);
    font-size: 15px;
}

.wh-footer a {
    display: block;
    margin: 8px 0;
}

.wh-footer__logo {
    width: 180px;
    margin-bottom: 14px;
}

.wh-footer__bottom {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-top: 34px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, .07);
    font-size: 13px;
}

.wh-age-gate {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    background: rgba(3, 3, 3, .94);
    padding: 24px;
}

.wh-age-gate[hidden] {
    display: none;
}

.wh-age-gate__panel {
    width: min(520px, 100%);
    border: 1px solid var(--wh-border);
    border-radius: 8px;
    background: #080808;
    padding: 34px;
    box-shadow: var(--wh-shadow);
    text-align: center;
}

.wh-age-gate__panel img {
    width: 220px;
    margin-bottom: 24px;
}

.wh-age-gate__panel h2 {
    margin: 0;
    font-size: 26px;
    line-height: 1.15;
}

.wh-age-gate__actions {
    justify-content: center;
}

.wh-shop-hero {
    padding: 70px 0 30px;
}

.wh-shop-hero p {
    max-width: 720px;
    color: var(--wh-muted-white);
}

.wh-shop-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.woocommerce ul.products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.woocommerce ul.products li.product {
    float: none;
    width: auto;
    margin: 0;
    border: 1px solid var(--wh-border);
    border-radius: var(--wh-radius);
    background: rgba(20, 20, 20, .72);
    padding: 14px;
}

.woocommerce ul.products li.product img {
    width: 100%;
    aspect-ratio: 1 / 1.12;
    object-fit: cover;
    border-radius: 6px;
    background: #0a0a0a;
}

.woocommerce-loop-product__title {
    margin: 14px 0 6px;
    color: var(--wh-white);
    font-size: 17px;
    line-height: 1.25;
}

.wh-hero__lead {
    color: var(--wh-white);
    font-size: clamp(24px, 3vw, 42px);
    line-height: 1.1;
    letter-spacing: -.02em;
}

.wh-product-card__excerpt {
    min-height: 46px;
    margin: 0;
    color: var(--wh-muted-white);
    font-size: 14px;
}

.wh-product-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 12px;
}

.wh-product-card__meta span {
    border: 1px solid rgba(242, 242, 242, .1);
    border-radius: 999px;
    color: var(--wh-muted-white);
    padding: 4px 8px;
    font-size: 11px;
}

.wh-product-card__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.wh-product-card__actions .button {
    min-height: 42px;
    padding: 10px 12px;
    font-size: 14px;
}

.star-rating,
.woocommerce-review-link,
.woocommerce-product-rating,
#reviews,
.woocommerce-tabs #tab-reviews {
    display: none !important;
}

.woocommerce .price {
    display: block;
    margin: 10px 0 14px;
    color: var(--wh-champagne);
    font-weight: 600;
}

.woocommerce .onsale {
    display: none;
}

.woocommerce-product-gallery,
.summary.entry-summary {
    margin-bottom: 34px;
}

.product.type-product {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, .8fr);
    gap: 48px;
}

.product_title.entry-title {
    margin: 0 0 14px;
    font-size: clamp(34px, 5vw, 62px);
    line-height: 1.04;
}

.woocommerce-product-details__short-description,
.woocommerce-product-details__short-description p {
    color: var(--wh-muted-white);
}

.cart,
.variations_form {
    display: grid;
    gap: 14px;
}

.quantity input {
    max-width: 96px;
}

.wh-buy-now {
    width: 100%;
    margin-top: 12px;
}

.wh-product-info-grid {
    grid-template-columns: repeat(3, 1fr);
    margin: 24px 0 48px;
}

.shop_table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid var(--wh-border);
    border-radius: var(--wh-radius);
    overflow: hidden;
}

.shop_table th,
.shop_table td {
    border-bottom: 1px solid var(--wh-border);
    padding: 14px;
    text-align: left;
}

.shop_table th {
    color: var(--wh-muted-white);
    font-weight: 500;
}

.product-remove a {
    color: var(--wh-muted-white);
    font-size: 24px;
}

.actions {
    text-align: right;
}

.coupon {
    display: flex;
    gap: 10px;
    max-width: 420px;
}

.cart-collaterals {
    max-width: 520px;
    margin: 28px 0 0 auto;
}

.wh-checkout-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
    gap: 28px;
}

.wh-order-panel,
.woocommerce-billing-fields,
.woocommerce-shipping-fields,
.woocommerce-additional-fields {
    border: 1px solid var(--wh-border);
    border-radius: var(--wh-radius);
    background: rgba(20, 20, 20, .72);
    padding: 22px;
}

.form-row {
    margin: 0 0 14px;
}

.form-row label {
    display: block;
    margin-bottom: 6px;
    color: var(--wh-muted-white);
    font-size: 14px;
}

.wh-checkout-note,
.wh-checkout-privacy {
    border: 1px solid rgba(200, 169, 106, .34);
    border-radius: var(--wh-radius);
    background: rgba(200, 169, 106, .08);
    color: var(--wh-white);
    padding: 14px;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
    border: 1px solid var(--wh-border);
    border-radius: var(--wh-radius);
    background: var(--wh-graphite);
    color: var(--wh-white);
    padding: 14px 16px;
    list-style: none;
}

.woocommerce-error {
    border-color: rgba(200, 169, 106, .55);
}

.wh-content {
    max-width: 820px;
}

.wh-content a {
    color: var(--wh-champagne);
}

@media (max-width: 980px) {
    .wh-nav {
        min-width: min(280px, calc(100vw - 32px));
    }

    .wh-nav a {
        padding: 12px;
    }

    .wh-header__actions {
        display: flex;
        gap: 8px;
    }

    .wh-hero__inner,
    .wh-two-col,
    .product.type-product,
    .wh-checkout-grid {
        grid-template-columns: 1fr;
    }

    .wh-hero__visual {
        min-height: 280px;
    }

    .wh-trust-points,
    .wh-cart-trust,
    .wh-privacy-grid,
    .wh-steps,
    .wh-category-grid,
    .wh-product-info-grid,
    .wh-footer__grid,
    .woocommerce ul.products {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .wh-container {
        width: min(100% - 24px, 1180px);
    }

    .wh-hero {
        padding-top: 52px;
    }

    .wh-section,
    .wh-page,
    .wh-shop-shell,
    .wh-product-shell {
        padding: 56px 0;
    }

    .wh-trust-points,
    .wh-cart-trust,
    .wh-privacy-grid,
    .wh-steps,
    .wh-category-grid,
    .wh-product-info-grid,
    .wh-footer__grid,
    .wh-scenario-links,
    .woocommerce ul.products {
        grid-template-columns: 1fr;
    }

    .wh-section-head,
    .wh-footer__bottom,
    .wh-shop-toolbar {
        align-items: flex-start;
        flex-direction: column;
    }

    .shop_table thead {
        display: none;
    }

    .shop_table tr,
    .shop_table td {
        display: block;
        width: 100%;
    }

    .coupon {
        flex-direction: column;
    }
}

.wh-lifestyle {
    position: relative;
    overflow: hidden;
    min-height: 520px;
}

.wh-packshot {
    position: absolute;
    border: 1px solid rgba(245, 242, 234, .14);
    border-radius: 10px;
    background: linear-gradient(145deg, #171717, #050505);
    box-shadow: 0 30px 70px rgba(0, 0, 0, .5);
}

.wh-packshot--large {
    width: 44%;
    height: 62%;
    right: 22%;
    bottom: 13%;
}

.wh-packshot--small {
    width: 22%;
    height: 34%;
    right: 12%;
    bottom: 20%;
    border-color: rgba(200, 169, 106, .28);
}

.wh-packshot-line {
    position: absolute;
    left: 18%;
    right: 18%;
    bottom: 18%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--wh-champagne), transparent);
}

.wh-trust-points {
    grid-template-columns: repeat(5, 1fr);
}

.wh-category-grid {
    grid-template-columns: repeat(5, 1fr);
}

.wh-scenario-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.wh-scenario-grid a,
.wh-quiz-card,
.wh-filter-panel {
    border: 1px solid var(--wh-border);
    border-radius: var(--wh-radius);
    background: rgba(17, 17, 17, .86);
}

.wh-scenario-grid a {
    padding: 18px;
    color: var(--wh-white);
}

.wh-scenario-grid a:hover,
.wh-category-card:hover,
.woocommerce ul.products li.product:hover {
    border-color: rgba(200, 169, 106, .45);
}

.wh-quiz {
    background: linear-gradient(135deg, rgba(122, 16, 32, .18), transparent 52%), #080808;
}

.wh-quiz-card {
    display: grid;
    gap: 14px;
    padding: 22px;
}

.wh-scenario-links {
    grid-template-columns: 1fr 1fr;
}

.wh-scenario-links a:not(.wh-button) {
    border: 1px solid rgba(242, 242, 242, .08);
    border-radius: var(--wh-radius);
    color: var(--wh-white);
    padding: 14px;
}

.wh-scenario-links a:not(.wh-button):hover {
    border-color: rgba(200, 169, 106, .45);
    color: var(--wh-champagne);
}

.wh-scenario-links .wh-button {
    grid-column: 1 / -1;
}

.wh-quiz-card label {
    display: grid;
    gap: 6px;
    color: var(--wh-muted-white);
}

.wh-quiz-result {
    display: grid;
    gap: 8px;
    border-top: 1px solid var(--wh-border);
    padding-top: 14px;
}

.wh-quiz-result a {
    color: var(--wh-champagne);
}

.woocommerce ul.products li.product {
    background: rgba(17, 17, 17, .88);
}

.wh-product-card__image {
    position: relative;
    display: block;
}

.wh-stock {
    color: var(--wh-muted-white);
    font-size: 13px;
}

.wh-stock {
    margin: -6px 0 10px;
}

.wh-single-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 10px 0 14px;
}

.wh-single-benefits span {
    border: 1px solid var(--wh-border);
    border-radius: 999px;
    color: var(--wh-muted-white);
    padding: 5px 8px;
    font-size: 12px;
}

.wh-single-benefits {
    margin: 0 0 26px;
}

.wh-shop-layout {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 24px;
}

.wh-filter-panel {
    position: sticky;
    top: 98px;
    align-self: start;
    padding: 18px;
}

.wh-filter-panel h2 {
    margin: 0 0 14px;
    font-size: 18px;
}

.wh-filter-panel div {
    border-top: 1px solid var(--wh-border);
    padding: 12px 0;
}

.wh-filter-panel strong,
.wh-filter-panel span {
    display: block;
}

.wh-filter-panel span {
    color: var(--wh-muted-white);
    font-size: 13px;
}

.wh-filter-reset {
    display: inline-flex;
    margin: 0 0 10px;
    color: var(--wh-champagne);
    font-size: 13px;
}

.wh-filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.wh-filter-options a {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    border: 1px solid rgba(242, 242, 242, .1);
    border-radius: 999px;
    color: var(--wh-muted-white);
    padding: 7px 11px;
    transition: border-color .18s ease, background .18s ease, color .18s ease;
}

.wh-filter-options a:hover,
.wh-filter-options a:focus,
.wh-filter-options a.is-active {
    border-color: rgba(200, 169, 106, .52);
    background: rgba(200, 169, 106, .08);
    color: var(--wh-white);
    outline: none;
}

.wh-bottom-nav {
    display: none;
}

@media (max-width: 980px) {
    .wh-trust-points,
    .wh-category-grid,
    .wh-scenario-grid {
        grid-template-columns: 1fr 1fr;
    }

    .wh-shop-layout {
        grid-template-columns: 1fr;
    }

    .wh-filter-panel {
        position: static;
    }
}

@media (max-width: 640px) {
    body {
        padding-bottom: 72px;
    }

    .wh-trust-points,
    .wh-category-grid,
    .wh-scenario-grid {
        grid-template-columns: 1fr;
    }

    .wh-trust-tooltip,
    .wh-trust-item:nth-last-child(-n+2) .wh-trust-tooltip {
        position: static;
        display: none;
        min-width: 0;
        margin-top: 12px;
        transform: none;
    }

    .wh-trust-tooltip::before {
        display: none;
    }

    .wh-trust-item:hover .wh-trust-tooltip,
    .wh-trust-item:focus .wh-trust-tooltip,
    .wh-trust-item:focus-within .wh-trust-tooltip {
        display: grid;
    }

    .wh-bottom-nav {
        position: fixed;
        right: 10px;
        bottom: 10px;
        left: 10px;
        z-index: 80;
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        border: 1px solid var(--wh-border);
        border-radius: 12px;
        background: rgba(8, 8, 8, .94);
        backdrop-filter: blur(16px);
        box-shadow: var(--wh-shadow);
        overflow: hidden;
    }

    .wh-bottom-nav a {
        padding: 10px 4px;
        color: var(--wh-muted-white);
        text-align: center;
        font-size: 11px;
    }

    .single-product .summary .cart,
    .single-product .wh-buy-now {
        position: sticky;
        bottom: 72px;
        z-index: 40;
    }
}
