@font-face {
    font-family: Plex;
    src: url('../fonts/ibm-plex-sans-arabic/ibm-plex-sans-arabic-regular.woff2') format('woff2');
    font-weight: 400;
    font-display: swap
}
@font-face {
    font-family: Plex;
    src: url('../fonts/ibm-plex-sans-arabic/ibm-plex-sans-arabic-medium.woff2') format('woff2');
    font-weight: 500;
    font-display: swap
}
@font-face {
    font-family: Plex;
    src: url('../fonts/ibm-plex-sans-arabic/ibm-plex-sans-arabic-semibold.woff2') format('woff2');
    font-weight: 600;
    font-display: swap
}
:root {
    color-scheme: light;
    --canvas: #fff;
    --surface: #f7f7f5;
    --elevated: #fff;
    --ink: #191919;
    --muted: #64645f;
    --line: #e5e5df;
    --red: #ce172c;
    --red-soft: #fff0f1;
    --on-red: #fff;
    --gutter: 36px;
    --radius: 12px;
    --gap: 20px;
    --ease: cubic-bezier(.22,1,.36,1);
    --fast: 180ms;
    --section: 52px;
    --heading: 25px;
    --price: 18px
}
:root[data-theme=dark] {
    color-scheme: dark;
    --canvas: #171717;
    --surface: #222221;
    --elevated: #1b1b1a;
    --ink: #f7f7f3;
    --muted: #b3b3ab;
    --line: #3b3b37;
    --red: #ff596a;
    --red-soft: #382023;
    --on-red: #171717
}
* {
    box-sizing: border-box
}
body {
    margin: 0;
    background: var(--canvas);
    color: var(--ink);
    font: 400 15px/1.55 Plex,Arial,sans-serif
}
button,input {
    font: inherit
}
button,a,input,summary {
    -webkit-tap-highlight-color: transparent
}
a {
    color: inherit;
    text-decoration: none
}
button {
    border: 0;
    background: none;
    color: inherit;
    cursor: pointer;
    padding: 0
}
button:disabled {
    opacity: .4;
    cursor: not-allowed
}
img {
    display: block;
    max-width: 100%;
    object-fit: cover
}
input {
    min-width: 0;
    color: inherit;
    caret-color: var(--red)
}
h1,h2,h3,h4,p {
    margin: 0
}
h1,h2,h3,h4,strong {
    font-weight: 500
}
h2 {
    font-size: var(--heading);
    line-height: 1.4
}
button,a {
    touch-action: manipulation
}
button:focus-visible,a:focus-visible,input:focus-visible,summary:focus-visible {
    outline: 2px solid var(--red);
    outline-offset: 4px
}
::selection {
    background: var(--red);
    color: var(--on-red)
}
[hidden] {
    display: none!important
}
.icon {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.65;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex: none
}
.arrow-back {
    transform: rotate(180deg)
}
:root[dir=ltr] .arrow-forward {
    transform: rotate(180deg)
}
:root[dir=ltr] .arrow-back {
    transform: none
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%)
}
.skip {
    position: fixed;
    top: -80px;
    z-index: 100;
    background: var(--ink);
    color: var(--canvas);
    padding: 12px
}
.skip:focus {
    top: 0
}
header {
    border-bottom: 1px solid var(--line);
    background: var(--canvas)
}
.announcement {
    height: 30px;
    background: var(--announcement-bg);
    color: var(--announcement-fg);
    display: flex;
    padding-inline: var(--gutter);
    gap: 12px
}
.announcement-viewport {
    position: relative;
    flex: 1;
    overflow: hidden
}
.announcement-message {
    position: absolute;
    left: 0;
    top: 4px;
    white-space: nowrap;
    width: max-content;
    font: 400 12px/22px Plex,"Apple Color Emoji","Segoe UI Emoji",sans-serif;
    animation: announcement-rtl var(--announcement-duration,30s) linear infinite;
    animation-delay: calc(var(--announcement-duration,30s) * -.35)
}
[dir=ltr] .announcement-message {
    animation-name: announcement-ltr
}
.announcement button {
    width: 30px;
    display: grid;
    place-items: center
}
.announcement .icon {
    width: 14px;
    height: 14px
}
.announcement:is(:hover,:focus-within) .announcement-message,.announcement.is-paused .announcement-message {
    animation-play-state: paused
}
@keyframes announcement-rtl {
    from {
        transform: translateX(var(--announcement-start,1200px))
    }
    to {
        transform: translateX(calc(var(--announcement-text,600px) * -1))
    }
}
@keyframes announcement-ltr {
    from {
        transform: translateX(calc(var(--announcement-text,600px) * -1))
    }
    to {
        transform: translateX(var(--announcement-start,1200px))
    }
}
.header-primary,.header-secondary,main,footer>div {
    max-width: 1440px;
    margin-inline: auto;
    padding-inline: var(--gutter)
}
.header-primary {
    display: grid;
    grid-template-columns: 170px minmax(260px,380px) auto;
    justify-content: space-between;
    align-items: center;
    gap: 36px;
    min-height: 90px
}
.logo img {
    width: 154px;
    height: 62px;
    object-fit: contain
}
.logo-dark {
    display: none
}
:root[data-theme=dark] .logo-light {
    display: none
}
:root[data-theme=dark] .logo-dark {
    display: block
}
.search {
    display: flex;
    align-items: center;
    gap: 12px;
    height: 46px;
    border: 1px solid var(--line);
    background: var(--surface);
    padding: 0 17px;
    border-radius: 9px;
    transition: border-color var(--fast),background var(--fast)
}
.search:focus-within {
    border-color: var(--red);
    background: var(--canvas)
}
.search input {
    flex: 1;
    width: 100%;
    border: 0;
    outline: none;
    background: none;
    font-size: 15px
}
.search input:focus-visible {
    outline: none
}
.search .icon {
    width: 20px;
    height: 20px;
    color: var(--muted)
}
.actions {
    display: flex;
    gap: 26px;
    align-items: center
}
.actions button {
    min-height: 46px;
    display: flex;
    align-items: center;
    gap: 7px;
    position: relative;
    font-size: 13px;
    white-space: nowrap;
    transition: color var(--fast)
}
.cart b {
    position: absolute;
    inset-inline-start: 12px;
    top: 0;
    background: var(--red);
    color: var(--on-red);
    font: 500 10px/17px Plex;
    min-width: 17px;
    border-radius: 9px;
    text-align: center;
    padding-inline: 3px
}
.header-secondary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 56px;
    border-top: 1px solid var(--line)
}
.header-secondary>nav {
    display: flex;
    align-items: center;
    gap: 13px;
    min-width: 0
}
.header-secondary>nav>a,.category-launch {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 14px;
    white-space: nowrap;
    min-height: 42px;
    padding-inline: 8px;
    border-radius: 6px;
    transition: color var(--fast),background var(--fast),transform var(--fast)
}
.category-launch {
    font-weight: 500;
    margin-inline-start: -8px;
    margin-inline-end: 4px
}
.category-launch::after {
    content: "";
    width: 1px;
    height: 18px;
    background: var(--line);
    margin-inline-start: 15px
}
.category-launch .icon {
    width: 18px;
    height: 18px;
    color: var(--red)
}
.nav-deals {
    color: var(--red)
}
.nav-deals .icon {
    width: 15px;
    height: 15px
}
.utilities {
    display: flex;
    align-items: center;
    gap: 13px;
    flex: none;
    font-size: 12px
}
.utilities>button,.utilities>a {
    display: flex;
    align-items: center;
    gap: 4px;
    min-height: 40px
}
.utilities .icon {
    width: 14px;
    height: 14px
}
.theme-control {
    display: flex;
    background: var(--surface);
    border-radius: 7px;
    padding: 3px;
    gap: 2px
}
.theme-control button {
    min-width: 42px;
    height: 36px;
    padding: 3px 6px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    transition: background var(--fast),color var(--fast)
}
.theme-control button span {
    font-size: 10px
}
.theme-control button[aria-pressed=true] {
    background: var(--elevated);
    color: var(--red);
    box-shadow: inset 0 0 0 1px var(--line)
}
.theme-control .icon {
    width: 16px;
    height: 16px
}
.mobile-menu {
    display: none
}
main {
    padding-top: 24px
}
.hero {
    border-bottom: 1px solid var(--line)
}
.hero-stage {
    overflow: hidden;
    border-radius: 14px;
    background: var(--surface);
    aspect-ratio: 1796/876
}
.hero-stage>a {
    display: block;
    width: 100%;
    height: 100%
}
.hero-stage img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: var(--canvas)
}
.hero-bottom {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-block: 14px;
    flex-wrap: wrap
}
.hero h1 {
    font-size: 19px;
    white-space: nowrap
}
.slide-controls {
    display: flex;
    align-items: center;
    gap: 6px
}
.slide-controls>button {
    width: 36px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 6px;
    border: 0;
    transition: background var(--fast)
}
.slide-controls .icon {
    width: 17px;
    height: 17px
}
.slide-dots {
    display: flex;
    gap: 2px
}
.slide-dots button {
    width: 22px;
    height: 32px;
    display: grid;
    place-items: center
}
.slide-dots span {
    display: block;
    width: 5px;
    height: 5px;
    border-radius: 10px;
    background: var(--line);
    transition: width var(--fast),background var(--fast)
}
.slide-dots [aria-pressed=true] span {
    width: 17px;
    background: var(--red)
}
.fx {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-inline-start: auto;
    font-variant-numeric: tabular-nums
}
.fx>strong {
    font-size: 14px;
    white-space: nowrap
}
.fx>strong span {
    color: var(--muted);
    margin: 0 4px
}
.fx dl {
    display: flex;
    gap: 24px;
    margin: 0
}
.fx dl>div {
    display: flex;
    align-items: baseline;
    gap: 7px
}
.fx dt {
    color: var(--muted);
    font-size: 12px
}
.fx dd {
    margin: 0;
    font-size: 18px;
    font-weight: 500
}
.fx-date {
    font-size: 10px;
    line-height: 1.6;
    color: var(--muted)
}
.fx-date time {
    display: block;
    font-size: 10px
}
.section {
    margin-top: var(--section);
    min-width: 0
}
.section-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px
}
.section-heading>div {
    display: flex;
    align-items: center;
    gap: 20px
}
.text-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    white-space: nowrap;
    font-size: 13px;
    font-weight: 500
}
.text-link .icon {
    width: 17px;
    height: 17px
}
.rail-controls {
    display: flex;
    align-items: center;
    gap: 2px;
    flex: none
}
.rail-controls button {
    display: grid;
    place-items: center;
    width: 36px;
    height: 44px;
    border: 0;
    border-radius: 6px;
    transition: background var(--fast),color var(--fast),transform var(--fast)
}
.rail-controls .icon {
    width: 17px;
    height: 17px
}
.rail {
    display: flex;
    gap: var(--gap);
    overflow-x: auto;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    overscroll-behavior-inline: contain;
    padding-block: 3px 9px
}
.rail-controls button:disabled {
    opacity: .25
}
.rail-controls button:not(:disabled):active {
    transform: scale(.93)
}
.rail::-webkit-scrollbar {
    display: none
}
.rail>* {
    flex: none;
    scroll-snap-align: start;
    min-width: 0
}
.category {
    width: calc((100% - 4 * var(--gap))/4.5)
}
.category-media {
    aspect-ratio: 1.28;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--surface)
}
.category-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 0;
    transition: transform 260ms var(--ease)
}
.category-name {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    padding-top: 12px
}
.category h3 {
    font-size: 17px;
    line-height: 1.55
}
.category-name .icon {
    width: 18px;
    height: 18px
}
.brands {
    padding-top: 22px;
    border-top: 1px solid var(--line);
    margin-top: 32px
}
.brands .section-heading {
    margin-bottom: 12px
}
.brands h2 {
    font-size: 20px
}
.brand-rail {
    gap: 14px;
    padding: 5px 0 10px
}
.brand {
    width: calc((100% - 8 * 14px)/8.5);
    height: 92px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border-radius: 0;
    position: relative;
    transition: color var(--fast),transform var(--fast)
}
.brand:not(:last-child)::after {
    content: "";
    position: absolute;
    inset-inline-end: -7px;
    top: 20px;
    height: 32px;
    width: 1px;
    background: var(--line)
}
.brand img {
    max-width: 88%;
    object-fit: contain;
    mix-blend-mode: multiply
}
.brand span {
    font-size: 11px;
    line-height: 1.4;
    color: var(--muted);
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}
:root[data-theme=dark] .brand {
    background: transparent
}
:root[data-theme=dark] .brand img {
    background: #f4f4ef;
    mix-blend-mode: normal;
    border-radius: 3px
}
:root[data-theme=dark] .brand span {
    color: var(--muted)
}
.latest-products {
    margin-top: 38px
}
.product {
    border-radius: 10px;
    background: var(--elevated);
    box-shadow: 0 1px 0 var(--line),0 0 0 1px color-mix(in srgb,var(--line) 48%,transparent);
    overflow: hidden;
    position: relative;
    transition: box-shadow 180ms var(--ease),transform 180ms var(--ease)
}
.products>.product {
    width: calc((100% - 5 * var(--gap))/5.25)
}
.product-media {
    aspect-ratio: 1.15;
    position: relative;
    overflow: hidden;
    background: #f4f4f2
}
.product-media>a {
    display: block;
    height: 100%;
    width: 100%
}
.product-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 0;
    transition: transform 260ms var(--ease)
}
.save {
    position: relative;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    color: #252525
}
.save::before {
    content: "";
    position: absolute;
    inset: 7px;
    background: #fff;
    border-radius: 50%;
    opacity: .96;
    transition: background var(--fast)
}
.save .icon {
    width: 16px;
    height: 16px;
    z-index: 1;
    stroke-width: 1.6
}
.save[aria-pressed=true] {
    color: #ce172c
}
.save[aria-pressed=true] .icon {
    fill: #ce172c;
    stroke: #ce172c
}
.discount {
    color: #fff;
    background: #bd1026;
    padding: 3px 7px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 500;
    line-height: 1.3
}
.stock {
    background: #fff;
    color: #333;
    font-size: 11px;
    padding: 3px 7px;
    border-radius: 4px
}
.product-body {
    padding: 11px 10px 8px;
    border-inline: 1px solid color-mix(in srgb,var(--line) 45%,transparent);
    border-radius: 0 0 10px 10px
}
.brand-name {
    display: block;
    min-height: 16px;
    font-size: 11px;
    line-height: 1.6;
    text-transform: uppercase;
    letter-spacing: .035em;
    color: var(--muted);
    margin-bottom: 4px
}
.product h3 {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
    height: 45px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden
}
.product-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
    margin-top: 11px
}
.price {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 7px;
    text-align: start;
    font-variant-numeric: tabular-nums
}
.price strong {
    font-size: 17px;
    line-height: 1.3;
    font-weight: 500;
    letter-spacing: -.015em;
    display: inline-flex;
    align-items: baseline;
    gap: 5px
}
.product .price {
    min-width: 0;
    min-height: 43px;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px
}
.price-currency {
    order: 2;
    font-size: 10px;
    line-height: 1;
    font-weight: 400;
    letter-spacing: .015em;
    color: var(--muted)
}
.price-number {
    font-size: inherit
}
.today .price-currency {
    font-size: 13px
}
.price del {
    color: var(--muted);
    font-size: 11px
}
.add {
    height: 44px;
    width: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border-radius: 7px;
    color: var(--ink);
    transition: background var(--fast),color var(--fast),transform var(--fast)
}
.add .icon {
    width: 19px;
    height: 19px
}
.add.is-added {
    background: var(--red-soft);
    color: var(--red)
}
.add span {
    display: none
}
@media(min-width:901px) {
    .add {
        width: auto;
        min-width: 62px;
        padding-inline: 7px
    }
    .add span {
        display: inline;
        font-size: 11px;
        font-weight: 500
    }
    .product[data-configuration=true] .add span {
        display: none
    }
    .product[data-configuration=true] .add {
        min-width: 44px
    }
}
.product-body>small {
    font-size: 10px;
    color: var(--muted)
}
.featured-deals .product-body {
    box-shadow: inset 0 -2px var(--red-soft)
}
.deals {
    background: #191a1a;
    color: #f9f9f5;
    padding: 25px 28px 28px;
    border-radius: 16px;
    --ink: #f9f9f5;
    --muted: #b6b7b0;
    --elevated: #242626;
    --line: #454744;
    --red: #ff6675;
    --canvas: #191a1a
}
.deal-heading {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-bottom: 22px
}
.deal-title {
    display: flex;
    align-items: center;
    gap: 11px
}
.deal-title>.icon {
    color: #ff6675;
    width: 21px
}
.deal-expiry {
    display: flex;
    gap: 8px;
    align-items: baseline;
    margin-inline-start: auto;
    color: #b6b7b0;
    font-size: 12px
}
.deal-expiry time {
    font-size: 13px;
    color: #f9f9f5
}
.deal-products {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 22px
}
.deals .rail-controls {
    display: none
}
.deals .product-body {
    border: 0
}
.deal-products .product {
    display: grid;
    grid-template-columns: 46% 54%;
    align-items: stretch;
    border-radius: 10px
}
.deal-products .product-media {
    height: 100%;
    aspect-ratio: auto;
    min-height: 178px
}
.deal-products .product-body {
    padding: 14px 12px;
    display: flex;
    flex-direction: column;
    justify-content: center
}
.deal-products .product h3 {
    font-size: 14px;
    line-height: 1.7;
    height: 48px
}
.deal-products .product .price strong {
    font-size: 17px
}
.deal-products .product-bottom {
    margin-top: 12px
}
.deal-products .product .discount {
    font-size: 10px
}
.promotions {
    margin-top: 32px
}
.promotion-rail .promotion {
    width: calc((100% - var(--gap))/2)
}
.promotions>.rail-controls {
    justify-content: flex-end
}
.promotion {
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--surface)
}
.promotion img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 0
}
.today {
    border-block: 1px solid var(--line);
    padding-block: 26px
}
.today-feature {
    display: grid;
    grid-template-columns: minmax(260px,40%) 1fr;
    max-width: 910px;
    margin: auto;
    gap: 36px;
    align-items: center
}
.today-media {
    display: block;
    aspect-ratio: 1.25;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--surface)
}
.today-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 0;
    transition: transform 260ms var(--ease)
}
.today-label {
    display: inline-block;
    font-size: 13px;
    color: var(--red);
    margin-bottom: 14px
}
.today h2 {
    font-size: 28px;
    line-height: 1.5;
    max-width: 480px
}
.today .price {
    margin-block: 18px 22px
}
.today .price strong {
    font-size: 26px
}
.solid-action {
    display: inline-flex;
    align-items: center;
    gap: 25px;
    padding: 12px 20px;
    background: var(--ink);
    color: var(--canvas);
    border-radius: 7px;
    font-size: 14px;
    min-height: 46px;
    transition: background var(--fast),transform var(--fast)
}
.solid-action .icon {
    width: 18px;
    height: 18px
}
.tabs {
    display: flex;
    align-items: center;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
    padding: 2px 0 12px;
    margin-bottom: 9px
}
.tabs>button {
    flex: none;
    padding: 9px 15px;
    border-radius: 7px;
    color: var(--muted);
    background: var(--surface);
    font-size: 14px;
    min-height: 44px;
    transition: background var(--fast),color var(--fast)
}
.tabs>button[aria-selected=true] {
    background: var(--ink);
    color: var(--canvas)
}
.tabs>button[aria-selected=true]::before {
    content: "";
    display: inline-block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #ff6675;
    vertical-align: middle;
    margin-inline-end: 7px
}
.tab-destination {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 13px
}
.category-discovery {
    padding-top: 28px;
    border-top: 1px solid var(--line)
}
footer {
    margin-top: 64px;
    background: #191a1a;
    color: #f4f4ee;
    --ink: #f4f4ee;
    --canvas: #191a1a;
    --line: #3c3d39;
    --muted: #b1b2a9;
    --red: #ff6675
}
.footer-newsletter {
    position: relative;
    display: grid;
    grid-template-columns: 1fr minmax(280px,460px);
    align-items: center;
    gap: 50px;
    padding-block: 26px;
    border-bottom: 1px solid var(--line)
}
.footer-newsletter h2 {
    font-size: 24px;
    display: flex;
    align-items: center;
    gap: 12px
}
.footer-newsletter h2::before {
    content: "";
    width: 5px;
    height: 24px;
    background: #e61932;
    border-radius: 1px
}
.footer-newsletter p {
    font-size: 13px;
    color: var(--muted);
    margin-top: 6px
}
.footer-newsletter form {
    display: flex;
    width: 100%;
    max-width: 100%;
    border-bottom: 1px solid #82847a;
    align-items: center;
    transition: border-color var(--fast)
}
.footer-newsletter form:focus-within {
    border-color: var(--red)
}
.footer-newsletter input {
    border: 0;
    background: transparent;
    flex: 1;
    height: 48px;
    font-size: 14px;
    outline: none
}
.footer-newsletter input:focus-visible {
    outline: none
}
.footer-newsletter button {
    display: flex;
    gap: 15px;
    align-items: center;
    font-size: 13px;
    min-height: 48px
}
.footer-newsletter button .icon {
    width: 20px;
    height: 20px
}
.footer-main {
    display: grid;
    grid-template-columns: .85fr 1.15fr 1.4fr 1.1fr;
    gap: 40px;
    padding-block: 30px 26px
}
.footer-group:not(.footer-contact)>div {
    grid-template-columns: 1fr 1fr;
    column-gap: 18px
}
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    padding-inline-end: 16px
}
.footer-brand .payments {
    padding-top: 6px
}
.footer-group {
    min-width: 0
}
.footer-brand img {
    object-fit: contain;
    width: 154px;
    height: 62px
}
.footer-brand p {
    font-size: 13px;
    color: var(--muted);
    margin-top: 16px
}
.footer-group summary {
    list-style: none;
    font-weight: 500;
    font-size: 15px;
    margin-bottom: 15px;
    color: #fff
}
.footer-group summary::-webkit-details-marker {
    display: none
}
.footer-group summary .icon {
    display: none
}
.footer-group>div {
    display: grid;
    gap: 11px;
    font-size: 13px;
    color: var(--muted)
}
.footer-information>div {
    grid-template-columns: 1fr 1fr
}
.footer-group a {
    width: fit-content;
    max-width: 100%;
    overflow-wrap: anywhere
}
.footer-contact>div {
    font-variant-numeric: tabular-nums
}
.footer-contact a {
    direction: ltr;
    text-align: start
}
.footer-contact a[href^="tel:"] {
    font-size: 17px;
    color: var(--ink);
    letter-spacing: .015em
}
.footer-contact p {
    font-size: 12px
}
.footer-bottom {
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: space-between;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 11px
}
.payments {
    display: flex;
    gap: 12px;
    align-items: center
}
.payments img {
    width: 41px;
    height: 27px;
    object-fit: contain
}
.footer-group a {
    transition: color 160ms,transform 160ms
}
.footer-group a:hover {
    transform: translateY(-1px)
}
dialog {
    border: 1px solid var(--line);
    background: var(--canvas);
    color: var(--ink);
    padding: 0;
    border-radius: 14px;
    max-height: calc(100dvh - 48px);
    overscroll-behavior: contain
}
dialog::backdrop {
    background: #0006
}
#mega {
    width: min(1120px,calc(100% - 48px));
    margin: auto
}
.mega-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 26px
}
.mega-top h2 {
    font-size: 23px
}
.mega-top button {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center
}
.mega-root-tabs {
    display: grid;
    grid-template-columns: repeat(4,minmax(0,1fr));
    padding: 0 26px 18px;
    border-bottom: 1px solid var(--line)
}
.mega-root-tabs button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 12px 10px;
    border-radius: 5px;
    min-height: 50px;
    font-size: 14px;
    text-align: start;
    background: transparent;
    position: relative;
    transition: background var(--fast),color var(--fast)
}
.mega-root-tabs button[aria-selected=true] {
    background: var(--red-soft);
    color: var(--ink);
    font-weight: 500
}
.mega-root-tabs button[aria-selected=true]::before {
    content: "";
    position: absolute;
    inset-inline-start: 0;
    top: 14px;
    bottom: 14px;
    width: 3px;
    border-radius: 2px;
    background: var(--red)
}
.mega-root-tabs button[aria-selected=true] .icon {
    color: var(--red)
}
.mega-root-tabs .icon {
    width: 16px;
    height: 16px
}
.mega-panel {
    display: grid;
    grid-template-columns: 220px 1fr;
    padding: 26px
}
.mega-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 1;
    align-self: start
}
.mega-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 0
}
.mega-image>span {
    position: absolute;
    bottom: 0;
    inset-inline: 0;
    padding: 30px 15px 14px;
    background: linear-gradient(transparent,#000a);
    color: white;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between
}
.mega-path-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px
}
.mega-path-heading h3 {
    font-size: 20px
}
.mega-path-grid {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr))
}
.mega-path-grid h4 {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    margin-bottom: 10px
}
.mega-path-grid h4 .icon {
    width: 14px;
    height: 14px
}
.mega-path-grid article>div {
    display: grid;
    gap: 8px;
    font-size: 13px;
    color: var(--muted)
}
.mega-path-grid a {
    min-height: 30px;
    display: flex;
    align-items: center;
    transition: color 160ms
}
.mega-path-grid a:hover {
    color: var(--red)
}
.root-direct a {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px
}
.mega-bottom {
    display: flex;
    align-items: center;
    gap: 28px;
    border-top: 1px solid var(--line);
    padding: 12px 26px;
    background: var(--canvas);
    font-size: 13px
}
.mega-bottom>a,.mega-bottom>button {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 35px
}
.mega-bottom>a:first-child {
    margin-inline-end: auto
}
.mega-bottom .icon {
    width: 17px;
    height: 17px
}
.back-top {
    position: fixed;
    bottom: 28px;
    inset-inline-end: 20px;
    z-index: 5;
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: var(--canvas)
}
.back-top .icon,[dir=ltr] .back-top .icon {
    transform: rotate(90deg);
    width: 17px;
    height: 17px
}
.toast {
    position: fixed;
    z-index: 40;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    padding: 12px 20px;
    border-radius: 8px;
    background: var(--ink);
    color: var(--canvas);
    font-size: 14px;
    max-width: calc(100% - 40px);
    width: max-content
}
@media(hover:hover) {
    .actions button:hover,.text-link:hover,.footer-group a:hover,.utilities>a:hover {
        color: var(--red)
    }
    .header-secondary>nav>a:hover,.category-launch:hover {
        background: var(--surface);
        color: var(--red);
        transform: translateY(-1px)
    }
    .rail-controls button:not(:disabled):hover,.slide-controls>button:hover {
        background: var(--surface);
        color: var(--red)
    }
    .category:hover img,.product:hover .product-media img,.today-media:hover img {
        transform: scale(1.02)
    }
    .product:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 14px #0000000b,0 0 0 1px color-mix(in srgb,var(--line) 80%,transparent)
    }
    .product:hover .add {
        color: var(--red)
    }
    .brand:hover {
        color: var(--red);
        transform: translateY(-2px)
    }
    .add:hover {
        background: var(--red-soft)
    }
    .solid-action:hover {
        transform: translateY(-2px)
    }
    .mega-root-tabs button:hover {
        background: var(--red-soft)
    }
    .tabs>button:hover {
        color: var(--red)
    }
}
button:active,.solid-action:active {
    transform: scale(.97)
}
@media(max-width:1190px) {
    :root {
        --gutter: 26px;
        --gap: 16px
    }
    .header-primary {
        grid-template-columns: 150px minmax(230px,350px) auto;
        gap: 24px
    }
    .logo img {
        width: 140px
    }
    .actions {
        gap: 16px
    }
    .actions span {
        display: none
    }
    .header-secondary>nav {
        gap: 17px
    }
    .header-secondary>nav>a,.category-launch {
        font-size: 13px
    }
    .utilities {
        gap: 12px
    }
    .hero-bottom {
        gap: 14px
    }
    .fx {
        gap: 15px
    }
    .fx dl {
        gap: 16px
    }
    .fx-date {
        max-width: 140px
    }
    .deal-products .product {
        display: block
    }
    .deal-products .product-media {
        aspect-ratio: 1.45;
        min-height: 0;
        height: auto
    }
    .deal-products .product h3 {
        font-size: 15px
    }
    .deal-products {
        gap: 18px
    }
    .deal-products .product-bottom {
        margin-top: 8px
    }
}
@media(max-width:900px) {
    :root {
        --gutter: 22px;
        --section: 40px;
        --heading: 23px
    }
    .header-primary {
        min-height: 88px;
        grid-template-columns: 135px minmax(200px,1fr) auto;
        gap: 22px
    }
    .logo img {
        width: 125px;
        height: 54px
    }
    .search kbd {
        display: none
    }
    .header-secondary {
        gap: 14px;
        flex-wrap: wrap;
        padding-block: 6px
    }
    .header-secondary>nav {
        gap: 20px;
        width: 100%;
        justify-content: space-between
    }
    .utilities {
        margin-inline-start: auto;
        gap: 19px
    }
    .fx {
        width: 100%;
        justify-content: space-between;
        border-top: 1px solid var(--line);
        padding-top: 12px;
        margin: 0
    }
    .fx-date {
        max-width: none
    }
    .hero h1 {
        font-size: 18px
    }
    .slide-controls {
        margin-inline-start: auto
    }
    .hero-bottom {
        padding-block: 11px
    }
    .products>.product {
        width: calc((100% - 3 * var(--gap))/3.25)
    }
    .category {
        width: calc((100% - 3 * var(--gap))/3.25)
    }
    .category h3 {
        font-size: 16px
    }
    .brand {
        width: calc((100% - 6 * 14px)/6.25)
    }
    .brand img {
        width: 82px
    }
    .today-feature {
        gap: 28px
    }
    .today h2 {
        font-size: 23px
    }
    .today .price strong {
        font-size: 27px
    }
    .mega-path-grid {
        grid-template-columns: repeat(2,minmax(0,1fr))
    }
    .mega-panel {
        grid-template-columns: 180px 1fr;
        gap: 20px
    }
    .mega-root-tabs button {
        font-size: 13px;
        padding: 10px
    }
    .footer-main {
        grid-template-columns: 1fr 1fr 1fr
    }
    .footer-brand {
        grid-column: 1/-1;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        border: 0;
        padding: 0
    }
    .footer-newsletter {
        gap: 22px
    }
    .footer-newsletter form {
        width: 320px
    }
    .footer-newsletter h2 {
        font-size: 23px
    }
}
@media(max-width:560px) {
    :root {
        --gutter: 16px;
        --gap: 12px;
        --section: 32px;
        --heading: 22px;
        --price: 18px
    }
    .announcement {
        padding-inline: 12px;
        height: 29px
    }
    .announcement-message {
        font-size: 11px
    }
    .header-primary {
        display: grid;
        grid-template-columns: 44px 1fr auto;
        min-height: 0;
        gap: 6px 12px;
        padding-top: 8px;
        padding-bottom: 8px
    }
    .mobile-menu {
        display: grid;
        place-items: center;
        width: 44px;
        height: 44px
    }
    .logo img {
        width: 109px;
        height: 44px
    }
    .actions {
        gap: 10px
    }
    .actions .action {
        min-height: 44px;
        min-width: 44px;
        justify-content: center
    }
    .actions .action[data-saved] {
        display: none
    }
    .actions .icon {
        width: 21px;
        height: 21px
    }
    .cart b {
        top: 0;
        inset-inline-start: 18px
    }
    .search-shell {
        grid-column: 1/-1;
        grid-row: 2
    }
    .search {
        height: 44px;
        gap: 10px;
        padding-inline: 13px
    }
    .search input {
        font-size: 14px
    }
    .header-secondary {
        gap: 7px;
        padding-block: 0 7px;
        border-top: 0
    }
    .header-secondary>nav {
        display: none
    }
    .category-launch::after {
        margin-inline-start: 4px
    }
    .header-secondary>nav>a,.category-launch {
        padding-inline: 6px
    }
    .header-secondary>nav>a,.category-launch {
        font-size: 12px;
        min-height: 36px;
        flex: none
    }
    .category-launch .icon {
        width: 16px;
        height: 16px
    }
    .utilities {
        width: 100%;
        justify-content: flex-end;
        gap: 20px;
        padding-top: 0;
        border-top: 1px solid var(--line)
    }
    .utilities>button {
        margin-inline-end: auto
    }
    .utilities>button,.utilities>a {
        min-height: 35px
    }
    .theme-control button {
        height: 36px;
        min-width: 43px;
        width: auto;
        padding-inline: 5px
    }
    .theme-control button span {
        font-size: 10px
    }
    main {
        padding-top: 14px
    }
    .hero-stage {
        border-radius: 10px
    }
    .hero-bottom {
        gap: 8px;
        padding-block: 9px 12px
    }
    .hero h1 {
        font-size: 16px
    }
    .slide-controls>button {
        height: 44px;
        width: 30px
    }
    .slide-controls {
        gap: 3px
    }
    .slide-dots button {
        width: 19px
    }
    .fx {
        gap: 12px;
        padding-top: 10px;
        flex-wrap: wrap
    }
    .fx>strong {
        font-size: 12px
    }
    .fx dl {
        gap: 17px
    }
    .fx dd {
        font-size: 16px
    }
    .fx dt {
        font-size: 11px
    }
    .fx-date {
        width: 100%;
        display: flex;
        justify-content: space-between
    }
    .fx-date time {
        display: inline
    }
    .section-heading {
        gap: 10px;
        margin-bottom: 14px
    }
    .section-heading>div {
        gap: 8px
    }
    .section-heading h2 {
        font-size: 21px
    }
    .text-link {
        font-size: 12px;
        gap: 5px
    }
    .text-link .icon {
        width: 15px;
        height: 15px
    }
    .section-heading .rail-controls {
        display: flex
    }
    .section-heading .rail-controls button {
        width: 28px
    }
    .section-heading>div>.text-link {
        font-size: 11px;
        gap: 3px
    }
    .category-rail {
        gap: 10px
    }
    .category {
        width: calc((100% - 3 * 10px)/3.25)
    }
    .category-media {
        aspect-ratio: 1;
        border-radius: 9px
    }
    .category-name {
        padding-top: 8px;
        gap: 4px;
        align-items: flex-start
    }
    .category h3 {
        font-size: 14px;
        line-height: 1.5;
        font-weight: 500
    }
    .category-name .icon {
        display: none
    }
    .brands {
        padding-top: 17px;
        margin-top: 25px
    }
    .brands .section-heading {
        margin-bottom: 8px
    }
    .brands .section-heading h2 {
        font-size: 19px
    }
    .brand-rail {
        gap: 8px
    }
    .brand {
        width: calc((100% - 4 * 8px)/4.25);
        height: 77px;
        gap: 6px;
        border-radius: 6px
    }
    .brand img {
        max-width: 92%
    }
    .brand:not(:last-child)::after {
        height: 26px;
        top: 14px;
        inset-inline-end: -4px
    }
    .brand span {
        font-size: 10px
    }
    .latest-products {
        margin-top: 24px
    }
    .products>.product {
        width: calc((100% - var(--gap))/2)
    }
    .product {
        border-radius: 10px
    }
    .product-body {
        padding: 10px 10px 8px
    }
    .product h3 {
        font-size: 14px;
        line-height: 1.65;
        height: 46px
    }
    .brand-name {
        font-size: 10px;
        letter-spacing: .015em;
        margin-bottom: 4px
    }
    .product-bottom {
        gap: 2px;
        margin-top: 8px
    }
    .price {
        gap: 4px;
        flex-direction: column
    }
    .price strong {
        font-size: 18px
    }
    .price del {
        font-size: 10px
    }
    .add {
        min-width: 44px;
        width: 44px
    }
    .add .icon {
        width: 20px;
        height: 20px
    }
    .discount {
        font-size: 10px
    }
    .deals {
        padding: 19px 14px 16px;
        border-radius: 12px;
        margin-inline: -4px
    }
    .deal-heading {
        gap: 10px;
        flex-wrap: wrap;
        margin-bottom: 17px
    }
    .deal-title {
        gap: 7px
    }
    .deal-title h2 {
        font-size: 21px
    }
    .deal-title>.icon {
        width: 17px
    }
    .deal-heading>.text-link {
        margin-inline-start: auto;
        order: 1
    }
    .deal-expiry {
        width: 100%;
        order: 2;
        margin: 0;
        justify-content: space-between;
        font-size: 10px
    }
    .deal-expiry time {
        font-size: 11px
    }
    .deals .rail-controls {
        display: flex;
        order: 1;
        margin-inline-start: 0
    }
    .deal-products {
        display: flex;
        gap: 12px;
        overflow: auto;
        scrollbar-width: none;
        scroll-snap-type: x proximity;
        padding: 1px 1px 6px
    }
    .deal-products .product {
        flex: 0 0 calc((100% - 12px)/2);
        scroll-snap-align: start
    }
    .deal-products .product-media {
        aspect-ratio: 1
    }
    .deal-products .product-body {
        padding: 10px 9px 7px
    }
    .deal-products .product h3 {
        font-size: 14px;
        height: 46px
    }
    .deal-products .product .price strong {
        font-size: 17px
    }
    .deal-products .product .discount {
        font-size: 10px
    }
    .promotions {
        gap: 10px;
        margin-top: 24px
    }
    .promotion {
        border-radius: 8px
    }
    .today {
        padding-block: 20px
    }
    .today-feature {
        grid-template-columns: 43% 1fr;
        gap: 16px
    }
    .today-media {
        aspect-ratio: .85;
        border-radius: 9px
    }
    .today-label {
        font-size: 12px;
        margin-bottom: 8px
    }
    .today h2 {
        font-size: 18px;
        line-height: 1.5
    }
    .today .price {
        margin-block: 12px
    }
    .today .price strong {
        font-size: 22px
    }
    .solid-action {
        font-size: 12px;
        padding: 9px 12px;
        gap: 14px;
        min-height: 44px
    }
    .solid-action .icon {
        width: 16px;
        height: 16px
    }
    .tabs {
        gap: 6px;
        margin-bottom: 5px;
        padding-bottom: 10px
    }
    .tabs>button {
        font-size: 13px;
        padding: 8px 12px
    }
    .category-discovery {
        padding-top: 21px
    }
    .tab-destination {
        margin-bottom: 12px
    }
    footer {
        margin-top: 40px
    }
    .footer-newsletter {
        display: block
    }
    .footer-newsletter h2 {
        font-size: 23px
    }
    .footer-newsletter p {
        font-size: 12px
    }
    .footer-newsletter form {
        width: 100%;
        margin-top: 19px
    }
    .footer-main {
        display: block;
        padding-block: 23px 14px
    }
    .footer-brand {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        padding-bottom: 25px;
        border: 0
    }
    .footer-brand .payments {
        padding: 0
    }
    .footer-brand img {
        width: 130px;
        height: 52px
    }
    .footer-group {
        border-top: 1px solid var(--line)
    }
    .footer-group summary {
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 53px;
        margin: 0;
        font-size: 15px;
        cursor: pointer
    }
    .footer-group summary .icon {
        display: block;
        width: 17px;
        height: 17px;
        transition: transform var(--fast)
    }
    .footer-group[open] summary .icon {
        transform: rotate(45deg)
    }
    .footer-group>div {
        gap: 0;
        padding-bottom: 16px;
        font-size: 14px
    }
    .footer-group>div>a {
        min-height: 42px;
        display: flex;
        align-items: center
    }
    .footer-group:not(.footer-contact)>div {
        grid-template-columns: 1fr
    }
    .footer-bottom {
        flex-wrap: wrap;
        gap: 15px;
        font-size: 10px;
        padding-block: 17px
    }
    .footer-bottom>span {
        width: 100%;
        order: 3
    }
    .payments {
        margin-inline-end: auto
    }
    .payments img {
        width: 32px;
        height: 22px
    }
    .back-top {
        width: 34px;
        height: 34px;
        bottom: 15px;
        inset-inline-end: 12px
    }
    .mega-top {
        padding: 12px 16px
    }
    .mega-top h2 {
        font-size: 21px
    }
    #mega {
        width: 100%;
        max-width: 100%;
        max-height: 100dvh;
        height: 100dvh;
        margin: 0;
        border: 0;
        border-radius: 0
    }
    .mega-root-tabs {
        grid-template-columns: repeat(2,minmax(0,1fr));
        gap: 2px 12px;
        padding: 0 16px 16px
    }
    .mega-root-tabs button {
        min-height: 48px;
        padding: 9px 10px;
        font-size: 13px
    }
    .mega-root-tabs .icon {
        width: 14px;
        height: 14px
    }
    .mega-panel {
        display: block;
        padding: 18px 16px
    }
    .mega-image {
        display: block;
        width: 100%;
        height: 150px;
        aspect-ratio: auto;
        margin-bottom: 18px
    }
    .mega-image img {
        object-position: center 43%
    }
    .mega-image>span {
        font-size: 16px
    }
    .mega-path-heading {
        gap: 12px;
        margin-bottom: 18px
    }
    .mega-path-heading h3 {
        font-size: 19px
    }
    .mega-path-grid {
        grid-template-columns: repeat(2,minmax(0,1fr));
        gap: 24px 16px
    }
    .mega-path-grid h4 {
        font-size: 14px
    }
    .mega-path-grid article>div {
        font-size: 13px;
        gap: 4px
    }
    .mega-path-grid a {
        min-height: 44px
    }
    .mega-bottom {
        flex-wrap: wrap;
        gap: 8px 25px;
        padding: 12px 16px;
        font-size: 12px
    }
    .mega-bottom>a:first-child {
        width: 100%
    }
    .toast {
        font-size: 13px
    }
}
@media(min-width:561px) {
    .mega-panel--leaf {
        grid-template-columns: 180px 1fr;
        align-items: center
    }
    .mega-panel--leaf .mega-image {
        aspect-ratio: 1.65
    }
    .mega-panel--leaf .mega-path-heading {
        margin-bottom: 0
    }
    .mega-panel--leaf .mega-path-grid {
        display: none
    }
}
@media(prefers-reduced-motion:reduce) {
    *,*::before,*::after {
        scroll-behavior: auto!important;
        animation: none!important;
        transition: none!important
    }
    .announcement {
        height: auto;
        min-height: 30px
    }
    .announcement-message {
        position: static;
        white-space: normal;
        width: auto;
        font-size: 11px;
        line-height: 1.6;
        padding-block: 5px;
        transform: none
    }
    .announcement button {
        display: none
    }
    .product:hover img,.category:hover img,.today-media:hover img {
        transform: none
    }
}
@media(max-width:560px) {
    @supports(interpolate-size:allow-keywords) {
        .footer-group {
            interpolate-size: allow-keywords
        }
        .footer-group::details-content {
            block-size: 0;
            overflow: clip;
            transition: block-size 180ms var(--ease),content-visibility 180ms allow-discrete
        }
        .footer-group[open]::details-content {
            block-size: auto
        }
    }
}
@media(prefers-reduced-motion:reduce) {
    .footer-group::details-content {
        transition: none!important
    }
}
input::placeholder {
    color: var(--muted);
    opacity: 1
}
.product-overlays {
    position: absolute;
    inset: 3px 3px auto;
    display: grid;
    grid-template-columns: 44px minmax(0,1fr);
    gap: 6px;
    align-items: start;
    pointer-events: none
}
.product-overlays .save {
    grid-column: 1;
    pointer-events: auto;
    justify-self: start;
    flex: none
}
.badge-rail {
    grid-column: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    min-width: 0;
    padding: 9px 6px 0 0
}
:root[dir=rtl] .badge-rail {
    padding: 9px 0 0 6px
}
.badge-rail>span {
    position: static;
    max-width: 100%;
    overflow-wrap: anywhere;
    line-height: 1.45
}
.badge-rail bdi {
    white-space: normal
}
.product-media .save::before {
    inset: 6px;
    border-radius: 8px;
    box-shadow: 0 1px 3px #0000000a
}
.product .add {
    align-self: flex-start;
    position: relative
}
.product .add::after {
    content: "";
    position: absolute;
    bottom: 4px;
    width: 12px;
    height: 2px;
    background: var(--red);
    opacity: 0;
    transform: scaleX(.5);
    transition: opacity 180ms,transform 180ms var(--ease)
}
.product:hover .add::after,.product .add.is-added::after {
    opacity: 1;
    transform: scaleX(1)
}
.product .price del {
    line-height: 1.35
}
.mobile-discovery-nav {
    display: none
}
.mega-root-tabs {
    gap: 2px 16px
}
.mega-root-tabs button[aria-selected=true] {
    box-shadow: inset 0 -1px color-mix(in srgb,var(--red) 18%,transparent)
}
.mega-panel {
    gap: 26px;
    padding-block: 22px
}
.mega-path-heading {
    margin-bottom: 14px
}
.mega-path-grid {
    gap: 16px 22px
}
.mega-image img {
    transition: transform 220ms var(--ease)
}
.brand img {
    transition: transform 200ms var(--ease);
    width: var(--brand-width,92px);
    height: var(--brand-height,45px)
}
@media(hover:hover) {
    .brand:hover img {
        transform: scale(1.035)
    }
    .mega-image:hover img {
        transform: scale(1.02)
    }
    .footer-newsletter button:hover {
        color: var(--red)
    }
}
.footer-newsletter {
    background: #242525;
    border-radius: 12px 12px 0 0
}
footer {
    padding-top: 20px
}
.footer-main {
    align-items: start
}
.footer-group>div {
    row-gap: 10px
}
.footer-bottom {
    padding-block: 16px
}
@media(max-width:900px) {
    .footer-newsletter {
        border-radius: 0
    }
    .footer-main {
        gap: 24px
    }
}
@media(max-width:560px) {
    .search input,.footer-newsletter input {
        font-size: 16px
    }
    .mobile-discovery-nav {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4px 12px;
        padding: 12px 16px;
        border-top: 1px solid var(--line)
    }
    .mobile-discovery-nav a {
        font-size: 13px;
        min-height: 44px;
        display: flex;
        align-items: center
    }
    .brand img {
        width: min(var(--brand-width,68px),92%);
        height: var(--brand-height-mobile,38px)
    }
    .promotion-rail .promotion {
        width: 90%
    }
    .footer-newsletter {
        padding-block: 21px;
        background: #242525
    }
    footer {
        padding-top: 0
    }
    .footer-main {
        padding-top: 24px
    }
    .fx-date time {
        direction: inherit
    }
    .fx-date {
        font-size: 10px;
        gap: 8px
    }
}
.brand .brand-stage {
    position: relative;
    width: 100px;
    max-width: 94%;
    height: 44px;
    overflow: hidden;
    flex: none;
    background: transparent
}
.brand-stage img {
    position: absolute;
    left: 50%;
    top: 50%;
    width: var(--logo-w);
    height: var(--logo-h);
    max-width: none;
    margin-left: var(--logo-x);
    margin-top: var(--logo-y);
    object-fit: contain
}
.brand>span:not(.brand-stage) {
    overflow: hidden
}
:root[data-theme=dark] .brand-stage {
    background: #f4f4ef;
    border-radius: 4px
}
:root[data-theme=dark] .brand-stage img {
    background: transparent;
    border-radius: 0
}
@media(max-width:560px) {
    .brand .brand-stage {
        width: 64px;
        height: 34px
    }
    .brand-stage img {
        width: var(--logo-w-mobile);
        height: var(--logo-h-mobile);
        margin-left: var(--logo-x-mobile);
        margin-top: var(--logo-y-mobile)
    }
}
@media(prefers-reduced-motion:reduce) {
    .product:hover,.brand:hover {
        transform: none
    }
}
.brand-stage:not([style]) img {
    position: static;
    width: 100%;
    height: 100%;
    max-width: 100%;
    margin: 0;
    object-fit: contain
}
/* Dynamic controls and conditional CMS modules, in the same semantic system. */
.search-shell {
    position: relative;
    min-width: 0
}
.search button {
    display: grid;
    place-items: center;
    min-width: 24px;
    min-height: 40px
}
.action,.utility-menu summary {
    list-style: none;
    cursor: pointer
}
.action::-webkit-details-marker,.utility-menu summary::-webkit-details-marker {
    display: none
}
.actions .action {
    min-height: 46px;
    display: flex;
    align-items: center;
    gap: 7px;
    position: relative;
    font-size: 13px;
    white-space: nowrap
}
.action-popover,.cart-access,.utility-menu {
    position: relative
}
.action-panel,.utility-menu>div,.search-results {
    position: absolute;
    z-index: 20;
    background: var(--elevated);
    border: 1px solid var(--line);
    border-radius: 10px;
    box-shadow: 0 12px 28px #00000012
}
.action-panel {
    inset-inline-end: 0;
    top: calc(100% + 8px);
    width: min(350px,calc(100vw - 32px));
    padding: 18px
}
.account-panel {
    width: 220px;
    display: grid;
    gap: 4px
}
.account-panel>a,.account-panel button {
    display: flex;
    align-items: center;
    min-height: 44px;
    font-size: 14px;
    width: 100%;
    text-align: start
}
.account-panel>a:hover,.account-panel button:hover {
    color: var(--red)
}
.utility-menu summary {
    display: flex;
    align-items: center;
    gap: 5px;
    min-height: 40px
}
.utility-menu>div {
    inset-inline-end: 0;
    min-width: 185px;
    padding: 8px;
    display: grid
}
.utility-menu button {
    font-size: 13px;
    min-height: 44px;
    text-align: start;
    padding-inline: 10px;
    border-radius: 5px
}
.utility-menu button[aria-pressed=true],.utility-menu button:hover {
    color: var(--red);
    background: var(--surface)
}
.cart-panel>div {
    display: grid;
    gap: 14px
}
.cart-panel p {
    font-size: 13px;
    color: var(--muted)
}
.mini-item {
    display: grid;
    grid-template-columns: 54px 1fr 32px;
    gap: 10px;
    align-items: center
}
.mini-item img {
    width: 54px;
    height: 54px;
    object-fit: cover;
    border-radius: 6px
}
.mini-item>div {
    display: grid;
    gap: 4px;
    font-size: 12px;
    min-width: 0
}
.mini-item small {
    font-size: 11px;
    color: var(--muted)
}
.mini-item button {
    min-width: 32px;
    min-height: 44px
}
.cart-panel>div>a {
    font-size: 13px;
    min-height: 40px;
    display: flex;
    align-items: center;
    color: var(--red)
}
.search-results {
    inset-inline: 0;
    top: calc(100% + 8px);
    max-height: 340px;
    overflow: auto;
    padding: 8px
}
.search-results a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px;
    border-radius: 6px
}
.search-results a[aria-selected=true],.search-results a:hover {
    background: var(--surface)
}
.search-results img {
    width: 44px;
    height: 44px;
    object-fit: cover;
    border-radius: 5px
}
.search-results span {
    display: grid;
    gap: 4px
}
.search-results strong {
    font-size: 13px
}
.search-results small,.search-results p {
    font-size: 12px;
    color: var(--muted)
}
.hero-stage picture {
    display: block;
    width: 100%;
    height: 100%
}
.hero-stage {
    touch-action: pan-y
}
.server-feedback {
    padding: 12px var(--gutter);
    background: var(--red-soft);
    color: var(--ink);
    font-size: 14px
}
.slide-navigation {
    display: contents
}
.slide-controls {
    position: relative
}
.slide-controls .slide-navigation button {
    width: 36px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 6px
}
.slide-controls .slide-navigation button:first-child {
    order: 0
}
.slide-dots {
    order: 1
}
.slide-controls .slide-navigation button:last-child {
    order: 2
}
.promotion picture {
    display: block;
    width: 100%
}
.promotion img {
    height: auto
}
.deferred-media[data-src] {
    opacity: 0
}
.footer-socials {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    padding-block: 15px;
    border-top: 1px solid var(--line)
}
.footer-socials a {
    font-size: 13px;
    min-height: 40px;
    display: flex;
    align-items: center
}
.footer-socials img {
    width: 135px;
    height: 40px;
    object-fit: contain
}
.footer-bottom>div {
    display: flex;
    flex-wrap: wrap;
    gap: 15px
}
.toast.is-error {
    border-inline-start: 3px solid var(--red)
}
.reliability {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px
}
.reliability>div {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px
}
.reliability img {
    width: 48px;
    height: 48px;
    object-fit: contain
}
.story {
    width: 160px;
    text-align: start
}
.story img {
    aspect-ratio: 3/4;
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: var(--radius)
}
.story strong {
    display: block;
    font-size: 14px;
    margin-top: 9px
}
.vendor {
    width: calc((100% - 3 * var(--gap))/3.25)
}
.vendor-banner {
    width: 100%;
    aspect-ratio: 2;
    object-fit: cover;
    border-radius: var(--radius)
}
.vendor>div {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    padding-block: 12px
}
.vendor>div>img {
    object-fit: contain;
    width: 44px;
    height: 44px
}
.vendor h3 {
    font-size: 16px
}
.vendor span,.vendor small {
    font-size: 12px;
    color: var(--muted)
}
#story-viewer {
    width: min(420px,calc(100% - 24px));
    padding: 16px
}
#story-viewer>img,#story-viewer video {
    width: 100%;
    max-height: 58dvh;
    object-fit: cover;
    border-radius: 10px
}
#story-viewer>button {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    margin-inline-start: auto
}
#story-viewer h2 {
    font-size: 20px;
    margin-block: 12px
}
#story-viewer p,#story-viewer [data-story-entity] {
    font-size: 13px;
    margin-bottom: 12px
}
.deal-products {
    display: grid;
    grid-auto-flow: column;
    grid-template-columns: none;
    grid-auto-columns: calc((100% - 44px)/3)
}
.deals:has(.product:nth-child(4)) .rail-controls {
    display: flex
}
@media(hover:hover) {
    .actions .action:hover {
        color: var(--red)
    }
}
@media(max-width:1190px) {
    .actions .action>span {
        display: none
    }
}
@media(max-width:560px) {
    .actions>.wishlist-action {
        display: none
    }
    .actions .action {
        min-width: 44px;
        justify-content: center
    }
    .search-shell {
        grid-column: 1/-1;
        grid-row: 2
    }
    .utility-menu>div {
        inset-inline-start: 0;
        inset-inline-end: auto
    }
    .utilities>.utility-menu:first-child {
        margin-inline-end: auto
    }
    .action-panel {
        position: fixed;
        inset-inline: 16px;
        top: 84px;
        width: auto
    }
    .slide-controls .slide-navigation button {
        width: 30px
    }
    .reliability {
        grid-template-columns: repeat(2,1fr)
    }
    .vendor {
        width: 85%
    }
    .story {
        width: 130px
    }
    .deal-products {
        display: flex
    }
}
