@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;800&display=swap');


:root {
    --main-font: "Roboto", Arial, sans-serif;
    --main-font-size-1: 14px;
    --main-font-color: black;
    --main-font-weight: 500;
    --main-border-radius: 16px;
    --main-theme-color: #FF0F8A;
    --main-theme-color-hover: #DB0A74;
    --main-theme-color-hover-text: white;
    --main-theme-color-soft: #ffe8f3;
    --main-theme-color-soft-strong: #ffd0e7;
    --main-theme-color-surface: #fff5fa;
    --main-theme-color-border: #f2a4cc;
    --main-theme-color-gradient-end: #ff62ad;
    --main-theme-color-shadow: rgba(255, 15, 138, 0.18);
    --main-theme-color-rgb: 255, 15, 138;
    --main-background-color: white;
    --main-font-color-background: white;
    --main-font-color: black;
    --main-font-p-color: rgb(59, 59, 59);
    --assistant-viewport-height: 100vh;
}

* {
    touch-action: manipulation;
}

html {
    width: 100%;
    height: 100%;
    height: -webkit-fill-available;
    min-height: -webkit-fill-available;
    -webkit-text-size-adjust: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    box-sizing: border-box;
}

html.is-mobile-nav-open,
body.is-mobile-nav-open {
    overflow: hidden;
    overscroll-behavior: none;
    touch-action: none;
}



body {
    margin: 0;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    width: min(90vw, 1400px);
    min-height: 100dvh;
    font-family: "Roboto", Arial, sans-serif;
    color: #111111;
    line-height: 1.6;
    font-size: 14px;
    overflow-x: hidden;
}



button {
    background-color: var(--main-background-color);
}



main {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
}

h1 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 16px;
}

h2 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.35;
  margin: 0 0 14px !important;
}

h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
  margin: 0 0 12px;
}

h4 {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.45;
  margin: 0 0 10px;
}

/* Text */

p {
  font-size: 14px;
  font-weight: 400;
  margin: 0 0 12px;
}

strong, b {
  font-weight: 700;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}



ul {
    padding: 0 0 0 10px;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    width: 100%;
}

li {
    list-style: none;
    padding: 10px;
    text-decoration: none;
    font-family: var(--main-font);
    font-weight: var(--main-font-weight);
}

li a {
    text-decoration: none;
    color: var(--main-font-color);
    font-family: var(--main-font);
    font-weight: var(--main-font-weight);
    font-size: var(--main-font-size-1);
}

@media (hover: hover) {
    li a:hover {
        background-color: var(--main-theme-color-hover);
        color: white;
        cursor: pointer;
    }
}

.desktop-main-nav li a:hover {
    cursor: pointer;
    text-decoration-line: underline;
    text-decoration-color: var(--main-theme-color);
    text-underline-offset: 4px;
    color: var(--main-font-color);
    background-color: transparent;
}


#burger {
    height: 40px;
    width: 100px;
    background-color: var(--main-theme-color);
    cursor: pointer;
    font-size: var(--main-font-size-1);
    color: var(--main-font-color-background);
    border: none;
    border-radius: var(--main-border-radius);
    display: none;
    align-items: center;
    justify-content: center;
}

#burger:hover {
    background-color: var(--main-theme-color-hover);
    color: var(--main-theme-color-hover-text);
}

#burger.borderRadius {
    border-radius: var(--main-border-radius) var(--main-border-radius) 0 0;
}

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




#menu {
    position: static;
}

#main-nav ul {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 14px;
    align-items: center;
}

#main-nav li {
    padding: 0;
}



.search-wrapper {
  position: relative;
  width:  clamp(200px, 320px, 100%);
  height: 40px;
}

.search-wrapper input[type="text"] {
  width: 100%;
  padding: 8px 80px 8px 10px;
  box-sizing: border-box;
  font-size: var(--main-font-size-1);
  border-radius: var(--main-border-radius);
  border: 1px solid var(--main-theme-color);
  font-family: var(--main-font);
  height: 40px;
}

.search-wrapper button{
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 100px;
  border: none;
  background-color: var(--main-theme-color);
  color: white;
  cursor: pointer;
  border-radius: var(--main-border-radius);
  font-family: var(--main-font);
  font-size: var(--main-font-size-1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-wrapper button:hover {
  background-color: var(--main-theme-color-hover);
  color: var(--main-theme-color-hover-text);


}

.search-live-results {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid rgba(255, 20, 136, 0.22);
  border-radius: 18px;
  box-shadow: 0 20px 48px rgba(17, 17, 17, 0.12);
  overflow: hidden;
  z-index: 1200;
}

.search-live-results[hidden] {
  display: none !important;
}

.search-live-results-list {
  display: grid;
  grid-template-columns: 1fr;
}

.search-live-results-empty {
  padding: 14px 16px;
  font-size: 14px;
  color: #6f7480;
}

.search-live-result-item {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  text-decoration: none;
  color: inherit;
  border-top: 1px solid rgba(17, 17, 17, 0.06);
}

.search-live-result-item:first-child {
  border-top: none;
}

.search-live-result-item:hover {
  background: rgba(255, 20, 136, 0.04);
}

.search-live-result-thumb {
  width: 56px;
  aspect-ratio: 3 / 4;
  border-radius: 10px;
  overflow: hidden;
  background: #f6f6f8;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-live-result-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.search-live-result-copy {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.search-live-result-title {
  font-size: 14px;
  line-height: 1.3;
  font-weight: 600;
  color: #111;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.search-live-result-meta {
  font-size: 14px;
  line-height: 1.3;
  color: #6f7480;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.search-live-result-price {
  font-size: 14px;
  line-height: 1.3;
  color: #111;
}

#search-input:focus {
    outline: none;   
    box-shadow: none;    
}

#search-btn img, #burger img {
    filter: brightness(0) invert(1);
    width: 20px;
    height: 20px;
}

@media (max-width: 900px) {
    #menu {
        position: relative;
    }

    #burger {
        display: flex;
    }

    .nav {
        display: none;
    }

    #nav.open {
        display: flex;
        width: 220px;
        min-height: 170px;
        background-color: var(--main-background-color);
        top: 39px;
        right: 0;
        border: 1px solid var(--main-theme-color);
        flex-direction: column;
        flex-wrap: nowrap;
        align-items: flex-start;
        justify-content: center;
        box-sizing: border-box;
        position: absolute;
        border-radius: var(--main-border-radius) 0 var(--main-border-radius) var(--main-border-radius);
        z-index: 50;
    }

    #main-nav ul {
        width: 100%;
        padding: 0 0 0 10px;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    #main-nav li {
        padding: 10px;
    }

    .search-live-results {
        top: calc(100% + 6px);
        border-radius: 16px;
    }
}

.search-page {
    width: 100%;
    padding: 20px 0 40px;
    box-sizing: border-box;
}

.search-status,
.search-empty,
.search-error {
    margin: 0 0 14px;
}

.search-error {
    color: #b00020;
}

.text-container {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin: 0 0 12px;
}

.text-container p,
.expandable-text {
    margin: 0;
    color: var(--main-font-p-color);
    font-size: 0.875rem;
    line-height: 1.5;
}

.text-container p.expanded,
.expandable-text.expanded {
    -webkit-line-clamp: unset;
    line-clamp: unset;
    display: block;
    overflow: visible;
}

.popular-categories {
    display: flex;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    flex-wrap: nowrap;
    gap: 8px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin: 0;
    padding: 0 0 4px;
    list-style: none;
}

.popular-categories::-webkit-scrollbar {
    display: none;
}

.popular-categories__item {
    display: flex;
    flex: 0 0 auto;
}

.popular-category-chip {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    border: 1px solid rgba(15, 23, 39, 0.08);
    border-radius: 999px;
    background: rgba(15, 23, 39, 0.06);
    color: var(--main-font-color);
    text-decoration: none;
    font-size: var(--main-font-size-1);
    font-weight: 600;
    line-height: 1;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.popular-category-chip:hover {
    background-color: var(--main-theme-color);
    border-color: var(--main-theme-color);
    color: var(--main-theme-color-hover-text);
    transform: translateY(-1px);
}

.home-products-section__eyebrow {
    margin: 0 0 10px;
    color: var(--main-theme-color);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.home-products-section__head {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
}

.home-products-section__title {
    margin: 0 !important;
}

.search-result-tags {
    margin: 0;
    color: #9d9da5;
    white-space: nowrap; /* Ð·Ð°Ð¿Ñ€ÐµÑ‚ Ð¿ÐµÑ€ÐµÐ½Ð¾ÑÐ° */
    overflow: hidden; /* ÑÐºÑ€Ñ‹Ñ‚Ð¸Ðµ Ð»Ð¸ÑˆÐ½ÐµÐ³Ð¾ */
    text-overflow: ellipsis;
    font-size: var(--main-font-size);
    font-weight: 400;
    min-width: 45%;
    width: 51%;
}

.search-pagination {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.search-pagination-link,
.search-pagination-gap {
    min-width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    border-radius: var(--main-border-radius);
    border: 1px solid #e4e4e4;
    background: #fff;
    color: #2d2d2d;
    text-decoration: none;
    box-sizing: border-box;
}

.search-pagination-link.is-current {
    background: var(--main-theme-color);
    border-color: var(--main-theme-color);
    color: #fff;
}

.result-photo-count {
    position: absolute;
    right: 8px;
    bottom: 8px;
    background: rgba(0, 0, 0, 0.72);
    color: #fff;
    font-size: var(--main-font-size-1);
    padding: 4px 8px;
    line-height: 1;
    height: 10px;
    width: 12px;
    align-content: center;
    text-align: center;
}


.product-breadcrumb {
    margin: 0;
    color: #758297;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.4;
}

.product-breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    margin: 0;
    padding: 0;
    list-style: none;
    width: auto;
    font-size: 12px !important;
}

.product-breadcrumb-item {
    display: inline-flex;
    align-items: center;
    gap: 0px;
    padding: 0;
    width: auto;
    font-size: 12px !important;
}

.product-breadcrumb-item + .product-breadcrumb-item::before {
    content: "/";
    color: #758297;
    margin-right: 6px;
}

.product-breadcrumb a {
    color: inherit;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    padding: 0;
    background: transparent;
    border-radius: 0;
    font-size: 12px !important;
}

.product-breadcrumb a:hover {
    color: #1a73e8;
    background: transparent;
}

.product-breadcrumb [aria-current="page"] {
    color: #182131;
    font-weight: 700;
}

.product-summary-top-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.product-premium-badge {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    border: 1px solid rgba(171, 120, 0, 0.18);
    border-radius: 999px;
    background: linear-gradient(135deg, #f8e6a0 0%, #e5c15f 48%, #c39221 100%);
    color: #5b3700;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.product-premium-badge--silver {
    border-color: rgba(112, 124, 145, 0.24);
    background: linear-gradient(135deg, #f6f8fb 0%, #d9e0ea 42%, #b1bccd 100%);
    color: #49566b;
}

.product-premium-badge--bronze {
    border-color: rgba(139, 87, 42, 0.22);
    background: linear-gradient(135deg, #f7e1c5 0%, #d9a56f 42%, #a7662b 100%);
    color: #5d3414;
}

.search-result-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.product-brand-line {
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #162334;
    font-size: 14px;
    font-weight: 600;
}

.product-detail-list {
    display: grid;
    gap: 0;
    margin: 0;
}

.product-detail-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 0;
    border-bottom: 1px solid #edf1f7;
}

.product-detail-row:last-child {
    border-bottom: none;
}

.product-detail-row dt {
    color: #667386;
    font-size: 14px;
    font-weight: 400;
    margin: 0;
}

.product-detail-row dd {
    margin: 0;
}

.product-detail-row span {
    color: #1a7f48;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
}

.product-detail-row strong,
.product-summary-price strong {
    color: #0d1420;
    font-size: 14px;
    font-weight: 500;
}

.product-summary-price strong {
    font-size: 1.3rem;
    font-weight: 700;
}

.product-price-stack {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0;
    border-radius: 22px;
    background: linear-gradient(180deg, #f3fff5 0%, #ebf9ee 100%);
    overflow: visible;
    position: relative;
    z-index: 1;
}

.product-price-stack.is-sale {
    background: linear-gradient(180deg, #fff4f1 0%, #ffe8e1 100%);
}

.product-price-current {
    color: #178149;
    font-size: 1.9rem;
    font-weight: 800;
    line-height: 1;
    display: block;
    padding: 16px;
}

.product-price-stack.is-sale .product-price-current {
    color: #d04917;
}

.product-price-current.is-muted {
    color: #5e6b7f;
    font-size: 1.25rem;
}

.product-price-old {
    color: #8a93a3;
    font-size: 0.95rem;
    text-decoration: line-through;
    padding: 0 16px 16px;
}

.product-price-metrics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.product-price-metric {
    display: grid;
    gap: 8px;
    padding: 14px 16px 16px;
}

.product-price-metric + .product-price-metric {
    border-left: 1px solid rgba(18, 35, 52, 0.08);
}

.product-price-metric-label {
    color: #698077;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.product-price-stack.is-sale .product-price-metric-label {
    color: #a25235;
}

.product-price-metric-value {
    color: #178149;
    font-size: 1.7rem;
    font-weight: 800;
    line-height: 1.1;
}

.product-price-stack.is-sale .product-price-metric-value {
    color: #d04917;
}

.product-price-metric-value.is-muted {
    color: #5e6b7f;
    font-size: 0.95rem;
}

.product-summary-buybox {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 24px;
    background: linear-gradient(180deg, #f7faff 0%, #eef4ff 100%);
}

.product-buy-form {
    margin: 0;
}

.product-buy-form--stacked {
    display: block;
}

.product-buy-btn,
.product-secondary-btn {
    min-height: 36px;
    padding: 10px 16px;
    border: none;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    box-sizing: border-box;
}

.product-buy-btn {
    gap: 8px;
    width: 100%;
}

.product-buy-btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.product-buy-btn-icon svg {
    display: block;
    width: 20px;
    height: 20px;
}

.product-buy-btn {
    background: #1a73e8;
    color: #ffffff;
    box-shadow: 0 12px 28px rgba(26, 115, 232, 0.2);
}

.product-buy-btn:hover {
    transform: translateY(-1px);
    background: #1767cf;
}

.product-secondary-btn {
    width: 100%;
    border: 1px solid #d9e2f0;
    background: #ffffff;
    color: #12253f;
    box-shadow: none;
}

.product-secondary-btn:hover {
    transform: translateY(-1px);
    background: #f6f9ff;
}

.product-secondary-btn--manager {
    border-color: #dbeee2;
    background: #effaf3;
    color: #146636;
}

.product-secondary-btn--manager:hover {
    background: #e3f6ea;
}

.product-recommendations-section {
    margin-top: 28px;
}

.product-section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .product-detail-row {
        padding: 8px 0;
    }

 

    .product-price-metric + .product-price-metric {
        border-left: none;
        border-top: 1px solid rgba(18, 35, 52, 0.08);
    }

    .product-summary-buybox {
        flex-direction: column;
        align-items: stretch;
        padding: 12px 14px;
        border-radius: 16px;
        gap: 10px;
    }

    .product-buy-btn {
        width: 100%;
    }

    .text-container p,
    .expandable-text {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        overflow: hidden;
        text-overflow: ellipsis;
        font-size: 14px;
    }
}

/* Two-level desktop header + mobile drawer */
.site-header {
    width: 100%;
    border-bottom: 1px solid #cdcdcd;
    position: relative;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    min-height: 120px;
    align-items: flex-start;
    justify-content: center;
}

.desktop-main-nav-row {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    overflow: visible;
}

.site-header ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-header li {
    padding: 0;
}

.header-top-row {
    display: flex;
    gap: 16px;
    width: 100%;
    align-content: center;
    height: 70px;
    align-items: center;
}

.header-logo-link {
    display: inline-flex;
    align-items: center;
}

.site-header #logo {
    height: 34px;
}

.site-header .search-wrapper {
    width: 100%;
    max-width: none;
    display: flex;
    align-items: center;
    flex-direction: row;
}

.site-header .search-wrapper input[type="text"] {
    border: 2px solid #ff108a;
    border-radius: var(--main-border-radius);
    padding: 14px;
    height: 42px;
    font-size: var(--main-font-size-1);
}

.site-header .search-wrapper button {
    width: 42px;
    font-size: 0;
}

.header-top-info {
    display: flex;
    align-items: center;
    gap: 18px;
}

.header-info-card {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
}

.header-info-icon {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.icons {
    width: 30px;
    height: 30px;
}


.header-info-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.header-info-text strong {
    font-size: var(--main-font-size-1);
    color: #212121;
}

.header-info-text span {
    font-size: var(--main-font-size-1);
    color: var(--main-theme-color);
}

.header-bottom-row {
    min-height: 72px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}

.desktop-categories {
    position: relative;
}

.desktop-categories-toggle {
    border: none;
    border-radius: var(--main-border-radius);
    height: 42px;
    padding: 0 18px;
    background: var(--main-theme-color);
    color: var(--main-font-color-background);
    font-size: var(--main-font-size-1);
    font-weight: var(--main-font-weight);
    cursor: pointer;
}

.desktop-categories-dropdown {
    position: fixed;
    left: 0;
    top: 114px;
    width: 285px;
    max-width: 285px;
    min-width: 285px;
    height: calc(100dvh - 114px);
    max-height: calc(100dvh - 114px);
    border: 1px solid #e5e5e5;
    background-color: #fafafa;
    box-shadow: 0 18px 42px rgba(10, 10, 10, 0.12);
    overflow: hidden;
    z-index: 140;
    border-radius: 0;
    opacity: 1;
    transform: translateX(calc(-100% - 24px));
    visibility: hidden;
    pointer-events: none;
    transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 1s;
    will-change: transform;
}

.desktop-categories-dropdown.is-open {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
    transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 0s;
}

.desktop-modal-overlay {
    position: fixed;
    inset: 114px 0 0 0;
    background: rgba(10, 10, 10, 0.46);
    z-index: 130;
}



.desktop-categories-mega {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
}

.desktop-categories-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
    overflow-y: auto;
    min-height: 0;
    height: 100%;
    padding: 18px 12px;
}

.desktop-category-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #404040;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 600;
    min-height: 48px;
    padding: 0 16px;
    border-radius: 12px;
    transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.desktop-category-link::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #d4d4d4;
    flex: 0 0 auto;
    transition: background 0.18s ease;
}

.desktop-category-link:hover {
    background: linear-gradient(135deg, var(--main-theme-color-soft) 0%, var(--main-theme-color-surface) 100%);
    color: var(--main-theme-color-hover);
    transform: translateX(2px);
    box-shadow: inset 0 0 0 1px var(--main-theme-color-soft-strong);
}

.desktop-category-link:hover::before {
    background: var(--main-theme-color-hover);
}

.desktop-main-nav {
    min-width: 0;
    flex: 1 1 auto;
}

.desktop-main-nav ul {
    display: flex;
    align-items: center;
    gap: 16px;
    overflow-x: auto;
    white-space: nowrap;
    flex-direction: row;
}

.desktop-main-nav a {
    text-decoration: none;
    color: #2d2d2d;
    font-size: var(--main-font-size-1);
    font-weight: var(--main-font-weight);
}

.desktop-location {
    position: relative;
    flex: 0 0 auto;
}

.desktop-location-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 38px;
    padding: 0 14px 0 12px;
    border-radius: 999px;
    background: white;
    color: var(--main-font-color);
    font-family: var(--main-font);
    font-size: var(--main-font-size-1);
    font-weight: var(--main-font-weight);
    cursor: pointer;
    border: 2px solid white;
}

.desktop-location-toggle:hover {
    border-color: var(--main-theme-color);
    color: var(--main-font-color);
    border: 2px solid var(--main-theme-color-hover);
    background-color: var(--main-font-color-background);
}

.desktop-location-icon {
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--main-theme-color);
}

.desktop-location-label {
    max-width: 140px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.desktop-location-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: min(280px, 80vw);
    padding: 16px;
    border: 2px solid var(--main-theme-color);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
    z-index: 150;
}

.desktop-location-caption,
.desktop-location-city,
.desktop-location-country,
.desktop-location-source {
    margin: 0;
}

.desktop-location-caption {
    color: #7a7a7a;
    font-size: 12px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.desktop-location-city {
    margin-top: 8px;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.1;
}

.desktop-location-country {
    margin-top: 8px;
    color: #545454;
    line-height: 1.4;
}

.desktop-location-source {
    margin-top: 10px;
    color: #8a8a8a;
    font-size: 12px;
}

.desktop-location-refresh {
    margin-top: 14px;
    border: 2px solid var(--main-theme-color);
    border-radius: 999px;
    background: transparent;
    color: var(--main-font-color);
    min-height: 34px;
    padding: 0 14px;
    font-family: var(--main-font);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
}

.desktop-location-refresh:hover {
    background-color: #fff0f7;
    color: var(--main-font-color);
}

.desktop-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.desktop-control-group {
    position: relative;
    display: inline-flex;
    align-items: stretch;
}

.desktop-control-btn {
    text-decoration: none;
    color: #ffffff;
    box-sizing: border-box;
    border-radius: var(--main-border-radius);
    height: 42px;
    min-width: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: var(--main-font-size-1);
    font-weight: var(--main-font-weight);
    font-family: var(--main-font);
    background-color: #fe1189;
    border: 2px solid var(--main-theme-color);
}

.desktop-control-btn:hover {
    background-color: white;
    color: #000000;
}

.desktop-cart-link {
    position: relative;
}

.cart-count-badge {
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    border-radius: 999px;
    background: #e30707;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
}

.cart-count-badge[hidden] {
    display: none !important;
}

.desktop-cart-link .cart-count-badge {
    position: absolute;
    top: -7px;
    right: -7px;
}

.cart-count-badge--inline {
    position: static;
    margin-left: auto;
}

.desktop-control-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 220px;
    max-width: min(320px, calc(100vw - 24px));
    max-height: min(52vh, 420px);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 10px;
    border: 2px solid var(--main-theme-color);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    z-index: 180;
}

.desktop-control-dropdown[hidden],
.mobile-control-dropdown[hidden] {
    display: none !important;
}

.desktop-dropdown-option {
    width: 100%;
    min-height: 38px;
    padding: 8px 12px;
    border: none;
    border-radius: 12px;
    background: transparent;
    color: #111111;
    text-align: left;
    cursor: pointer;
    font-family: var(--main-font);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.2;
}

.desktop-dropdown-option.has-flag-option,
.mobile-dropdown-option.has-flag-option {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 0;
    overflow: hidden;
}

.header-dropdown-flag {
    width: 46px;
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 46px;
    border-right: 1px solid rgba(255, 15, 138, 0.35);
    font-size: 18px;
    line-height: 1;
}

.header-dropdown-name {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 8px 12px;
    min-width: 0;
}

.desktop-dropdown-option:hover,
.desktop-dropdown-option[aria-pressed="true"] {
    background: #fff0f7;
    color: var(--main-theme-color);
}



.site-header #burger {
    display: none;
    width: auto;
    min-width: 96px;
    height: 42px;
    padding: 0 14px;
    gap: 8px;
}

.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(247, 244, 248, 0.72);
    backdrop-filter: blur(10px);
    z-index: 140;
}

.mobile-nav-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: min(86vw, 388px);
    min-height: 100svh;
    min-height: 100dvh;
    height: -webkit-fill-available;
    z-index: 150;
    transform: translateX(-100%);
    transition: transform 0.22s ease;
    border-right: 1px solid rgba(24, 30, 45, 0.08);
    display: flex;
    flex-direction: column;
    padding-bottom: env(safe-area-inset-bottom, 0);
    background: linear-gradient(180deg, rgba(255, 250, 252, 0.98) 0%, rgba(255, 255, 255, 0.98) 100%);
    box-shadow: 24px 0 60px rgba(24, 30, 45, 0.12);
}

.mobile-nav-drawer.is-open {
    transform: translateX(0);
}

body.is-assistant-cta-active .mobile-nav-drawer,
html.is-assistant-cta-active .mobile-nav-drawer {
    z-index: 9999;
}

.mobile-location {
    display: none;
    position: relative;
    margin-top: auto;
    margin-bottom: 0;
    padding: 12px 0 0;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid rgba(24, 30, 45, 0.08);
    background: linear-gradient(180deg, rgba(255, 247, 250, 0) 0%, rgba(255, 247, 250, 0.76) 100%);
}

.mobile-utility-row {
    display: none;
    width: 100%;
    gap: 0;
    align-items: stretch;
    flex-direction: column;
}

.mobile-control-group {
    position: relative;
    min-width: 0;
    width: 100%;
}

.mobile-location-group {
    grid-column: auto;
}

.mobile-control-btn {
    width: 100%;
    min-width: 0;
    min-height: 0;
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr);
    align-items: center;
    justify-content: stretch;
    gap: 12px;
    padding: 12px 16px;
    font: 400 15px/24px Roboto, Arial, sans-serif;
    text-align: left;
    border: 0;
    border-bottom: 1px solid rgba(24, 30, 45, 0.08);
    border-radius: 0;
    background: transparent;
    color: #1b2432;
    box-shadow: none;
}

.mobile-control-btn .mobile-utility-link-icon {
    display: inline-flex;
    flex: 0 0 24px;
}

.mobile-control-btn .mobile-utility-link-label {
    display: block;
}

.mobile-control-dropdown {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: calc(100% + 8px);
    max-height: min(48vh, 320px);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 10px;
    border: 1px solid rgba(24, 30, 45, 0.08);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 20px 40px rgba(24, 30, 45, 0.12);
    z-index: 180;
    min-width: 160px;
}

.mobile-dropdown-option {
    width: 100%;
    min-height: 38px;
    padding: 8px 12px;
    border: none;
    border-radius: 12px;
    background: transparent;
    color: #111111;
    text-align: left;
    cursor: pointer;
    font-family: var(--main-font);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
}

.mobile-dropdown-option:hover,
.mobile-dropdown-option[aria-pressed="true"] {
    background: #fff0f7;
    color: var(--main-theme-color);
}

.mobile-location-toggle {
    width: 100%;
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr);
    align-items: center;
    justify-content: stretch;
    gap: 12px;
    min-height: 0;
    padding: 12px 16px;
    border: 0;
    border-bottom: 1px solid rgba(24, 30, 45, 0.08);
    border-radius: 0;
    background: transparent;
    color: #1b2432;
    font: 400 15px/24px Roboto, Arial, sans-serif;
    cursor: pointer;
    box-shadow: none;
}

.mobile-location-label {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-align: left;
}

.mobile-location-dropdown {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: calc(100% + 12px);
    padding: 16px;
    border: 1px solid rgba(24, 30, 45, 0.08);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 16px 32px rgba(24, 30, 45, 0.12);
}

.mobile-search-form {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #ececec;
    padding: 12px;
    gap: 10px;
}

.mobile-search-form input {
    flex: 1;
    border: none;
    font-size: var(--main-font-size-1);
    outline: none;
}

.mobile-search-form button {
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 24px;
}

.mobile-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 0;
    background: transparent;
    border-bottom: 1px solid rgba(24, 30, 45, 0.12);
}

.mobile-tab {
    border: 0;
    border-bottom: 2px solid transparent;
    border-radius: 0;
    background: transparent;
    height: 48px;
    font-size: 14px;
    font-weight: 500;
    color: #6f7785;
    cursor: pointer;
}

.mobile-tab.is-active {
    color: #1b2432;
    border-bottom-color: #1b2432;
    background: transparent;
    box-shadow: none;
}

.mobile-tab-panel {
    display: none;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}

.mobile-tab-panel.is-active {
    display: flex;
    flex: 1 1 auto;
    min-height: 0;
    flex-direction: column;
}

.mobile-nav-list,
.mobile-category-list,
.mobile-subcategory-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0;
}

.mobile-categories-shell {
    position: relative;
    min-height: 0;
    height: 100%;
    flex: 1 1 auto;
}

.mobile-categories-root.is-active,
.mobile-category-sheet.is-active {
    display: block;
}

.mobile-category-list,
.mobile-subcategory-list {
    list-style: none;
    margin: 0;
}

.mobile-category-item,
.mobile-subcategory-list li {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    border-bottom: 1px solid rgba(24, 30, 45, 0.08);
    border-radius: 0;
    background: transparent;
    overflow: visible;
}

.mobile-subcategory-list li:last-child {
    margin-bottom: 0;
}

.mobile-category-item a,
.mobile-subcategory-list a {
    display: block;
    padding: 12px 16px;
    text-decoration: none;
    color: #1b2432;
    font: 400 15px/24px Roboto, Arial, sans-serif;
    -webkit-tap-highlight-color: transparent;
}

@media (hover: none) {
    .mobile-category-item a:hover,
    .mobile-subcategory-list a:hover {
        background: transparent;
        color: var(--main-font-color);
    }
}

.mobile-category-open,
.mobile-category-back {
    border: none;
    background: transparent;
    color: #8a92a0;
    cursor: pointer;
    font-size: 14px;
    font-weight: 400;
}

.mobile-category-open {
    width: 48px;
    height: 48px;
}

.mobile-category-sheet {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 250, 252, 0.98) 0%, rgba(255, 255, 255, 0.98) 100%);
    display: none;
    overflow-y: auto;
    padding-bottom: 24px;
}

.mobile-category-sheet::after {
    content: none;
}

.mobile-category-sheet-head {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border-bottom: 1px solid rgba(24, 30, 45, 0.08);
}

.mobile-category-sheet-head strong {
    font: 500 15px/24px Roboto, Arial, sans-serif;
}

.mobile-category-all {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    margin: 12px 16px 10px;
    padding: 0 14px;
    border: 1px solid rgba(255, 15, 138, 0.18);
    border-radius: 16px;
    background: #ffffff;
    color: var(--main-theme-color);
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    line-height: 1;
    width: fit-content;
    max-width: calc(100% - 32px);
}

.mobile-category-all:hover {
    background: #fff0f7;
}

.mobile-nav-list li {
    padding: 0;
    border-bottom: 1px solid rgba(24, 30, 45, 0.08);
}

.mobile-nav-assistant-btn {
    width: 100%;
    min-height: 0;
    border: 0;
    border-bottom: 1px solid rgba(24, 30, 45, 0.08);
    border-radius: 0;
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr);
    align-items: center;
    justify-content: stretch;
    gap: 12px;
    background: transparent;
    color: #1b2432;
    font: 400 15px/24px Roboto, Arial, sans-serif;
    box-shadow: none;
    animation: none;
    cursor: pointer;
    padding: 12px 16px;
    text-align: left;
    text-decoration: none;
}

.mobile-nav-assistant-btn-icon,
.mobile-nav-assistant-btn-label {
    position: relative;
    z-index: 1;
}

.mobile-nav-assistant-btn-icon {
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.mobile-nav-assistant-btn:hover {
    transform: none;
}

.mobile-control-group--assistant {
    position: relative;
    width: 100%;
    max-width: none;
    margin: 0;
}

.burger-label {
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
}

.mobile-nav-link {
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: #1b2432;
    text-decoration: none;
    font: 400 15px/24px Roboto, Arial, sans-serif;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.mobile-nav-link-icon {
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #7c8594;
}

.mobile-nav-link-icon svg {
    width: 24px;
    height: 24px;
    display: block;
}

.mobile-nav-link-label {
    min-width: 0;
}

.mobile-utility-link-icon {
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #7c8594;
}

.mobile-utility-link-icon svg {
    width: 24px;
    height: 24px;
    display: block;
}

.mobile-utility-link-label {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mobile-control-btn:hover,
.mobile-location-toggle:hover,
.mobile-nav-assistant-btn:hover {
    background: transparent;
    color: #1b2432;
}

.site-header #search-btn::before {
    content: "";
    width: 20px;
    height: 20px;
    display: block;
    background-image: url('/content/icons/search.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20px 20px;
    filter: brightness(0) invert(1);
}

.home-products-section {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin-bottom: 40px;
}

@media (max-width: 1000px) {

    .desktop-assistant-btn {
        display: none !important;
    }

    html.is-assistant-open,
    body.is-assistant-open,
    body.is-assistant-cta-active,
    html.is-assistant-cta-active {
        overflow: auto;
        width: auto;
        padding-left: 0;
    }

    .header-top-info {
        gap: 10px;
    }

    .header-info-text strong {
        font-size: var(--main-font-size-1);
    }

    .header-info-text span {
        font-size: var(--main-font-size-1);
    }
}

@media (max-width: 980px) {
    .assistant-cta-banner,
    #assistant-drawer,
    #assistant-overlay,
    #assistant-cta-spotlight,
    .assistant-status,
    .assistant-cta-banner--desktop {
        display: none !important;
    }

    body {
        width: 100%;
        padding: 0 16px 24px;
        box-sizing: border-box;
    }

    .desktop-main-nav,
    .desktop-location,
    .desktop-assistant-btn,
    #desktop-categories-toggle,
    #desktop-categories-dropdown,
    #desktop-modal-overlay,
    .desktop-control-group,
    #desktop-login-btn {
        display: none !important;
    }

    #desktop-cart-btn {
        display: inline-flex !important;
        position: absolute;
        top: 0px;
        right: 116px;
        z-index: 3;
    }

    .mobile-location {
        display: flex;
    }

    .mobile-utility-row {
        display: flex;
        flex-direction: column;
    }

    .site-header {
        min-height: auto;
        padding: 10px 0 14px;
    }

    .header-top-row {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        min-height: auto;
        gap: 10px;
        height: auto;
        position: relative;
    }

    .site-header #burger {
        display: inline-flex;
        position: absolute;
        top: 8px;
        right: 0;
        z-index: 4;
    }

    .header-top-info,
    .header-bottom-row {
        display: none;
    }

    .site-header #logo {
        height: 28px;
    }

    .header-logo-link {
        min-height: 42px;
        width: max-content;
    }

    .site-header .search-wrapper {
        max-width: none;
        width: 100%;
    }

    .site-header .search-wrapper input[type="text"] {
        height: 44px;
        font-size: 16px;
    }

    .site-header.is-search-focus .header-top-row {
        grid-template-columns: 1fr;
        padding-right: 0;
    }

    .site-header.is-search-focus #burger,
    .site-header.is-search-focus .header-logo-link {
        display: none !important;
    }

    .site-header.is-search-focus .search-wrapper {
        grid-column: 1 / -1;
        width: 100%;
    }
}

@media (max-width: 700px) {
    body {
        padding-left: 12px;
        padding-right: 12px;
    }

    .header-top-row {
        gap: 8px;
    }

    .site-header {
        padding-top: 8px;
    }

    .mobile-location {
        padding-left: 0;
        padding-right: 0;
    }

    .mobile-utility-row {
        flex-direction: column;
    }

    .mobile-location-dropdown {
        left: 12px;
        right: 12px;
    }

    .assistant-cta-banner--mobile {
        max-width: 220px;
        min-width: 200px;
    }

    #desktop-cart-btn {
        right: 108px;
    }

    .site-header #logo {
        height: 24px;
    }

    .site-header .search-wrapper input[type="text"] {
        padding: 12px 54px 12px 12px;
    }

    .mobile-nav-drawer {
        width: min(88vw, 340px);
    }

    .search-result-tags {
        width: auto;
        min-width: 0;
    }

    .home-products-section__head {
        width: 100%;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .home-products-section__eyebrow {
        order: 2;
        margin: 0;
        flex: 0 0 auto;
        white-space: nowrap;
    }

    .home-products-section__title {
        min-width: 0;
        flex: 1 1 auto;
    }

}
