/* =========================================
   PURE ACTIVE — Main Stylesheet
   Font: Poppins | Primary: #2f80ed | Dark: #0f172a | Footer: #08234d
   ========================================= */

/* ----- RESET ----- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6, p, ul, li, button, input, textarea, select {
    margin: 0;
    padding: 0;
}

a {
    display: inline-block;
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

button {
    background: transparent;
    border: none;
    cursor: pointer;
}

ul {
    list-style: none;
}

* {
    min-width: 0;
    min-height: 0;
}

/* ----- VARS ----- */
:root {
    --primary: #2f80ed;
    --primary-dark: #1d6ed8;
    --dark: #0f172a;
    --footer-bg: #08234d;
    --gray: #f8f8f8;
    --gray-text: #64748b;
    --border: #e2e8f0;
    --white: #fff;
    --black: #000;
    --green: #00a63e;
    --star: #f4b942;
    --radius: 8px;
}

/* ----- GLOBAL ----- */
html {
    scroll-behavior: smooth;
    height: 100%;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: var(--dark);
    line-height: 1.5;
    height: 100%;
}

body.no-scroll {
    overflow: hidden;
}

#wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

#wrapper > header {
    flex: 0 0 auto;
}

#wrapper > main {
    flex: 1 0 auto;
}

#wrapper > footer {
    flex-shrink: 0;
}

.container {
    max-width: 1640px;
    padding: 0 20px;
    margin: 0 auto;
    width: 100%;
}

.load {
    opacity: 0;
    transition: opacity .4s;
}

.load.ready {
    opacity: 1;
}

/* ----- TYPOGRAPHY ----- */
.title {
    font-weight: 700;
    line-height: 1.2;
}

.text {
    color: var(--gray-text);
    line-height: 1.6;
}

/* ----- BUTTONS ----- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 500;
    padding: 14px 32px;
    border-radius: var(--radius);
    border: 2px solid var(--primary);
    cursor: pointer;
    transition: background .2s, border-color .2s, color .2s;
    line-height: 1;
}

.btn:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn--outline {
    background: transparent;
    color: var(--primary);
}

.btn--outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn--dark {
    background: var(--dark);
    border-color: var(--dark);
}

.btn--green {
    background: var(--green);
    border-color: var(--green);
}

.btn--sm {
    padding: 10px 20px;
    font-size: 14px;
}

.btn--lg {
    padding: 18px 48px;
    font-size: 18px;
}

.btn--md {
    height: 39px;
    min-width: 203px;
    padding: 8px 40px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn--capitalize {
    height: 50px;
    padding: 8px 24px;
    font-size: 18px;
    font-weight: 400;
    text-transform: capitalize;
}

/* ----- STARS ----- */
.stars {
    color: var(--star);
    font-size: 14px;
    letter-spacing: 2px;
}

/* ----- BADGE ----- */
.badge {
    display: inline-flex;
    align-items: center;
    background: var(--primary);
    color: var(--white);
    font-size: 14px;
    font-weight: 300;
    padding: 4px 10px;
    border-radius: 50px;
    line-height: 1.4;
}

.badge--gray {
    background: var(--gray);
    color: var(--dark);
}

.badge--green {
    background: var(--green);
}

.badge--dark {
    background: #0f172a;
    color: #fff;
    font-size: 12px;
    font-weight: 400;
}

.badge--orange {
    background: #ff8000;
    color: #fff;
}

.badge--primary {
    background: var(--primary);
    color: #fff;
}

/* Slider wrapper — lets Slick take the wrapper as the slide, preserving inner grid */
.products-slider__slide {
    padding: 0 8px;
}

/* ----- QTY CONTROL ----- */
.qty-control {
    display: flex;
    align-items: center;
    border: 1px solid #f8fafc;
    background: var(--white);
    border-radius: 50px;
    height: 32px;
    overflow: hidden;
    padding: 1px;
}

.qty-control__btn {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--gray-text);
    background: transparent;
    border: none;
    cursor: pointer;
    transition: background .15s;
    border-radius: 50%;
}

.qty-control__btn:hover {
    background: var(--gray);
}

.qty-control__val {
    width: 28px;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    border: none;
    outline: none;
    background: transparent;
    color: var(--dark);
    -moz-appearance: textfield;
}

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

.qty-control--lg {
    height: 50px;
}

.qty-control--lg .qty-control__btn {
    width: 30px;
    height: 30px;
}

/* =========================================
   HEADER
   ========================================= */
.header {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .06);
}

/* topbar */
.header__topbar {
    border-bottom: 1px solid var(--border);
    background: var(--white);
}

.header__topbar .container {
    display: flex;
    align-items: center;
}

.header__topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1124px;
    height: 59px;
}

.header__topbar-social {
    display: flex;
    align-items: center;
    gap: 32px;
}

.header__topbar-social a {
    display: flex;
    align-items: center;
}

.header__topbar-social img {
    width: 24px;
    height: 24px;
}

.header__topbar-social a:hover {
    opacity: .7;
}

.header__topbar-contact {
    display: flex;
    align-items: center;
    gap: 32px;
}

.header__topbar-contact a {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 18px;
    color: var(--dark);
}

.header__topbar-contact a img {
    width: 24px;
    height: 24px;
}

.header__topbar-contact a:hover {
    color: var(--primary);
}

/* top menu (above header__main) */
.header__topmenu {
    border-bottom: 1px solid var(--border);
    background: var(--white);
}

.header__topmenu-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 44px;
}

.header__topmenu-nav {
    display: flex;
    align-items: center;
}

.header__topmenu-list {
    display: flex;
    align-items: center;
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.header__topmenu-list li {
    position: relative;
}

.header__topmenu-list > li > a {
    display: flex;
    align-items: center;
    font-size: 16px;
    color: var(--dark);
    transition: color .2s;
}

.header__topmenu-list > li > a:hover,
.header__topmenu-list > li.current-menu-item > a {
    color: var(--primary);
}

.header__topmenu-list .menu-item-has-children > a::after {
    content: '';
    width: 6px;
    height: 6px;
    margin-left: 6px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg);
    translate: 0 -2px;
}

/* desktop dropdown submenu */
.header__topmenu-list .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: var(--white);
    box-shadow: 0 12px 32px rgba(0, 0, 0, .12);
    border-radius: 8px;
    padding: 8px 0;
    margin: 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity .2s, transform .2s, visibility .2s;
    z-index: 20;
}

.header__topmenu-list .menu-item-has-children:hover > .sub-menu,
.header__topmenu-list .menu-item-has-children:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header__topmenu-list .sub-menu a {
    display: block;
    padding: 8px 20px;
    font-size: 14px;
    color: var(--dark);
    white-space: nowrap;
    transition: color .2s, background .2s;
}

.header__topmenu-list .sub-menu a:hover,
.header__topmenu-list .sub-menu li.current-menu-item > a {
    color: var(--primary);
    background: rgba(47, 128, 237, .06);
}

/* top menu burger — mobile only, three stripes, distinct from header__burger */
.header__topmenu-burger {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    margin-left: 8px;
}

.header__topmenu-burger span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: all .3s;
}

.header__topmenu-burger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.header__topmenu-burger.open span:nth-child(2) {
    opacity: 0;
}

.header__topmenu-burger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* top menu mobile dropdown panel */
.header__topmenu-panel {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1001;
    width: 280px;
    max-width: 80%;
    height: 100%;
    background: var(--white);
    box-shadow: -4px 0 24px rgba(0, 0, 0, .1);
    padding: 80px 24px 24px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transform: translateX(100%);
    transition: transform .3s ease;
}

.header__topmenu-panel.open {
    transform: translateX(0);
}

.header__topmenu-panel-inner {
    display: flex;
    flex-direction: column;
}

.header__topmenu-panel-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.header__topmenu-panel-list li {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.header__topmenu-panel-list a {
    display: block;
    font-size: 18px;
    color: var(--dark);
}

.header__topmenu-panel-list li.current-menu-item > a,
.header__topmenu-panel-list a:hover {
    color: var(--primary);
}

/* accordion toggle arrow (menu-item-has-children only) */
.header__topmenu-panel-list .submenu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    margin-left: auto;
    padding: 0;
    background: none;
    border: none;
    color: var(--dark);
    cursor: pointer;
}

.header__topmenu-panel-list .submenu-toggle svg {
    transition: transform .25s ease;
}

.header__topmenu-panel-list .submenu-toggle.open svg {
    transform: rotate(180deg);
}

/* nested submenu — collapsed accordion */
.header__topmenu-panel-list .sub-menu {
    flex: 1 0 100%;
    list-style: none;
    margin: 0;
    padding: 0 0 0 16px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    border-left: 2px solid var(--border);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height .3s ease, opacity .25s ease, margin .3s ease;
}

.header__topmenu-panel-list .sub-menu.open {
    max-height: 600px;
    opacity: 1;
    margin-top: 14px;
}

.header__topmenu-panel-list .sub-menu a {
    font-size: 15px;
    color: var(--gray-text);
}

/* main nav */
.header__main {
    height: 120px;
    display: flex;
    align-items: center;
    width: 100%;
}

.header__main .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0;
}

.header__left {
    display: flex;
    align-items: center;
    gap: 19px;
}

.header__logo a {
    display: flex;
    align-items: center;
}

.header__logo img {
    width: 252px;
    height: auto;
}

.header__search {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 774px;
    flex-shrink: 0;
    position: relative;
}

.header__search-toggle {
    width: 48px;
    height: 48px;
    background: var(--gray);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    cursor: pointer;
    transition: background .2s;
}

.header__search-toggle:hover,
.header__search-toggle.open {
    background: var(--border);
}

.header__search-toggle img {
    width: 24px;
    height: 24px;
}

.header__toggle-close {
    display: none;
}

.header__search-toggle.open .header__toggle-grid {
    display: none;
}

.header__search-toggle.open .header__toggle-close {
    display: block;
}

/* dark page overlay when mega-menu is open */
.mega-menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .5);
    z-index: 99;
}

.mega-menu-overlay.active {
    display: block;
}

.header__search-form {
    display: flex;
    align-items: center;
    background: var(--gray);
    border-radius: var(--radius);
    overflow: hidden;
    flex: 1;
    height: 48px;
}

.header__search-form input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 0 16px;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    color: var(--dark);
    outline: none;
}

.header__search-form input::placeholder {
    color: var(--gray-text);
    opacity: .5;
}

.header__search-btn {
    width: 53px;
    height: 48px;
    background: var(--primary);
    border: none;
    border-radius: 0 var(--radius) var(--radius) 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
}

.header__search-btn img {
    width: 24px;
    height: 24px;
}

/* mobile search icon (hidden on desktop) */
.header__search-mob {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* mobile search bar — fixed below header, shown only at 480px */
.mobile-search-bar {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: #fff;
    z-index: 200;
    flex-direction: column;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .12);
}

.mobile-search-bar.active {
    display: flex;
}

.mobile-search-bar__inner {
    display: flex;
    align-items: center;
    margin: 10px 10px 0;
    background: #f8f8f8;
    border-radius: 8px;
    overflow: hidden;
    height: 48px;
}

.mobile-search__input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 0 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #0f172a;
    outline: none;
    height: 48px;
}

.mobile-search__input::placeholder {
    color: #64748b;
    opacity: .5;
}

.mobile-search__clear {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
}

.mobile-search__clear.visible {
    display: flex;
}

.mobile-search__btn {
    width: 48px;
    height: 48px;
    background: var(--primary);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    cursor: pointer;
}

.mobile-search__btn img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.mobile-search-dropdown {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 16px;
    background: #f8f8f8;
    margin: 8px 10px 10px;
    border-radius: 8px;
}

.mobile-search-dropdown .search-state--results {
    display: none;
}

/* ===== MINI-CART DRAWER ===== */
.mini-cart {
    position: fixed;
    inset: 0;
    z-index: 400;
    pointer-events: none;
    visibility: hidden;
}

.mini-cart.active {
    pointer-events: auto;
    visibility: visible;
}

.mini-cart__overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, .3);
    opacity: 0;
    transition: opacity .3s;
}

.mini-cart.active .mini-cart__overlay {
    opacity: 1;
}

.mini-cart__panel {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 568px;
    background: #fff;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform .3s cubic-bezier(.4, 0, .2, 1);
    box-shadow: -4px 0 24px rgba(0, 0, 0, .1);
    overflow: hidden;
}

.mini-cart.active .mini-cart__panel {
    transform: translateX(0);
}

.mini-cart__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 20px 12px;
    flex-shrink: 0;
}

.mini-cart__title {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 28px;
}

.mini-cart__close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.mini-cart__subheader {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: #0a0a0a;
    flex-shrink: 0;
}

.mini-cart__body {
    flex: 1;
    overflow-y: auto;
    padding: 0 20px;
}

.mini-cart__body::-webkit-scrollbar {
    width: 4px;
}

.mini-cart__body::-webkit-scrollbar-track {
    background: transparent;
}

.mini-cart__body::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, .15);
    border-radius: 2px;
}

.mini-cart__item {
    display: flex;
    gap: 14px;
    padding: 14px 0;
}

.mini-cart__img {
    width: 60px;
    height: 60px;
    border-radius: 8.75px;
    background: #ececf0;
    overflow: hidden;
    flex-shrink: 0;
}

.mini-cart__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mini-cart__info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-width: 0;
}

.mini-cart__name-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.mini-cart__name {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: #000;
    line-height: 1.4;
    flex: 1;
}

.mini-cart__price {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #000;
    white-space: nowrap;
    line-height: 1;
}

.mini-cart__controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mini-cart__qty {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 122px;
    height: 36px;
    border: 1px solid rgba(100, 116, 139, .1);
    border-radius: 50px;
    padding: 0 4px;
    overflow: hidden;
}

.mini-cart__qty-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 20px;
    color: #64748b;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    line-height: 1;
}

.mini-cart__qty-val {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    text-align: center;
    width: 28px;
    flex-shrink: 0;
}

.mini-cart__remove {
    display: flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: #d4183d;
}

.mini-cart__item-total {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #000;
    text-align: right;
    display: block;
}

.mini-cart__divider {
    height: 1px;
    background: rgba(0, 0, 0, .1);
    flex-shrink: 0;
}

/* Bundle item */
.mini-cart__item--bundle {
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;
}

.mini-cart__bundle-items {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.mini-cart__bundle-sub {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 14px 0;
    width: 100%;
}

/* Sub-item 1 info: name on left, price-row on right */
.mini-cart__bundle-sub-info {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.mini-cart__bundle-plus {
    font-size: 24px;
    font-weight: bold;
    color: #d4183d;
    display: block;
    line-height: 1;
    flex-shrink: 0;
}

.mini-cart__item--bundle .mini-cart__controls {
    width: 100%;
    padding-left: 71px;
}

/* Desktop: inline price in sub-item 1; no mobile block */
.mini-cart__bundle-price {
    display: none;
}

.mini-cart__item-total--bundle {
    display: block;
    font-size: 24px;
    text-align: right;
    padding: 4px 0 0;
}

/* Price col (strikethrough + badge + current — stacked) */
.mini-cart__price-row {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    flex-shrink: 0;
}

.mini-cart__price-current {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--dark);
}

.mini-cart__price--strike {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #64748b;
    text-decoration: line-through;
}

.mini-cart__discount-badge {
    background: #ed2f2f;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 10px;
    font-weight: 600;
    padding: 2px 5px;
    border-radius: 50px;
}

/* Summary footer */
.mini-cart__summary {
    padding: 20px 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    border-top: 1px solid rgba(0, 0, 0, .08);
    flex-shrink: 0;
}

.mini-cart__summary-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #000;
    white-space: nowrap;
}

.mini-cart__summary-row span:first-child {
    font-weight: 300;
}

.mini-cart__summary-row span:last-child {
    font-weight: 600;
}

.mini-cart__summary-row--total {
    font-size: 20px;
}

.mini-cart__summary-row--total span {
    font-weight: 600;
}

.mini-cart__summary-divider {
    height: 1px;
    background: rgba(0, 0, 0, .1);
}

.mini-cart__checkout-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 400;
    height: 50px;
    border-radius: 8px;
    text-decoration: none;
    flex-shrink: 0;
}

.mini-cart__continue {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 10px;
    font-weight: 500;
    color: #0f172a;
    text-decoration: underline;
    letter-spacing: 0.48px;
    text-transform: uppercase;
    text-align: center;
}

/* search clear (X) inside input */
.header__search-clear {
    display: none;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    flex-shrink: 0;
}

.header__search-clear.visible {
    display: flex;
}

/* dark overlay for search */
.search-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, .3);
    z-index: 99;
}

.search-overlay.active {
    display: block;
}

/* search dropdown */
.search-dropdown {
    display: none;
    flex-direction: column;
    gap: 20px;
    position: absolute;
    top: calc(100% + 4px);
    left: 58px; /* toggle 48px + gap 10px */
    width: calc(100% - 58px);
    background: #f8f8f8;
    border-radius: 8px;
    padding: 16px;
    z-index: 201;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .12);
}

.search-dropdown.active {
    display: flex;
}

.search-state {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.search-state--results {
    display: none;
}

.search-dropdown__label {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #64748b;
    line-height: 1.4;
}

.search-dropdown__history {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.search-dropdown__history-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.search-dropdown__history-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.search-dropdown__history-name {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: #0f172a;
    white-space: nowrap;
}

.search-dropdown__history-remove {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.search-dropdown__popular {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.search-dropdown__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.search-dropdown__tag {
    background: none;
    border: 1px solid #64748b;
    border-radius: 50px;
    padding: 4px 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #0f172a;
    cursor: pointer;
    line-height: 1.4;
    transition: border-color .2s, color .2s;
}

.search-dropdown__tag:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.search-dropdown__result-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.search-dropdown__result-item {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.search-dropdown__result-item:hover .search-dropdown__result-text {
    color: var(--primary);
}

.search-dropdown__result-text {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: #0f172a;
    white-space: nowrap;
}

.search-dropdown__result-rest {
    opacity: 0.3;
}

.header__actions {
    display: flex;
    align-items: center;
    gap: 27px;
}

.header__cart {
    position: relative;
    display: flex;
    align-items: center;
}

.header__cart img {
    width: 32px;
    height: 32px;
}

.header__cart-count {
    position: absolute;
    top: -2px;
    right: -4px;
    background: var(--primary);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    font-size: 0;
    overflow: hidden;
    color: transparent;
}

.header__account {
    display: flex;
    align-items: center;
}

.header__account img {
    width: 32px;
    height: 32px;
}

/* mega menu (opens from grid toggle) */
.mega-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background: var(--white);
    box-shadow: 0 24px 50px rgba(0, 0, 0, .15);
    border-radius: 8px;
    width: 1106px;
    display: none;
    z-index: 200;
    overflow: hidden;
}

.mega-menu.open {
    display: flex;
}

.mega-menu__section {
    width: 300px;
    flex-shrink: 0;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.mega-menu__nav-group {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mega-menu__title {
    font-size: 20px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    color: #170f49;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    letter-spacing: 0;
    text-transform: none;
    margin-bottom: 0;
}

.mega-menu__chevron {
    flex-shrink: 0;
    transition: transform .2s;
}
.mega-menu__chevron path {
    stroke: #2F80ED;
}

.mega-menu__nav-group.collapsed .mega-menu__chevron {
    transform: rotate(180deg);
}

.mega-menu__nav-group.collapsed .mega-menu__links {
    display: none;
}

.mega-menu__links {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 0;
}

.mega-menu__links a {
    font-size: 18px;
    font-weight: 300;
    font-family: 'Poppins', sans-serif;
    color: #000;
    text-decoration: none;
    line-height: 1.4;
}
.mega-menu__links a.current-menu-item {
    color: #6ee7c8;
}
.mega-menu__title {
    cursor: pointer;
}
.mega-menu__title.current-main-item {
    color: var(--primary);
}
.mega-menu__links a.mega-menu__cta-btn {
    color: #fff;
}

.mega-menu__links a:hover {
    color: var(--primary);
}

.mega-menu__links a.active {
    color: #6ee7c8;
    font-weight: 600;
}

/* tab items (SHOP sub-links) */
.mega-menu__tab-item {
    display: flex;
    flex-direction: column;
}

.mega-menu__tab {
    font-size: 18px;
    font-weight: 300;
    font-family: 'Poppins', sans-serif;
    color: #000;
    text-decoration: none;
    line-height: 1.4;
}

.mega-menu__tab:hover {
    color: var(--primary);
}

.mega-menu__tab.active {
    color: #6ee7c8;
    font-weight: 600;
}

/* mobile accordion panel — hidden on desktop */
.mega-menu__accordion {
    display: none;
}

/* desktop panels */
.mega-menu__main {
    flex: 1;
    background: #f8fafc;
    border-radius: 0 8px 8px 0;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mega-menu__panel {
    display: none;
    flex-direction: column;
    gap: 20px;
}

.mega-menu__panel.active {
    display: flex;
}

.mega-menu__products {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}
@media screen and (min-width: 993px) {
    .mega-menu__products {
        max-height: 450px;
        overflow-y: auto;
    }
}
.mega-menu__product {
    width: calc((100% / 4) - ((14px * 3) / 4));
    background: #fff;
    border: 1px solid rgba(100, 116, 139, 0.1);
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
}

.mega-menu__product-img {
    position: relative;
    width: 100%;
    height: 165px;
    overflow: hidden;
    flex-shrink: 0;
}

.mega-menu__product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0;
    margin-bottom: 0;
}

.mega-menu__product-category {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #0f172a;
    color: #fff;
    font-size: 10px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    padding: 4px 10px;
    border-radius: 50px;
    white-space: nowrap;
}

.mega-menu__product-badge {
    position: absolute;
    top: 36px;
    left: 10px;
    background: #00a63e;
    color: #fff;
    font-size: 10px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 50px;
}

.mega-menu__product-labels {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.mega-menu__product-labels .mega-menu__product-category,
.mega-menu__product-labels .mega-menu__product-badge {
    position: static;
}

.mega-menu__product-info {
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.mega-menu__product-name {
    font-size: 12px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.625;
    flex-grow: 1;

    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;

    overflow: hidden;
}

.mega-menu__product-rating {
    display: flex;
    align-items: center;
    gap: 4px;
}

.mega-menu__stars {
    color: #f4b942;
    font-size: 13px;
    letter-spacing: 1px;
}

.mega-menu__rating-count {
    color: #64748b;
    font-size: 11px;
    letter-spacing: 1px;
}

.mega-menu__product-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mega-menu__product-price {
    font-size: 16px;
    font-weight: 800;
    color: #0f172a;
}

.mega-menu__cart-btn {
    width: 67px;
    height: 48px;
    background: var(--primary);
    border: none;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 12px;
    flex-shrink: 0;
}

.mega-menu__cart-btn img {
    width: 19px;
    height: 24px;
    filter: brightness(0) invert(1);
    object-fit: contain;
}

.mega-menu__cta {
    text-align: center;
}

.mega-menu__cta-btn {
    display: inline-block;
    width: 288px;
    background: var(--primary);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.48px;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
    padding: 12px;
    border-radius: 8px;
}

/* burger */
.header__burger {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 30px;
    cursor: pointer;
    position: relative;

}

.header__burger img {
    width: 20px;
    height: 20px;
    transition: all 0.4s ease;
    filter: brightness(10);
}

.header__burger svg {
    width: 20px;
    height: 20px;
    filter: brightness(10);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
}

.header__burger.open img {
    opacity: 0;
}

.header__burger.open svg {
    opacity: 1;
}

.header__burger span {
    display: block;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: all .3s;
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
    background: var(--footer-bg);
    color: var(--white);
}

.footer__brand {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.footer__main {
    padding: 64px 0 0;
}

.footer .container {
    max-width: 1437px;
    padding: 0 40px;
}

.footer__main .container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 48px;
}

.footer__brand-logo img {
    width: 252px;
    height: auto;
}

.footer__brand-tagline {
    font-size: 13px;
    color: var(--white);
    line-height: 22.1px;
    max-width: 284px;
}

.footer__social {
    display: flex;
    align-items: center;
    gap: 32px;
}

.footer__social a {
    display: flex;
}

.footer__social img {
    width: 24px;
    height: 24px;
}

.footer__social a:hover {
    opacity: .8;
}

.footer__col-title {
    font-size: 10px;
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .4);
    margin-bottom: 18px;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__links a {
    font-size: 14px;
    font-weight: 300;
    color: var(--white);
    transition: color .2s;
}

.footer__links a:hover {
    color: var(--white);
}

.footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
}

.footer__contact-item img {
    width: 18px;
    height: 18px;
    margin-top: 1px;
}

.footer__contact-item span {
    font-size: 13px;
    color: rgba(255, 255, 255, .6);
    line-height: 1.4;
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding: 20px 0;
}

.footer__bottom .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer__copyright {
    font-size: 12px;
    color: rgba(255, 255, 255, .6);
}

.footer__payments {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer__payments span {
    background: rgba(255, 255, 255, .2);
    color: rgba(255, 255, 255, .8);
    font-size: 10px;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: 4px;
    letter-spacing: .4px;
}

/* =========================================
   RATING WIDGET (rate-my-post plugin)
   ========================================= */
/* Static mockup fallback — overridden by ratemypost font in WordPress */
.rmp-icon--ratings {
    font-style: normal;
    display: inline-block;
    line-height: 1;
}

.rmp-icon--ratings::before {
    content: '★';
}

.rmp-icon--full-highlight {
    color: var(--star) !important;
}

.rmp-icon--half-highlight {
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
}

.product-card .rmp-results-widget {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    line-height: 1;
}

.product-card .rmp-results-widget__visual-rating {
    display: inline-flex;
    align-items: center;
    margin-right: 0;
}

.product-card .rmp-results-widget__avg-rating {
    display: none;
}

.product-card .rmp-results-widget__vote-count {
    font-size: 11px;
    color: #4a5565;
    letter-spacing: 1px;
}

.product-card:not(.product-card--horizontal) .rmp-icon--ratings {
    font-size: 13px;
}

.product-card--horizontal .rmp-icon--ratings {
    font-size: 14px;
    letter-spacing: 0;
}

.product-card--horizontal .rmp-results-widget__vote-count {
    font-size: 14px;
    letter-spacing: 0;
}

/* product page (single product) rating widget */
.product-info__rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0;
}

.product-info__rating .rmp-results-widget {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    line-height: 1;
}

.product-info__rating .rmp-results-widget__visual-rating {
    display: inline-flex;
    align-items: center;
}

.product-info__rating .rmp-results-widget__avg-rating {
    display: none;
}

.product-info__rating .rmp-icon--ratings {
    font-size: 16px;
}

.product-info__rating .rmp-results-widget__vote-count {
    font-size: 14px;
    color: var(--gray-text);
}

/* =========================================
   BREADCRUMB
   ========================================= */
.breadcrumb {
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
}

.breadcrumb .container {
    display: flex;
    align-items: center;
    gap: 8px;
}

.breadcrumb a {
    font-size: 14px;
    color: var(--gray-text);
}

.breadcrumb a:hover {
    color: var(--primary);
}

.breadcrumb span {
    font-size: 14px;
    color: var(--gray-text);
}

.breadcrumb .current {
    font-size: 14px;
    color: #6EE7C8;
    font-weight: 500;
}

/* =========================================
   TRUST BAR
   ========================================= */
.trust-bar {
    background: var(--white);
    border-top: 1px solid #f8fafc;
    border-bottom: 1px solid #f8fafc;
    margin-top: 48px;
}

.trust-bar .container {
    max-width: none;
    padding: 0;
}

.trust-bar__inner {
    padding: 0;
}

.trust-bar__list {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
}

.trust-bar__item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 18px 32px;
    border-right: 1px solid #f8fafc;
    font-size: 11px;
    font-weight: 700;
    color: var(--dark);
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.88px;
    /*flex: 1;*/
    justify-content: flex-start;
    flex-shrink: 0;
}

.trust-bar__item:last-child {
    border-right: none;
}

.trust-bar__item .emoji {
    font-size: 18px;
}
/* marq */

@keyframes scrolling1 {
    0%   { transform: translateX(0); }
    100% { transform: translateX(calc((-1) * var(--marquee-element-width1) * var(--marquee-elements1))); }
}

:root {
    --marquee-width1: 100%;
    --marquee-height: 20vh;
    --marquee-elements-displayed1: 1;
    --marquee-element-width1: calc(var(--marquee-width1) / var(--marquee-elements-displayed1));
    --marquee-animation-duration1: calc(var(--marquee-elements1) * 26s);
}

.trust-bar {
    width: 100%;
    overflow: hidden;
}

.marq-wrp {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.marq-block {
    width: 100%;
    flex-shrink: 0;
    display: flex;
    overflow: hidden;
}

.marq-line {
    width: 100%;
    flex-shrink: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    animation: scrolling1 var(--marquee-animation-duration1) linear infinite;
}

.marq-line:hover {
    animation-play-state: paused;
}

.marq-line > div {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: var(--marquee-element-width1);
}

.marq-line .im {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    transition: all 0.4s ease-in-out;
}
/* marq */
/* =========================================
   HERO (Home)
   ========================================= */
.hero {
    position: relative;
}

.hero__inner {
    position: relative;
    height: 480px;
    border-radius: 24px;
    margin: 20px auto 0;
    max-width: 1640px;
    padding: 0 20px;
    width: 100%;
}

.hero__slides {
    position: relative;
    height: 100%;
    border-radius: 24px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .6s ease;
    pointer-events: none;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
    pointer-events: auto;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(91.33deg, rgba(0, 0, 0, .6) 47.46%, rgba(102, 102, 102, 0) 99.65%);
    z-index: 1;
}

.hero__bg img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero__content {
    position: relative;
    z-index: 2;
    padding: 80px 61px;
    max-width: 1000px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
}
.hero--shop .hero__content {
    max-width: 100%;
}
.hero--shop .hero__badge {
    width: 90px;
    height: 90px;
    background: #00A63E;
    font-size: 32px;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 50%;
}

.hero__label {
    font-size: 32px;
    font-weight: 500;
    color: var(--white);
    line-height: 1;
}

.hero__title {
    font-size: 76px;
    font-weight: 700;
    line-height: 80px;
    color: var(--white);
}

.hero__title-gradient {
    background: linear-gradient(180deg, #fff 33%, var(--primary) 67%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__subtitle {
    font-size: 24px;
    font-weight: 400;
    color: var(--white);
    line-height: 40px;
    max-width: 639px;
}

.hero__btn {
    min-width: 149px;
    height: 60px;
    font-size: 18px;
    font-weight: 400;
    padding: 8px 32px;
}

.hero__badge {
    position: absolute;
    top: 25px;
    right: 16px;
    z-index: 3;
    width: 110px;
    height: 110px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    color: var(--white);
    font-weight: 700;
    line-height: 1.1;
}

.hero__badge-star {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: fill;
}

.hero__badge-big {
    font-size: 32px;
    position: relative;
    z-index: 1;
}

.hero__badge-small {
    font-size: 24px;
    font-weight: 400;
    position: relative;
    z-index: 1;
}

.hero__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: var(--white);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 24px 25px rgba(0, 0, 0, .1);
    cursor: pointer;
    z-index: 3;
}

.hero__arrow--left {
    left: -22px;
}

.hero__arrow--right {
    right: -24px;
}

.hero__arrow svg {
    width: 24px;
    height: 24px;
    color: var(--dark);
}

.hero__pagination {
    position: absolute;
    bottom: 41px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 3;
}

.hero__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .5);
    cursor: pointer;
    transition: all .2s;
}

.hero__dot.active {
    width: 32px;
    border-radius: 6px;
    background: var(--white);
}

/* =========================================
   INNER PAGE HERO (About, FAQ, Blog, Contact, etc.)
   ========================================= */
.page-hero {
    position: relative;
    overflow: hidden;
}

.page-hero__inner {
    background: linear-gradient(to right, var(--dark) 55%, rgba(10, 30, 70, .6) 100%);
    position: relative;
    min-height: 160px;
    display: flex;
    align-items: center;
}

.page-hero__bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.page-hero__bg img {
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
    object-fit: cover;
    opacity: .4;
}

.page-hero__content {
    position: relative;
    z-index: 1;
    padding: 48px 0;
}

.page-hero__content .container {
    display: flex;
    align-items: center;
    gap: 20px;
}

.page-hero__icon {
    width: 48px;
    height: 48px;
    background: rgba(47, 128, 237, .2);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.page-hero__title {
    font-size: 36px;
    font-weight: 700;
    color: var(--white);
}

/* =========================================
   PRODUCT CARDS
   ========================================= */
.products-section {
    padding: 48px 0;
}

.products-section__header {
    text-align: center;
    margin-bottom: 40px;
}

.products-section__header--left {
    text-align: left;
}

.products-section__title {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--dark);
}

.products-section__subtitle {
    font-size: 18px;
    font-weight: 300;
    color: var(--gray-text);
    line-height: 1.4;
    margin-top: 20px;
}

.products-section--gray {
    background: #f8fafc;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.products-grid--stock {
    max-width: 1392px;
    margin: 0 auto;
}

.section-cta {
    text-align: center;
    margin-top: 40px;
}

.products-slider {
    position: relative;
    margin: 0 -8px;
}

.products-slider .slick-slide {
    padding: 0 12px;
}

.products-slider .slick-prev,
.products-slider .slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: var(--white);
    border: none;
    /*box-shadow: 0 24px 25px rgba(0,0,0,.1);*/
    display: flex !important;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--dark);
    padding: 0;
    transition: box-shadow .2s;
}

.products-slider {
    filter: drop-shadow(0 24px 25px rgba(0, 0, 0, .05));
}

.products-slider .product-card {
    box-shadow: none !important;
}

.products-slider .slick-prev:hover,
.products-slider .slick-next:hover {
    box-shadow: 0 12px 30px rgba(0, 0, 0, .2);
}

.products-slider .slick-prev {
    left: -28px;
}

.products-slider .slick-next {
    right: -28px;
}

.products-slider .slick-prev svg,
.products-slider .slick-next svg {
    width: 20px;
    height: 20px;
}

.products-slider .slick-prev::before,
.products-slider .slick-next::before {
    display: none;
}

.products-slider .slick-dots {
    display: flex !important;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
    list-style: none;
    padding: 0;
}

.products-slider .slick-dots li button {
    width: 10px;
    height: 10px;
    border-radius: 5px;
    background: var(--border);
    border: none;
    cursor: pointer;
    font-size: 0;
    padding: 0;
    transition: background .2s;
}

.products-slider .slick-dots li.slick-active button {
    background: var(--primary);
    width: 32px;
}

.products-slider .slick-dots li button::before {
    display: none;
}

.product-card {
    background: var(--white);
    border: 1px solid rgba(100, 116, 139, .1);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    transition: box-shadow .2s;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    box-shadow: 0 24px 25px rgba(0, 0, 0, .08);
}

.product-card--horizontal {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 32px;

}

a.product-card__image {
    display: block;
}

.product-card__image {
    position: relative;
    background: var(--gray);
    aspect-ratio: 1;
    overflow: hidden;
}

a.product-card__name {
    color: inherit;
    text-decoration: none;
    display: block;
}

a.product-card__name:hover {
    color: var(--primary);
}

.product-card--horizontal .product-card__image {
    aspect-ratio: 1;
    border-radius: 32px;
    background: transparent;
}

.product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s;
}

.product-card:hover .product-card__image img {
    transform: scale(1.04);
}

.product-card__badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    gap: 10px;
}

.product-card--horizontal .product-card__badges {
    position: static;
    margin-bottom: 0;
}

.product-card__body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.product-card--horizontal .product-card__body {
    padding: 0;
    gap: 10px;
    justify-content: flex-start;
}

.product-card__tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.product-card__name {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--dark);
    flex-grow: 1;
}

.product-card--horizontal .product-card__name {
    font-size: 18px;
    font-weight: 400;
    max-width: 306px;
}

.product-card__rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-card__rating-count {
    font-size: 14px;
    color: #4a5565;
}

.product-card:not(.product-card--horizontal) .product-card__body .stars {
    font-size: 13px;
    letter-spacing: 1px;
}

.product-card:not(.product-card--horizontal) .product-card__rating-count {
    font-size: 11px;
    letter-spacing: 1px;
}

.product-card__price {
    font-size: 22px;
    font-weight: 800;
    color: var(--dark);
}


.product-card--horizontal .product-card__price {
    font-size: 32px;
    font-weight: 600;
    padding: 10px 0;
}

.product-card__price del {
    font-size: 15px;
    color: var(--gray-text);
    text-decoration: line-through;
    margin-left: 8px;
    font-weight: 400;
}
#wrapper {
    width: 100%;
}
.post-type-archive-product > #addtoany {
    display: none;
}
.product-card__price ins {
    font-size: 22px;
    font-weight: 800;
    color: var(--dark);
    text-decoration: none;
}

.product-card__info {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.product-card__title {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
}

.product-card__title a {
    color: var(--dark);
}

.product-card__title a:hover {
    color: var(--primary);
}

.product-card__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    z-index: 2;
}

.product-card__badge--sale {
    background: #ef4444;
    color: #fff;
}

.product-card__badge--hot {
    background: #22c55e;
    color: #fff;
}

.product-card__wishlist {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 3;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .2s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .12);
}

.product-card:hover .product-card__wishlist {
    opacity: 1;
}

.product-card__quick {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--dark);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    transition: opacity .2s;
    z-index: 3;
    cursor: pointer;
}

.product-card:hover .product-card__quick {
    opacity: 1;
}

.product-card__actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 4px;
}

.product-card__qty {
}

.product-card__add {
    width: 160px;
    height: 50px;
    font-size: 18px;
    font-weight: 400;
    padding: 8px;
    flex: 0 0 auto;
}

/* Vertical card layout: price + qty on same row, then full-width QUICK ADD */
.product-card__price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    padding-bottom: 6px;
}

.product-card__add--block {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-align: center;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.48px;
    padding: 12px;
    border-radius: 8px;
}

.product-card__new-badge {
    display: inline-block;
    background: #22c55e;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 3px 8px;
    border-radius: 4px;
    position: absolute;
    top: 44px;
    left: 12px;
    z-index: 3;
}

.product-card__link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.48px;
    color: var(--dark);
    text-decoration: underline;
    margin-top: 2px;
}

.product-card__link svg {
    width: 12px;
    height: 13px;
}

.product-card__link:hover {
    color: var(--primary);
}

.product-card__add-icon {
    display: none;
}

/* =========================================
   CATEGORIES SECTION
   ========================================= */
.categories {
    padding: 48px 0;
}

.categories__header {
    text-align: center;
    margin-bottom: 32px;
}

.categories__title {
    font-size: 28px;
    font-weight: 700;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.category-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    height: 333px;
    cursor: pointer;
    box-shadow: 0 24px 50px rgba(0, 0, 0, .05);
}

.category-card__bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    border-radius: 24px;
}

.category-card__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s;
}

.category-card:hover .category-card__bg img {
    transform: scale(1.05);
}

.category-card__overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, .2);
    border-radius: 24px;
    pointer-events: none;
}

.category-card__content {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: var(--white);
    border-radius: 24px;
    padding: 15px;
    max-width: 320px;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.category-card__title {
    font-size: 20px;
    font-weight: 700;
    color: var(--black);
    line-height: 1.4;
    white-space: nowrap;
}

.category-card__desc {
    font-size: 16px;
    color: var(--black);
    line-height: 1.4;
    font-weight: 300;
}

.category-card__content .btn {
    align-self: flex-start;
}

/* =========================================
   WHO WE ARE
   ========================================= */
.who-we-are {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    margin: 48px 20px 48px;
}

.who-we-are__inner {
    padding: 48px 104px;
    position: relative;
    z-index: 2;
    max-width: 1600px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    border-radius: 24px;
    overflow: hidden;
}

.who-we-are__bg {
    position: absolute;
    inset: 0;
}

.who-we-are__bg img, .who-we-are__bg picture {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
}

.who-we-are__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, .8) 10.7%, rgba(102, 102, 102, 0) 100%);
}

.who-we-are__content {
    display: flex;
    flex-direction: column;
    gap: 19px;
    position: relative;
    z-index: 2;
}

.who-we-are__title {
    font-size: 40px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.4;
    margin-bottom: 10px;
}

.who-we-are__text {
    font-size: 18px;
    font-weight: 300;
    color: var(--white);
    line-height: 1.4;
}

.who-we-are__bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.who-we-are__cards {
    display: flex;
    gap: 10px;
}

.who-we-are__card {
    background: var(--white);
    border-radius: 12px;
    padding: 20px;
    width: 208px;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.who-we-are__card-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 8px rgba(0, 0, 0, .25);
    flex-shrink: 0;
}

.who-we-are__card-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.who-we-are__card-title {
    font-size: 16px;
    font-weight: 600;
    color: #101828;
    line-height: 1.4;
}

/* =========================================
   LIFESTYLE GRID
   ========================================= */
.lifestyle {
    padding: 48px 0;
}

.lifestyle__header {
    text-align: center;
    margin-bottom: 40px;
}

.lifestyle__title {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 20px;
}

.lifestyle__subtitle {
    font-size: 18px;
    font-weight: 300;
    color: var(--gray-text);
    line-height: 1.4;
}

.lifestyle__grid {
    display: grid;
    grid-template-columns: 27.2% 1fr;
    gap: 21px;
}

.lifestyle__col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.lifestyle__row {
    display: flex;
    gap: 21px;
}

.lifestyle__row--top {
    height: 349px;
}

.lifestyle__row--bottom {
    height: 227px;
}

.lifestyle__item {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
}

.lifestyle__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lifestyle__item::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(16, 24, 40, 0) 60%, rgb(16, 24, 40) 100%);
    pointer-events: none;
}

.lifestyle__item-label {
    position: absolute;
    bottom: 30px;
    left: 30px;
    color: var(--white);
    font-size: 24px;
    font-weight: 600;
    line-height: 32.5px;
    z-index: 1;
}

.lifestyle__item--large {
    height: 596px;
}

.lifestyle__item--w62, .lifestyle__row--top .lifestyle__item:first-child  {
    width: 62%;
}

.lifestyle__item--w38, .lifestyle__row--top .lifestyle__item:last-child {
    width: 38%;
}

.lifestyle__item--w32, .lifestyle__row--bottom .lifestyle__item:first-child {
    width: 32%;
}

.lifestyle__item--w68, .lifestyle__row--bottom .lifestyle__item:last-child {
    width: 68%;
}

/* =========================================
   REVIEWS
   ========================================= */
.reviews {
    padding: 80px 0;
}

.reviews .container {
    max-width: 1280px;
}

.reviews__header {
    text-align: center;
    margin-bottom: 56px;
}

.reviews__title {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.4;
}

.reviews__subtitle {
    font-size: 18px;
    font-weight: 300;
    color: var(--gray-text);
    margin-top: 20px;
}

.reviews__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.review-card {
    background: #f8f8f8;
    border: 1px solid rgba(100, 116, 139, 0.1);
    border-radius: 24px;
    padding: 29px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.review-card__stars {
    font-size: 14px;
    letter-spacing: 2px;
}

.review-card__text {
    font-size: 14px;
    line-height: 1.75;
    color: var(--dark);
    font-style: italic;
}

.review-card__author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.review-card__avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

.review-card__avatar--teal {
    background: #6ee7c8;
    color: #0f172a;
}

.review-card__avatar--blue {
    background: #2f80ed;
    color: #fff;
}

.review-card__avatar--amber {
    background: #f4b942;
    color: #0f172a;
}

.review-card__name {
    font-size: 13px;
    font-weight: 700;
}

.review-card__verified {
    font-size: 10px;
    color: #6ee7c8;
    font-weight: 600;
    letter-spacing: 0.6px;
}

/* =========================================
   FEATURES / INGREDIENTS
   ========================================= */
.features {
    padding: 80px 0 48px;
    background: #f8fafc;
}

.features__inner {
    display: grid;
    grid-template-columns: 547px 1fr;
    gap: 40px;
    align-items: start;
}

.features__left {
    background: linear-gradient(160deg, #0d2a5e 0%, #071630 100%);
    border-radius: 24px;
    padding: 32px 36px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 583px;
    position: relative;
    overflow: hidden;
}

.features__left-bg {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.features__left-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.features__badges {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    z-index: 2;
}

.features__badge {
    display: flex;
    align-items: center;
    gap: 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: var(--white);
}

.features__badge img {
    width: 40px;
    height: 40px;
    filter: brightness(10);
}

.features__left-cta {
    margin-top: auto;
    position: relative;
    z-index: 2;
    text-align: center;
}

.features__title {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 20px;
    color: var(--dark);
}

.features__subtitle {
    font-size: 20px;
    font-weight: 300;
    color: var(--dark);
    margin-bottom: 40px;
    line-height: 1.4;
}

.features__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 27px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--white);
    border-radius: 24px;
    padding: 20px;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.15);
}

.feature-item__icon {
    width: 89px;
    height: 89px;
    background: #f0f2f2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.15);
}

.feature-item__icon img {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.feature-item__title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--dark);
    line-height: normal;
}

.feature-item__text {
    font-size: 16px;
    color: var(--dark);
    line-height: 1.4;
}

/* See All Link */
.see-all-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: var(--dark);
    text-decoration: underline;
    text-transform: uppercase;
    letter-spacing: 0.48px;
    padding: 12px 40px;
    border-radius: 8px;
    transition: color .2s;
}

.see-all-link:hover {
    color: var(--primary);
}

/* =========================================
   FAQ SECTION
   ========================================= */
.faq-section {
    padding: 96px 0;
    background: #f8fafc;
}

.faq-section__header {
    text-align: center;
    margin-bottom: 48px;
    padding-top: 96px;
}

.faq-section__title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
}

.faq-section__subtitle {
    font-size: 16px;
    color: var(--gray-text);
}

/* FAQ dark banner (home page) */
.faq-banner {
    position: relative;
    background: #08234d;
    overflow: hidden;
    border-radius: 24px;
    max-width: 1280px;
    margin: 0 auto;
    height: 190px;
    display: flex;
    align-items: center;
}

.faq-banner__bg {
    position: absolute;
    inset: 0;
}

.faq-banner__bg img, .faq-banner__bg picture {
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.faq-banner__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(91deg, rgb(2, 17, 30) 53.6%, rgba(2, 17, 30, 0) 99.8%);
}

.faq-banner__content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 20px;
    padding-left: 40px;
}

.faq-banner__icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 8px rgba(0, 0, 0, .25);
    flex-shrink: 0;
}

.faq-banner__icon svg,
.faq-banner__icon img {
    width: 42px;
    height: 31px;
}

.faq-banner__title {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.4;
    color: #fff;
}

.faq-section .faq-list {
    padding-top: 56px;
}

.faq-list {
    max-width: 848px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #f8fafc;
}

.faq-item.open {
    background: var(--white);
}

.faq-item__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 20px;
    cursor: pointer;
    font-size: 24px;
    font-weight: 600;
    color: var(--gray-text);
    gap: 16px;
    line-height: 1.4;
}

.faq-item.open .faq-item__question {
    color: var(--dark);
}

.faq-item__icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary);
    transition: transform .3s;
}

.faq-item.open .faq-item__icon {
    transform: rotate(180deg);
}

.faq-item__answer {
    display: none;
    padding: 0 20px 20px;
    font-size: 14px;
    font-weight: 300;
    color: var(--dark);
    line-height: 1.4;
}

.faq-item.open .faq-item__answer {
    display: block;
}

/* =========================================
   NEWSLETTER / CTA
   ========================================= */
.newsletter {
    background: linear-gradient(-81deg, rgb(38, 86, 151) 0%, rgb(10, 18, 37) 68%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.newsletter__bg {
    position: absolute;
    inset: 0;
}

.newsletter__bg img, .newsletter__bg picture {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.newsletter__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(8, 35, 77, 0) 0%, rgb(9, 29, 61) 78%);
}

.newsletter__inner {
    position: relative;
    z-index: 1;
}

.newsletter__inner .container {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 11px;
    position: relative;
    z-index: 1;
}

.newsletter__content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
}

.newsletter__title {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--white);
}

.newsletter__subtitle {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.4;
    color: var(--white);
}

.newsletter__form-wrap {
    display: flex;
    flex-direction: column;
    width: 767px;
    max-width: 100%;
    padding-top: 25px;
}

.newsletter__form {
    display: flex;
    gap: 10px;
    width: 100%;
}

.newsletter__input {
    flex: 1;
    height: 48px;
    padding: 0 20px;
    border: none;
    border-radius: var(--radius);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: var(--dark);
    outline: none;
}

.newsletter__input::placeholder {
    color: var(--gray-text);
}

.newsletter__submit {
    height: 48px;
    padding: 0 32px;
    background: #6ee7c8;
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: background .2s;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.52px;
}

.newsletter__submit:hover {
    background: #4fd1b5;
}

.newsletter__policy {
    font-size: 13px;
    font-style: italic;
    color: var(--white);
    margin-top: 10px;
    text-align: center;
}

.newsletter__policy a {
    color: var(--white);
    text-decoration: underline;
}

/* CF7 inside newsletter block — target .bp-subscribe which CF7 renders */
.newsletter__form-wrap .wpcf7 {
    width: 100%;
}

.newsletter__form-wrap .bp-subscribe {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
}

.newsletter__form-wrap .bp-subscribe .wpcf7-form-control-wrap {
    flex: 1;
    min-width: 0;
    display: block;
}

.newsletter__form-wrap .bp-subscribe input[type="email"] {
    display: block;
    width: 100%;
    height: 48px;
    padding: 0 20px;
    border: none;
    border-radius: var(--radius);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: var(--dark);
    outline: none;
    box-sizing: border-box;
    box-shadow: none;
}

.newsletter__form-wrap .bp-subscribe input[type="email"]::placeholder {
    color: var(--gray-text);
}

.newsletter__form-wrap .bp-subscribe .bp-subscribe__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    height: 48px;
    padding: 0 32px;
    background: #6ee7c8;
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: background .2s;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.52px;
    width: auto;
}

.newsletter__form-wrap .bp-subscribe .bp-subscribe__btn:hover {
    background: #4fd1b5;
}

.newsletter__form-wrap .wpcf7-spinner {
    display: none;
}

.newsletter__form-wrap .wpcf7-response-output {
    margin: 8px 0 0;
    border: none;
    padding: 0;
    font-size: 13px;
    color: var(--white);
    text-align: center;
    background: none;
}

.newsletter__form-wrap .wpcf7-not-valid-tip {
    display: block;
    font-size: 12px;
    color: #f87171;
    margin-top: 4px;
}
.newsletter__form-wrap .wpcf7-not-valid-tip + .wpcf7-not-valid-tip {
    display: none;
}

/* CTA Banner */
.cta-banner {
    background: var(--dark);
    padding: 48px 0;
}

.cta-banner__inner .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.cta-banner__content {
}

.cta-banner__title {
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
}

.cta-banner__subtitle {
    font-size: 15px;
    color: rgba(255, 255, 255, .7);
}

/* =========================================
   CONTACT PAGE
   ========================================= */
.contact-hero {
    background: var(--dark);
    padding: 64px 0;
}

.contact-hero__inner .container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
    margin-top: 40px;
}

.contact-info-card {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 12px;
    padding: 32px;
    text-align: center;
}

.contact-info-card__icon {
    font-size: 32px;
    margin-bottom: 16px;
}

.contact-info-card__title {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
}

.contact-info-card__info a {
    color: rgba(255, 255, 255, .7);
    font-size: 14px;
}

.contact-info-card__info a:hover {
    color: var(--white);
}

.contact-form-section {
    padding: 80px 0;
}

.contact-form-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-form-section__title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
}

.contact-form-section__text {
    font-size: 16px;
    color: var(--gray-text);
    line-height: 1.7;
}

/* =========================================
   FORMS
   ========================================= */
.form__group {
    margin-bottom: 20px;
}

.form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form__label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--dark);
}

.form__input,
.form__select,
.form__textarea {
    width: 100%;
    height: 48px;
    padding: 0 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    color: var(--dark);
    background: var(--white);
    outline: none;
    transition: border-color .2s;
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
    border-color: var(--primary);
}

.form__textarea {
    height: 140px;
    padding: 14px 16px;
    resize: vertical;
}

.form__select {
    appearance: none;
    cursor: pointer;
}

.form__checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form__checkbox input[type="checkbox"] {
    margin-top: 2px;
}

.form__checkbox label {
    font-size: 14px;
    color: var(--gray-text);
}

/* =========================================
   SHOP / PRODUCT LIST PAGE
   ========================================= */
.shop-page {
    padding: 48px 0;
}

.shop-page__layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 40px;
    align-items: start;
}

.shop-filters {
}

.shop-filters__title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.filter-group {
    margin-bottom: 28px;
}

.filter-group__title {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: var(--gray-text);
    margin-bottom: 12px;
}

.filter-option {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.filter-option label {
    font-size: 14px;
    cursor: pointer;
}

.filter-option input[type="checkbox"] {
    cursor: pointer;
    accent-color: var(--primary);
}

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

.shop-main__count {
    font-size: 14px;
    color: var(--gray-text);
}

.shop-main__sort select {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 8px 16px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    outline: none;
}

/* =========================================
   SINGLE PRODUCT PAGE
   ========================================= */
.product-page {
    padding: 48px 0;
}

.product-page__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.product-gallery__main {
    border-radius: 12px;
    overflow: hidden;
    background: var(--gray);
    aspect-ratio: 1;
    margin-bottom: 12px;
}

.product-gallery__main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-gallery__thumbs {
    display: flex;
    gap: 10px;
}

.product-gallery__thumb {
    width: 80px;
    height:auto;
    aspect-ratio: 1 / 1;
    border-radius: var(--radius);
    overflow: hidden;
    border: 2px solid var(--border);
    cursor: pointer;
}

.product-gallery__thumb.active {
    border-color: var(--primary);
}

.product-gallery__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info__tags {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.product-info__name {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 12px;
}

.product-info__rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.product-info__rating-count {
    font-size: 14px;
    color: var(--gray-text);
}

.product-info__price {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 24px;
}

.product-info__variants {
    margin-bottom: 24px;
}

.product-info__variants-label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
}

.product-variants {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.product-variant {
    border: 2px solid var(--border);
    border-radius: var(--radius);
    padding: 8px 16px;
    font-size: 14px;
    cursor: pointer;
    transition: border-color .2s;
}

.product-variant.active {
    border-color: var(--primary);
    color: var(--primary);
}

.product-variant:hover {
    border-color: var(--primary);
}

.product-info__add {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.product-info__benefits {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.product-info__benefit {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--gray-text);
}

.product-info__benefit::before {
    content: '✓';
    color: var(--green);
    font-weight: 700;
}

.product-tabs {
    margin-top: 60px;
}

.product-tabs__nav {
    display: flex;
    border-bottom: 2px solid var(--border);
    margin-bottom: 32px;
    gap: 0;
}

.product-tab-btn {
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 500;
    color: var(--gray-text);
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    cursor: pointer;
    transition: color .2s, border-color .2s;
}

.product-tab-btn.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

/* =========================================
   CART / CHECKOUT
   ========================================= */
.checkout-hero {
    background: linear-gradient(to right, var(--dark) 60%, rgba(10, 30, 80, .5) 100%);
    position: relative;
    padding: 48px 0;
    overflow: hidden;
}

.checkout-hero__bg {
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
    object-fit: cover;
    opacity: .25;
}

.checkout-hero__title {
    font-size: 36px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.checkout-hero__subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, .7);
}

.checkout-page {
    padding: 48px 0;
}

.checkout-page__layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 40px;
    align-items: start;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
}

.cart-item__image {
    width: 80px;
    height: 80px;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--gray);
    flex-shrink: 0;
}

.cart-item__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item__info {
    flex: 1;
}

.cart-item__name {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
}

.cart-item__variant {
    font-size: 13px;
    color: var(--gray-text);
}

.cart-item__price {
    font-size: 18px;
    font-weight: 700;
}

.order-summary {
    background: var(--gray);
    border-radius: 12px;
    padding: 28px;
    position: sticky;
    top: 100px;
}

.order-summary__title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.order-summary__row {
    display: flex;
    justify-content: space-between;
    font-size: 15px;
    margin-bottom: 12px;
    color: var(--gray-text);
}

.order-summary__total {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    font-weight: 700;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    margin-top: 4px;
    color: var(--dark);
}

/* =========================================
   MY ACCOUNT (WooCommerce Style)
   ========================================= */

/* Reset WooCommerce default floats */
.woocommerce-MyAccount-navigation,
.woocommerce-MyAccount-content {
    float: none;
    width: auto;
}

.account-page {
    padding: 48px 0;
}

.account-page__header {
    text-align: center;
    margin-bottom: 40px;
}

.account-page__title {
    font-size: 40px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.account-page__subtitle {
    font-size: 18px;
    font-weight: 300;
    color: #1a1a1a;
    line-height: 1.4;
}

/* Two-column layout: sidebar + content */
.woocommerce {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

/* WooCommerce nav (sidebar) */
.woocommerce-MyAccount-navigation {
    background: #f8fafc;
    border: 1px solid rgba(100, 116, 139, 0.1);
    border-radius: 16px;
    overflow: hidden;
    flex-shrink: 0;
    width: 400px;
}

.woocommerce-MyAccount-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
}

.woocommerce-MyAccount-navigation-link {
    border-bottom: 1px solid #f8fafc;
}

.woocommerce-MyAccount-navigation-link:last-child {
    border-bottom: none;
}

.woocommerce-MyAccount-navigation-link a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    font-size: 16px;
    font-weight: 300;
    color: #0f172a;
    transition: color .2s, background .2s;
}

.woocommerce-MyAccount-navigation-link a svg {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
}

.woocommerce-MyAccount-navigation-link a:hover {
    background: white;
    color: var(--primary);
}

.woocommerce-MyAccount-navigation-link.is-active a {
    background: white;
    color: var(--primary);
    border-left: 10px solid var(--primary);
    padding-left: 30px;
    font-weight: 600;
}

.account-welcome {
    background: var(--primary);
    border: 1px solid rgba(100, 116, 139, 0.1);
    border-radius: 16px;
    padding: 40px 30px;
    color: var(--white);
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.account-welcome a {
    color: var(--white);
    text-decoration: underline;
}

.account-sidebar-name {
    padding: 40px 30px 20px;
    font-size: 24px;
    font-weight: 600;
    color: #0f172a;
    text-align: center;
}

/* WooCommerce content area */
.woocommerce-MyAccount-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    background: none;
    border: none;
    border-radius: 0;
    padding: 0;
}

/* Overview section: continuous white box using connected borders */
.account-overview-title {
    font-size: 24px;
    font-weight: 600;
    color: #2e2e2e;
    margin: 0;
}
body .account-overview-title {
    margin: 0;
}
body .woocommerce-MyAccount-content .woocommerce-orders-table th {
    border-bottom: 1px solid #f0f0f0;
}

.woocommerce-MyAccount-content a:not(.button):not(.auth-modal__switch-link) {
    text-decoration: underline;
}

.woocommerce-MyAccount-content > .account-overview-title {
    background: white;
    border: 1px solid rgba(100, 116, 139, 0.1);
    border-bottom: none;
    border-radius: 10px 10px 0 0;
    padding: 60px 60px 40px;
    font-size: 24px;
    line-height: 1.25;
    font-weight: 600;
    color: #2E2E2E;
}

.account-overview-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    background: white;
    border-left: 1px solid rgba(100, 116, 139, 0.1);
    border-right: 1px solid rgba(100, 116, 139, 0.1);
    padding: 0 30px 30px;
    margin-bottom: 0;
}

.account-overview-card {
    background: #f8fafc;
    border-radius: 7px;
    padding: 10px;
    text-align: center;
    height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    cursor: pointer;
    border: 1px solid transparent;
    transition: border-color .2s, box-shadow .2s;
    text-decoration: none;
}

.account-overview-card:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 16px rgba(47, 128, 237, .1);
}

.account-overview-card__icon {
    font-size: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.account-overview-card__icon img {
    width: 35px;
    height: 35px;
}

.account-overview-card__text {
    font-size: 16px;
    font-weight: 300;
    color: #2e2e2e;
    line-height: 1.25;
}

.newsletter-block {
    background: white;
    border: 1px solid rgba(100, 116, 139, 0.1);
    border-top: none;
    border-radius: 0 0 10px 10px;
    padding: 24px 30px 60px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.newsletter-block__unsub {
    margin-left: auto;
}

.newsletter-block__code {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin: 0 10px;
    letter-spacing: 1px;
}

.newsletter-block__unsub {
    font-size: 14px;
    color: var(--gray-text);
    background: none;
    border: none;
    cursor: pointer;
    text-decoration: underline;
    padding: 0;
}

.newsletter-block__msg {
    margin-top: 8px;
    font-size: 14px;
}

/* Orders table */
.woocommerce-orders-table {
    width: 100%;
    border-collapse: collapse;
}

.woocommerce-orders-table th {
    text-align: left;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: var(--gray-text);
    padding: 12px 16px;
    border-bottom: 2px solid var(--border);
}

.woocommerce-orders-table td {
    padding: 16px;
    font-size: 15px;
    border-bottom: 1px solid var(--border);
    vertical-align: middle;
}

.woocommerce-orders-table tr:last-child td {
    border-bottom: none;
}

.order-status {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: inherit;
    font-weight: 600;
}

.order-status--completed {
    background: rgba(34, 197, 94, .1);
    color: var(--green);
}

.order-status--processing {
    background: rgba(47, 128, 237, .1);
    color: var(--primary);
}

.order-status--pending {
    background: rgba(245, 158, 11, .1);
    color: var(--star);
}

/* =========================================
   MY ACCOUNT — ADDRESSES PAGE
   ========================================= */

/* Content wrapper */
body .woocommerce-MyAccount-content:has(.woocommerce-Addresses) {
    border: 1px solid #f4efe9;
    border-radius: 10px;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Intro text */
body .woocommerce-MyAccount-content:has(.woocommerce-Addresses) > p {
    font-size: 24px;
    font-weight: 600;
    color: #2e2e2e;
    line-height: 1.25;
    margin: 0;
}

/* Two-column addresses grid */
body .woocommerce-MyAccount-content .woocommerce-Addresses {
    display: flex;
    gap: 20px;
    align-items: stretch;
    margin: 0;
}
body .woocommerce-MyAccount-content .woocommerce-Addresses::before, body .woocommerce-MyAccount-content .woocommerce-Addresses::after {
    content: none;
}

/* Individual address card */
body .woocommerce-MyAccount-content .woocommerce-Address {
    flex: 1;
    background: #f8fafc;
    border-radius: 10px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Card header row */
body .woocommerce-MyAccount-content .woocommerce-Address-title {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0;
    padding: 0;
    border: none;
}

/* Card title h2 */
body .woocommerce-MyAccount-content .woocommerce-Address-title h2 {
    font-size: 20px;
    font-weight: 600;
    color: #2e2e2e;
    line-height: 1.25;
    margin: 0;
    border: none;
    padding: 0;
    text-transform: none;
}

/* Address text */
body .woocommerce-MyAccount-content .woocommerce-Address address {
    font-size: 16px;
    font-weight: 300;
    color: #2e2e2e;
    line-height: 1.25;
    font-style: normal;
    flex: 1;
}

/* Edit link — styled as button */
body .woocommerce-MyAccount-content .woocommerce-Address .edit {
    display: block;
    background: white;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    padding: 15px 20px;
    width: 100%;
    box-sizing: border-box;
    font-size: 16px;
    font-weight: 300;
    color: #0f172a;
    text-align: center;
    text-decoration: none;
    line-height: 1.25;
    transition: border-color 0.2s;
}

body .woocommerce-MyAccount-content .woocommerce-Address .edit:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* =========================================
   MY ACCOUNT — ADDRESS EDIT FORM
   ========================================= */

/* Form card wrapper */
body .woocommerce-MyAccount-content form:has(.woocommerce-address-fields) {
    border: 1px solid rgba(100, 116, 139, 0.1);
    border-radius: 6px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Section title */
body .woocommerce-MyAccount-content form:has(.woocommerce-address-fields) h2 {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.4;
    margin: 0 0 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #f0f0f0;
    text-transform: none;
    letter-spacing: 0;
}

/* Fields flex wrapper — reset WC floats */
body .woocommerce-MyAccount-content .woocommerce-address-fields__field-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 10px;
    margin: 0;
    padding: 0;
}

/* Each form-row — reset WC margin/padding/float */
body .woocommerce-MyAccount-content .woocommerce-address-fields__field-wrapper .form-row {
    flex: 1 1 100%;
    margin: 0;
    padding: 0;
    float: none;
    clear: none;
    width: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Non-wide fields (first name + last name) side by side */
body .woocommerce-MyAccount-content .woocommerce-address-fields__field-wrapper .form-row:not(.form-row-wide) {
    flex: 1 1 calc(50% - 5px);
}

/* Labels */
body .woocommerce-MyAccount-content .woocommerce-address-fields__field-wrapper label {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.4;
    margin: 0;
    padding: 0;
}

body .woocommerce-MyAccount-content .woocommerce-address-fields__field-wrapper label .required {
    color: #d4183d;
    font-weight: 600;
}

body .woocommerce-MyAccount-content .woocommerce-address-fields__field-wrapper label .optional {
    font-size: 13px;
    font-weight: 300;
    color: #64748b;
}

/* Input wrapper */
body .woocommerce-MyAccount-content .woocommerce-address-fields .woocommerce-input-wrapper {
    display: block;
    width: 100%;
}

/* Text inputs */
body .woocommerce-MyAccount-content .woocommerce-address-fields input.input-text {
    width: 100%;
    height: 52px;
    padding: 16px;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.4);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 300;
    color: #1a1a1a;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
    margin: 0;
    outline: none;
    box-shadow: none;
}

body .woocommerce-MyAccount-content .woocommerce-address-fields input.input-text::placeholder {
    color: rgba(26, 26, 26, 0.4);
}

body .woocommerce-MyAccount-content .woocommerce-address-fields input.input-text:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(47, 128, 237, 0.1);
}

/* Native select (hidden by Select2, but good to have) */
body .woocommerce-MyAccount-content .woocommerce-address-fields select {
    width: 100%;
    height: 52px;
    padding: 0 16px;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.4);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 300;
    color: rgba(26, 26, 26, 0.6);
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
    margin: 0;
    appearance: none;
}

/* Select2 container */
body .woocommerce-MyAccount-content .woocommerce-address-fields .select2-container {
    width: 100%;
    display: block;
}

body .woocommerce-MyAccount-content .woocommerce-address-fields .select2-container .select2-selection--single {
    height: 52px;
    border: 1px solid rgba(0, 0, 0, 0.4);
    border-radius: 8px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    background: white;
    outline: none;
}

body .woocommerce-MyAccount-content .woocommerce-address-fields .select2-container .select2-selection__rendered {
    font-size: 14px;
    font-weight: 300;
    color: rgba(26, 26, 26, 0.6);
    font-family: 'Poppins', sans-serif;
    padding: 0;
    line-height: normal;
}

body .woocommerce-MyAccount-content .woocommerce-address-fields .select2-container .select2-selection__arrow {
    top: 50%;
    transform: translateY(-50%);
    right: 16px;
    height: auto;
}

/* Button row */
body .woocommerce-MyAccount-content .woocommerce-address-fields > p {
    margin: 4px 0 0;
    padding: 0;
}

/* Save button — beats WC .woocommerce button.button (0,2,1) with specificity 0,4,1 */
body .woocommerce-MyAccount-content .woocommerce-address-fields .button[name="save_address"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 510px;
    max-width: 100%;
    height: 50px;
    padding: 0 24px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    text-transform: capitalize;
    transition: background 0.2s;
    box-shadow: none;
    text-shadow: none;
    letter-spacing: 0;
}

body .woocommerce-MyAccount-content .woocommerce-address-fields .button[name="save_address"]:hover {
    background: #1a6fd8;
    color: white;
}

/* =========================================
   MY ACCOUNT — ORDERS LIST PAGE
   ========================================= */

/* Bordered container — only on pages with orders table */
body .woocommerce-MyAccount-content:has(.account-orders-table) {
    border: 1px solid #f4efe9;
    border-radius: 10px;
    padding: 30px;
}

/* Override WooCommerce table defaults (table.shop_table sets border, separate, radius) */
body .woocommerce-MyAccount-content .account-orders-table {
    border: none;
    border-collapse: collapse;
    border-radius: 0;
    margin: 0;
    width: 100%;
}

/* Column headers */
body .woocommerce-MyAccount-content .account-orders-table .woocommerce-orders-table__header {
    text-align: left;
    font-size: 20px ;
    font-weight: 600 ;
    color: #2e2e2e;
    padding: 14px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    border-top: none;
    text-transform: none;
    letter-spacing: 0;
}

/* Body cells (td + tbody th) — Figma body = 18px Light */
body .woocommerce-MyAccount-content .account-orders-table .woocommerce-orders-table__cell {
    padding: 16px 20px;
    font-size: 16px ;
    font-weight: 300;
    color: #2e2e2e;
    border-top: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    vertical-align: middle;
    text-transform: none;
    letter-spacing: 0;
}

body .woocommerce-MyAccount-content .account-orders-table tr:last-child .woocommerce-orders-table__cell {
    border-bottom: none;
}

/* Order number — Figma order header = 20px SemiBold, primary blue */
body .woocommerce-MyAccount-content .account-orders-table .woocommerce-orders-table__cell-order-number a {
    color: var(--primary);
    font-weight: 400;
    font-size: 16px;
    text-decoration: none;
}

/* Date — Figma qty/secondary = 14px Light, subdued */
body .woocommerce-MyAccount-content .account-orders-table .woocommerce-orders-table__cell-order-date time {
    font-size: 16px;
    font-weight: 300;
    color: #2e2e2e;
}

/* Total price — Figma prices = 24px SemiBold */
body .woocommerce-MyAccount-content .account-orders-table .woocommerce-orders-table__cell-order-total .woocommerce-Price-amount {
    font-size: 16px;
    font-weight: 400;
}

/* "for X items" secondary text in total cell */
body .woocommerce-MyAccount-content .account-orders-table .woocommerce-orders-table__cell-order-total {
    font-size: 16px;
    font-weight: 300;
    color: #2e2e2e;
}

/* Status — Figma summary rows = 16px SemiBold */
body .woocommerce-MyAccount-content .account-orders-table .woocommerce-orders-table__cell-order-status {
    font-size: 16px;
    font-weight: 600;
}
body .woocommerce-MyAccount-content .woocommerce-orders-table__row--status-processing .woocommerce-orders-table__cell-order-status {
    color: #2e2e2e;
    font-weight: 300;
}
body .woocommerce-MyAccount-content .woocommerce-orders-table__row--status-completed .woocommerce-orders-table__cell-order-status {
    color: var(--green);
}
body .woocommerce-MyAccount-content .woocommerce-orders-table__row--status-cancelled .woocommerce-orders-table__cell-order-status {
    color: #d4183d;
}
body .woocommerce-MyAccount-content .woocommerce-orders-table__row--status-pending .woocommerce-orders-table__cell-order-status {
    color: var(--star);
}
body .woocommerce-MyAccount-content .woocommerce-orders-table__row--status-on-hold .woocommerce-orders-table__cell-order-status {
    color: #f59e0b;
}

/* "View" button — override WC gray button (.woocommerce a.button) */
body .woocommerce-MyAccount-content a.woocommerce-button.view {
    display: inline-block;
    padding: 8px 22px;
    background: var(--primary);
    color: white;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    border: none;
    box-shadow: none;
    text-shadow: none;
    transition: background 0.2s;
    white-space: nowrap;
}
body .woocommerce-MyAccount-content a.woocommerce-button.view:hover {
    background: #1a6fd8;
    color: white;
}

/* =========================================
   MY ACCOUNT — ORDER DETAILS PAGE
   ========================================= */

/* Content panel */
body .woocommerce-MyAccount-content:has(.woocommerce-order-details) {
    border: 1px solid #f4efe9;
    border-radius: 10px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Order status header paragraph */
body .woocommerce-MyAccount-content:has(.woocommerce-order-details) > p {
    font-size: 20px;
    font-weight: 300;
    color: #1a1a1a;
    line-height: 1.25;
    margin: 0;
}

body .woocommerce-MyAccount-content mark.order-number {
    color: var(--primary);
    font-weight: 600;
    background: none;
    padding: 0;
}

body .woocommerce-MyAccount-content mark.order-date,
body .woocommerce-MyAccount-content mark.order-status {
    font-weight: 600;
    background: none;
    padding: 0;
    color: #1a1a1a;
}

/* Order details section (simulates divider via border-top) */
body .woocommerce-MyAccount-content .woocommerce-order-details {
    border-top: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin: 0;
    padding-top: 20px;
}

/* "Order details" heading */
body .woocommerce-MyAccount-content .woocommerce-order-details__title {
    font-size: 24px;
    font-weight: 600;
    color: #2e2e2e;
    line-height: 1.25;
    margin: 0;
    padding: 0;
    border: none;
    text-transform: none;
    letter-spacing: 0;
}

/* Table → override to card-style flex column */
body .woocommerce-MyAccount-content .woocommerce-table--order-details {
    display: flex;
    flex-direction: column;
    width: 100%;
    border-collapse: initial;
    border-spacing: 0;
    margin: 0;
    border: none;
    border-radius: 0;
}

/* Hide thead (no column headers in Figma) */
body .woocommerce-MyAccount-content .woocommerce-table--order-details thead {
    display: none;
}

/* tbody — wraps item rows */
body .woocommerce-MyAccount-content .woocommerce-table--order-details tbody {
    display: flex;
    flex-direction: column;
    padding: 0 21px;
}

/* Each item row */
body .woocommerce-MyAccount-content .woocommerce-table--order-details tbody tr {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    border-top: none;
    background: transparent;
}

body .woocommerce-MyAccount-content .woocommerce-table--order-details tbody tr:last-child {
    border-bottom: none;
}

/* Product-name cell */
body .woocommerce-MyAccount-content .woocommerce-table--order-details td.product-name {
    flex: 1;
    padding: 0;
    border: none;
    min-width: 0;
}

/* Product price cell */
body .woocommerce-MyAccount-content .woocommerce-table--order-details td.product-total {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    white-space: nowrap;
    text-align: right;
    padding: 0;
    border: none;
    flex-shrink: 0;
    line-height: 1.25;
}

body .woocommerce-MyAccount-content .woocommerce-table--order-details td.product-total .woocommerce-Price-amount {
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
}

/* order-item-row — flex row for image + info */
body .woocommerce-MyAccount-content:has(.woocommerce-order-details) .order-item-row {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
}

/* Product thumbnail */
body .woocommerce-MyAccount-content:has(.woocommerce-order-details) .order-item-thumb {
    flex-shrink: 0;
    width: 112px;
    height: 112px;
    border-radius: 8.75px;
    background: #ececf0;
    overflow: hidden;
}

body .woocommerce-MyAccount-content:has(.woocommerce-order-details) .order-item-thumb a {
    display: block;
    width: 100%;
    height: 100%;
}

body .woocommerce-MyAccount-content:has(.woocommerce-order-details) .order-item-thumb__img {
    width: 112px;
    height: 112px;
    object-fit: cover;
    display: block;
}

/* Product info — name + qty */
body .woocommerce-MyAccount-content:has(.woocommerce-order-details) .order-item-info {
    flex: 1;
    display: flex;
    align-items: baseline;
    gap: 0;
    min-width: 0;
    flex-wrap: wrap;
    flex-grow: initial;
    flex-shrink: initial;
    flex-basis: initial;
}

body .woocommerce-MyAccount-content:has(.woocommerce-order-details) .order-item-info > a {
    font-size: 18px;
    font-weight: 300;
    color: #1a1a1a;
    text-decoration: none;
    line-height: 1.4;
    flex: 1;
    min-width: 0;
}

body .woocommerce-MyAccount-content:has(.woocommerce-order-details) .order-item-info > a:hover {
    color: var(--primary);
}

body .woocommerce-MyAccount-content:has(.woocommerce-order-details) .order-item-info .product-quantity {
    font-size: 14px;
    font-weight: 300;
    color: #2e2e2e;
    white-space: nowrap;
    flex-shrink: 0;
    padding-left: 5px;
}

/* Bundle meta */
body .woocommerce-MyAccount-content:has(.woocommerce-order-details) .wc-item-meta {
    width: 100%;
    list-style: none;
    margin: 4px 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

body .woocommerce-MyAccount-content:has(.woocommerce-order-details) .wc-item-meta li {
    font-size: 12px;
    font-weight: 300;
    color: #64748b;
    line-height: 1.4;
    display: flex;
    gap: 4px;
    align-items: baseline;
}

body .woocommerce-MyAccount-content:has(.woocommerce-order-details) .wc-item-meta .wc-item-meta-label {
    font-weight: 500;
    color: #1a1a1a;
}

body .woocommerce-MyAccount-content:has(.woocommerce-order-details) .wc-item-meta p {
    margin: 0;
    display: inline;
}

/* tfoot — order summary */
body .woocommerce-MyAccount-content .woocommerce-table--order-details tfoot {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 14px 20px 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin-top: 6px;
}

body .woocommerce-MyAccount-content .woocommerce-table--order-details tfoot tr {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: none;
    background: transparent;
    padding: 0;
}

body .woocommerce-MyAccount-content .woocommerce-table--order-details tfoot th {
    font-size: 16px;
    font-weight: 300;
    color: #1a1a1a;
    text-align: left;
    padding: 0;
    border: none;
}

body .woocommerce-MyAccount-content .woocommerce-table--order-details tfoot td {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    text-align: right;
    padding: 0;
    border: none;
}

/* Total row — larger, with divider above */
body .woocommerce-MyAccount-content .woocommerce-table--order-details tfoot tr:nth-child(5) {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 14px;
    margin-top: 0;
}

body .woocommerce-MyAccount-content .woocommerce-table--order-details tfoot tr:nth-child(5) th,
body .woocommerce-MyAccount-content .woocommerce-table--order-details tfoot tr:nth-child(5) td {
    font-size: 24px;
    font-weight: 600;
}

/* Payment method row — subtle */
body .woocommerce-MyAccount-content .woocommerce-table--order-details tfoot tr:nth-child(6) th,
body .woocommerce-MyAccount-content .woocommerce-table--order-details tfoot tr:nth-child(6) td {
    font-size: 14px;
    font-weight: 300;
    color: #64748b;
}

/* Billing address section */
body .woocommerce-MyAccount-content .woocommerce-customer-details {
    border-top: 1px solid #f0f0f0;
    padding-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 0;
}

body .woocommerce-MyAccount-content .woocommerce-column__title {
    font-size: 20px;
    font-weight: 600;
    color: #2e2e2e;
    line-height: 1.25;
    margin: 0;
    padding: 0;
    border: none;
    text-transform: none;
}

body .woocommerce-MyAccount-content .woocommerce-customer-details address {
    font-size: 15px;
    font-weight: 300;
    color: #1a1a1a;
    line-height: 1.7;
    font-style: normal;
    margin: 0;
}

body .woocommerce-MyAccount-content .woocommerce-customer-details--phone,
body .woocommerce-MyAccount-content .woocommerce-customer-details--email {
    margin: 0;
    font-size: 15px;
    font-weight: 300;
    color: #1a1a1a;
}

/* Address form */
.account-address-section {
}

.account-address-section__title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 24px;
}

/* Account Details */
.account-details-section .form__group {
    margin-bottom: 24px;
}

/* =========================================
   MY ACCOUNT: EDIT-ADDRESS + EDIT-ACCOUNT FORMS
   ========================================= */

/* Fieldset (password change section in edit-account) */
.woocommerce-MyAccount-content fieldset {
    border: none;
    padding: 0;
    margin: 8px 0 0;
}

.woocommerce-MyAccount-content fieldset legend {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
    padding: 0;
    margin-bottom: 20px;
    width: 100%;
}

/* Each field row → like .form__group */
.woocommerce-MyAccount-content .form-row,
.woocommerce-MyAccount-content .woocommerce-form-row {
    padding: 0;
    margin-bottom: 20px;
    clear: none;
    float: none;
    width: auto;
}

/* Labels */
.woocommerce-MyAccount-content .form-row > label,
.woocommerce-MyAccount-content .woocommerce-form-row > label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--dark);
    float: none;
    width: auto;
}

.woocommerce-MyAccount-content .form-row > label .required,
.woocommerce-MyAccount-content .woocommerce-form-row > label .required,
.woocommerce-MyAccount-content .form-row > label abbr.required,
.woocommerce-MyAccount-content .woocommerce-form-row > label abbr.required {
    color: var(--error, #e53935);
    text-decoration: none;
    border: none;
}

/* Input wrapper shouldn't add float/clear */
.woocommerce-MyAccount-content .woocommerce-input-wrapper {
    display: block;
    width: 100%;
    float: none;
}

/* Text inputs, password, email */
.woocommerce-MyAccount-content .form-row input.input-text,
.woocommerce-MyAccount-content .woocommerce-form-row input.input-text {
    width: 100%;
    height: 48px;
    padding: 0 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    color: var(--dark);
    background: var(--white);
    outline: none;
    transition: border-color .2s;
    box-sizing: border-box;
    box-shadow: none;
    float: none;
}

.woocommerce-MyAccount-content .form-row input.input-text:focus,
.woocommerce-MyAccount-content .woocommerce-form-row input.input-text:focus {
    border-color: var(--primary);
    box-shadow: none;
}

/* Select (country, state) */
.woocommerce-MyAccount-content .form-row select,
.woocommerce-MyAccount-content .woocommerce-form-row select {
    width: 100%;
    height: 48px;
    padding: 0 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    color: var(--dark);
    background: var(--white);
    outline: none;
    transition: border-color .2s;
    box-sizing: border-box;
    box-shadow: none;
    appearance: none;
    cursor: pointer;
}

.woocommerce-MyAccount-content .form-row select:focus,
.woocommerce-MyAccount-content .woocommerce-form-row select:focus {
    border-color: var(--primary);
    box-shadow: none;
}

/* Hint text under display name in edit-account */
.woocommerce-MyAccount-content .woocommerce-form-row em,
.woocommerce-MyAccount-content .form-row em {
    display: block;
    font-size: 12px;
    color: var(--gray-text);
    margin-top: 6px;
    font-style: normal;
}

/* Two-column layout for billing address (first-name / last-name) */
.woocommerce-address-fields__field-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.woocommerce-address-fields__field-wrapper .form-row {
    margin-bottom: 0;
    width: 100%;
    box-sizing: border-box;
}

.woocommerce-address-fields__field-wrapper .form-row-first,
.woocommerce-address-fields__field-wrapper .form-row-last {
    flex: 1;
    min-width: calc(50% - 10px);
    width: auto;
}

.woocommerce-address-fields__field-wrapper .form-row-wide {
    width: 100%;
    flex: none;
}

/* Two-column layout for edit-account (first-name / last-name) */
.woocommerce-EditAccountForm {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.woocommerce-EditAccountForm .form-row,
.woocommerce-EditAccountForm fieldset,
.woocommerce-EditAccountForm > p:last-child {
    width: 100%;
    margin-bottom: 0;
}

.woocommerce-EditAccountForm .form-row-first,
.woocommerce-EditAccountForm .form-row-last {
    flex: 1;
    min-width: calc(50% - 10px);
    width: auto;
}

.woocommerce-EditAccountForm .form-row-wide {
    width: 100%;
    flex: none;
}

/* Submit button row (no top margin needed, gap handles it) */
.woocommerce-address-fields > p:last-child,
.woocommerce-EditAccountForm > p:last-child {
    margin-top: 8px;
}

/* =========================================
   MY ACCOUNT — ACCOUNT DETAILS (EDIT ACCOUNT)
   ========================================= */

/* Content panel */
body .woocommerce-MyAccount-content:has(.woocommerce-EditAccountForm) {
    border: 1px solid rgba(100, 116, 139, 0.1);
    border-radius: 16px;
    padding: 40px 30px;
}

/* Form layout */
body .woocommerce-MyAccount-content .woocommerce-EditAccountForm {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 10px;
    margin: 0;
    padding: 0;
}

/* Hide float-clear divs */
body .woocommerce-MyAccount-content .woocommerce-EditAccountForm .clear {
    display: none;
}

/* Section header: "My information" */
.account-edit-section-header {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1 1 100%;
    width: 100%;
}

.account-edit-section-header svg {
    width: 25px;
    height: 25px;
    flex-shrink: 0;
    stroke: #2e2e2e;
}

.account-edit-section-header span {
    font-size: 24px;
    font-weight: 600;
    color: #2e2e2e;
    line-height: 1.25;
}

/* Form rows */
body .woocommerce-MyAccount-content .woocommerce-EditAccountForm .form-row {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 0;
    padding: 0;
    float: none;
    clear: none;
    width: auto;
}

/* Side-by-side (first + last name) */
body .woocommerce-MyAccount-content .woocommerce-EditAccountForm .form-row-first,
body .woocommerce-MyAccount-content .woocommerce-EditAccountForm .form-row-last {
    flex: 1 1 calc(50% - 5px);
}

/* Full-width fields */
body .woocommerce-MyAccount-content .woocommerce-EditAccountForm .form-row-wide {
    flex: 1 1 100%;
}

/* Labels */
body .woocommerce-MyAccount-content .woocommerce-EditAccountForm .form-row label {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.4;
    margin: 0;
    display: block;
}

body .woocommerce-MyAccount-content .woocommerce-EditAccountForm .form-row label .required {
    color: #d4183d;
    font-weight: 600;
}

/* Inputs */
body .woocommerce-MyAccount-content .woocommerce-EditAccountForm input.input-text {
    width: 100%;
    height: 52px;
    padding: 16px;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.4);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 300;
    color: #1a1a1a;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
    margin: 0;
    outline: none;
    box-shadow: none;
}

body .woocommerce-MyAccount-content .woocommerce-EditAccountForm input.input-text::placeholder {
    color: rgba(26, 26, 26, 0.4);
}

body .woocommerce-MyAccount-content .woocommerce-EditAccountForm input.input-text:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(47, 128, 237, 0.1);
}

/* Display name hint text */
body .woocommerce-MyAccount-content .woocommerce-EditAccountForm #account_display_name_description {
    font-size: 12px;
    font-weight: 300;
    color: #64748b;
    line-height: 1.4;
    display: block;
    margin-top: -4px;
}

body .woocommerce-MyAccount-content .woocommerce-EditAccountForm #account_display_name_description em {
    font-style: normal;
}

/* Password input wrapper */
body .woocommerce-MyAccount-content .woocommerce-EditAccountForm .password-input {
    position: relative;
    display: block;
}

body .woocommerce-MyAccount-content .woocommerce-EditAccountForm .password-input input.input-text {
    padding-right: 50px;
}

/* Show/hide password toggle */
body .woocommerce-MyAccount-content .woocommerce-EditAccountForm .show-password-input {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
    outline: none;
}

body .woocommerce-MyAccount-content .woocommerce-EditAccountForm .show-password-input::before {
    content: '';
    display: block;
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='rgba(26,26,26,0.4)' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8z'/%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* Fieldset (Change Password section — divider + extra gap) */
body .woocommerce-MyAccount-content .woocommerce-EditAccountForm fieldset {
    flex: 1 1 100%;
    border: none;
    border-top: 1px solid #f0f0f0;
    margin: 40px 0 0;
    padding: 40px 0 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Legend (Change Password heading with icon) */
body .woocommerce-MyAccount-content .woocommerce-EditAccountForm fieldset legend {
    font-size: 24px;
    font-weight: 600;
    color: #2e2e2e;
    line-height: 1.25;
    margin: 0;
    padding: 0;
    float: none;
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    margin-bottom: 0;
}

body .woocommerce-MyAccount-content .woocommerce-EditAccountForm fieldset legend svg {
    width: 25px;
    height: 25px;
    flex-shrink: 0;
    stroke: #2e2e2e;
}

/* Password fields — left-aligned, ~half width */
body .woocommerce-MyAccount-content .woocommerce-EditAccountForm fieldset .form-row {
    max-width: 510px;
}

body .woocommerce-MyAccount-content .woocommerce-EditAccountForm fieldset .form-row label {
    font-size: 14px;
}

/* Save button row */
body .woocommerce-MyAccount-content .woocommerce-EditAccountForm > p:last-child {
    flex: 1 1 100%;
    margin: 0;
    padding: 0;
}

/* Save button */
body .woocommerce-MyAccount-content .woocommerce-EditAccountForm button[name="save_account_details"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 510px;
    max-width: 100%;
    height: 50px;
    padding: 0 24px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    text-transform: capitalize;
    transition: background 0.2s;
    box-shadow: none;
    text-shadow: none;
    letter-spacing: 0;
}

body .woocommerce-MyAccount-content .woocommerce-EditAccountForm button[name="save_account_details"]:hover {
    background: #1a6fd8;
    color: white;
}

/* =========================================
   LOGIN / REGISTER PAGES
   ========================================= */
.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray);
    padding: 40px 20px;
}

.auth-card {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, .1);
    padding: 48px 40px;
    width: 100%;
    max-width: 440px;
}

.auth-card__title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    text-align: center;
}

.auth-card__subtitle {
    font-size: 15px;
    color: var(--gray-text);
    text-align: center;
    margin-bottom: 32px;
}

.auth-divider {
    height: 0.5px;
    background: rgba(100, 116, 139, 0.5);
    width: 100%;
}

.auth-social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    height: auto;
    padding: 10px 16px;
    border: none;
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 300;
    cursor: pointer;
    transition: opacity .15s;
    background: #333;
    color: #fff;
}

.auth-social-btn:hover {
    opacity: 0.9;
}

.auth-card__footer {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: var(--gray-text);
}

.auth-card__footer a {
    color: var(--primary);
    font-weight: 500;
}

/* Login & Register Modals */
.login-modal,
.register-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
}

.register-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.3);
}

.register-modal__close {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    flex-shrink: 0;
}

.register-modal__close:hover svg path {
    stroke: #64748b;
}

.register-modal__box {
    position: relative;
    z-index: 2;
}

.login-modal.open,
.register-modal.open {
    display: flex;
}

.login-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.3);
}

.login-modal__close {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    flex-shrink: 0;
}

.login-modal__close:hover svg path {
    stroke: #64748b;
}

/* =========================================
   BLOG PAGE
   ========================================= */
.blog-page {
    padding: 60px 0;
}

.blog-featured {
    margin-bottom: 60px;
}

.blog-featured__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.blog-featured__image {
    aspect-ratio: 4/3;
    overflow: hidden;
}

.blog-featured__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-featured__content {
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
}

.blog-featured__tag {
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-featured__title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
}

.blog-featured__excerpt {
    font-size: 15px;
    color: var(--gray-text);
    line-height: 1.7;
}

.blog-featured__meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 13px;
    color: var(--gray-text);
}

.blog-grid {
}

.blog-grid__title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 32px;
}

.blog-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.blog-card {
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
}

.blog-card__image {
    aspect-ratio: 3/2;
    overflow: hidden;
    background: var(--gray);
}

.blog-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s;
}

.blog-card:hover .blog-card__image img {
    transform: scale(1.04);
}

.blog-card__body {
    padding: 20px;
}

.blog-card__tag {
    font-size: 11px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.blog-card__title {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 8px;
}

.blog-card__title a {
    color: var(--dark);
}

.blog-card__title a:hover {
    color: var(--primary);
}

.blog-card__meta {
    font-size: 12px;
    color: var(--gray-text);
    margin-bottom: 12px;
}

.blog-card__excerpt {
    font-size: 13px;
    color: var(--gray-text);
    line-height: 1.6;
    margin-bottom: 14px;
}

/* =========================================
   SEARCH RESULTS
   ========================================= */
.search-page {
    padding: 60px 0;
}

.search-page__header {
    margin-bottom: 40px;
}

.search-page__title {
    font-size: 28px;
    font-weight: 700;
}

.search-page__count {
    font-size: 15px;
    color: var(--gray-text);
    margin-top: 6px;
}

.search-empty {
    text-align: center;
    padding: 80px 0;
}

.search-empty__icon {
    font-size: 64px;
    margin-bottom: 24px;
}

.search-empty__title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.search-empty__text {
    font-size: 16px;
    color: var(--gray-text);
    margin-bottom: 32px;
}

/* =========================================
   THANK YOU PAGE
   ========================================= */
.thankyou-page {
    padding: 80px 0;
    text-align: center;
}

.thankyou-icon {
    font-size: 80px;
    margin-bottom: 24px;
}

.thankyou-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 16px;
}

.thankyou-subtitle {
    font-size: 18px;
    color: var(--gray-text);
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.thankyou-details {
    background: var(--gray);
    border-radius: 12px;
    padding: 32px;
    max-width: 600px;
    margin: 0 auto 40px;
    text-align: left;
}

.thankyou-details__row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 15px;
}

.thankyou-details__row:last-child {
    border-bottom: none;
}

.thankyou-details__row strong {
    font-weight: 600;
}

/* =========================================
   WHATSAPP FLOAT
   ========================================= */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 500;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .2);
    text-decoration: none;
    font-size: 28px;
    transition: transform .2s;
}

.whatsapp-float img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.whatsapp-float:hover {
    transform: scale(1.08);
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media screen and (max-width: 1400px) {
    .container {
        padding: 0 80px;
    }

    .hero__inner {
        margin: 20px auto 0;
    }

    .hero__title {
        font-size: 56px;
        line-height: 1.15;
    }

    .hero__label {
        font-size: 24px;
    }

    .who-we-are {
        margin: 0 20px 48px;
    }

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

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

    .footer__main .container {
        grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
        gap: 32px;
    }

    .features__inner {
        grid-template-columns: 440px 1fr;
    }

    .header__search {
        width: auto;
        flex: 1;
    }
}

@media screen and (max-width: 1700px) and (min-width: 993px) {
    .also-bought-slider .slick-prev {
        left: 8px;
    }

    .also-bought-slider .slick-next {
        right: 8px;
    }



    .hero__arrow--left {
        left: 8px;
    }

    .products-slider .slick-prev {
        left: 8px;
    }

    .products-slider .slick-next {
        right: 8px;
    }

    .hero__arrow--right {
        right: 8px;
    }


}

@media screen and (max-width: 1450px) and (min-width: 993px) {
    .header__search {
        position: static;
    }
    .mega-menu {
        width: calc(100vw - 20px);
        left: 50%;
        transform: translate(-50%, 0);
    }
}

@media screen and (max-width: 1200px) {
    .container {
        padding: 0 40px;
    }

    .hero__inner {
        margin: 16px auto 0;
    }

    .hero__title {
        font-size: 48px;
        white-space: normal;
    }

    .hero__content {
        padding: 60px 60px;
    }

    .who-we-are {
        margin: 0 20px 48px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .reviews__grid {
        grid-template-columns: 1fr 1fr;
    }

    .checkout-page__layout {
        grid-template-columns: 1fr 300px;
    }

    .blog-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}
body .account-layout-login > .woocommerce {
    grid-template-columns: 400px 1fr;
}
@media screen and (max-width: 992px) {
    .also-bought-slider .slick-prev {
        left: 8px;
    }

    .also-bought-slider .slick-next {
        right: 8px;
    }

    .products-slider .slick-prev {
        left: 8px;
    }

    .products-slider .slick-next {
        right: 8px;
    }

    .mega-menu__accordion.active {
        display: flex;
        flex-direction: column;
        gap: 12px;
        padding: 12px 0 4px;
    }

    .mega-menu__main {
        display: none;
    }

    .mega-menu__section {
        width: 100%;
        max-width: 600px;
    }

    .mega-menu__accordion .mega-menu__products {
        gap: 10px;
    }

    .mega-menu__accordion .mega-menu__product {
        width: calc(50% - 5px);
    }

    .mega-menu__accordion .mega-menu__product-img {
        height: 130px;
    }

    .container {
        padding: 0 20px;
    }

    .hero__inner {
        margin: 12px auto 0;
        height: 400px;
    }

    .hero__title {
        font-size: 38px;
        line-height: 1.1;
        white-space: normal;
    }

    .hero__label {
        font-size: 18px;
    }

    .hero__content {
        padding: 40px 40px;
    }

    .hero__subtitle {
        font-size: 16px;
        line-height: 1.5;
    }

    .hero__arrow--left {
        left: 8px;
    }

    .hero__arrow--right {
        right: 8px;
    }

    .header__topbar {
        display: none;
    }

    .header__topmenu {
        display: none;
    }

    .header__topmenu-burger {
        display: flex;
    }

    .header__main {
        height: auto;
        padding: 14px 0;
    }

    .header__left {
        flex: 1;
        gap: 8px;
    }

    .header__search {
        width: auto;
        flex: 1;
        max-width: none;
    }

    .header__logo img {
        width: 140px;
        height: auto;
    }

    .header__burger {
        display: flex;
        margin-left: 10px;
        gap: 4px;
        width: 33px;
        height: 33px;
        padding: 7px 6px;
        background: var(--primary);
        border-radius: 8px;
    }

    .who-we-are {
        margin: 0 20px 40px;
    }

    .lifestyle__grid {
        grid-template-columns: 1fr;
    }

    .lifestyle__item--large {
        height: 320px;
    }

    .lifestyle__row {
        flex-direction: column;
        height: auto;
    }

    .lifestyle__row .lifestyle__item {
        width: 100%;
        height: 240px;
    }

    .features__left {
        height: auto;
        min-height: 420px;
    }

    .newsletter__inner .container {
        align-items: center;
    }

    .newsletter__content {
        align-items: center;
    }

    .newsletter__form-wrap {
        width: 100%;
    }

    .faq-banner {
        margin: 0 20px;
        height: auto;
        padding: 32px 0;
    }

    .faq-banner__title {
        font-size: 26px;
    }

    .trust-bar__list {

    }

    .trust-bar__item {
        border-right: none;
    }

    .features__inner {
        grid-template-columns: 1fr;
    }

    .who-we-are {
        margin: 0 16px 40px;
    }

    .who-we-are__inner {
        padding: 32px 24px;
    }

    .who-we-are__title {
        font-size: 28px;
    }

    .who-we-are__text {
        font-size: 15px;
    }

    .who-we-are__bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .who-we-are__cards {
        flex-direction: column;
        width: 100%;
    }

    .who-we-are__card {
        width: 100%;
        flex-direction: row;
        gap: 16px;
        align-items: center;
    }

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

    .woocommerce {
        flex-direction: column;
        gap: 16px;
    }

    .woocommerce-MyAccount-navigation {
        width: 100%;
        flex-shrink: unset;
        border-radius: 12px;
    }

    .account-sidebar-name {
        padding: 20px 20px 14px;
        font-size: 20px;
        text-align: left;
        border-bottom: 1px solid rgba(100, 116, 139, 0.1);
    }

    /* Nav → horizontal scrollable tabs */
    .woocommerce-MyAccount-navigation ul {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .woocommerce-MyAccount-navigation ul::-webkit-scrollbar {
        display: none;
    }

    .woocommerce-MyAccount-navigation-link {
        border-bottom: none;
        border-right: 1px solid rgba(100, 116, 139, 0.1);
        flex-shrink: 0;
    }

    .woocommerce-MyAccount-navigation-link:last-child {
        border-right: none;
    }

    .woocommerce-MyAccount-navigation-link a {
        white-space: nowrap;
        padding: 14px 18px;
        font-size: 14px;
    }

    .woocommerce-MyAccount-navigation-link.is-active a {
        border-left: none;
        border-bottom: 3px solid var(--primary);
        padding-left: 18px;
        background: white;
    }

    .account-welcome {
        font-size: 18px;
        padding: 22px 24px;
        border-radius: 12px;
        gap: 14px;
        margin-bottom: 16px;
    }

    .account-page {
        padding: 32px 0;
    }

    .account-page__header {
        margin-bottom: 28px;
    }

    .account-page__title {
        font-size: 32px;
    }

    .account-page__subtitle {
        font-size: 16px;
    }

    .woocommerce-MyAccount-content > .account-overview-title {
        font-size: 20px;
        padding: 40px 24px 20px;
    }

    .account-overview-cards {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
        padding: 0 24px 24px;
    }

    .account-overview-card {
        height: 180px;
    }

    .newsletter-block {
        padding: 20px 24px 40px;
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .newsletter-block .newsletter-block__unsub {
        margin-left: 0;
        margin-top: 6px;
    }

    .newsletter-block__code {
        margin: 6px 0 10px;
    }

    .product-page__layout {
        grid-template-columns: 1fr;
    }

    .checkout-page__layout {
        grid-template-columns: 1fr;
    }

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

    .blog-featured__inner {
        grid-template-columns: 1fr;
    }

    .reviews__grid {
        grid-template-columns: 1fr;
    }

    .contact-hero__inner .container {
        grid-template-columns: 1fr;
    }

    .contact-form-section .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .account-overview-cards {
        grid-template-columns: 1fr 1fr;
    }

    .newsletter__inner .container {
        flex-direction: column;
        gap: 24px;
    }

    .cta-banner__inner .container {
        flex-direction: column;
        gap: 20px;
    }

    .footer__main .container {
        grid-template-columns: 1fr 1fr;
    }

    .mega-menu {
        width: calc(100vw - 40px);
        max-height: calc(100vh - 130px);
        overflow-y: auto;
    }

    .mega-menu__product {
        width: calc(50% - 10px);
    }


    /*    middle screen */
    /* Search form collapsed to 0, mega-menu opens via burger */
    .header__search {
        width: 0;
        min-width: 0;
        overflow: hidden;
        flex: none;
        padding: 0;
        gap: 0;
    }

    /* Mega-menu fixed overlay when open (breaks out of 0-width parent) */
    .header__search .mega-menu.open {
        height: 100%;
        position: fixed !important;
        top: 70px;
        left: 0;
        right: 0;
        width: 100vw !important;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        border-radius: 0;
        flex-direction: column;
        box-shadow: 0 16px 40px rgba(0, 0, 0, .2);
    }

    .header__search-mob {
        display: flex;
    }

    /*    middle screen */

}

@media screen and (max-width: 768px) {
    body .account-layout > .woocommerce > aside, body .account-layout > .woocommerce > .woocommerce-MyAccount-navigation {
        width: 100%;
    }

    body .account-layout-login > .woocommerce {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 30px;
    }
    body #newsletter-unsubscribe-btn {
        margin-left: 0;
    }

    .account-page__title {
        font-size: 26px;
    }

    .account-page__subtitle {
        font-size: 14px;
    }

    .account-sidebar-name {
        padding: 18px 16px 12px;
        font-size: 18px;
    }

    .woocommerce-MyAccount-navigation-link a {
        padding: 12px 16px;
        font-size: 13px;
    }

    .woocommerce-MyAccount-navigation-link.is-active a {
        padding-left: 16px;
    }

    .account-welcome {
        font-size: 16px;
        padding: 18px 16px;
        gap: 12px;
    }

    .woocommerce-MyAccount-content > .account-overview-title {
        font-size: 18px;
        padding: 32px 20px 16px;
    }

    .account-overview-cards {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        padding: 0 20px 20px;
    }

    .account-overview-card {
        height: 160px;
        gap: 10px;
    }

    .account-overview-card__icon {
        font-size: 28px;
    }

    .account-overview-card__text {
        font-size: 13px;
    }

    .newsletter-block {
        padding: 16px 20px 32px;
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .newsletter-block .newsletter-block__unsub {
        margin-left: 0;
    }

    .newsletter-block__code {
        margin: 4px 0 8px;
    }

    .hero__title {
        font-size: 28px;
    }

    .hero__inner {
        height: 320px;
    }

    .hero__content {
        padding: 24px;
    }

    .hero__label {
        font-size: 14px;
    }

    .hero__subtitle {
        font-size: 14px;
        display: none;
    }

    .products-grid {
        grid-template-columns: 1fr 1fr;
    }

    .blog-cards {
        grid-template-columns: 1fr 1fr;
    }

    .footer__main .container {
        grid-template-columns: 1fr;
    }

    .footer__bottom .container {
        flex-direction: column-reverse;
        gap: 12px;
        text-align: center;
    }

    .form__row {
        grid-template-columns: 1fr;
    }

    body .woocommerce-MyAccount-content:has(.account-orders-table) {
        padding: 14px;
        border-radius: 8px;
        width: 100%;
    }
    body .account-layout > .woocommerce > .woocommerce-MyAccount-content {
        width: 100%;
    }
    body .woocommerce table.shop_table_responsive tr:nth-child(2n) td, body .woocommerce-page table.shop_table_responsive tr:nth-child(2n) td {
        background: rgba(255, 255, 255, 0);
    }
    body .woocommerce-MyAccount-content .account-orders-table .woocommerce-orders-table__header {
        font-size: 13px !important;
        padding: 10px 12px;
    }

    body .woocommerce-MyAccount-content .account-orders-table .woocommerce-orders-table__cell {
        font-size: 13px !important;
        padding: 12px;
    }

    body .woocommerce-MyAccount-content .account-orders-table .woocommerce-orders-table__cell-order-number a {
        font-size: 13px;
    }

    body .woocommerce-MyAccount-content .account-orders-table .woocommerce-orders-table__cell-order-status {
        font-size: 12px !important;
    }

    body .woocommerce-MyAccount-content a.woocommerce-button.view {
        padding: 6px 12px;
        font-size: 12px;
        border-radius: 6px;
    }

    /* Addresses — mobile */
    body .woocommerce-MyAccount-content:has(.woocommerce-Addresses) {
        padding: 14px;
        border-radius: 8px;
        gap: 16px;
    }

    body .woocommerce-MyAccount-content:has(.woocommerce-Addresses) > p {
        font-size: 16px;
    }

    body .woocommerce-MyAccount-content .woocommerce-Addresses {
        flex-direction: column;
        gap: 12px;
    }
    .woocommerce .col2-set .col-1, .woocommerce-page .col2-set .col-1 {
        width: 100%;
    }
    .woocommerce .col2-set .col-2, .woocommerce-page .col2-set .col-2 {
        width: 100%;
    }
    body .woocommerce-MyAccount-content .woocommerce-Address-title h2 {
        font-size: 16px;
    }

    body .woocommerce-MyAccount-content .woocommerce-Address address {
        font-size: 14px;
    }

    body .woocommerce-MyAccount-content .woocommerce-Address .edit {
        font-size: 14px;
        padding: 12px 16px;
    }

    /* Address edit form — mobile */
    body .woocommerce-MyAccount-content form:has(.woocommerce-address-fields) {
        padding: 14px;
        border-radius: 6px;
    }

    body .woocommerce-MyAccount-content form:has(.woocommerce-address-fields) h2 {
        font-size: 18px;
        margin-bottom: 14px;
        padding-bottom: 14px;
    }

    body .woocommerce-MyAccount-content .woocommerce-address-fields__field-wrapper {
        gap: 14px 0;
    }

    body .woocommerce-MyAccount-content .woocommerce-address-fields__field-wrapper .form-row:not(.form-row-wide) {
        flex: 1 1 100%;
    }

    body .woocommerce-MyAccount-content .woocommerce-address-fields__field-wrapper .form-row {
        gap: 8px;
    }

    body .woocommerce-MyAccount-content .woocommerce-address-fields__field-wrapper label {
        font-size: 14px;
    }

    body .woocommerce-MyAccount-content .woocommerce-address-fields input.input-text {
        height: 44px;
        padding: 12px;
        font-size: 13px;
    }

    body .woocommerce-MyAccount-content .woocommerce-address-fields .select2-container .select2-selection--single {
        height: 44px;
        padding: 0 12px;
    }

    body .woocommerce-MyAccount-content .woocommerce-address-fields .select2-container .select2-selection__rendered {
        font-size: 13px;
    }

    body .woocommerce-MyAccount-content .woocommerce-address-fields .select2-container .select2-selection__arrow {
        right: 12px;
    }

    body .woocommerce-MyAccount-content .woocommerce-address-fields > p {
        margin-top: 16px;
    }

    body .woocommerce-MyAccount-content .woocommerce-address-fields .button[name="save_address"] {
        width: 100%;
        font-size: 16px;
        height: 46px;
    }

    /* Order details — 768px tablet (inline layout: price right of item) */
    body .woocommerce-MyAccount-content:has(.woocommerce-order-details) {
        padding: 20px;
        border-radius: 10px;
        gap: 20px;
    }

    body .woocommerce-MyAccount-content:has(.woocommerce-order-details) > p {
        font-size: 17px;
    }

    body .woocommerce-MyAccount-content:has(.woocommerce-order-details) .order-item-thumb {
        width: 88px;
        height: 88px;
        border-radius: 7px;
    }

    body .woocommerce-MyAccount-content:has(.woocommerce-order-details) .order-item-thumb__img {
        width: 88px;
        height: 88px;
    }

    body .woocommerce-MyAccount-content:has(.woocommerce-order-details) .order-item-info > a {
        font-size: 16px;
    }

    body .woocommerce-MyAccount-content .woocommerce-order-details {
        gap: 30px;
    }

    body .woocommerce-MyAccount-content .woocommerce-table--order-details td.product-total {
        font-size: 20px;
    }

    body .woocommerce-MyAccount-content .woocommerce-table--order-details tfoot tr:nth-child(5) th,
    body .woocommerce-MyAccount-content .woocommerce-table--order-details tfoot tr:nth-child(5) td {
        font-size: 20px;
    }

    body .woocommerce-MyAccount-content .woocommerce-customer-details {
        padding-top: 20px;
        gap: 12px;
    }

    body .woocommerce-MyAccount-content .woocommerce-column__title {
        font-size: 18px;
    }

    /* Account details edit form — mobile */
    body .woocommerce-MyAccount-content:has(.woocommerce-EditAccountForm) {
        padding: 14px;
        border-radius: 8px;
    }

    body .woocommerce-MyAccount-content .woocommerce-EditAccountForm {
        gap: 14px 0;
    }

    .account-edit-section-header span {
        font-size: 18px;
    }

    body .woocommerce-MyAccount-content .woocommerce-EditAccountForm .form-row-first,
    body .woocommerce-MyAccount-content .woocommerce-EditAccountForm .form-row-last {
        flex: 1 1 100%;
    }

    body .woocommerce-MyAccount-content .woocommerce-EditAccountForm .form-row label {
        font-size: 14px;
    }

    body .woocommerce-MyAccount-content .woocommerce-EditAccountForm input.input-text {
        height: 44px;
        padding: 12px;
        font-size: 13px;
    }

    body .woocommerce-MyAccount-content .woocommerce-EditAccountForm fieldset {
        margin-top: 20px;
        padding-top: 20px;
        gap: 14px;
    }

    body .woocommerce-MyAccount-content .woocommerce-EditAccountForm fieldset legend {
        font-size: 18px;
    }

    body .woocommerce-MyAccount-content .woocommerce-EditAccountForm fieldset .form-row {
        max-width: 100%;
    }

    body .woocommerce-MyAccount-content .woocommerce-EditAccountForm fieldset .form-row label {
        font-size: 13px;
    }

    body .woocommerce-MyAccount-content .woocommerce-EditAccountForm button[name="save_account_details"] {
        width: 100%;
        font-size: 16px;
        height: 46px;
    }
}

@media screen and (max-width: 620px) {
    .products-grid {
        grid-template-columns: 1fr;
    }

    .blog-cards {
        grid-template-columns: 1fr;
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }

    .hero__title {
        font-size: 24px;
    }

    .auth-card {
        padding: 32px 24px;
    }

    .mini-cart__panel {
        width: 100%;
    }
}

@media screen and (max-width: 1200px) {
    .category-card__content {
        max-width: calc(100% - 20px);
    }
}
.hero-inner-textual {
    width: 100%;
    padding: 50px 0;
}
.hero-inner-textual .hero-inner__inner {
    width: 100%;

}
.hero-inner-textual .hero-inner__content {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-inner-textual .hero-inner__content h1 {
    font-size: 48px;
    font-weight: 700;
    color: #000;
    line-height: 1.4;
    margin: 24px 0;
    text-align: center;
}
.hero-inner-textual--404 {
    position: relative;
    min-height: 460px;
    display: flex;
    align-items: center;
    background:
            linear-gradient(rgba(6, 15, 28, .55), rgba(6, 15, 28, .65)),
            url('../images/404.png') center / cover no-repeat;
}

.hero-inner-textual--404 .container {
    position: relative;
}

.hero-inner__content--404 {
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-inner__code {
    font-size: 120px;
    font-weight: 700;
    line-height: 1;
    color: var(--primary);
    margin: 0;
}
.hero-inner-textual--404 .hero-inner__code {
    color: #fff;
    text-shadow: 0 4px 24px rgba(0, 0, 0, .35);
}
.hero-inner-textual--404 .hero-inner__content h1 {
    color: #fff;
    text-align: center;
    margin: 16px 0;
}
.hero-inner__content--404 .hero-inner__text {
    max-width: 460px;
    margin: 0 auto 24px;
    text-align: center;
    color: var(--gray-text);
}
.hero-inner-textual--404 .hero-inner__content--404 .hero-inner__text {
    color: rgba(255, 255, 255, .8);
}
.hero-inner__content--404 .hero-inner__btn {
    margin-top: 8px;
}

/* ----- 404 FOGGED GLASS ANIMATION ----- */
.hero-inner-textual--404 {
    overflow: hidden;
}

.fog404__canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
    transition: opacity .9s ease;
}

.fog404__canvas.is-done {
    opacity: 0;
}

.fog404__cloth {
    position: absolute;
    left: 0;
    top: 0;
    width: 150px;
    z-index: 4;
    pointer-events: none;
    opacity: 0;
    transition: opacity .4s ease;
    will-change: transform;
    filter: drop-shadow(0 10px 18px rgba(0, 0, 0, .25));
}

.fog404__cloth.is-active {
    opacity: 1;
}

.fog404__cloth.is-done {
    transition: transform 1s ease-in, opacity 1s ease-in;
    opacity: 0;
}

@media screen and (max-width: 620px) {
    .fog404__cloth { width: 100px; }
}
.text-page-textual {
    width: 100%;
    padding: 50px 0;
    border-top: 1px solid rgba(0, 0, 0, .1);
}
.text-page-textual .text-page__inner {
    width: 100%;
}
.text-page-textual .article-body {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}
.text-page-textual .blog-post__content {
    width: 100%;
    max-width: 1000px;
}
@media screen and (max-width: 480px) {
    .hero-inner-textual {
        padding: 30px 0;
    }
    .text-page-textual {
        padding: 30px 0;
    }
    .hero-inner-textual .hero-inner__content h1 {
        font-size: 32px;
        margin: 12px 0;
    }
    .hero-inner__code {
        font-size: 72px;
    }
    .hero-inner-textual--404 {
        min-height: 320px;
    }
    .hero--shop .hero__badge {
        display: flex;
        top: 15px;
        right: 15px;
        width: 43px;
        height: 43px;
        font-size: 15px;
    }
    .account-page {
        padding: 16px 0 32px;
    }

    .account-page__header {
        margin-bottom: 20px;
    }

    .account-page__title {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .account-page__subtitle {
        font-size: 13px;
    }

    .woocommerce {
        gap: 10px;
    }

    .woocommerce-MyAccount-navigation {
        border-radius: 10px;
    }

    .account-sidebar-name {
        padding: 14px 14px 10px;
        font-size: 16px;
    }

    .woocommerce-MyAccount-navigation-link a {
        padding: 11px 12px;
        font-size: 12px;
        gap: 6px;
    }

    .woocommerce-MyAccount-navigation-link a svg {
        width: 16px;
        height: 16px;
    }

    .woocommerce-MyAccount-navigation-link.is-active a {
        padding-left: 12px;
        border-bottom-width: 2px;
    }

    .account-welcome {
        font-size: 14px;
        padding: 14px 16px;
        gap: 10px;
        border-radius: 10px;
        margin-bottom: 10px;
    }

    .woocommerce-MyAccount-content > .account-overview-title {
        font-size: 15px;
        padding: 22px 14px 12px;
        border-radius: 8px 8px 0 0;
    }

    .account-overview-cards {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 0 14px 14px;
    }

    .account-overview-card {
        height: auto;
        min-height: 64px;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        padding: 14px 16px;
        gap: 16px;
        border-radius: 8px;
        text-align: left;
    }

    .account-overview-card__icon {
        font-size: 24px;
        flex-shrink: 0;
    }

    .account-overview-card__text {
        font-size: 13px;
        text-align: left;
    }

    .newsletter-block {
        padding: 12px 14px 22px;
        border-radius: 0 0 8px 8px;
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .newsletter-block .account-overview-title {
        font-size: 14px;
    }

    .newsletter-block__code {
        font-size: 15px;
        letter-spacing: 0.5px;
        margin: 8px 0 12px;
    }

    .newsletter-block__unsub {
        font-size: 13px;
        margin-left: 0;
        margin-top: 4px;
    }

    .feature-item {
        padding: 10px;
    }

    .newsletter__form {
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 20px;
    }

    .newsletter__input {
        padding: 14px 20px;
        width: 100%;
    }

    .faq-banner__content {
        padding-left: 24px;
        gap: 10px;
    }

    .reviews__header {
        margin-bottom: 20px;
    }

    .newsletter__policy {
        margin-top: 20px;
    }

    /* ===================================================
     1. HEADER (Figma: 70px, logo centered, burger left)
     =================================================== */
    .header__main {
        height: 70px;
        padding: 0;
    }

    .header__main .container {
        padding: 0 10px;
        position: relative;
        justify-content: space-between;
    }

    .header__left {
        flex: 0 0 auto;
        order: 0;
        gap: 0;
    }

    /* Logo — exactly centered in viewport */
    .header__logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .header__logo img {
        width: 134px;
        height: auto;
    }


    .mega-menu__section {
        padding: 24px 20px;
        gap: 24px;
        width: 100%;
    }

    .mega-menu__title {
        font-size: 16px;
    }

    .mega-menu__tab {
        font-size: 14px;
    }

    .mega-menu__links a {
        font-size: 14px;

    }
    .mega-menu__links a.mega-menu__cta-btn {
        color: #fff;
    }
    .mega-menu__cta-btn {
        color: #fff;
    }

    /* mobile: hide desktop panel, show inline accordions */
    .mega-menu__main {
        display: none !important;
    }


    .mega-menu__cta-btn {
        width: 100%;
        box-sizing: border-box;
    }

    .header__actions {
        order: 1;
        gap: 12px;
        flex-shrink: 0;
    }


    .header__cart img {
        width: 19px;
        height: 24px;
    }

    .header__account img {
        width: 24px;
        height: 24px;
    }

    /* mini-cart: full-width below header on mobile */
    .mini-cart__panel {
        width: 100%;
        top: 70px;
        box-shadow: none;
    }

    .mini-cart__header {
        padding: 20px 10px 10px;
    }

    .mini-cart__subheader {
        padding: 6px 10px;
    }

    .mini-cart__body {
        padding: 0 10px;
    }

    .mini-cart__summary {
        padding: 16px 10px 20px;
    }

    /* bundle on mobile: hide inline price-row, hide desktop-only total; show mobile block */
    .mini-cart__bundle-sub-info {
        flex-direction: column;
        gap: 4px;
    }

    .mini-cart__bundle-sub .mini-cart__price-row {
        display: none;
    }

    .mini-cart__bundle-price {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        gap: 6px;
        width: 100%;
    }

    .mini-cart__bundle-price .mini-cart__item-total {
        font-size: 24px;
        padding: 0;
    }

    /* Burger — blue square (Figma: #2f80ed, 33×33, rounded 8px) */
    .header__burger {
        order: -1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4px;
        width: 33px;
        height: 33px;
        padding: 7px 6px;
        background: var(--primary);
        border-radius: 8px;
        flex-shrink: 0;
    }

    .header__burger span {
        background: var(--white);
        width: 100%;
        border-radius: 2px;
    }

    /* =====================================================
     2. HERO (Figma: margin 15px, 205px, content at 39px)
     ===================================================== */
    .hero__inner {
        margin: 0 0;
        height: auto;
    }

    .hero__slides {
        height: 205px;
    }

    /* Content starts 39px from top of image (Figma: y=109 - y=70) */
    .hero__content {
        padding: 22px 16px 20px;
        gap: 5px;
        max-width: 100%;
    }

    .hero__label {
        font-size: 14px;
        font-weight: 500;
    }

    /* Figma: 22px bold, line-height ~80px → 1.05 */
    .hero__title {
        font-size: 22px;
        line-height: 1.05;
        max-width: 240px;
    }

    /* Subtitle: 10px (Figma shows it), line-height 1.4 */
    .hero__subtitle {
        font-size: 10px;
        line-height: 1.4;
        display: block;
        max-width: 203px;
    }

    /* Button: py-14 px-16, 12px text nowrap (from Figma: px-[16px] py-[14px] text-[12px] whitespace-nowrap) */
    .hero__btn {
        font-size: 12px;
        padding: 14px 16px;
        height: auto;
        min-width: auto;
        white-space: nowrap;
    }

    .hero__badge {
        display: none;
    }

    .hero__arrow--left, .hero__arrow--right {
        display: none;
    }

    /* ======================================================
     3. TRUST BAR (Figma: horizontal scroll, 46px, 393px)
     ====================================================== */
    .trust-bar {
        min-height: 46px;
        margin-top: 10px;
    }

    .trust-bar__list {

    }

    .trust-bar__list::-webkit-scrollbar {
        display: none;
    }

    .trust-bar__item {
        flex: 0 0 auto;
        flex-shrink: 0;
        padding: 14px 11px 14px 10px;
        border-right: 1px solid #f8fafc;
    }

    /* ============================================================
     4. GENERAL — container 10px, section padding 40px (Figma)
     ============================================================ */
    .container {
        padding: 0 10px;
    }

    /* Products section: py-40px from Figma inner frame */
    .products-section {
        padding: 40px 0;
    }

    /* Shop "Find Your Perfect Wipes" section: py-20px on mobile (Figma 556:8436, different from home py-40px) */
    .products-section--find {
        padding: 20px 0;
    }

    /* Section header title: 24px bold centered (Figma: text-[24px] font-bold) */
    .products-section__title {
        font-size: 24px;
        text-align: center;
    }

    .products-section__subtitle {
        font-size: 16px;
    }

    /* Gap between title and grid: 20px (Figma: y=77 - (y=40 + h=17) = 20px) */
    .products-section__header {
        margin-bottom: 20px;
    }

    .section-cta {
        margin-top: 24px;
    }

    .badge {
        font-size: 10px;
    }

    .hero__pagination {
        position: static;
        transform: none;
        justify-content: center;
        margin-top: 10px;

    }

    .hero__dot {
        background: rgb(100 116 139 / 0.4);
    }

    .hero__dot.active {
        background: #2F80ED;
    }

    /* ================================================================
     5. CATEGORIES (Figma: 373×154px, title+btn on right side, gap 10)
     ================================================================ */
    .categories-grid {
        gap: 10px;
    }

    /* Card: 154px height, rounded 16px (Figma: rounded-[16px]) */
    .category-card {
        height: 154px;
        border-radius: 16px;
    }

    .category-card__bg {
        border-radius: 16px;
    }

    .category-card__overlay {
        border-radius: 16px;
    }

    /* Content: no white bg, right-side centered (Figma: right content, vertically centered) */
    .category-card__content {
        background: transparent;
        border-radius: 0;
        padding: 0;
        gap: 10px;
        /* Right side starting at x≈191 of 373 = 44.5% from left */
        top: 50%;
        bottom: auto;
        right: 10px;
        transform: translateY(-50%);
        width: 45%;
        align-items: center;
        max-width: none;
    }

    /* Title: 16px bold white centered, wraps at mobile (Figma: text-[16px] font-bold text-white text-center) */
    .categories__title {
        font-size: 24px;
    }

    .category-card__title {
        font-size: 16px;
        font-weight: 700;
        color: var(--white);
        text-align: center;
        white-space: normal;
    }

    /* Description not in Figma mobile */
    .category-card__desc {
        display: none;
    }

    /* Button: w-[156px] p-[16px] text-[16px] from Figma mobile */
    .category-card__content .btn {
        font-size: 16px;
        height: auto;
        padding: 16px 5px;
        width: 156px;
        text-align: center;
        align-self: auto;
    }

    /* ====================================================
     6. PRODUCTS GRID — 2 columns on mobile (for shop)
     ==================================================== */
    .products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px;
    }

    /* =======================================================================
     7. BEST SELLERS — horizontal card → portrait (Figma: 177×318, portrait)
     ======================================================================= */
    /* Card: rounded-12, no extra padding, border already exists */
    .product-card--horizontal {
        grid-template-columns: 1fr;
        padding: 0;
        gap: 0;
        border-radius: 12px;
        box-shadow: none;
    }

    /* Image: exactly 175px tall, rounded top (Figma: h-[175px]) */
    .product-card--horizontal .product-card__image {
        height: 175px;
        aspect-ratio: auto;
        border-radius: 11px 11px 0 0;
        max-width: 100%;
    }

    /* Badges: back to absolute, stacked vertically (Figma: top-10 left-10, col layout) */
    .product-card--horizontal .product-card__badges {
        position: absolute;
        top: 10px;
        left: 10px;
        flex-direction: column;
        gap: 4px;
        margin-bottom: 0;
    }

    /* Badge sizes: 10px, rounded-50px (Figma: text-[10px] rounded-[50px] px-10 py-4) */
    .product-card--horizontal .badge {
        font-size: 10px;
        font-weight: 400;
        padding: 4px 10px;
        border-radius: 50px;
    }

    /* Body: flex-wrap to put price+button on one row (Figma: p-[10px] gap-[8px]) */
    .product-card--horizontal .product-card__body {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        padding: 10px;
        gap: 8px;
        justify-content: flex-start;
        align-items: center;
    }

    /* Name: full width, ORDER 1 (Figma: 12px bold, leading-[19.5px]) */
    .product-card--horizontal .product-card__name {
        flex: 0 0 100%;
        order: 1;
        font-size: 12px;
        font-weight: 700;
        line-height: 19.5px;
        max-width: none;
    }

    /* Rating: full width, ORDER 2 (Figma: stars 13px #f4b942 + count 11px #64748b) */
    .product-card--horizontal .product-card__rating {
        flex: 0 0 100%;
        order: 2;
    }

    .product-card--horizontal .rmp-results-widget {
        gap: 4px;
    }

    .product-card--horizontal .rmp-icon--ratings {
        font-size: 13px;
        letter-spacing: 1px;
    }

    .product-card--horizontal .rmp-results-widget__vote-count {
        font-size: 11px;
        letter-spacing: 1px;
        color: #64748b;
    }

    /* Price: fills remaining width on row 3, ORDER 3 (Figma: 16px ExtraBold #0f172a) */
    .product-card--horizontal .product-card__price {
        flex: 1 1 auto;
        order: 3;
        font-size: 16px;
        font-weight: 800;
        padding: 0;
        align-self: center;
    }

    /* Actions: auto-width on same row as price, ORDER 3 (Figma: w-[67px] h-[48px] cart icon) */
    .product-card--horizontal .product-card__actions {
        flex: 0 0 auto;
        order: 3;
        margin-top: 0;
        gap: 0;
        justify-content: flex-end;
        align-items: center;
    }

    /* Hide qty control (not in Figma mobile card) */
    .product-card--horizontal .qty-control {
        display: none;
    }

    /* Hide view product link (not in Figma mobile card) */
    .product-card--horizontal .product-card__link {
        display: none;
    }

    /* Cart button: 67×48px, icon only (Figma: bg-primary p-[12px] rounded-[8px] w-[67px]) */
    .product-card--horizontal .product-card__add {
        width: 67px;
        height: 48px;
        min-width: 0;
        font-size: 0;
        padding: 12px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Show cart icon (hidden by default) */
    .product-card--horizontal .product-card__add-icon {
        display: block;
        width: 19px;
        height: 24px;
        flex-shrink: 0;
    }

    /* =======================================================
     8. STOCK UP PRODUCT CARDS — compact 2-col at mobile
     ======================================================= */
    /* Hide qty control on grid cards (too crowded at ~181px card width) */
    .products-grid .qty-control {
        display: none;
    }

    /* Hide view product link on grid cards */
    .products-grid .product-card__link {
        display: none;
    }

    /* Grid layout: name+rating on top rows, price+icon-btn on same bottom row */
    .products-grid .product-card__body {
        display: grid;
        grid-template-columns: 1fr 67px;
        grid-template-areas:
            "name   name"
            "rating rating"
            "price  btn";
        padding: 8px;
        gap: 6px 8px;
    }

    .products-grid .product-card__name {
        grid-area: name;
        font-size: 12px;
        line-height: 1.3;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        overflow: hidden;
    }


    .products-grid .product-card__rating {
        grid-area: rating;
    }

    .products-grid .product-card__price-row {
        grid-area: price;
        align-self: center;
        gap: 0;
    }

    .products-grid .product-card__price {
        font-size: 16px;
    }

    /* Icon-only button: 67px, bag icon next to price (Figma mobile) */
    .products-grid .product-card__add--block {
        grid-area: btn;
        width: 67px;
        font-size: 0;
        padding: 12px;
        border-radius: 8px;
        line-height: 1;
    }

    /* Show bag icon on mobile grid cards */
    .products-grid .product-card__add-icon {
        display: block;
        width: 19px;
        height: 24px;
        flex-shrink: 0;
    }

    /* =========================================================
     9. LIFESTYLE SECTION — 2-col grid layout (Figma mobile)
     ========================================================= */
    .lifestyle__title {
        font-size: 24px;
        line-height: 1.25;
    }

    .lifestyle__subtitle {
        font-size: 14px;
    }

    .lifestyle__grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .lifestyle__col {
        display: contents;
    }

    .lifestyle__row--top {
        display: contents;
        height: auto;
    }

    .lifestyle__row--bottom {
        display: contents;
        height: auto;
    }

    .lifestyle__grid .lifestyle__item {
        height: 193px;
    }

    .lifestyle__item--w62,
    .lifestyle__item--w38,
    .lifestyle__item--w32, .lifestyle__row--bottom .lifestyle__item:first-child, .lifestyle__row--top .lifestyle__item:last-child, .lifestyle__row--top .lifestyle__item:first-child  {
        width: auto;
    }

    .lifestyle__item--w68, .lifestyle__row--bottom .lifestyle__item:last-child  {
        width: auto;
        grid-column: 1 / -1;
    }

    .lifestyle__item-label {
        font-size: 18px;
        font-weight: 600;
        bottom: 15px;
        left: 0;
        right: 0;
        text-align: center;
    }

    /* ============================================================
     10. FEATURES SECTION — compact left image at 480px
     ============================================================ */
    .whatsapp-float {
        width: 40px;
        height: 40px;
        bottom: 20px;
        right: 10px;
    }

    .features {
        padding: 48px 0;
    }

    .features__left {
        min-height: 390px;
        padding: 20px;
    }

    .features__title {
        font-size: 24px;
        text-align: center;
    }

    .features__subtitle {
        font-size: 14px;
        text-align: center;
    }

    .feature-item__title {
        font-size: 18px;
    }

    .feature-item__text {
        font-size: 14px;
    }

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

    /* ============================================================
     11. WHO WE ARE — 2-col card grid at 480px (Figma mobile)
     ============================================================ */
    .who-we-are {
        margin: 0 10px;
        padding: 32px 0;
    }

    .lifestyle {
        padding: 24px 0;
    }

    .who-we-are__inner {
        padding: 28px 10px;
    }

    .who-we-are__title {
        font-size: 24px;
    }

    .who-we-are__text {
        font-size: 16px;
    }

    .who-we-are__bottom {
        flex-direction: column-reverse;
        align-items: center;
        gap: 10px;
    }

    .who-we-are__cards {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        width: 100%;
        align-items: stretch;
    }

    .who-we-are__card {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        width: auto;
    }

    .who-we-are__card:nth-child(3) {
        grid-column: 2;
        grid-row: 1 / 3;
    }

    .who-we-are__card-icon {
        width: 54px;
        height: 54px;
    }

    .who-we-are__card-title {
        font-size: 14px;
    }

    /* ============================================================
     12. REVIEWS SECTION — horizontal scroll cards at 480px (Figma: 270px cards, gap-10)
     ============================================================ */
    .reviews {
        padding: 48px 0;
    }

    .reviews__title {
        font-size: 24px;
    }

    .reviews__subtitle {
        font-size: 14px;
        margin-top: 8px;
    }

    .reviews__header {
        margin-bottom: 20px;
    }

    .reviews__grid {
        display: flex;
        flex-direction: row;
        gap: 10px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        padding-bottom: 4px;
    }

    .reviews__grid::-webkit-scrollbar {
        display: none;
    }

    .review-card {
        flex: 0 0 270px;
        scroll-snap-align: start;
        padding: 29px;
    }

    /* ============================================================
     13. NEWSLETTER — compact title/subtitle at 480px
     ============================================================ */
    .newsletter {
        padding: 40px 0 260px;
    }

    .newsletter__bg::after {
        content: none;
    }

    .newsletter__title {
        font-size: 24px;
        line-height: 1.3;
    }

    .newsletter__subtitle {
        font-size: 14px;
    }

    /* =========================================================
     14. FAQ SECTION — compact at 480px
     ========================================================= */
    .faq-section {
        padding: 48px 0;
    }

    .faq-section__header {
        padding-top: 0;
        margin-bottom: 0;
    }

    .faq-section .faq-list {
        padding-top: 0;
    }

    .faq-banner {
        margin: 0 10px;
    }

    .faq-banner__title {
        font-size: 24px;
    }

    .faq-item__question {
        font-size: 16px;
        padding: 22px 16px;
    }

    .faq-item__answer {
        font-size: 14px;
        padding: 0 16px 14px;
    }

    /* ========================================================
     14. SLIDER — no arrows, add gap between 2 portrait cards
         Figma: 177px each, ~10px gap in 373px track
     ======================================================== */
    .products-slider .slick-slide {
        padding: 0 5px;
    }

    .products-slider .slick-prev,
    .products-slider .slick-next {
        display: none !important;
    }

    /* ==========================================================
     14. FOOTER (Figma: logo centered 175×41, tagline centered)
     ========================================================== */
    .footer .container {
        padding: 0 10px;
    }

    .footer__brand {
        align-items: center;
    }

    /* Logo: 175px width (Figma: w-[175px] h-[41px]) */
    .footer__brand-logo img {
        width: 175px;
        height: auto;
    }

    .footer__brand-tagline {
        text-align: center;
    }

    /* Social icons centered with 32px gap (Figma: gap-[32px] justify-center) */
    .footer__social {
        justify-content: center;
        gap: 32px;
    }
}

/* =========================================
   BLOG PAGE — SUBTITLE & FEATURED LAYOUT FIX
   ========================================= */
.page-hero__subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, .75);
    margin-top: 8px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.blog-card--featured {
    background: #08234d;
    border-color: #08234d;
}

.blog-card--featured .blog-card__tag {
    color: rgba(255, 255, 255, .6);
}

.blog-card--featured .blog-card__title {
    color: #fff;
}

.blog-card--featured .blog-card__title a {
    color: #fff;
}

.blog-card--featured .blog-card__title a:hover {
    color: rgba(255, 255, 255, .8);
}

.blog-card--featured .blog-card__excerpt {
    color: rgba(255, 255, 255, .7);
}

.blog-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 48px;
}

.blog-pagination__btn {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--dark);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: background .2s, color .2s;
}

.blog-pagination__btn:hover {
    background: var(--gray);
}

.blog-pagination__btn--active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

/* =========================================
   BLOG POST — LAYOUT WITH SIDEBAR
   ========================================= */
.blog-post-section {
    padding: 60px 0 80px;
}

.blog-post__layout {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 80px;
    align-items: flex-start;
}

.blog-post__content h2 {
    font-size: 32px;
    font-weight: 700;
    color: #000;
    line-height: 1.4;
    margin: 24px 0;
}

.blog-post__content h3 {
    font-size: 24px;
    font-weight: 600;
    color: #000;
    line-height: 1.4;
    margin: 0 0 16px;
}

.blog-post__content p {
    font-size: 18px;
    font-weight: 300;
    color: #000;
    line-height: 1.4;
    margin-bottom: 16px;
}

.blog-post__content ol {
    padding-left: 27px;
    font-size: 18px;
    font-weight: 300;
    color: #000;
    line-height: 1.4;
    margin-bottom: 16px;
}

.blog-post__content ol li {
    margin-bottom: 16px;
}

.blog-post__content ol li:last-child {
    margin-bottom: 0;
}

.blog-post__content blockquote {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    border: none;
    padding: 36px 20px 36px 0;
    background: transparent;
    border-radius: 0;
    font-size: 18px;
    font-weight: 300;
    font-style: italic;
    color: #000;
    line-height: 1.4;
    margin: 0;
}

.blog-post__content blockquote::before {
    content: '';
    display: block;
    width: 2px;
    align-self: stretch;
    flex-shrink: 0;
    background: var(--primary);
}

.blog-post__share {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 0;
    border-top: 1px solid var(--border);
    margin-top: 32px;
    font-weight: 600;
}

.blog-post__share a {
    width: 36px;
    height: 36px;
    background: var(--gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--dark);
}

.blog-post__author {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 0;
    font-size: 16px;
    font-weight: 500;
    color: #000;
    line-height: 1.4;
    border-top: 1px solid var(--border);
    margin-top: 4px;
}

.blog-post__author a {
    font-weight: 300;
    color: #000;
}

.blog-post__sidebar {
    position: sticky;
    top: 24px;
}

.sidebar-widget {
    background: var(--gray);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
}

.sidebar-widget__title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.sidebar-related {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sidebar-related__item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.sidebar-related__item img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.sidebar-related__title {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 4px;
    color: var(--dark);
}

.sidebar-related__link {
    font-size: 11px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sidebar-related__link:hover {
    text-decoration: underline;
}

.sidebar-newsletter .form__input {
    margin-bottom: 0;
}

.sidebar-newsletter__note {
    font-size: 12px;
    color: var(--gray-text);
    margin-top: 8px;
}

.sidebar-newsletter__note a {
    color: var(--primary);
}

/* Recommended section */
.blog-post-recommended {
    padding: 64px 0;
    background: var(--gray);
}

.blog-post-recommended__header {
    margin-bottom: 32px;
}

.blog-post-recommended__title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 6px;
}

.blog-post-recommended__subtitle {
    font-size: 14px;
    color: var(--gray-text);
}

.blog-post-recommended__footer {
    text-align: center;
    margin-top: 32px;
}

/* =========================================
   ACCOUNT — SVG NAV ICONS
   ========================================= */
.woocommerce-MyAccount-navigation-link a svg {
    flex-shrink: 0;
    transition: stroke .2s;
}

.woocommerce-MyAccount-navigation-link.is-active a svg {
    stroke: var(--primary);
}

/* =========================================
   RESPONSIVE — new components
   ========================================= */
@media screen and (max-width: 1200px) {
    .blog-post__layout {
        grid-template-columns: 1fr 320px;
        gap: 40px;
    }
}

@media screen and (max-width: 992px) {
    .blog-post__layout {
        grid-template-columns: 1fr;
    }

    .blog-post__sidebar {
        position: static;
    }

    .blog-post-recommended .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 620px) {
    .blog-post-recommended .products-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   SHOP PAGE — FILTERS ROW
   ========================================= */
.shop-filters {
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
}

.shop-filters__row {
    display: flex;
    align-items: center;
    gap: 16px;
}

.shop-filters__select {
    height: 44px;
    min-width: 160px;
    font-size: 14px;
}

.shop-filters__select--sort {
    margin-left: auto;
}

/* =========================================
   SHOP PAGE — PRODUCT GRID 4-COL
   ========================================= */
.shop-grid-section {
    padding: 48px 0;
}

.products-grid--4col {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

@media screen and (max-width: 1200px) {
    .products-grid--4col {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .products-grid--4col {
        grid-template-columns: repeat(2, 1fr);
    }

    .shop-filters__row {
        flex-wrap: wrap;
    }

    .shop-filters__select--sort {
        margin-left: 0;
    }
}

@media screen and (max-width: 480px) {
    .products-grid--4col {
        grid-template-columns: 1fr;
    }
}


/* =========================================
   CONTACT PAGE — HERO (restructured)
   ========================================= */
.contact-hero {
    position: relative;
    overflow: hidden;
}

.contact-hero__inner {
    position: relative;
    padding: 80px 0;
}

.contact-hero__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, #08234d 50%, rgba(8, 35, 77, .8));
}

.contact-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .2;
    position: absolute;
    inset: 0;
}

.contact-hero .container {
    position: relative;
    z-index: 1;
}

.contact-hero__title {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    max-width: 640px;
}

.contact-hero__subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, .75);
    max-width: 560px;
}

@media screen and (max-width: 768px) {
    .contact-hero__title {
        font-size: 28px;
    }

    .contact-hero__inner {
        padding: 56px 0;
    }
}

/* =========================================
   CONTACT PAGE — INFO CARDS (white section)
   ========================================= */
.contact-info-section {
    padding: 64px 0;
    background: #fff;
}

.contact-info-section__title {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 8px;
}

.contact-info-section__subtitle {
    text-align: center;
    color: var(--gray-text);
    margin-bottom: 48px;
}

.contact-info-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.contact-info-card {
    background: var(--gray);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
}

.contact-info-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.contact-info-card__icon--email {
    background: rgba(47, 128, 237, .12);
    color: var(--primary);
}

.contact-info-card__icon--phone {
    background: rgba(34, 197, 94, .12);
    color: #22c55e;
}

.contact-info-card__icon--location {
    background: rgba(139, 92, 246, .12);
    color: #8b5cf6;
}

.contact-info-card__icon svg {
    width: 24px;
    height: 24px;
}

.contact-info-card__title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
}

.contact-info-card__desc {
    font-size: 14px;
    color: var(--gray-text);
    margin-bottom: 12px;
}

.contact-info-card__link {
    color: var(--primary);
    font-size: 15px;
    font-weight: 500;
    display: block;
    margin-bottom: 4px;
}

.contact-info-card__note {
    font-size: 12px;
    color: var(--gray-text);
}

@media screen and (max-width: 768px) {
    .contact-info-cards {
        grid-template-columns: 1fr;
    }

    .contact-info-section {
        padding: 48px 0;
    }
}

/* =========================================
   CONTACT PAGE — FORM SECTION (2-col)
   ========================================= */
.contact-form-section {
    padding: 64px 0;
}

.contact-form-section .container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: flex-start;
}

.contact-form-section__title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
}

.contact-form-section__text {
    color: var(--gray-text);
    line-height: 1.7;
}

@media screen and (max-width: 992px) {
    .contact-form-section .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* === Auth Modal Pages === */
.auth-page-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    overflow: hidden;
    padding: 20px;
}

.auth-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.auth-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.auth-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .58);
    z-index: 1;
}

.auth-modal {
    position: relative;
    z-index: 2;
    background: #fff;
    border-radius: 12px;
    padding: 36px 32px 28px;
    width: 100%;
    max-width: 480px;
}

.auth-modal__close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 20px;
    line-height: 1;
}

.auth-modal__close:hover {
    background: #f1f5f9;
}

.auth-modal__title {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
}

.password-input {
    position: relative;
}

.password-input .form__input {
    padding-right: 44px;
}

.password-toggle {
    position: absolute;
    right: 13px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #94a3b8;
    display: flex;
    align-items: center;
}

.auth-modal__options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 14px;
}

.auth-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    color: var(--dark);
    font-size: 14px;
}

.auth-modal__forgot {
    color: var(--primary);
    font-size: 14px;
}

.auth-modal__submit {
    width: 100%;
    margin-bottom: 0;
}

.auth-social-btn--dark {
    background: #1a1a2e !important;
    color: #fff !important;
    border-color: #1a1a2e !important;
}

.auth-modal__footer {
    text-align: center;
    font-size: 14px;
    color: #64748b;
    margin-top: 16px;
}

.auth-modal__footer a {
    color: var(--primary);
    font-weight: 500;
}

.auth-terms {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 13px;
    color: #64748b;
}

.auth-terms input {
    margin-top: 2px;
    flex-shrink: 0;
}

.auth-terms a {
    color: var(--primary);
}

/* === Search Dropdown Page === */
.search-dropdown-page {
    position: relative;
}

.search-dropdown-panel {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    background: #fff;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .18);
    width: 100%;
    max-width: 700px;
    overflow: hidden;
}

.search-dropdown-bar {
    padding: 10px 12px;
    border-bottom: 1px solid #e2e8f0;
}

.search-dropdown-bar__input-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f1f5f9;
    border-radius: 8px;
    padding: 0 12px;
}

.search-dropdown-bar__input {
    flex: 1;
    border: none;
    background: transparent;
    outline: none;
    padding: 12px 0;
    font-size: 15px;
    font-family: inherit;
    color: var(--dark);
}

.search-dropdown-bar__clear, .search-dropdown-bar__btn {
    background: none;
    border: none;
    cursor: pointer;
    color: #94a3b8;
    display: flex;
    align-items: center;
    padding: 4px;
}

.search-dropdown-bar__btn {
    color: #fff;
    background: var(--primary);
    border-radius: 6px;
    padding: 6px 10px;
}

.search-dropdown-suggestions {
    padding: 8px 0;
    border-bottom: 1px solid #e2e8f0;
}

.search-suggestion {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: var(--dark);
    text-decoration: none;
    font-size: 14px;
    transition: background .15s;
}

.search-suggestion:hover {
    background: #f8fafc;
}

.search-suggestion svg {
    flex-shrink: 0;
    color: #94a3b8;
}

.search-popular {
    padding: 16px 20px 20px;
}

.search-popular__label {
    font-size: 12px;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 12px;
}

.search-popular__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.search-tag {
    padding: 7px 16px;
    border-radius: 100px;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    color: var(--dark);
    font-size: 13px;
    text-decoration: none;
    transition: all .15s;
}

.search-tag:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: #eff6ff;
}

.search-dropdown-bg {
    filter: blur(2px);
    opacity: .6;
    pointer-events: none;
    padding-top: 80px;
}

/* === Order Details === */
.order-cancelled-notice {
    padding: 14px 20px;
    background: #fff8f0;
    border: 1px solid #fed7aa;
    border-radius: 8px;
    font-size: 14px;
    color: var(--dark);
    margin-bottom: 24px;
}

.order-cancelled-notice__id {
    color: var(--primary);
    font-weight: 600;
}

.order-details__title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
}

.order-details__list {
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
}

.order-details__item {
    display: grid;
    grid-template-columns: 60px 1fr auto auto;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
}

.order-details__item:last-child {
    border-bottom: none;
}

.order-details__item-img {
    width: 60px;
    height: 60px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
}

.order-details__item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.order-details__item-name {
    font-size: 14px;
    color: var(--dark);
    font-weight: 500;
}

.order-details__item-qty {
    font-size: 13px;
    color: #94a3b8;
    white-space: nowrap;
}

.order-details__item-price {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
    white-space: nowrap;
}

.order-details__totals {
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 16px 20px;
}

.order-details__total-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 14px;
    color: #64748b;
    border-bottom: 1px solid var(--border);
}

.order-details__total-row:last-child {
    border-bottom: none;
}

.order-details__total-row--total {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
}

/* =========================================
   PRODUCT PAGE — redesigned per Figma 251:2313
   ========================================= */
.product-page {
    padding: 20px 0 48px;
}

.product-page__layout {
    grid-template-columns: 42fr 55fr;
    gap: 5%;
    align-items: flex-start;
}

/* ----- Gallery ----- */
.product-gallery__main {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    background: var(--gray);
    aspect-ratio: 1;
    border: 1px solid rgba(100, 116, 139, .1);
    margin-bottom: 0;
}

.product-gallery__main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-gallery__img-badges {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;
    z-index: 2;
}

.badge--gallery-dark {
    background: #000;
    color: #fff;
    font-size: 18px;
    font-weight: 300;
    padding: 4px 10px;
    border-radius: 50px;
    display: inline-block;
}

.badge--gallery-orange {
    background: #ff8000;
    color: #fff;
    font-size: 18px;
    font-weight: 300;
    padding: 4px 10px;
    border-radius: 50px;
    display: inline-block;
}

.product-gallery__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: var(--white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 24px 25px rgba(0, 0, 0, .1);
    cursor: pointer;
    z-index: 2;
}

.product-gallery__arrow svg {
    width: 20px;
    height: 20px;
    color: var(--dark);
}

.product-gallery__arrow--left {
    left: 0;
}

.product-gallery__arrow--right {
    right: 0;
}

.product-gallery__thumbs {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    align-items: center;
}

.product-gallery__thumb {
    flex: 1;
    width: auto;
    height: auto;
    max-width: calc((100% / 4) - (30px / 4));
    aspect-ratio: 1 / 1;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(100, 116, 139, .1);
    cursor: pointer;
    background: var(--gray);
}
#co-checkout .form-row select.select2-hidden-accessible {
    width: 0 !important;
    height: 0 !important;
}

.product-gallery__thumb.active {
    border-color: var(--primary);
}

.product-gallery__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ----- Product info column ----- */
.product-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.product-info__name {
    font-size: 34px;
    font-weight: 400;
    line-height: 1.3;
    color: #000;
    margin-bottom: 0;
}

.product-info__rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0;
}

.product-info__rating-count {
    font-size: 16px;
    color: #000;
}

.product-info__pack-badge {
    background: var(--primary);
    color: var(--white);
    font-size: 16px;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: 50px;
    display: inline-block;
}

.product-info__price-block {
    display: flex;
    flex-direction: column;
    gap: 17px;
}

.product-info__price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.product-info__old-price {
    font-size: 32px;
    font-weight: 600;
    color: #64748b;
    text-decoration: line-through;
}

.product-info__discount-badge {
    background: #ed2f2f;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 50px;
    display: inline-block;
}

.product-info__price {
    font-size: 40px;
    font-weight: 600;
    color: #000;
    margin-bottom: 0;
    padding: 10px 0;
}
.product-info__price-block .product-info__price {
    padding: 0;
}
.product-info__line {
    width: 100%;
    border-top: 1px solid rgba(100, 116, 139, .1);
}

.product-info__desc {
    font-size: 18px;
    font-weight: 300;
    color: #000;
    line-height: 1.4;
}

/* ----- Why You'll Love It ----- */
.why-love {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.why-love__label {
    font-size: 20px;
    font-weight: 700;
    color: #000;
}

.why-love__list {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-content: center;
    align-items: stretch;
    width: 100%;
}

.why-love__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    flex-shrink: 0;
    height: auto;
    flex-grow: 1;
    max-width: 185px;
}

.why-love__icon {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: #f0f2f2;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 8px rgba(0, 0, 0, .15);
    padding: 15px;
    box-sizing: border-box;
    flex-shrink: 0;
}

.why-love__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.why-love__text {
    font-size: 14px;
    font-weight: 500;
    color: #0f172a;
    white-space: nowrap;
    margin-top: auto;
}

/* ----- Total / buy container ----- */
.product-info__total {
    width: 100%;
    background: #e9f2fb;
    border-radius: 16px;
    padding: 20px 10px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.product-info__buy-row {
    display: flex;
    gap: 12px;
    width: 100%;
    align-items: center;
    justify-content: space-between;
}

.product-info__add {
    height: 50px;
    font-size: 18px;
    gap: 10px;
    flex: 1;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-control--lg {
    height: 50px;
    border-radius: 50px;
    border: 1px solid rgba(100, 116, 139, .1);
    background: #fff;
    padding: 0 16px;
    gap: 10px;
    flex-shrink: 0;
}

/* ----- Product perks (inside total) ----- */
.product-perks {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    border: none;
    border-radius: 0;
    overflow: visible;
}

.product-perks__item {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: #64748b;
    border-right: 1px solid rgba(100, 116, 139, .2);
    padding: 0 12px;
    white-space: nowrap;
}

.product-perks__item:first-child {
    padding-left: 0;
}

.product-perks__item:last-child {
    border-right: none;
    padding-right: 0;
}

.product-perks__item svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* ----- Subscribe banner ----- */
.subscribe-banner {
    width: 100%;
    background: linear-gradient(139.32deg, rgb(38, 86, 151) 0%, rgb(15, 23, 42) 100%);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    gap: 11px;
    align-items: flex-start;
    color: var(--white);
    position: relative;
}

.subscribe-banner__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;

}

.subscribe-banner__bg img, .subscribe-banner__bg picture {
    width: 100%;
    height: 100%;
    display: flex;
    object-fit: cover;
}

.subscribe-banner__info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 11px;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

.subscribe-banner__title {
    font-size: 20px;
    font-weight: 700;
}

.subscribe-banner__text {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.4;
}

.subscribe-banner__btn {
    display: inline-flex;
    align-items: center;
    background: var(--primary);
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .52px;
    padding: 15px 32px;
    border-radius: 8px;
}

.subscribe-banner__btn:hover {
    opacity: .85;
}

.subscribe-banner__discount {
    background: #d4183d;
    border-radius: 55px;
    width: 90px;
    flex-shrink: 0;
    padding: 15px 0;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    z-index: 1;
}

/* ----- Product Accordions — Figma 254:3238 ----- */
.product-accs {
    margin-top: 40px;
}

.product-acc {
    border-bottom: 1.5px solid rgba(100, 116, 139, .1);
    background: none;
    border-radius: 0;
    margin-top: 0;
    overflow: visible;
    padding: 20px 0;
}

.product-accs .product-acc:first-child {
    padding-top: 0;
}

.product-accs .product-acc:last-child {
    border-bottom: none;
}

.product-acc__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    cursor: pointer;
}

.product-acc__label {
    background: none;
    color: #000;
    font-size: 22px;
    font-weight: 500;
    padding: 0;
    border-radius: 0;
}

.product-acc.open .product-acc__label {
    color: var(--primary);
    font-weight: 600;
}

.product-acc__icon {
    width: 28px;
    height: 28px;
    border: 1px solid rgba(100, 116, 139, .1);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.product-acc.open .product-acc__icon {
    background: var(--primary);
    border-color: var(--primary);
    border-radius: 8px;
}

.product-acc__icon-plus {
    display: flex;
    color: var(--gray-text);
}

.product-acc__icon-minus {
    display: none;
    color: #fff;
}

.product-acc.open .product-acc__icon-plus {
    display: none;
}

.product-acc.open .product-acc__icon-minus {
    display: flex;
}

.product-acc__body {
    display: none;
    padding: 20px 0 0;
}

.product-acc.open .product-acc__body {
    display: block;
}

/* Spec rows — Figma Description accordion */
.spec-row {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 40px;
    padding: 0;
    border-bottom: none;
    font-size: 16px;
    margin-bottom: 40px;
}

.spec-row:last-child {
    margin-bottom: 0;
}

.spec-row--last {
    margin-bottom: 0;
}

.spec-row__label {
    font-weight: 700;
    font-size: 18px;
    color: #000;
}

.spec-row__value {
    color: var(--dark);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
}

/* Details accordion — plain text format */
.spec-details-text {
    font-size: 16px;
    line-height: 1.4;
    color: #000;
    margin-bottom: 40px;
}

.spec-details-text p {
    margin-bottom: 4px;
}

.spec-details-text p:last-child {
    margin-bottom: 0;
}

.spec-details-text strong {
    font-weight: 500;
}

.perfect-for {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.perfect-for__item {
    flex: 1;
    min-width: 140px;
}

.perfect-for__title {
    font-size: 16px;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 4px;
    line-height: 1.4;
}

.perfect-for__text {
    font-size: 16px;
    font-weight: 400;
    color: var(--dark);
    line-height: 1.4;
}

/* Share row (inside Details accordion) */
.share-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 40px;
}

.share-row__label {
    font-size: 20px;
    font-weight: 500;
    color: #000;
}

.share-row__icons {
    display: flex;
    gap: 8px;
}

.share-row__icons a {
    width: 32px;
    height: 32px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
}

.share-row__icons a:hover {
    background: var(--primary);
    color: #fff;
}

.share-row__icons a svg, .share-row__icons a img {
    width: 100%;
    height: 100%;
}

/* Frequently Bought Together */
.fbt {
    padding: 64px 0;
    background: #f8fafc;
}

.fbt__title {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 8px;
}

.fbt__subtitle {
    font-size: 16px;
    color: var(--gray-text);
    text-align: center;
    margin-bottom: 40px;
}

.fbt__layout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

/* FBT section uses standard product-card */
.fbt__layout .product-card {
    width: 300px;
}

.fbt__plus {
    font-size: 32px;
    font-weight: 300;
    color: var(--gray-text);
}

.fbt-total {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px 40px;
    text-align: center;
}

.fbt-total__old {
    font-size: 15px;
    color: var(--gray-text);

    margin-bottom: 6px;
}

.fbt-total__old p {
    text-decoration: line-through;
}

.fbt-total__chip {
    display: inline-block;
    background: #ff8000;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 50px;
    text-decoration: none;
    margin-left: 6px;
}

.fbt-total__price {
    font-size: 32px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 14px;
}

.fbt-total__btn {
    min-width: 180px;
}

@media screen and (max-width: 992px) {
    .why-love__list {
        flex-wrap: wrap;
    }

    .why-love__item {
        flex: 1 1 30%;
    }

    .product-perks {
        flex-direction: column;
    }

    .product-perks__item {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .product-perks__item:last-child {
        border-bottom: none;
    }

    .subscribe-banner {
        flex-direction: column;
        align-items: flex-start;
    }

    .perfect-for {
        flex-direction: column;
    }

    .spec-row {
        grid-template-columns: 110px 1fr;
    }

    .fbt__layout {
        flex-direction: column;
    }
}
.products-slider-vid {
    width: 100%;
    padding: 48px 0;
}
.products-slider-vid__top {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}
.products-slider-vid__center {
    width: 100%;
}
.products-slider-vid__center {
    width: 100%;
}
.products-slider-vid__slider{
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 40px;
}
.products-slider-vid__slider .slick-track, .products-slider-vid__slider .slick-list {
    width: 100%;
}
.products-slider-vid__video {
    width: 100%;
    display: flex;

}
.products-slider-vid__video .im {
    width: 100%;
    aspect-ratio: 1 / 0.56284153;
    display: flex;
    border-radius: 24px;
    overflow: hidden;
    backface-visibility: hidden;
    appearance: none;

}
.products-slider-vid__video .im video,.products-slider-vid__video .im img, .products-slider-vid__video .impicture {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.also-bought-slider .slick-list, .products-slider-vid__slider .slick-list {
    max-width: 1464px;
    margin: 0 auto;
}
.products-slider-vid .slick-prev,
.products-slider-vid .slick-next {
    position: absolute;
    top: 40%;
    z-index: 2;
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: var(--white);
    border: none;
    box-shadow: 0 24px 25px rgba(0, 0, 0, 0.1);
    display: flex !important;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--dark);
    padding: 8px;
}

.products-slider-vid .slick-prev {
    left: -14px;
}

.products-slider-vid .slick-next {
    right: -14px;
}

@media screen and (max-width: 1700px) and (min-width: 993px) {
    .products-slider-vid .slick-prev {
        left: 8px;
    }

    .products-slider-vid .slick-next {
        right: 8px;
    }
}


.products-slider-vid .slick-prev svg, .products-slider-vid .slick-next svg {
    width: 32px;
    height: 32px;
}

.products-slider-vid .slick-prev::before, .products-slider-vid .slick-next::before {
    display: none;
}

.products-slider-vid .slick-dots {
    display: flex !important;
    justify-content: center;
    gap: 8px;
    list-style: none;
}

.products-slider-vid .slick-dots li button {
    width: 10px;
    height: 10px;
    border-radius: 5px;
    background: var(--border);
    border: none;
    cursor: pointer;
    font-size: 0;
    padding: 0;
}

.products-slider-vid .slick-dots li.slick-active button {
    background: var(--primary);
    width: 32px;
}

.products-slider-vid .slick-dots li button::before {
    display: none;
}

/* =========================================
   SHOP PAGE — redesigned per Figma 214:5196
   ========================================= */
.btn--white {
    background: var(--white);
    border-color: var(--white);
    color: var(--dark);
}

.btn--white:hover {
    background: var(--gray);
    border-color: var(--gray);
}

.hero__buttons {
    display: flex;
    gap: 14px;
}

/* ---- Hero shop variant ---- */
.hero--shop .hero__bg {
    background: linear-gradient(to right, rgba(255, 255, 255, 0.85) 5%, rgba(255, 255, 255, 0) 65%);
}

.hero--shop .hero__label,
.hero--shop .hero__title,
.hero--shop .hero__subtitle {
    color: var(--dark);
}

.hero--shop .btn--white {
    border-color: rgba(100, 116, 139, .1);
}

/* ---- Breadcrumb plain (checkout) variant ---- */
.breadcrumb--plain {
    border-bottom: none;
    padding: 10px 0;
}

.breadcrumb--plain a {
    color: #64748b;
    font-weight: 300;
}

.breadcrumb--plain span {
    color: #64748b;
    font-weight: 300;
}

.breadcrumb--plain .current {
    color: #6ee7c8;
    font-weight: 500;
}

/* ---- Breadcrumb shop variant ---- */
.breadcrumb--shop {
    border-bottom: none;
    padding: 10px 0;
    font-size: 14px;
    font-weight: 300;
}

.breadcrumb--shop a {
    color: #64748b;
    font-weight: 300;
}

.breadcrumb--shop span {
    color: #64748b;
    font-weight: 300;
}

.breadcrumb--shop .current {
    color: #6ee7c8;
    font-weight: 500;
}

.product-card__sale-badge {
    display: inline-block;
    background: #ff8000;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 50px;
    position: absolute;
    top: 44px;
    left: 12px;
    z-index: 3;
}

.breadcrumb ul {
    overflow-x: auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;


}

.breadcrumb ul li a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.breadcrumb ul li {
    white-space: nowrap;
    flex-shrink: 0;
}

.breadcrumb ul li:not(:last-child) a::after {
    content: '/';
    display: inline-block;
    margin: 0 3px;
}

.shop-grid-section {
    padding: 24px 0 64px;
}

.shop-filters-panel {
    background: var(--white);
    border: 1px solid rgba(100, 116, 139, .1);
    border-radius: 16px;
    padding: 10px 20px;
    display: flex;
    gap: 10px;
    margin-bottom: 32px;
    align-items: flex-end;
}

.shop-filter {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.shop-filter__label {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1;
}

.shop-filters__select {
    height: 48px;
    background: #f8f8f8 url('../images/common/caret-down.svg') no-repeat right 10px center;
    background-size: 20px 20px;
    border: none;
    border-radius: 8px;
    padding: 0 38px 0 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #1a1a1a;
    letter-spacing: -0.02em;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    min-width: 160px;
}

.shop-grid-section .product-card {
    background: var(--white);
}

/* =========================================
   SHOP PAGE — STILL NOT SURE BANNER
   ========================================= */
.still-not-sure {
    background: transparent;
    padding: 48px 0;
}

.still-not-sure__panel {
    position: relative;
    background: linear-gradient(89.96deg, rgb(1, 27, 65) 31.377%, rgba(1, 27, 65, 0) 99.994%), linear-gradient(90deg, rgb(8, 35, 77) 0%, rgb(8, 35, 77) 100%);
    border-radius: 24px;
    padding: 48px 104px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
}

.still-not-sure__bg-img {
    position: absolute;
    left: 0;
    top: -3.38%;
    height: 106.76%;
    width: 30.12%;
    object-fit: cover;
    pointer-events: none;
}

.still-not-sure__layout {
    display: flex;
    align-items: flex-start;
    gap: 19px;
    width: 1028px;
    max-width: 100%;
    position: relative;
}

.still-not-sure__content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-right: 1px solid rgba(255, 255, 255, .1);
    padding-right: 19px;
    justify-content: center;
    min-height: 205px;
}

.still-not-sure__title {
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    line-height: 1.4;
    margin: 0;
}

.still-not-sure__text {
    font-size: 18px;
    font-weight: 300;
    color: #fff;
    line-height: 1.4;
    margin: 0;
}

.still-not-sure__content .btn {
    height: 50px;
    padding: 0 24px;
    font-size: 18px;
    border-radius: 8px;
}

.still-not-sure__features {
    display: flex;
    gap: 10px;
    align-items: center;
    align-self: flex-end;
}

.still-not-sure__feature {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 20px;
    border-radius: 12px;
    width: 208px;
}

.still-not-sure__feature-icon {
    width: 64px;
    height: 64px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: inset 0 0 8.1px rgba(0, 0, 0, .25);
    border: none;
    margin: 0;
}

.still-not-sure__feature-icon img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.still-not-sure__feature-texts {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.still-not-sure__feature-label {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    line-height: 1.4;
}

.still-not-sure__feature-desc {
    font-size: 14px;
    font-weight: 300;
    color: #fff;
    line-height: 1.4;
}

/* ---- Mobile filter button (desktop hidden) ---- */
.shop-filters-mobile {
    display: none;
}

@media screen and (max-width: 992px) {
    .shop-filters-panel {
        flex-wrap: wrap;
    }

    .shop-filter {
        min-width: 45%;
    }

    .still-not-sure__panel {
        padding: 40px 48px;
        align-items: stretch;
    }

    .still-not-sure__layout {
        width: 100%;
    }

    .still-not-sure__features {
        align-self: auto;
    }

    .still-not-sure__feature {
        width: auto;
        flex: 1;
    }

    .still-not-sure__bg-img {
        display: none;
    }

    .hero__buttons {
        flex-wrap: wrap;
        gap: 5px;
    }

    .hero__title {
        text-transform: lowercase;
    }

    .hero__title:first-letter {
        text-transform: capitalize;
    }
}

@media screen and (max-width: 480px) {
    .hero__buttons {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
    }
    body .checkout-page .form-row label {
        font-size: 16px;
    }
    .still-not-sure__features {
        gap: 8px;
    }

    .still-not-sure__feature-texts {
        gap: 15px;
    }

    /* Filter: hide 4 selects, show mobile filter button */
    .shop-filters-panel {
        display: none;
    }

    .shop-filters-mobile {
        display: flex;
        margin-bottom: 20px;
    }
    body #co-checkout .form-row .input-text, body #co-checkout .form-row input[type="text"], body #co-checkout .form-row input[type="email"], body #co-checkout .form-row input[type="tel"], body #co-checkout .form-row input[type="number"], body #co-checkout .form-row input[type="password"], body #co-checkout .form-row textarea {
        height: 46px !important;
        font-size: 14px !important;
    }
    .shop-filters-mobile__btn {
        flex: 1;
        background: #f8f8f8;
        border: none;
        border-radius: 8px;
        padding: 10px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-family: 'Poppins', sans-serif;
        font-size: 16px;
        color: #1a1a1a;
        letter-spacing: -0.02em;
        cursor: pointer;
    }

    .shop-filters-mobile__btn img {
        width: 24px;
        height: 24px;
    }

    /* Shop grid section: Figma mobile py-[10px] (desktop has 24px 0 64px) */
    .shop-grid-section {
        padding: 10px 0 32px;
    }

    /* Product grid: 2 columns */
    .products-grid--4col {
        grid-template-columns: 1fr 1fr;
    }

    /* Still not sure banner — mobile (Figma: 556:7935, py-48px outer, panel h-692 items-center justify-end) */
    .still-not-sure {
        padding: 48px 0;
    }

    .still-not-sure__panel {
        padding: 48px 10px;
        background: #08234d;
        min-height: 692px;
        align-items: center;
        justify-content: flex-end;
    }

    .still-not-sure__panel::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(-1.96deg, rgb(1, 27, 65) 58.356%, rgba(1, 27, 65, 0) 69.366%);
        pointer-events: none;
        border-radius: 24px;
    }

    .still-not-sure__bg-img {
        display: block;
        top: 0;
        left: -3.49%;
        width: 106.97%;
        height: 38.44%;
    }

    .still-not-sure__layout {
        flex-direction: column;
        gap: 19px;
        width: 100%;
        position: relative;
        z-index: 1;
    }

    .still-not-sure__content {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, .1);
        padding-right: 0;
        padding-bottom: 20px;
        text-align: center;
        align-items: center;
        min-height: 205px;
        width: 100%;
    }

    /* Figma: text-[16px] (desktop has 18px) */
    .still-not-sure__content .btn {
        width: auto;
        justify-content: center;
        font-size: 16px;
    }

    .still-not-sure__title {
        font-size: 24px;
    }

    .still-not-sure__text {
        font-size: 14px;
    }

    /* Figma 556:9302: items-start justify-center */
    .still-not-sure__features {
        justify-content: center;
        align-self: auto;
        align-items: flex-start;
    }

    /* Figma 556:9303: flex-1 flex-col gap-20 items-center justify-center, NO padding */
    .still-not-sure__feature {
        width: auto;
        flex: 1;
        gap: 20px;
        padding: 0;
        align-items: center;
    }

    /* Figma 556:9312: text-center */
    .still-not-sure__feature-texts {
        text-align: center;
    }

    /* Filter panel shown on mobile */
    .shop-filters-panel.is-open {
        display: flex;
        flex-direction: column;
        gap: 16px;
        margin-bottom: 20px;
        align-items: stretch;
    }

    .shop-filters-panel.is-open .shop-filters__select {
        width: 100%;
        min-width: 0;
    }
}

/* =========================================
   CONTACT PAGE — redesigned per Figma 208:3590
   ========================================= */
.breadcrumb--plain {
    border-bottom: none;
    padding: 10px 0;
}

/* =========================================
   CONTACT PAGE — HERO
   ========================================= */
.ct-hero {
    padding: 24px 0;
}

.ct-hero__panel {
    position: relative;
    background: #08234d;
    border-radius: 24px;
    overflow: hidden;
    min-height: 243px;
    display: flex;
    align-items: center;
}

.ct-hero__bg {
    position: absolute;
    inset: 0;
}

.ct-hero__bg img, .ct-hero__bg picture {
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ct-hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90.71deg, rgb(2, 17, 30) 49.31%, rgba(2, 17, 30, 0) 99.91%);
}

.ct-hero__content {
    position: relative;
    z-index: 1;
    padding: 0 0 0 61px;
}

.ct-hero__title {
    font-size: 64px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0;
    line-height: 80px;
}

.ct-hero__text {
    font-size: 24px;
    font-weight: 400;
    line-height: 40px;
    color: #fff;
}

/* =========================================
   CONTACT PAGE — CONTACT CARDS
   ========================================= */
.ct-cards {
    background: #f8fafc;
    padding: 48px 0;
}

.ct-cards__title {
    font-size: 40px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.4;
    text-align: center;
    margin-bottom: 20px;
}

.ct-cards__sub {
    font-size: 18px;
    font-weight: 300;
    color: #1a1a1a;
    line-height: 1.4;
    text-align: center;
    margin-bottom: 40px;
}

.ct-cards__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.ct-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.ct-card__icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 8.1px rgba(0, 0, 0, 0.25);
    flex-shrink: 0;
}

.ct-card__icon img {
    width: 32px;
    height: 32px;
}

.ct-card__body {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.ct-card__top {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ct-card__title {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 32.5px;
}

.ct-card__desc {
    font-size: 16px;
    font-weight: 300;
    color: #1a1a1a;
    line-height: 1.4;
}

.ct-card__bottom {
    display: flex;
    flex-direction: column;
    gap: 5px;
    line-height: 1.4;
}

.ct-card__link {
    font-size: 16px;
    font-weight: 500;
    color: #155dfc;
}

.ct-card__link--phone {
    color: #2f80ed;
}

.ct-card__link:hover {
    text-decoration: underline;
}

.ct-card__note {
    font-size: 12px;
    font-weight: 300;
    color: #1a1a1a;
}

/* =========================================
   CONTACT PAGE — FORM SECTION
   ========================================= */
.ct-form {
    position: relative;
    padding: 48px 0;
    overflow: hidden;
    background: #fff;
}

.ct-form__watermark {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 480px;
    opacity: .04;
    pointer-events: none;
    filter: grayscale(1);
}

.ct-form__wrapper {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 80px;
}

.ct-form__info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 34px;
}

.ct-form__title {
    font-size: 40px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.4;
}

.ct-form__text {
    font-size: 18px;
    font-weight: 300;
    color: #1a1a1a;
    line-height: 1.4;
}

.ct-form__panel {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 24px;
    padding: 20px;
    background: #fff;
    width: 646px;
    flex-shrink: 0;
    overflow: hidden;
    box-sizing: border-box;
}

.ct-form__panel-label {
    font-size: 18px;
    font-weight: 300;
    color: #1a1a1a;
    margin-bottom: 20px;
    text-align: center;
    line-height: 1.4;
}

/* Contact form field overrides */
.ct-form__panel .form__label,
.ct-form__panel .wpcf7-form label {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.ct-form__panel .form__input,
.ct-form__panel .form__select,
.ct-form__panel .form__textarea,
.ct-form__panel .wpcf7-form-control:not(.wpcf7-submit) {
    padding: 16px;
    border: 1px solid rgba(0, 0, 0, 0.4);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 300;
    color: #1a1a1a;
    height: auto;
    box-sizing: border-box;
}

.ct-form__panel .form__input:focus,
.ct-form__panel .form__select:focus,
.ct-form__panel .form__textarea:focus,
.ct-form__panel .wpcf7-form-control:not(.wpcf7-submit):focus {
    border-color: var(--primary);
}

.ct-form__panel .form__textarea,
.ct-form__panel .wpcf7-textarea {
    height: 151px;
    resize: vertical;
    padding: 16px;
}

.ct-form__panel .form__select,
.ct-form__panel .wpcf7-select {
    appearance: none;
    cursor: pointer;
    background-image: url('../images/icons/ct-caret-down.svg');
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 24px;
    padding-right: 48px;
}

.ct-form__submit {
    width: 100%;
    height: 50px;
    padding: 0 24px;
    font-size: 18px;
}

/* CF7 submit button */
.ct-form__panel .wpcf7-submit {
    display: block;
    width: 100%;
    height: 50px;
    padding: 0 24px;
    font-size: 18px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-align: center;
}

/* CF7 validation */
.ct-form__panel .wpcf7-not-valid-tip {
    font-size: 12px;
    color: #e53e3e;
    margin-top: 4px;
    display: block;
}

.ct-form__panel .wpcf7-response-output {
    font-size: 14px;
    padding: 12px 16px;
    border-radius: 8px;
    margin-top: 16px;
    border: 1px solid var(--border);
}

.ct-form__panel .wpcf7-mail-sent-ok {
    border-color: #22c55e;
    color: #22c55e;
    background: rgba(34, 197, 94, .08);
}

.ct-form__panel .wpcf7-validation-errors,
.ct-form__panel .wpcf7-mail-sent-ng,
.ct-form__panel .wpcf7-spam-blocked {
    border-color: #e53e3e;
    color: #e53e3e;
    background: rgba(229, 62, 62, .08);
}

/* =========================================
   CONTACT PAGE — FAQ (GRAY BG)
   ========================================= */
.faq-section--gray {
    background: #f8fafc;
    padding: 96px 0;
}

.faq-section--gray .faq-item__question {
    background: transparent;
}

.faq-section--gray .faq-item.open {
    background: var(--white);
    border-radius: 0;
    border-bottom-color: #f8fafc;
}

.faq-section--gray .faq-item.open .faq-item__question {
    padding-left: 20px;
    padding-right: 20px;
}

.faq-section--gray .faq-item.open .faq-item__answer {
    padding-left: 20px;
    padding-right: 20px;
}

/* =========================================
   CONTACT PAGE — CTA BANNER
   ========================================= */
.ct-cta {
    padding: 48px 0;
}

.ct-cta__panel {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    min-height: 313px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.ct-cta__bg {
    position: absolute;
    inset: 0;
}

.ct-cta__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ct-cta__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.4);
}

.ct-cta__content {
    position: relative;
    z-index: 1;
    padding: 48px 20px;
    display: flex;
    flex-direction: column;
    gap: 19px;
    align-items: center;
}

.ct-cta__title {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    line-height: 1.4;
}

.ct-cta__text {
    font-size: 18px;
    font-weight: 300;
    color: #fff;
    line-height: 1.4;
}

.ct-cta .btn {
    height: 50px;
    padding: 0 24px;
    font-size: 18px;
}

/* Breadcrumb — contact page active item */
.breadcrumb--contact .current {
    color: #6ee7c8;
    font-weight: 500;
}

@media screen and (max-width: 992px) {
    .ct-hero__title {
        font-size: 36px;
        line-height: 1.3;
    }

    .ct-hero__text {
        font-size: 18px;
        line-height: 1.5;
    }

    .ct-cards__grid {
        grid-template-columns: 1fr;
    }

    .ct-form__wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .ct-form__panel {
        width: 100%;
    }

    .ct-cta__title {
        font-size: 28px;
    }
}

@media screen and (max-width: 768px) {
    .ct-hero__title {
        font-size: 28px;
        line-height: 1.3;
    }

    .ct-hero__text {
        font-size: 18px;
        line-height: 1.5;
    }

    .ct-cards__title {
        font-size: 32px;
    }

    .ct-cards__sub {
        font-size: 16px;
    }

    .ct-card__title {
        font-size: 20px;
    }

    .ct-card__desc {
        font-size: 15px;
    }

    .ct-form__title {
        font-size: 28px;
    }

    .ct-form__text {
        font-size: 16px;
    }

    .faq-section--gray {
        padding: 64px 0;
    }

    .ct-cta__title {
        font-size: 24px;
    }

    .ct-cta__text {
        font-size: 16px;
    }
}

/* checkout layout (responsive) */
.checkout-section {
    padding: 48px 0 80px;
    background: var(--gray);
}

.checkout-layout {
    display: grid;
    grid-template-columns: 1fr 442px;
    gap: 20px;
    align-items: flex-start;
}

.checkout-summary-sticky {
    position: sticky;
    top: 24px;
}

@media screen and (max-width: 1200px) {
    .checkout-layout {
        grid-template-columns: 1fr 340px;
        gap: 24px;
    }
}

@media screen and (max-width: 992px) {
    .checkout-layout {
        grid-template-columns: 1fr;
    }

    .checkout-summary-sticky {
        position: static;
    }
}

/* mobile product card actions */
@media screen and (max-width: 620px) {
    .product-card__actions {
        flex-wrap: wrap;
    }

    .product-card__add {
        width: 100%;
        flex: 1 1 100%;
    }

    .product-card--horizontal {
        grid-template-columns: 1fr;
    }

    .hero__title {
        flex-wrap: wrap;
        white-space: normal;
    }

    .products-slider .slick-prev {
        left: 0;
    }

    .products-slider .slick-next {
        right: 0;
    }

    .cart-item {
        flex-wrap: wrap;
    }

    .fbt__layout .product-card {
        width: 100%;
    }

    .why-love__item {
        flex: 1 1 45%;
    }
}

@media screen and (max-width: 992px) {
    .product-card--horizontal {
        grid-template-columns: 1fr;
    }

    .product-card--horizontal .product-card__image {
        max-width: 320px;
        margin: 0 auto;
    }
}

/* cart layout + mobile trust-bar/features fixes */
.checkout-layout--cart {
    grid-template-columns: 1fr 360px;
}

@media screen and (max-width: 992px) {
    .checkout-layout--cart {
        grid-template-columns: 1fr;
    }

    .trust-bar__item {
        /*flex: 1 0 45%;*/
        padding: 12px 16px;
        justify-content: center;
        /*border-right: none;*/
    }

    .features__grid {
        grid-template-columns: 1fr;
    }

    .feature-item__icon {
        width: 64px;
        height: 64px;
    }

    .feature-item__icon img {
        width: 32px;
        height: 32px;
    }
}

/* cart table responsive */
.cart-table__head {
    padding: 16px 24px;
    border-bottom: 1px solid var(--border);
    display: grid;
    grid-template-columns: 1fr 120px 120px 80px;
    gap: 16px;
    font-size: 13px;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
}

.cart-table__row {
    padding: 24px;
    display: grid;
    grid-template-columns: 1fr 120px 120px 80px;
    gap: 16px;
    align-items: center;
}

.cart-table__row--border {
    border-bottom: 1px solid var(--border);
}

@media screen and (max-width: 768px) {
    .cart-table__head {
        display: none;
    }

    .cart-table__row {
        grid-template-columns: 1fr auto;
        grid-template-areas: "info info" "price qty" "total total";
        row-gap: 12px;
    }

    .cart-table__row > div:nth-child(1) {
        grid-area: info;
    }

    .cart-table__row > div:nth-child(2) {
        grid-area: price;
        text-align: left !important;
    }

    .cart-table__row > div:nth-child(3) {
        grid-area: qty;
        justify-content: flex-end !important;
    }

    .cart-table__row > div:nth-child(4) {
        grid-area: total;
        text-align: right !important;
        border-top: 1px dashed var(--border);
        padding-top: 10px;
    }
}

/* orders list */
.orders-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.orders-head__title {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
}

.orders-head__select {
    width: auto;
    min-width: 140px;
    height: 40px;
    font-size: 13px;
}

.orders-table__id {
    color: var(--primary);
    font-weight: 500;
}

.orders-table__id:hover {
    text-decoration: underline;
}

.orders-table__view {
    font-size: 12px;
    padding: 8px 18px;
}

.orders-pagination {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 28px;
}

.orders-pagination__label {
    font-size: 13px;
    color: var(--gray-text);
}

.orders-pagination__pages {
    display: flex;
    gap: 8px;
}

.orders-pagination__page {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: var(--white);
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    font-family: inherit;
}

.orders-pagination__page.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

@media screen and (max-width: 768px) {
    body .woocommerce-MyAccount-content:has(.account-orders-table) {
        padding: 16px;
        border-radius: 8px;
    }

    /* Addresses — tablet */
    body .woocommerce-MyAccount-content:has(.woocommerce-Addresses) {
        padding: 16px;
        border-radius: 8px;
        gap: 20px;
    }

    body .woocommerce-MyAccount-content:has(.woocommerce-Addresses) > p {
        font-size: 18px;
    }

    body .woocommerce-MyAccount-content .woocommerce-Addresses {
        flex-direction: column;
        gap: 14px;
    }

    /* Address edit form — tablet */
    body .woocommerce-MyAccount-content form:has(.woocommerce-address-fields) {
        padding: 16px;
    }

    body .woocommerce-MyAccount-content form:has(.woocommerce-address-fields) h2 {
        font-size: 20px;
        margin-bottom: 18px;
        padding-bottom: 18px;
    }

    body .woocommerce-MyAccount-content .woocommerce-address-fields__field-wrapper {
        gap: 16px 10px;
    }

    body .woocommerce-MyAccount-content .woocommerce-address-fields__field-wrapper label {
        font-size: 16px;
    }

    body .woocommerce-MyAccount-content .woocommerce-address-fields input.input-text {
        height: 48px;
        font-size: 14px;
    }

    body .woocommerce-MyAccount-content .woocommerce-address-fields .select2-container .select2-selection--single {
        height: 48px;
    }

    body .woocommerce-MyAccount-content .woocommerce-address-fields .button[name="save_address"] {
        width: 100%;
        height: 46px;
        font-size: 17px;
    }

    /* Account details edit form — tablet */
    body .woocommerce-MyAccount-content:has(.woocommerce-EditAccountForm) {
        padding: 20px;
        border-radius: 12px;
    }

    .account-edit-section-header span {
        font-size: 20px;
    }

    body .woocommerce-MyAccount-content .woocommerce-EditAccountForm .form-row label {
        font-size: 16px;
    }

    body .woocommerce-MyAccount-content .woocommerce-EditAccountForm input.input-text {
        height: 48px;
        font-size: 14px;
    }

    body .woocommerce-MyAccount-content .woocommerce-EditAccountForm fieldset legend {
        font-size: 20px;
    }

    body .woocommerce-MyAccount-content .woocommerce-EditAccountForm fieldset .form-row {
        max-width: 100%;
    }

    body .woocommerce-MyAccount-content .woocommerce-EditAccountForm button[name="save_account_details"] {
        width: 100%;
        font-size: 17px;
        height: 48px;
    }

    body .woocommerce-MyAccount-content .account-orders-table .woocommerce-orders-table__header {
        padding: 12px 14px;
        font-size: 15px !important;
    }

    body .woocommerce-MyAccount-content .account-orders-table .woocommerce-orders-table__cell {
        padding: 12px 14px;
        font-size: 14px !important;
    }

    body .woocommerce-MyAccount-content .account-orders-table .woocommerce-orders-table__cell-order-number a {
        font-size: 14px;
    }

    body .woocommerce-MyAccount-content a.woocommerce-button.view {
        padding: 7px 16px;
        font-size: 13px;
    }

    /* Ховаємо Date (кол 2) і Total (кол 4) — залишаємо Order, Status, Actions */
    .woocommerce-orders-table th:nth-child(2),
    .woocommerce-orders-table td:nth-child(2),
    .woocommerce-orders-table th:nth-child(4),
    .woocommerce-orders-table td:nth-child(4) {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    .hero__badge {
        width: 72px;
        height: 72px;
        top: 10px;
        right: 10px;
    }

    .hero__badge-big {
        font-size: 15px;
    }

    .hero__badge-small {
        font-size: 11px;
    }
}

/* =========================================
   FAQ PAGE — redesigned per Figma 338:1474
   ========================================= */
.faq-section--page {
    padding-top: 8px;
    padding-bottom: 80px;
}

.faq-section--page .faq-list {
    padding-top: 72px;
}

.faq-item--lg .faq-item__question {
    font-size: 20px;
    font-weight: 600;
    color: #475569;
    padding: 26px 20px;
}

.faq-item--lg.open .faq-item__question {
    color: var(--dark);
}

.faq-item--lg .faq-item__icon {
    color: #6ee7c8;
}

.faq-item--lg .faq-item__answer {
    font-size: 14px;
    line-height: 1.6;
}

.cta-panel-section {
    padding: 48px 0;
}

.cta-panel {
    background: #08234d;
    border-radius: 24px;
    padding: 48px 104px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 19px;
}

.cta-panel__content {
    display: flex;
    flex-direction: column;
    gap: 29px;
    flex: 1;
}

.cta-panel__title {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    line-height: 80px;
}

.cta-panel__text {
    font-size: 18px;
    font-weight: 300;
    color: #fff;
    line-height: 1.4;
}

.cta-panel__btn {
    height: 50px;
    padding: 0 24px;
    font-size: 18px;
    flex-shrink: 0;
}

@media screen and (max-width: 992px) {
    .cta-panel {
        flex-direction: column;
        align-items: flex-start;
        padding: 32px 24px;
    }

    .cta-panel__title {
        font-size: 24px;
    }

    .faq-item--lg .faq-item__question {
        font-size: 16px;
        padding: 20px 14px;
    }
}

/* =========================================
   CHECKOUT PAGE — redesigned per Figma 368:5539
   ========================================= */
.checkout-page {
    padding: 28px 0 80px;
}

.co-back {
    font-size: 14px;
    font-weight: 300;
    color: var(--dark);
    margin-bottom: 20px;
    display: inline-block;
}

.co-back:hover {
    color: var(--primary);
}

.co-panel {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 13px;
    padding: 24px;
    margin-bottom: 24px;
}

.co-panel__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.co-panel__title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark);
}

.co-panel__title--lg {
    font-size: 24px;
    font-weight: 600;
}

.co-panel__title--md {
    font-size: 20px;
    font-weight: 600;
}

.co-acc__head {
    cursor: pointer;
}

.co-acc__icon {
    color: var(--primary);
    transition: transform .3s;
    display: flex;
}

.co-acc.open .co-acc__icon {
    transform: rotate(180deg);
}

.co-acc__body {
    display: none;
    padding-top: 24px;
}

.co-acc.open .co-acc__body {
    display: block;
}

.co-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.co-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.co-item__img {
    width: 112px;
    height: 112px;
    border-radius: 9px;
    overflow: hidden;
    flex-shrink: 0;
    background: #ececf0;
}

.co-item__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.co-item__content {
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1;
}

.co-item__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.co-item__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.co-item__name {
    flex: 1;
    font-size: 18px;
    font-weight: 300;
    color: var(--dark);
    line-height: 1.4;
}

.co-item__price {
    font-size: 24px;
    font-weight: 600;
    color: var(--dark);
    white-space: nowrap;
}

.co-item__remove {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    font-weight: 300;
    color: #d4183d;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.co-item .qty-control {
    height: 50px;
    width: 122px;
    border-color: rgba(100, 116, 139, 0.1);
}

.co-item .qty-control__btn {
    font-size: 20px;
    flex-grow: 1;
}

.co-item .qty-control__val {
    font-size: 16px;
}

/* Bundle items in checkout cart panel */
.co-item--bundle {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0;
}

.co-item__bundle-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px 14px 0;
}

.co-item__bundle-row .co-item__img {
    width: 112px;
    height: 112px;
    flex-shrink: 0;
}

.co-item__bundle-name {
    flex: 1;
    font-size: 13px;
    font-weight: 300;
    color: var(--dark);
    margin: 0;
    line-height: 1.4;
}

.co-item__bundle-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    flex-shrink: 0;
}

.co-item__bundle-price del {
    font-size: 16px;
    font-weight: 300;
    color: #999;
}

.co-item__bundle-price .co-item__discount-badge {
    background: #e53935;
}

.co-item__bundle-price-current {
    font-size: 22px;
    font-weight: 600;
    color: var(--dark);
}

.co-item__bundle-sep {
    text-align: center;
    font-size: 23px;
    font-weight: bold;
    color: #d4183d;
    padding: 6px 0;
}

.co-item__bundle-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 20px 0 20px 126px;
}

.co-item__price-orig {
    font-size: 13px;
    font-weight: 300;
    color: var(--gray);
    text-decoration: line-through;
}

.co-item__discount-badge {
    display: inline-block;
    background: var(--primary, #e53935);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    border-radius: 13px;
    padding: 2px 7px;
}

/* Preloader overlay for cart panel */
.co-panel--cart {
    position: relative;
}

.co-panel--cart.is-loading::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.78);
    border-radius: inherit;
    z-index: 5;
}

.co-panel--cart.is-loading::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 28px;
    height: 28px;
    margin: -14px 0 0 -14px;
    border: 3px solid rgba(0, 0, 0, 0.1);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: co-spin 0.6s linear infinite;
    z-index: 6;
}

@keyframes co-spin {
    to {
        transform: rotate(360deg);
    }
}

/* Order summary rows (div-based, replaces WC table) */
.order-summary__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 9px 0;
    font-size: 14px;
    font-weight: 300;
    color: var(--dark);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.order-summary__row:last-of-type {
    border-bottom: none;
}

.order-summary__row span:first-child small {
    color: var(--gray);
    font-weight: 300;
}

.order-summary__row span:last-child {
    font-weight: 600;
    white-space: nowrap;
}

.order-summary__row--coupon span:last-child {
    color: var(--primary);;
}

.order-summary__row--coupon a {
    color: var(--primary);;
}

.order-summary__total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 14px 0 0;
    margin-top: 6px;
    border-top: 1px solid var(--border);
    font-size: 20px;
    font-weight: 600;
    color: var(--dark);
}

.co-ship-diff {
    margin-bottom: 20px;
    font-size: 14px;
    color: var(--dark);
}

.co-radio {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    padding: 14px 18px;
    border: 1px solid var(--border);
    border-radius: 12px;
    cursor: pointer;
    margin-bottom: 12px;
}

.co-radio--active {
    border: 2px solid var(--primary);
}

.co-radio input {
    accent-color: var(--primary);
}

.co-radio__label {
    flex: 1;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
}

.co-radio__label small {
    display: block;
    font-weight: 300;
    color: var(--gray);
    font-size: 11px;
    margin-top: 2px;
}

.co-radio__value {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
}

.co-radio__value--free {
    color: var(--green);
}

.co-radio__desc {
    flex-basis: 100%;
    font-size: 12px;
    font-weight: 300;
    color: var(--gray);
    line-height: 1.4;
    padding-left: 28px;
    margin-top: -4px;
}

.co-panel--side {
    padding: 20px;
}

.co-side-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 16px;
}

.co-promo {
    display: flex;
    gap: 8px;
}

.co-promo .form__input {
    height: 32px;
    font-size: 14px;
    font-weight: 300;
    background: #f3f3f5;
    border-color: transparent;
    border-radius: 7px;
    padding: 0 10px;
}

.co-promo__btn {
    height: 32px;
    padding: 0 16px;
    border: 1px solid #000;
    border-radius: 8px;
    background: transparent;
    color: #0f172a;
    font-size: 12px;
    font-weight: 400;
    font-family: inherit;
    cursor: pointer;
    white-space: nowrap;
}

.co-promo__hint {
    font-size: 10px;
    color: #717182;
    margin-top: 8px;
}

.co-promo__msg {
    margin-top: 8px;
    font-size: 13px;
    font-weight: 300;
    line-height: 1.4;
}

.co-promo__msg.is-error {
    color: #d4183d;
}

.co-promo__msg.is-success {
    color: #22c55e;
}

/* Also-bought section below checkout layout */
.co-also-bought {
    padding: 56px 0 32px;
}

.co-also-bought__head {
    margin-bottom: 32px;
}

.co-also-bought__title {
    font-size: 28px;
    font-weight: 600;
    color: var(--dark);
    margin: 0 0 8px;
}

.co-also-bought__text {
    font-size: 15px;
    font-weight: 300;
    color: var(--gray);
    margin: 0;
}

.co-also-bought__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.co-checkout-btn {
    width: 100%;
    height: 50px;
    margin-top: 14px;
    font-size: 18px;
    font-weight: 400;
}

.co-or {
    text-align: center;
    font-size: 18px;
    color: var(--dark);
    margin: 12px 0;
}

.co-pay {
    width: 100%;
    height: 50px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
}

.co-pay--gpay {
    background: #000;
    color: #fff;
}

.co-pay--link {
    background: #00d66f;
    color: #07351c;
    margin-bottom: 0;
}

.co-note {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 8px 0;
    color: var(--dark);
}

.co-note span {
    font-size: 14px;
    font-weight: 400;
    color: #0a0a0a;
}

.co-note small {
    color: #717182;
    font-size: 10px;
    font-weight: 300;
    display: block;
}

.co-ship-diff span {
    font-size: 14px;
    font-weight: 300;
    color: #646464;
}

.checkout-page .form__label {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.checkout-page .form__row {
    gap: 10px;
}

.checkout-page .form__input,
.checkout-page .form__select {
    border-color: rgba(0, 0, 0, 0.4);
    font-size: 14px;
    font-weight: 300;
    height: 52px;
}

.checkout-page .co-promo .form__input {
    height: 32px;
    background: #f3f3f5;
    border-color: transparent;
    border-radius: 7px;
    padding: 0 10px;
}

.checkout-page .form__textarea {
    height: 151px;
    border-color: rgba(0, 0, 0, 0.4);
}

.co-panel--order {
    background: #f8fafc;
}

.checkout-page .order-summary__row {
    font-size: 14px;
    font-weight: 300;
    color: var(--dark);
    margin-bottom: 14px;
}

.checkout-page .order-summary__row span:last-child {
    font-weight: 600;
}

.checkout-page .order-summary__total {
    font-size: 20px;
    font-weight: 600;
}

@media screen and (max-width: 620px) {
    .co-item {
        flex-wrap: wrap;
    }

    .co-item__content {
        width: 100%;
    }
}

/* =========================================
   THANK YOU PAGE — redesigned per Figma 387:16580
   ========================================= */
.ty-section {
    background: #f8fafc;
    padding: 32px 0 64px;
}

.ty-wrap {
    max-width: 1120px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Order meta bar (blue, 5 columns) */
.ty-meta {
    background: #2f80ed;
    border-radius: 16px;
    color: #fff;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    text-align: center;
}

.ty-meta__col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.ty-meta__label {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.25;
}

.ty-meta__value {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.25;
}

/* Panels */
.ty-panel {
    background: var(--white);
    border: 1px solid rgba(100, 116, 139, .1);
    border-radius: 16px;
    padding: 20px 21px;
}

.ty-panel__title {
    font-size: 24px;
    font-weight: 600;
    color: #2e2e2e;
    margin-bottom: 14px;
}

.ty-panel__title--sm {
    font-size: 20px;
}

.ty-panel__label {
    font-size: 14px;
    font-weight: 500;
    color: #000;
    margin-bottom: 14px;
}

/* Order summary rows inside ty-panel */
.ty-panel .order-summary__row {
    font-size: 14px;
    font-weight: 300;
    color: #000;
    margin-bottom: 0;
    padding: 7px 0;
}

.ty-panel .order-summary__row span:last-child {
    font-weight: 600;
}

.ty-panel .order-summary__total {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    margin-top: 0;
}

/* Cart item row */
.ty-item {
    display: flex;
    gap: 14px;
    padding: 14px 0;
    align-items: flex-start;
}

.ty-item:first-of-type {
    padding-top: 0;
}

.ty-item:last-of-type {
    padding-bottom: 0;
}

.ty-divider {
    height: 1px;
    background: rgba(0, 0, 0, .1);
}

.ty-item__img {
    width: 112px;
    height: 112px;
    border-radius: 9px;
    overflow: hidden;
    flex-shrink: 0;
    background: #ececf0;
}

.ty-item__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ty-item__content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.ty-item__name {
    font-size: 18px;
    font-weight: 300;
    color: #000;
    line-height: 1.4;
}

.ty-item__price {
    font-size: 24px;
    font-weight: 600;
    color: #000;
    white-space: nowrap;
    flex-shrink: 0;
}

.ty-address {
    font-size: 16px;
    font-weight: 300;
    color: #2e2e2e;
    line-height: 1.25;
}
body .woocommerce-MyAccount-content .woocommerce-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 45px;

}
body .woocommerce-MyAccount-content .woocommerce-info::after {
    content: none;
}
body .woocommerce-MyAccount-content .woocommerce-info::before {
    top: 50%;
    transform: translate(0, -50%);
}
@media screen and (max-width: 480px) {
    body .woocommerce-MyAccount-content .woocommerce-info {
        gap: 20px;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding-right: 45px;
    }
    body .woocommerce-MyAccount-content .woocommerce-info::before {
        top: 24px;
    }
    body .woocommerce-MyAccount-content .woocommerce-info .woocommerce-Button {
        width: 100%;
    }
}
/* Bundle items in thank-you order details */
.ty-item--bundle-sub {
    padding: 10px 0;
}

.ty-item--bundle-sub:first-of-type {
    padding-top: 0;
}

.ty-item__bundle-sep {
    text-align: center;
    font-size: 22px;
    font-weight: bold;
    color: #e53935;
    padding: 4px 0;
}

.ty-item__bundle-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    flex-shrink: 0;
}

.ty-item__bundle-price del {
    font-size: 12px;
    color: #999;
}

.ty-item__bundle-price .co-item__discount-badge {
    background: #e53935;
}

.ty-item__qty {
    font-size: 14px;
    font-weight: 400;
    color: #64748b;
    margin-left: 4px;
}

@media screen and (max-width: 768px) {
    .ty-meta {
        flex-wrap: wrap;
        gap: 16px;
        justify-content: flex-start;
    }

    .ty-meta__col {
        flex-direction: row;
        gap: 8px;
        align-items: center;
        min-width: 40%;
    }

    .ty-meta__label {
        font-size: 14px;
    }

    .ty-meta__value {
        font-size: 13px;
    }
}

@media screen and (max-width: 480px) {
    .ty-section {
        padding: 16px 0 40px;
    }

    .ty-wrap {
        gap: 12px;
    }

    .ty-meta {
        flex-direction: column;
        gap: 10px;
        padding: 14px 16px;
        border-radius: 12px;
    }

    .ty-meta__col {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 8px;
        width: 100%;
        min-width: 0;
    }

    .ty-meta__label {
        font-size: 13px;
        font-weight: 600;
    }

    .ty-meta__value {
        font-size: 13px;
        font-weight: 400;
    }

    .ty-panel {
        padding: 14px;
        border-radius: 12px;
    }

    .ty-panel__title {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .ty-panel__title--sm {
        font-size: 16px;
    }

    .ty-panel__label {
        font-size: 13px;
        margin-bottom: 10px;
    }

    .ty-panel .order-summary__row {
        font-size: 13px;
    }

    .ty-panel .order-summary__total {
        font-size: 16px;
        padding-top: 10px;
    }

    .ty-item {
        gap: 10px;
        padding: 10px 0;
    }

    .ty-item__img {
        width: 80px;
        height: 80px;
        border-radius: 8px;
    }

    .ty-item__content {
        gap: 8px;
        align-items: flex-start;
        flex-direction: column;
    }

    .ty-item__name {
        font-size: 13px;
    }

    .ty-item__price {
        font-size: 16px;
    }

    .ty-address {
        font-size: 14px;
    }
}

/* auth modal — split layout per Figma 364:2676 */
.auth-modal--split {
    display: flex;
    align-items: stretch;
    padding: 0;
    max-width: 940px;
    width: 94vw;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
}

.auth-modal__media {
    width: 483px;
    height: auto;
    flex-shrink: 0;
    border-radius: 16px;
    overflow: hidden;
    margin-right: -49px;
    position: relative;
    z-index: 0;
}

.auth-modal__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.auth-modal__form {
    flex: 1;
    background: #f8f8f8;
    border-radius: 16px;
    padding: 20px;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 0;
}

.auth-modal__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.auth-modal__title {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 28px;
    margin-bottom: 0;
}

.auth-modal__fields {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.auth-modal__fields .form__group {
    margin-bottom: 0;
}

.auth-modal__label {
    display: block;
    font-size: 10px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.auth-modal__input {
    display: block;
    width: 100%;
    padding: 16px;
    border: 1px solid rgba(0, 0, 0, 0.4);
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: #1a1a1a;
    background: transparent;
    box-sizing: border-box;
    outline: none;
    transition: border-color 0.15s;
}

.auth-modal__input:focus {
    border-color: rgba(0, 0, 0, 0.65);
}

.auth-modal__input::placeholder {
    color: rgba(26, 26, 26, 0.5);
}

.auth-modal__input-wrap {
    position: relative;
}

.auth-modal__input-wrap .auth-modal__input {
    padding-right: 52px;
    height: 52px;
}

.auth-modal__eye {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-modal__options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 0;
    font-size: 14px;
}

.auth-modal__remember {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    flex: 1;
}

.auth-modal__toggle {
    position: relative;
    width: 40px;
    height: 20px;
    flex-shrink: 0;
}

.auth-modal__toggle-input {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
}

.auth-modal__toggle-knob {
    position: absolute;
    inset: 0;
    background: #f2f2f2;
    border: 0.5px solid #e5e5e5;
    border-radius: 36px;
    cursor: pointer;
    transition: background 0.2s;
}

.auth-modal__toggle-knob::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 1px 1px 2px -1px rgba(51, 51, 51, 0.3);
    transition: left 0.2s;
}

.auth-modal__toggle-input:checked + .auth-modal__toggle-knob {
    background: #2f80ed;
    border-color: #2f80ed;
}

.auth-modal__toggle-input:checked + .auth-modal__toggle-knob::before {
    left: 20px;
}

.auth-modal__remember-text {
    font-size: 12px;
    font-weight: 400;
    color: #1a1a1a;
    letter-spacing: 0.3px;
    line-height: 20px;
}

.auth-modal__forgot {
    font-size: 12px;
    font-weight: 500;
    color: #6ee7c8;
    letter-spacing: 0.3px;
    line-height: 20px;
    white-space: nowrap;
    text-decoration: none;
}

.auth-modal__submit {
    display: block;
    width: 100%;
    height: 50px;
    background: #2f80ed;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 400;
    text-transform: capitalize;
    cursor: pointer;
    transition: background 0.15s;
}

.auth-modal__submit:hover {
    background: #2060c8;
}

.auth-modal__footer {
    font-size: 12px;
    font-weight: 300;
    color: #1a1a1a;
    text-align: center;
    margin-top: 0;
}

.auth-modal__signup {
    font-weight: 500;
    color: #6ee7c8;
    text-decoration: none;
}

.auth-social-btn--dark {
    background: #333 !important;
    color: #fff !important;
    border-color: #333 !important;
}

@media screen and (max-width: 768px) {
    .auth-modal__media {
        display: none;
    }

    .auth-modal--split {
        max-width: 460px;
        width: 94vw;
    }
}

/* Register modal — extra fields layout */
.auth-modal__fields-row {
    display: flex;
    gap: 10px;
}

.auth-modal__fields-row .form__group {
    flex: 1;
    min-width: 0;
    margin-bottom: 0;
}

.auth-modal__terms {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.auth-modal__terms-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.auth-modal__terms span {
    font-size: 10px;
    font-weight: 300;
    color: #646464;
    line-height: 1.4;
}

.auth-modal__submit--sm {
    font-size: 16px;
}

.register-modal__box .auth-modal__media {
    height: auto;
    align-self: stretch;
    min-height: 200px;
}

.register-modal__box .auth-modal__form {
    max-height: 92vh;
    overflow-y: auto;
}

/* =========================================
   BLOG PAGE — redesigned per Figma 327:3063
   ========================================= */
.blog-featured2 {
    padding: 0;
}

.blog-featured2__panel {
    background: #f9f9f9;
    border: none;
    border-radius: 24px;
    padding: 20px;
    display: flex;
    gap: 24px;
    align-items: center;
}

.blog-featured2__content {
    width: 433px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.blog-featured2__title {
    font-size: 24px;
    font-weight: 600;
    color: #000;
    line-height: 1.4;
}

.blog-featured2__text {
    font-size: 18px;
    font-weight: 300;
    color: #000;
    line-height: 1.4;
}

.blog-featured2__btn {
    height: 50px;
    padding: 0 24px;
    font-size: 18px;
    border-radius: 8px;
}

.blog-featured2__image {
    flex: 1;
    border-radius: 24px;
    overflow: hidden;
    height: 419px;
}

.blog-featured2__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-latest {
    padding: 48px 0 24px;
}

.blog-latest__title {
    font-size: 40px;
    font-weight: 700;
    color: #0f172a;
    text-align: center;
    margin-bottom: 20px;
}

.blog-cards2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.blog-card2 {
    display: flex;
    flex-direction: column;
    gap: 24px;
    background: #f9f9f9;
    border: none;
    border-radius: 24px;
    padding: 20px;
    transition: background 0.25s ease;
}

.blog-card2__image {
    border-radius: 8px;
    overflow: hidden;
    height: 231px;
    flex-shrink: 0;
}

.blog-card2__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-card2__body {
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.blog-card2__title {
    font-size: 24px;
    font-weight: 600;
    color: #000;
    line-height: 1.4;
    transition: color 0.25s ease;
}

.blog-card2__text {
    font-size: 18px;
    font-weight: 300;
    color: #000;
    line-height: 1.4;
    transition: color 0.25s ease;
}

.blog-card2--dark {
    background: #08234d;
    border: none;
}

.blog-card2--dark .blog-card2__title {
    color: #fff;
}

.blog-card2--dark .blog-card2__text {
    color: #fff;
}

.blog-card2__btn {
    display: none;
    height: 50px;
    padding: 0 24px;
    font-size: 18px;
    align-self: flex-start;
}

.blog-card2--dark .blog-card2__btn {
    display: inline-flex;
}

@media screen and (max-width: 1200px) {
    .blog-cards2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-featured2__panel {
        flex-direction: column;
    }

    .blog-featured2__content {
        width: 100%;
    }

    .blog-featured2__image {
        width: 100%;
        height: 300px;
    }
}

@media screen and (max-width: 620px) {
    .blog-cards2 {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   BLOG POST — redesigned per Figma 327:3963
   ========================================= */
.bp-hero {
    padding: 24px 0 0;
}

.bp-hero__panel {
    background: #f9f9f9;
    border-radius: 16px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bp-hero__content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    flex-shrink: 0;
    width: 765px;
}

.bp-hero__title {
    font-size: 40px;
    font-weight: 700;
    color: #000;
    line-height: 1.4;
}

.bp-hero__btn {
    height: 50px;
    padding: 0 24px;
    font-size: 18px;
    border-radius: 8px;
    align-self: flex-start;
}

.bp-hero__image {
    border-radius: 8px;
    overflow: hidden;
    height: 392px;
    width: 586px;
    flex-shrink: 0;
}

.bp-hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bp-image {
    padding: 48px 0;
}

.bp-image img {
    width: 100%;
    border-radius: 8px;
    aspect-ratio: 780 / 450;
    object-fit: cover;
}

/* =========================================
   BLOG POST — WYSIWYG content styles
   (WordPress-compatible: figcaption, wp-caption, alignleft/right/center, ul, iframe)
   ========================================= */

/* figure / figcaption (bp-image та будь-яке WP figure) */
.blog-post__content figure {
    margin: 0;
}

.blog-post__content figcaption,
.blog-post__content .wp-caption-text {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-top: 8px;
    font-size: 14px;
    font-weight: 300;
    color: #000;
    line-height: 1.4;
}

.blog-post__content figcaption::before,
.blog-post__content .wp-caption-text::before {
    content: '';
    display: block;
    width: 2px;
    min-height: 1em;
    align-self: stretch;
    flex-shrink: 0;
    background: var(--primary);
}

/* wp-caption wrapper */
.blog-post__content .wp-caption {
    max-width: 100%;
    margin-bottom: 16px;
}

.blog-post__content .wp-caption img {
    display: block;
    width: 100%;
    border-radius: 8px;
}

/* ul list (як ol, але з bullet) */
.blog-post__content ul {
    padding-left: 27px;
    font-size: 18px;
    font-weight: 300;
    color: #000;
    line-height: 1.4;
    list-style: disc;
    margin-bottom: 16px;
}

.blog-post__content ul li {
    margin-bottom: 16px;
}

.blog-post__content ul li:last-child {
    margin-bottom: 0;
}

/* Image alignment (WP standard classes) */
.blog-post__content .alignleft,
.blog-post__content .wp-caption.alignleft {
    float: left;
    margin: 4px 24px 16px 0;
    border-radius: 8px;
}

.blog-post__content .alignright,
.blog-post__content .wp-caption.alignright {
    float: right;
    margin: 4px 0 16px 24px;
    border-radius: 8px;
}

.blog-post__content .aligncenter,
.blog-post__content .wp-caption.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 16px;
    clear: both;
    border-radius: 8px;
    text-align: center;
}

/* clearfix для floated images */
.blog-post__content::after {
    content: '';
    display: table;
    clear: both;
}

/* iframe responsive embed (aspect-ratio 1/0.66) */
.blog-post__content iframe {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 0.66;
    border: none;
    border-radius: 8px;
    margin-bottom: 16px;
}

.bp-side-block {
    border-bottom: 1px solid var(--border);
    padding-bottom: 48px;
    margin-bottom: 48px;
}

.bp-side-block:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.bp-side-block__title {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    margin-bottom: 24px;
}

/* Subscribe to newsletter: gap from title to input = 12px */
.bp-side-block:has(.bp-subscribe) .bp-side-block__title {
    margin-bottom: 12px;
}

.bp-related {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bp-related__item {
    display: flex;
    gap: 10px;
    background: #f9f9f9;
    border-radius: 24px;
    padding: 15px;
    align-items: flex-start;
}

.bp-related__item img {
    width: 125px;
    height: 84px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.bp-related__item > div {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 84px;
}

.bp-related__title {
    font-size: 14px;
    font-weight: 600;
    color: #000;
    line-height: 1.4;
    max-width: 205px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bp-related__more {
    font-size: 10px;
    font-weight: 500;
    color: #0f172a;
    text-decoration: underline;
    letter-spacing: 0.48px;
    text-transform: uppercase;
}

.bp-subscribe {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.bp-subscribe .form__input {
    border: 1px solid rgba(0, 0, 0, 0.4);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 300;
    padding: 16px;
    color: rgba(26, 26, 26, 0.4);
    width: 100%;
    box-sizing: border-box;
}

.bp-subscribe .form__input::placeholder {
    color: rgba(26, 26, 26, 0.4);
}

.bp-subscribe__btn {
    width: 100%;
    height: 50px;
    padding: 0 24px;
    font-size: 18px;
    border-radius: 8px;
}

.bp-subscribe__note {
    font-size: 14px;
    font-weight: 300;
    color: #000;
    line-height: 1.4;
    margin-top: 16px;
}

.bp-subscribe__note a {
    text-decoration: underline;
    color: #000;
}

/* Share section title: 18px Medium, gap to buttons = 16px */
.blog-post__sidebar .bp-side-block:last-child .bp-side-block__title {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 16px;
}

/* Share buttons: 32px button with 4px padding so icon = 24px */
.blog-post__sidebar .share-row__icons a {
    padding: 4px;
}

@media screen and (max-width: 992px) {
    .bp-hero__panel {
        flex-direction: column;
        padding: 20px;
    }

    .bp-hero__content {
        width: 100%;
        gap: 24px;
    }

    .bp-hero__title {
        font-size: 28px;
    }

    .bp-hero__image {
        width: 100%;
        height: 260px;
    }
}

/* =========================================
   BLOG POST — responsive (992 → 480px)
   ========================================= */

/* --- 992px: sidebar під статтею, зменшити секції --- */
@media screen and (max-width: 992px) {
    .blog-post-section {
        padding: 40px 0 60px;
    }

    .bp-image {
        padding: 32px 0;
    }

    .bp-side-block {
        padding-bottom: 32px;
        margin-bottom: 32px;
    }

    /* Products grid: 2 колонки */
    .products-section--gray .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* --- 768px: шрифти контенту --- */
@media screen and (max-width: 768px) {
    .blog-post__content h2 {
        font-size: 26px;
    }

    .blog-post__content h3 {
        font-size: 20px;
    }

    .blog-post__content p,
    .blog-post__content ol,
    .blog-post__content ul {
        font-size: 16px;
    }

    .blog-post__content blockquote {
        font-size: 16px;
        padding: 24px 12px 24px 0;
    }
}

/* --- 480px: повний мобайл --- */
@media screen and (max-width: 480px) {
    /* Hero */
    .bp-hero {
        padding: 12px 0 0;
    }

    .bp-hero__panel {
        border-radius: 12px;
    }

    .bp-hero__title {
        font-size: 20px;
    }

    .bp-hero__btn {
        height: 44px;
        font-size: 16px;
        padding: 0 20px;
    }

    .bp-hero__image {
        height: 200px;
        border-radius: 6px;
    }

    /* Article */
    .blog-post-section {
        padding: 28px 0 40px;
    }

    .blog-post__content h2 {
        font-size: 22px;
        margin: 16px 0;
    }

    .blog-post__content h3 {
        font-size: 18px;
    }

    .blog-post__content p,
    .blog-post__content ol,
    .blog-post__content ul {
        font-size: 15px;
    }

    .blog-post__content blockquote {
        font-size: 15px;
        gap: 12px;
        padding: 20px 10px 20px 0;
    }

    .blog-post__content figcaption,
    .blog-post__content .wp-caption-text {
        font-size: 13px;
    }

    .blog-post__content iframe {
        border-radius: 6px;
    }

    .bp-image {
        padding: 24px 0;
    }

    .blog-post__author {
        font-size: 14px;
        gap: 8px;
        padding: 16px 0;
        flex-wrap: wrap;
    }

    /* Sidebar */
    .bp-side-block {
        padding-bottom: 24px;
        margin-bottom: 24px;
    }

    .bp-side-block__title {
        font-size: 18px;
        margin-bottom: 16px;
    }

    .bp-related__item {
        padding: 12px;
        border-radius: 16px;
    }

    .bp-related__item img {
        width: 100px;
        height: 70px;
    }

    .bp-related__item > div {
        height: 70px;
    }

    .bp-related__title {
        max-width: 100%;
    }

    .bp-subscribe__btn {
        height: 44px;
        font-size: 16px;
    }

    /* Products grid: 1 колонка */
    .products-section--gray .products-grid {
        grid-template-columns: 1fr;
    }

    .products-section--gray .products-grid--stock {
        max-width: 100%;
    }
}

/* =========================================
   FIX PACK — user feedback round
   ========================================= */
/* 8. blog card hover = dark */
.blog-card2:hover {
    background: #08234d;
    box-shadow: 0 16px 36px rgba(8, 35, 77, .3);
}

.blog-card2:hover .blog-card2__title {
    color: #fff;
}

.blog-card2:hover .blog-card2__text {
    color: #fff;
}

.blog-card2:hover .blog-card2__btn {
    display: inline-flex;
}


/* 11. contact form bg + watermark — see ct-* section */

/* 13. also-bought slider */
.also-bought-slider {
    margin: 0 -12px;
    position: relative;
}

.also-bought-slider .slick-track {
    gap: 5px;
    display: flex;
    align-items: stretch;
}

.also-bought-slider .slick-slide {
    padding: 0 12px;
}

.also-bought-slider .product-card {
    background: var(--white);
    height: auto;
}

.also-bought-slider .product-card__image {
    aspect-ratio: unset;
    height: 232px;
}
.also-bought-slider .product-card {
    display: flex;
}

.also-bought-slider .product-card__name {
    flex-grow: initial;
}
.also-bought-slider .product-card__price-row {
    margin-top: auto;
}

.also-bought-slider .slick-prev,
.also-bought-slider .slick-next {
    position: absolute;
    top: 40%;
    z-index: 2;
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: var(--white);
    border: none;
    box-shadow: 0 24px 25px rgba(0, 0, 0, 0.1);
    display: flex !important;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--dark);
    padding: 8px;
}

.also-bought-slider .slick-prev {
    left: -14px;
}

.also-bought-slider .slick-next {
    right: -14px;
}

@media screen and (max-width: 1700px) and (min-width: 993px) {
    .also-bought-slider .slick-prev {
        left: 8px;
    }

    .also-bought-slider .slick-next {
        right: 8px;
    }
}


.also-bought-slider .slick-prev svg, .also-bought-slider .slick-next svg {
    width: 32px;
    height: 32px;
}

.also-bought-slider .slick-prev::before, .also-bought-slider .slick-next::before {
    display: none;
}

.also-bought-slider .slick-dots {
    display: flex !important;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
    list-style: none;
}

.also-bought-slider .slick-dots li button {
    width: 10px;
    height: 10px;
    border-radius: 5px;
    background: var(--border);
    border: none;
    cursor: pointer;
    font-size: 0;
    padding: 0;
}

.also-bought-slider .slick-dots li.slick-active button {
    background: var(--primary);
    width: 32px;
}

.also-bought-slider .slick-dots li button::before {
    display: none;
}

/* 14. header login modal */
.login-modal__box {
    position: relative;
    z-index: 2;
}

@media screen and (max-width: 576px) {
    .also-bought-slider {
        margin: 0;
    }

    .also-bought-slider .slick-prev {
        left: 0;
    }

    .also-bought-slider .slick-next {
        right: 0;
    }
}

/* =========================================
   PRODUCT PAGE — mobile 480px
   ========================================= */
@media screen and (max-width: 768px) {
    .mega-menu__accordion {
        display: none !important;
    }
    .mega-menu__accordion.active {
        display: none !important;
    }
    /* ---- Subscribe banner ---- */
    .subscribe-banner {
        align-items: flex-end;
        gap: 0;
    }

    .share-row__label {
        font-size: 18px;
    }

    .subscribe-banner__discount {
        order: -1;
        font-size: 20px;
        width: 79px;
        height: 43px;
        padding: 0;
        margin-bottom: -18px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .subscribe-banner__info {
        width: 100%;
    }

    .subscribe-banner__title {
        text-align: center;
    }

    .subscribe-banner__btn {
        width: 100%;
        justify-content: center;
    }

    /* ---- Product Accordions ---- */
    .product-acc__label {
        font-size: 20px;
    }

    .product-acc__icon-plus,
    .product-acc__icon-minus {
        width: 20px;
        height: 20px;
    }

    .spec-row {
        grid-template-columns: 100px 1fr;
        gap: 16px;
        margin-bottom: 20px;
    }

    .spec-row__label {
        font-size: 16px;
    }

    .spec-row__value {
        font-size: 14px;
        font-weight: 300;
    }

    .spec-details-text {
        font-size: 14px;
    }

    .perfect-for__title {
        font-size: 14px;
        font-weight: 500;
    }

    .perfect-for__text {
        font-size: 14px;
        font-weight: 300;
    }

    /* ---- Gallery + Info layout: single column ---- */
    .product-page__layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .product-gallery__thumbs {
        display: none;
    }

    /* ---- Product info typography ---- */
    .product-info__name {
        font-size: 22px;
        font-weight: 400;
    }

    .product-info__old-price {
        font-size: 20px;
    }

    .product-info__discount-badge {
        font-size: 14px;
    }

    .product-info__desc {
        font-size: 14px;
    }

    .badge--gallery-dark, .badge--gallery-orange {
        font-size: 14px;
    }

    /* ---- Why You'll Love It ---- */
    .why-love__label {
        text-align: left;
    }

    .why-love {
        gap: 20px;
    }

    .why-love__list {
        gap: 4px;

    }

    .why-love__list {
        align-items: flex-start;
        justify-content: space-between;
    }

    .why-love__item {
        flex: initial;
        flex-grow: 1;
        gap: 20px;

    }

    .why-love__icon {
        width: 45px;
        height: 45px;
        padding: 12px;
    }

    .why-love__text {
        font-size: 11px;
        white-space: normal;
        text-align: center;
        width: 68px;
    }

    /* ---- Buy row + perks (mobile: column layout) ---- */
    .product-info__buy-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .product-info__add {
        width: 100%;
        flex: none;
    }

    .product-perks {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px 0;
        padding: 0;
    }

    .product-perks__item {
        flex: 0 0 auto;
        border: none;
        padding: 0;
        font-size: 14px;
        justify-content: flex-start;

    }
    .product-perks__item:nth-child(1), .product-perks__item:nth-child(2) {
        margin-bottom: 5px;
        position: relative;

    }
    .product-perks__item:nth-child(1)::before, .product-perks__item:nth-child(2)::before {
        width: 100%;
        height: 1px;
        display: inline-block;
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        background: #64748B;
    }
    .product-perks__item:nth-child(2n) {
        padding-left: 12px;
        flex-grow: 1;
    }

    .product-perks {
        justify-content: flex-start;
    }

    .product-perks__item:nth-child(2n - 1) {
        padding-right: 12px;
        border-right: 1px solid #64748B;
    }

    /* ---- Frequently Bought Together ---- */
    .fbt {
        padding: 40px 0;
    }

    .fbt__title {
        font-size: 24px;
    }

    .fbt__subtitle {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .fbt__layout {
        gap: 10px;
    }

    /* FBT cards: horizontal layout (image left, content right) */
    .fbt__layout .product-card {
        display: flex;
        flex-direction: row;
        width: 100%;
        border-radius: 12px;
        overflow: hidden;
    }

    .fbt__layout .product-card .product-card__image {
        width: 153px;
        min-width: 153px;
        height: 131px;
        aspect-ratio: unset;
        border-radius: 0;
        flex-shrink: 0;
    }

    .fbt__layout .product-card .product-card__body {
        flex: 1;
        padding: 10px;
        gap: 5px;
    }

    .fbt__layout .product-card .product-card__name {
        font-size: 12px;
    }

    .fbt__layout .product-card .product-card__price {
        font-size: 16px;
        font-weight: 800;
    }

    /* Plus / equals signs */
    .fbt__plus {
        font-size: 24px;
        color: #d4183d;
    }

    /* FBT total block */
    .fbt-total {
        background: #eaf2fb;
        border: none;
        border-radius: 24px;
        width: 100%;
        padding: 24px 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .fbt-total__old {
        font-size: 24px;
        font-weight: 600;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .fbt-total__chip {
        background: #ed2f2f;
        font-size: 20px;
        font-weight: 600;
        padding: 4px 10px;
        margin-left: 0;
    }

    .fbt-total__price {
        font-size: 48px;
        font-weight: 600;
        margin-top: 0;
        margin-bottom: 0;
        width: 100%;
        text-align: left;
    }

    .fbt-total__btn {
        width: 100%;
        max-width: 327px;
        padding: 15px 32px;
        font-size: 13px;
        font-weight: 700;
        text-transform: uppercase;
    }

    /* ---- Also Bought Slider — 2-column grid of compact cards ---- */
    .products-section--also-bought .products-section__subtitle {
        font-size: 14px;
    }

    .also-bought-slider .slick-slide {
        padding: 0 5px;
    }

    .also-bought-slider .slick-prev,
    .also-bought-slider .slick-next {
        display: none;
    }

    /* Card sizing */
    .also-bought-slider .product-card {
        border-radius: 12px;
    }

    .also-bought-slider .product-card__image {
        height: 175px;
    }

    /* Card body: CSS grid to place price + cart button side by side */
    .also-bought-slider .product-card .product-card__body {
        display: grid;
        grid-template-columns: 1fr auto;
        align-items: start;
        padding: 10px;
        gap: 6px 4px;
    }

    .also-bought-slider .product-card .product-card__name {
        grid-column: 1 / -1;
        font-size: 12px;
        font-weight: 700;
    }

    .also-bought-slider .product-card .product-card__rating {
        grid-column: 1 / -1;
    }

    .also-bought-slider .product-card .product-card__price-row {
        grid-column: 1;
        grid-row: 3;
        padding-top: 0;
        padding-bottom: 0;
        justify-content: flex-start;
        align-self: center;
    }

    .also-bought-slider .product-card .qty-control {
        display: none;
    }

    .also-bought-slider .product-card .product-card__price {
        font-size: 16px;
        font-weight: 800;
    }

    /* Cart icon button: right of price */
    .also-bought-slider .product-card .product-card__add--block {
        grid-column: 2;
        grid-row: 3;
        width: 67px;
        height: auto;
        padding: 12px;
        font-size: 0;
        border-radius: 8px;
        align-self: center;
    }

    .also-bought-slider .product-card .product-card__add-icon {
        display: block;
        width: 19px;
        height: 24px;
    }

    .also-bought-slider .product-card .product-card__link {
        display: none;
    }
}

@media screen and (max-width: 480px) {
    /* ---- Contact Hero ---- */
    .ct-hero {
        padding: 12px 0;
    }

    .ct-hero__panel {
        min-height: 154px;
        border-radius: 12px;
    }

    .ct-hero__bg img {
        /*display: none;*/
    }

    .ct-hero__bg::after {
        /*background: #08234d;*/
        content: none;
    }

    .ct-hero__content {
        padding: 28px 20px;
    }

    .ct-hero__title {
        font-size: 22px;
        line-height: 1.3;
        margin-bottom: 8px;
    }

    .ct-hero__text {
        font-size: 14px;
        line-height: 1.5;
    }

    /* ---- Contact Cards ---- */
    .ct-cards {
        padding: 32px 0;
    }

    .ct-cards__title {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .ct-cards__sub {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .ct-cards__grid {
        gap: 12px;
    }

    .ct-card {
        gap: 20px;
        padding: 16px;
        flex-direction: row;
        align-items: flex-start;
    }

    .ct-card__icon {
        width: 48px;
        height: 48px;
        flex-shrink: 0;
    }

    .ct-card__icon img {
        width: 24px;
        height: 24px;
    }

    .ct-card__body {
        gap: 16px;
    }

    .ct-card__top {
        gap: 8px;
    }

    .ct-card__title {
        font-size: 16px;
        line-height: 1.4;
    }

    .ct-card__desc {
        font-size: 13px;
    }

    .ct-card__link {
        font-size: 14px;
    }

    .ct-card__note {
        font-size: 12px;
    }
    body .woocommerce-billing-fields__field-wrapper, body .woocommerce-shipping-fields__field-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    body .woocommerce form .form-row {
        padding: 0;
    }
    /* ---- Contact Form ---- */
    .ct-form {
        padding: 32px 0;
    }

    .ct-form__wrapper {
        gap: 20px;
    }

    .ct-form__info {
        gap: 12px;
    }

    .ct-form__title {
        font-size: 22px;
    }

    .ct-form__text {
        font-size: 14px;
    }

    .ct-form__watermark {
        width: 280px;
        opacity: .03;
    }

    .ct-form__panel {
        border-radius: 12px;
        padding: 16px;
    }

    .ct-form__panel-label {
        font-size: 14px;
    }

    .ct-form__panel .form__label,
    .ct-form__panel .wpcf7-form label {
        font-size: 15px;
        margin-bottom: 8px;
    }

    .ct-form__panel .form__input,
    .ct-form__panel .wpcf7-form-control:not(.wpcf7-submit) {
        padding: 12px;
        font-size: 13px;
    }

    .ct-form__panel .form__textarea,
    .ct-form__panel .wpcf7-textarea {
        height: 100px;
        padding: 12px;
    }

    .ct-form__submit,
    .ct-form__panel .wpcf7-submit {
        font-size: 16px;
        height: 46px;
    }

    /* ---- Contact FAQ ---- */
    .faq-section--gray {
        padding: 32px 0;
    }

    /* ---- Contact CTA ---- */
    .ct-cta {
        padding: 24px 0;
    }

    .ct-cta__panel {
        min-height: 220px;
        border-radius: 12px;
    }

    .ct-cta__content {
        gap: 14px;
        padding: 32px 20px;
    }

    .ct-cta__title {
        font-size: 20px;
        line-height: 1.4;
    }

    .ct-cta__text {
        font-size: 14px;
    }

    .ct-cta .btn {
        height: 44px;
        font-size: 15px;
        padding: 0 20px;
    }

    /* ---- Checkout Page ---- */
    .co-back {
        display: none;
    }

    .checkout-page {
        padding: 20px 0 40px;
    }

    .co-panel {
        padding: 20px;
        margin-bottom: 20px;
    }

    .co-panel__title--lg {
        font-size: 20px;
    }

    /* Cart item: grid layout (image left | name+price stacked right, qty+remove below) */
    .co-item {
        display: grid;
        grid-template-columns: 112px 1fr;
        grid-template-areas:
            "img  top"
            "btm  btm";
        column-gap: 14px;
        row-gap: 0;
        padding: 14px 0;
    }

    .co-item__img {
        grid-area: img;
        align-self: start;
    }

    /* Collapse content wrapper so top/bottom become direct grid children */
    .co-item__content {
        display: contents;
    }

    /* Name (top-left) + price (bottom-right) stacked in right column */
    .co-item__top {
        grid-area: top;
        flex-direction: column;
        justify-content: space-between;
        align-items: flex-end;
        height: 112px;
        gap: 4px;
    }

    .co-item__name {
        font-size: 14px;
        align-self: flex-start;
        flex: none;
        display: -webkit-box;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    /* Qty + remove: full-width row below image+content */
    .co-item__bottom {
        grid-area: btm;
        padding-top: 14px;
    }

    /* Bundle item — reset grid (inherited from .co-item above) back to flex column */
    .co-item--bundle {
        display: flex;
        flex-direction: column;
        padding: 0;
    }

    .co-item--bundle .co-item__bundle-row {
        gap: 10px;
        padding: 10px 0;
    }

    .co-item--bundle .co-item__bundle-row .co-item__img {
        width: 80px;
        height: 80px;
    }

    .co-item--bundle .co-item__bundle-price-current {
        font-size: 18px;
    }

    .co-item--bundle .co-item__bundle-price del {
        font-size: 13px;
    }

    .co-item--bundle .co-item__bundle-sep {
        font-size: 18px;
        padding: 2px 0;
    }

    .co-item--bundle .co-item__bundle-footer {
        padding: 12px 0 14px 90px;
    }

    /* Form: labels, inputs, textarea */
    .checkout-page .form__label {
        font-size: 16px;
    }

    .checkout-page .form__input,
    .checkout-page .form__select {
        height: 46px;
    }

    .checkout-page .form__textarea {
        height: 123px;
    }

    .checkout-page .form__row {
        gap: 20px;
    }

    /* Sidebar panel titles */
    .co-side-title {
        font-size: 16px;
    }

    /* ---- Blog Page ---- */
    .blog-featured2__panel {
        border-radius: 16px;
        padding: 14px;
        gap: 14px;
    }

    .blog-featured2__content {
        width: 100%;
        gap: 12px;
    }

    .blog-featured2__title {
        font-size: 18px;
    }

    .blog-featured2__text {
        font-size: 14px;
    }

    .blog-featured2__btn {
        width: 100%;
        height: 50px;
        font-size: 16px;
    }

    .blog-featured2__image {
        height: 200px;
        border-radius: 16px;
    }

    .blog-latest {
        padding: 24px 0 16px;
    }

    .blog-latest__title {
        font-size: 22px;
        margin-bottom: 14px;
    }

    .blog-cards2 {
        gap: 12px;
        margin-bottom: 12px;
    }

    .blog-card2 {
        border-radius: 16px;
        padding: 14px;
        gap: 14px;
    }

    .blog-card2__image {
        height: 180px;
    }

    .blog-card2__title {
        font-size: 16px;
    }

    .blog-card2__text {
        font-size: 14px;
    }

    .blog-card2__btn {
        display: inline-flex;
        width: 100%;
        height: 44px;
        font-size: 14px;
        align-self: stretch;
    }

    .cta-panel-section {
        padding: 20px 0 24px;
    }

    .cta-panel {
        padding: 24px 20px;
        gap: 20px;
        border-radius: 16px;
    }

    .cta-panel__content {
        gap: 12px;
    }

    .cta-panel__title {
        font-size: 22px;
        line-height: 1.3;
    }

    .cta-panel__text {
        font-size: 14px;
    }

    .cta-panel__btn {
        width: 100%;
        height: 50px;
        font-size: 16px;
    }
}

/* =========================================
   SIDEBAR CF7 SUBSCRIBE FORM
   ========================================= */

/* Email field — invalid state */
.bp-side-block .wpcf7 .form__input.wpcf7-not-valid {
    border-color: #e53e3e;
}

/* Field-level error tip — custom message ("This email is already subscribed.") */
.bp-side-block .wpcf7-not-valid-tip {
    display: block;
    font-size: 12px;
    color: #e53e3e;
    margin-top: 6px;
    line-height: 1.4;
}

/* Success state */
.bp-side-block .wpcf7-response-output.wpcf7-mail-sent-ok {
    border: none;
    padding: 0;
    margin-top: 10px;
    font-size: 13px;
    color: #22c55e;
    background: none;
}

/* Spinner while submitting */
.bp-side-block .wpcf7-spinner {
    display: none;
}

/* ===== REVIEWS (au-trusted) — shared across front page and about page ===== */
.au-trusted {
    padding: 80px 0;
}

.au-trusted__title {
    font-size: 40px;
    font-weight: 700;
    color: #0f172a;
    text-align: center;
    margin-bottom: 14px;
    line-height: 1.4;
}

.au-trusted__sub {
    font-size: 18px;
    font-weight: 300;
    color: #0f172a;
    text-align: center;
    margin-bottom: 56px;
    line-height: 1.4;
}

.au-trusted .reviews-slider {
    max-width: 1380px;
    margin: 0 auto;
}

.au-trusted .reviews-slider .slick-slide {
    height: 100%;
    margin: 0 10px;
}

.au-trusted .review-card {
    background: #f8f8f8;
    border: 1px solid rgba(100, 116, 139, .1);
    border-radius: 24px;
    padding: 29px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.au-trusted .review-card__stars {
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #f4b942;
    letter-spacing: 2px;
}

.au-trusted .review-card__text {
    font-family: 'DM Sans', sans-serif;
    font-style: italic;
    font-weight: 400;
    font-size: 14px;
    color: #0f172a;
    line-height: 24.5px;
}

.au-trusted .review-card__author {
    display: flex;
    gap: 10px;
    align-items: center;
    padding-top: 6px;
}

.au-trusted .review-card__avatar {
    width: 38px;
    height: 38px;
    border-radius: 19px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fff;
}

.au-trusted .review-card__avatar--teal {
    background: #0d9488;
}

.au-trusted .review-card__avatar--blue {
    background: #2563eb;
}

.au-trusted .review-card__avatar--amber {
    background: #d97706;
}

.au-trusted .review-card__name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 13px;
    color: #0f172a;
    line-height: normal;
    margin-bottom: 2px;
}

.au-trusted .review-card__verified {
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 10px;
    color: #6ee7c8;
    letter-spacing: 0.6px;
}

.au-reviews-arrow {
    background: #fff;
    border: none;
    border-radius: 8px;
    padding: 8px;
    filter: drop-shadow(0px 24px 25px rgba(0, 0, 0, .1));
    display: flex !important;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    width: 48px;
    height: 48px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.au-reviews-arrow::before {
    display: none;
}

.au-reviews-arrow--prev {
    left: -60px;
}

.au-reviews-arrow--next {
    right: -60px;
}

@media screen and (max-width: 1700px) and (min-width: 993px) {
    .au-reviews-arrow--prev {
        left: -12px;
    }

    .au-reviews-arrow--next {
        right: -12px;
    }
}

.au-reviews-arrow--prev img {
    transform: rotate(90deg);
}

.au-reviews-arrow--next svg {
    transform: rotate(-180deg);
}

.au-trusted .slick-dots {
    display: flex !important;
    justify-content: center;
    gap: 6px;
    list-style: none;
    padding: 24px 0 0;
    margin: 0;
    position: relative;
    bottom: auto;
}

.au-trusted .slick-dots li {
    width: auto;
    height: auto;
    margin: 0;
}

.au-trusted .slick-dots li button {
    width: 10px;
    height: 10px;
    border-radius: 5px;
    background: rgba(47, 128, 237, .3);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all .2s;
    font-size: 0;
    line-height: 0;
}

.au-trusted .slick-dots li.slick-active button {
    background: #2f80ed;
    width: 32px;
}

/* ----- MY ACCOUNT: ORDER ITEM WITH THUMBNAIL ----- */
.order-item-row {
    display: flex;
    align-items: center;
    gap: 14px;
}

.order-item-thumb {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: var(--radius);
    overflow: hidden;
}

.order-item-thumb a {
    display: block;
    width: 100%;
    height: 100%;
}

.order-item-thumb__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.order-item-info {
    flex: 1;
    min-width: 0;
}

/* ----- WC DEFAULT BUTTON OVERRIDES ----- */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary) !important;
    color: var(--white) !important;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 500;
    padding: 14px 32px;
    border-radius: var(--radius);
    border: 2px solid var(--primary) !important;
    cursor: pointer;
    transition: background .2s, border-color .2s, color .2s;
    line-height: 1;
    text-decoration: none;
    box-shadow: none;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover {
    background: var(--primary-dark) !important;
    border-color: var(--primary-dark) !important;
    color: var(--white) !important;
}

.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
}

.au-trusted .slick-dots li button::before {
    display: none;
}

/* =========================================
   ORDER DETAILS — 480px FINAL OVERRIDES
   Цей блок стоїть ОСТАННІМ щоб точно перекрити
   всі 768px блоки при ширині ≤480px
   ========================================= */
@media screen and (max-width: 480px) {
    body .woocommerce-MyAccount-content:has(.woocommerce-order-details) {
        padding: 14px;
        border-radius: 8px;
        gap: 14px;
    }

    body .woocommerce-MyAccount-content:has(.woocommerce-order-details) > p {
        font-size: 14px;
        line-height: 1.5;
    }

    body .woocommerce-MyAccount-content .woocommerce-order-details {
        gap: 16px;
    }

    body .woocommerce-MyAccount-content .woocommerce-order-details__title {
        font-size: 17px;
    }

    body .woocommerce-MyAccount-content .woocommerce-table--order-details tbody {
        padding: 0 6px;
    }

    body .woocommerce-MyAccount-content .woocommerce-table--order-details tbody tr {
        flex-wrap: wrap;
        gap: 6px;
        padding: 12px 0;
    }

    body .woocommerce-MyAccount-content .woocommerce-table--order-details td.product-name {
        flex: 1 1 100%;
    }

    body .woocommerce-MyAccount-content .woocommerce-table--order-details td.product-total {
        flex: 1 1 100%;
        font-size: 15px;
        text-align: right;
    }

    body .woocommerce-MyAccount-content:has(.woocommerce-order-details) .order-item-row {
        align-items: flex-start;
        gap: 10px;
    }

    body .woocommerce-MyAccount-content:has(.woocommerce-order-details) .order-item-thumb {
        width: 64px;
        height: 64px;
        border-radius: 6px;
    }

    body .woocommerce-MyAccount-content:has(.woocommerce-order-details) .order-item-thumb__img {
        width: 64px;
        height: 64px;
    }

    body .woocommerce-MyAccount-content:has(.woocommerce-order-details) .order-item-info {
        align-items: flex-start;
        gap: 6px;
    }

    body .woocommerce-MyAccount-content:has(.woocommerce-order-details) .order-item-info > a {
        font-size: 13px;
        line-height: 1.45;
    }

    body .woocommerce-MyAccount-content:has(.woocommerce-order-details) .order-item-info .product-quantity {
        font-size: 12px;
    }

    body .woocommerce-MyAccount-content .woocommerce-table--order-details tfoot {
        padding: 10px 6px 0;
        gap: 8px;
    }

    body .woocommerce-MyAccount-content .woocommerce-table--order-details tfoot th,
    body .woocommerce-MyAccount-content .woocommerce-table--order-details tfoot td {
        font-size: 13px;
    }

    body .woocommerce-MyAccount-content .woocommerce-table--order-details tfoot tr:nth-child(5) {
        padding-top: 10px;
    }

    body .woocommerce-MyAccount-content .woocommerce-table--order-details tfoot tr:nth-child(5) th,
    body .woocommerce-MyAccount-content .woocommerce-table--order-details tfoot tr:nth-child(5) td {
        font-size: 17px;
    }

    body .woocommerce-MyAccount-content .woocommerce-customer-details {
        padding-top: 14px;
        gap: 8px;
    }

    body .woocommerce-MyAccount-content .woocommerce-column__title {
        font-size: 15px;
    }

    body .woocommerce-MyAccount-content .woocommerce-customer-details address {
        font-size: 13px;
        line-height: 1.6;
    }
}
@media screen and (max-width: 992px) {

    .also-bought-slider .slick-prev {
        left: 8px;
    }
    .products-slider-vid__slider {
        gap: 12px;
    }
    .products-slider-vid {
        padding: 40px 0;
    }
    .products-slider-vid .slick-prev, .products-slider-vid .slick-next {
        top: 27%;
    }
    .products-slider-vid__slider .slick-prev {
        left: 8px;
    }
    .au-reviews-arrow--prev {
        left: -15px;
    }

    .also-bought-slider .slick-next {
        right: 8px;
    }
    .products-slider-vid__slider .slick-next {
        right: 8px;
    }
    .au-reviews-arrow--next {
        right: -15px;
    }
}

@media screen and (max-width: 480px) {

    .au-reviews-arrow--prev {
        left: -6px;
    }
    .au-reviews-arrow {
        width: 42px;
        height: 42px;
    }

    .au-reviews-arrow--next {
        right: -6px;
    }
    .product-card__price ins {
        font-size: 16px;
    }
    .products-grid .product-card__add--block {
        height: 52px;
        margin-top: auto;
    }
    .product-card__price del {
        margin-left: 0;
        font-size: 13px;
    }
    .products-grid .product-card__price-row {
        padding-top: 5px;
    }
}
.product-info__rating .rmp-widgets-container.rmp-wp-plugin.rmp-main-container {
    margin: 0;
}
.product-info__rating .rmp-widgets-container.rmp-wp-plugin.rmp-main-container .rmp-rating-widget__icons {
    margin: 0;
}