@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');
:root {
    --font-main: "Inter", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    --ink: #0b0c0f;
    --ink-2: #1a1b21;
    --muted: #686873;
    --line: #e7e5ea;
    --soft: #f7f5f8;
    --soft-2: #f1edf4;
    --white: #fff;
    --pink: #d8178d;
    --pink-2: #f21a91;
    --purple: #8d1ca8;
    --violet: #421467;
    --deep: #24103e;
    --accent: linear-gradient(135deg, var(--pink-2) 0%, var(--purple) 53%, var(--violet) 100%);
    --accent-soft: linear-gradient(135deg, rgba(242, 26, 145, .11), rgba(66, 20, 103, .09));
    --shadow: 0 24px 70px rgba(29, 12, 42, .11);
    --shadow-sm: 0 10px 30px rgba(29, 12, 42, .08);
    --radius: 22px;
    --radius-sm: 14px;
    --page-pad: clamp(16px, 3.4vw, 68px);
    --header-h: 82px;
}
* {
    box-sizing: border-box
}
html {
    scroll-behavior: smooth
}
body {
    margin: 0;
    background: #fff;
    color: var(--ink);
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    padding-bottom: 0
}
body.no-scroll {
    overflow: hidden
}
img {
    display: block;
    max-width: 100%
}
a {
    color: inherit;
    text-decoration: none
}
button, input, select, textarea {
    font: inherit;
    font-family: var(--font-main)
}
button {
    color: inherit
}
svg {
    display: inline-block;
    vertical-align: middle
}
.container {
    width: 100%;
    max-width: none;
    padding-inline: var(--page-pad);
    margin-inline: auto
}
.muted {
    color: var(--muted)
}
.small {
    font-size: 12px
}
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--purple);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase
}
.eyebrow:before {
    content: "";
    width: 20px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px
}
.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 850;
    color: var(--violet)
}
.text-link:hover {
    color: var(--pink)
}
.site-announcement {
    background: #0d0e12;
    color: #fff;
    font-size: 11px
}
.announcement-inner {
    min-height: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    letter-spacing: .02em
}
.announcement-inner>div, .announcement-inner a {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #d9d6dc
}
.announcement-dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--pink)
}
.site-header {
    position: sticky;
    top: 0;
    z-index: 80;
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(226, 222, 229, .9)
}
.navbar {
    height: var(--header-h);
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 30px
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    min-width: max-content
}
.brand-logo {
    width: 45px;
    height: 52px;
    object-fit: contain
}
.brand-copy {
    display: grid;
    line-height: 1.05
}
.brand-copy strong {
    font-size: 18px;
    letter-spacing: .035em
}
.brand-copy small {
    margin-top: 7px;
    color: var(--pink);
    font-size: 8px;
    font-weight: 900;
    letter-spacing: .19em;
    text-transform: uppercase
}
.brand.compact .brand-logo {
    width: 38px;
    height: 44px
}
.brand.compact .brand-copy strong {
    font-size: 15px
}
.primary-nav {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(15px, 1.6vw, 28px)
}
.primary-nav>a, .nav-dropdown>button {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 5px;
    border: 0;
    background: transparent;
    padding: 0;
    position: relative;
    font-size: 13px;
    font-weight: 760;
    cursor: pointer;
    white-space: nowrap
}
.primary-nav>a:after, .nav-dropdown>button:after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: 0;
    height: 3px;
    background: var(--accent);
    transition: .25s
}
.primary-nav>a:hover:after, .primary-nav>a.active:after, .nav-dropdown:hover>button:after {
    right: 0
}
.primary-nav>a:hover, .primary-nav>a.active, .nav-dropdown:hover>button {
    color: var(--purple)
}
.nav-dropdown {
    height: 100%;
    display: flex;
    align-items: center
}
.mega-menu {
    position: absolute;
    left: var(--page-pad);
    right: var(--page-pad);
    top: calc(100% + 1px);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 0 0 24px 24px;
    box-shadow: var(--shadow);
    padding: 30px;
    display: grid;
    grid-template-columns: minmax(250px, .7fr) minmax(560px, 1.8fr);
    gap: 34px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: .22s
}
.nav-dropdown:hover .mega-menu, .nav-dropdown:focus-within .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: none
}
.mega-intro {
    padding: 24px;
    border-radius: 20px;
    background: var(--accent-soft)
}
.mega-intro h3 {
    font-size: 27px;
    line-height: 1.1;
    margin: 12px 0
}
.mega-intro p {
    font-size: 13px;
    color: var(--muted)
}
.mega-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px
}
.mega-links>a {
    display: flex;
    gap: 12px;
    padding: 12px;
    border-radius: 13px
}
.mega-links>a:hover {
    background: var(--soft)
}
.mega-links>a>span {
    width: 38px;
    height: 38px;
    border-radius: 11px;
    display: grid;
    place-items: center;
    background: var(--accent);
    color: #fff;
    flex: none
}
.mega-links strong, .mega-links small {
    display: block
}
.mega-links strong {
    font-size: 13px
}
.mega-links small {
    font-size: 10px;
    color: var(--muted);
    margin-top: 3px
}
.nav-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px
}
.nav-icon, .cart-action {
    position: relative;
    border: 1px solid transparent;
    background: transparent;
    display: inline-grid;
    place-items: center;
    min-width: 42px;
    height: 42px;
    border-radius: 13px;
    cursor: pointer
}
.nav-icon:hover, .cart-action:hover {
    background: var(--soft);
    border-color: var(--line)
}
.nav-icon b, .cart-action b {
    position: absolute;
    right: -1px;
    top: -4px;
    display: grid;
    place-items: center;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    border-radius: 999px;
    background: var(--pink);
    color: #fff;
    font-size: 9px
}
.cart-action {
    display: flex;
    gap: 8px;
    padding: 0 13px;
    min-width: auto;
    border-color: var(--line);
    font-size: 12px;
    font-weight: 800
}
.cart-action b {
    right: -5px
}
.mobile-menu-button {
    display: none
}
.mobile-drawer {
    display: none
}
.search-overlay {
    position: fixed;
    inset: 0;
    z-index: 120;
    background: rgba(10, 8, 13, .62);
    backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    transition: .25s;
    padding: clamp(18px, 8vh, 86px) var(--page-pad)
}
.search-overlay.open {
    opacity: 1;
    visibility: visible
}
.search-panel {
    max-width: 900px;
    margin: auto;
    background: #fff;
    border-radius: 28px;
    padding: clamp(22px, 4vw, 44px);
    box-shadow: var(--shadow)
}
.search-panel-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start
}
.search-panel h2 {
    font-size: clamp(28px, 4vw, 48px);
    margin: 8px 0 24px
}
.global-search {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 58px;
    border: 1px solid #d9d5dd;
    border-radius: 16px;
    background: #fff
}
.global-search input {
    height: 62px;
    border: 0;
    background: transparent;
    padding: 0 22px;
    outline: 0;
    font-size: 15px
}
.global-search>button {
    border: 0;
    border-radius: 13px;
    margin: 5px;
    background: var(--accent);
    color: #fff;
    cursor: pointer
}
.search-suggestions {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 8px);
    z-index: 10;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 7px;
    box-shadow: var(--shadow-sm);
    max-height: 390px;
    overflow: auto
}
.search-suggestions.show {
    display: block
}
.suggestion-item {
    display: grid;
    grid-template-columns: 55px 1fr auto;
    gap: 12px;
    align-items: center;
    padding: 8px;
    border-radius: 11px
}
.suggestion-item:hover {
    background: var(--soft)
}
.suggestion-item img {
    width: 55px;
    height: 55px;
    border-radius: 10px;
    object-fit: cover;
    background: var(--soft)
}
.suggestion-item strong, .suggestion-item small {
    display: block
}
.suggestion-item strong {
    font-size: 12px
}
.suggestion-item small {
    font-size: 10px;
    color: var(--muted)
}
.suggestion-item b {
    font-size: 11px
}
.search-hints {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 18px;
    font-size: 11px
}
.search-hints a {
    padding: 7px 11px;
    border-radius: 999px;
    background: var(--soft)
}
.flash-wrap {
    position: relative;
    z-index: 70
}
.alert {
    border-radius: 13px;
    padding: 13px 16px;
    margin: 14px 0;
    font-size: 13px
}
.alert.success {
    background: #ecfdf3;
    color: #067647;
    border: 1px solid #abefc6
}
.alert.error {
    background: #fff1f2;
    color: #b42336;
    border: 1px solid #fecdd3
}
.btn {
    min-height: 46px;
    border: 1px solid transparent;
    border-radius: 13px;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-size: 12px;
    font-weight: 850;
    cursor: pointer;
    transition: .2s
}
.btn:hover {
    transform: translateY(-2px)
}
.btn-primary, .btn-dark {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 12px 28px rgba(155, 24, 161, .23)
}
.btn-dark {
    background: #111218;
    box-shadow: none
}
.btn-light {
    background: #fff;
    color: var(--ink);
    border-color: #fff
}
.btn-outline {
    background: #fff;
    border-color: #d9d5dd;
    color: var(--ink)
}
.btn-outline:hover {
    border-color: var(--purple);
    color: var(--purple)
}
.btn-danger {
    background: #fff1f2;
    color: #b42336;
    border-color: #fecdd3
}
.btn-small {
    min-height: 37px;
    padding-inline: 12px;
    font-size: 10px
}
.btn-block {
    width: 100%
}
.icon-button {
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    display: inline-grid;
    place-items: center;
    cursor: pointer
}
.icon-button.dark {
    background: #111218;
    color: #fff;
    border-color: #111218
}
.icon-button:hover {
    color: var(--pink)
}
.hero {
    position: relative;
    overflow: hidden;
    background: #fff;
    border-bottom: 1px solid var(--line)
}
.hero:before {
    content: "";
    position: absolute;
    left: -14vw;
    top: -22vw;
    width: 55vw;
    height: 55vw;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(221, 22, 145, .07), transparent 68%);
    pointer-events: none
}
.hero-grid {
    min-height: clamp(650px, 73vh, 840px);
    display: grid;
    grid-template-columns: minmax(420px, .82fr) minmax(620px, 1.3fr);
    align-items: center;
    gap: 3vw;
    padding-top: 58px;
    padding-bottom: 58px
}
.hero-copy {
    max-width: 700px;
    position: relative;
    z-index: 2
}
.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 999px;
    background: var(--soft);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .11em;
    color: var(--purple)
}
.hero-kicker i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--pink);
    box-shadow: 0 0 0 5px rgba(216, 23, 141, .11)
}
.hero-copy h1 {
    margin: 18px 0 19px;
    font-size: clamp(55px, 6.1vw, 104px);
    letter-spacing: -.065em;
    line-height: .92;
    max-width: 850px
}
.hero-copy h1 span {
    display: block;
    background: var(--accent);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent
}
.hero-copy>p {
    font-size: clamp(15px, 1.3vw, 19px);
    color: var(--muted);
    max-width: 620px
}
.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 30px
}
.hero-actions .btn {
    min-height: 54px;
    padding-inline: 25px
}
.hero-metrics {
    display: flex;
    gap: 25px;
    margin-top: 36px;
    flex-wrap: wrap
}
.hero-metrics div {
    display: grid;
    gap: 1px;
    padding-right: 25px;
    border-right: 1px solid var(--line)
}
.hero-metrics div:last-child {
    border: 0
}
.hero-metrics strong {
    font-size: 21px
}
.hero-metrics span {
    font-size: 10px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .08em
}
.hero-visual {
    position: relative;
    min-height: 570px
}
.hero-visual:before {
    content: "";
    position: absolute;
    inset: 3% 0 0 8%;
    border-radius: 38px;
    background: linear-gradient(145deg, #fff 0%, #f5f2f7 55%, #efe8f3 100%);
    border: 1px solid #eee9f0
}
.hero-visual img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 35px 25px rgba(41, 17, 55, .12))
}
.hero-chip {
    position: absolute;
    z-index: 3;
    padding: 13px 16px;
    border-radius: 15px;
    background: rgba(255, 255, 255, .92);
    border: 1px solid rgba(226, 221, 229, .85);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 11px;
    font-size: 11px
}
.hero-chip svg {
    color: var(--purple)
}
.hero-chip strong, .hero-chip small {
    display: block
}
.hero-chip small {
    color: var(--muted);
    font-size: 9px
}
.hero-chip.one {
    right: 2%;
    bottom: 17%
}
.hero-chip.two {
    left: 8%;
    top: 16%
}
.hero-accent-block {
    position: absolute;
    right: -5%;
    top: 10%;
    width: 25%;
    height: 45%;
    background: var(--accent);
    clip-path: polygon(45% 0, 100% 20%, 100% 100%, 0 70%);
    opacity: .95
}
.benefit-strip {
    background: #111218;
    color: #fff
}
.benefit-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr)
}
.benefit-item {
    min-height: 92px;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 18px 3vw;
    border-right: 1px solid #2e2f35
}
.benefit-item:first-child {
    padding-left: 0
}
.benefit-item:last-child {
    border: 0
}
.benefit-item svg {
    color: #dc42a4
}
.benefit-item strong, .benefit-item small {
    display: block
}
.benefit-item strong {
    font-size: 12px
}
.benefit-item small {
    color: #a8a8b0;
    font-size: 9px;
    margin-top: 3px
}
.section {
    padding: clamp(66px, 8vw, 120px) 0;
    position: relative
}
.section.soft {
    background: var(--soft)
}
.section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 35px;
    margin-bottom: 38px
}
.section-head h2 {
    font-size: clamp(36px, 4.5vw, 68px);
    line-height: .98;
    letter-spacing: -.05em;
    margin: 10px 0 0
}
.section-head>p {
    max-width: 560px;
    color: var(--muted);
    font-size: 14px;
    margin: 0
}
.service-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px
}
.service-card {
    position: relative;
    min-height: 305px;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 25px;
    background: #fff;
    overflow: hidden;
    transition: .25s
}
.service-card:before {
    content: "";
    position: absolute;
    inset: auto -30% -50% 20%;
    height: 70%;
    border-radius: 50%;
    background: var(--accent-soft);
    transition: .25s
}
.service-card:hover {
    transform: translateY(-7px);
    border-color: #d8b9db;
    box-shadow: var(--shadow-sm)
}
.service-card:hover:before {
    transform: scale(1.25)
}
.service-card>.number {
    position: absolute;
    right: 20px;
    top: 16px;
    color: #cfcbd1;
    font-size: 11px;
    font-weight: 900
}
.service-icon {
    width: 54px;
    height: 54px;
    border-radius: 15px;
    background: var(--accent-soft);
    color: var(--purple);
    display: grid;
    place-items: center;
    margin-bottom: 30px
}
.service-card h3 {
    font-size: 18px;
    margin: 0 0 10px
}
.service-card p {
    font-size: 12px;
    color: var(--muted);
    margin: 0 0 22px
}
.category-grid {
    display: grid;
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 12px
}
.category-card {
    position: relative;
    min-height: 250px;
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    transition: .25s
}
.category-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-sm);
    border-color: #d9b6dd
}
.category-card img {
    width: 100%;
    height: 165px;
    object-fit: cover;
    background: var(--soft);
    transition: .35s
}
.category-card:hover img {
    transform: scale(1.04)
}
.category-card-content {
    padding: 13px
}
.category-card h3 {
    font-size: 12px;
    line-height: 1.2;
    margin: 0
}
.category-card span {
    display: block;
    font-size: 9px;
    color: var(--muted);
    margin-top: 5px
}
.category-arrow {
    position: absolute;
    right: 10px;
    top: 10px;
    width: 30px;
    height: 30px;
    border-radius: 10px;
    background: #fff;
    display: grid;
    place-items: center;
    box-shadow: var(--shadow-sm);
    color: var(--purple)
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 14px
}
.product-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 19px;
    overflow: hidden;
    min-width: 0;
    transition: .25s;
    display: flex;
    flex-direction: column
}
.product-card:hover {
    transform: translateY(-6px);
    border-color: #d8b8dc;
    box-shadow: var(--shadow-sm)
}
.product-media {
    position: relative;
    aspect-ratio: 1/1;
    background: var(--soft);
    overflow: hidden
}
.product-media>a {
    display: block;
    width: 100%;
    height: 100%
}
.product-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .4s
}
.product-card:hover .product-media img {
    transform: scale(1.045)
}
.product-badge {
    position: absolute;
    z-index: 2;
    left: 10px;
    top: 10px;
    padding: 6px 8px;
    border-radius: 7px;
    background: #111218;
    color: #fff;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: .1em
}
.product-badge.sale {
    left: auto;
    right: 10px;
    background: var(--pink)
}
.quick-wishlist {
    position: absolute;
    z-index: 3;
    right: 9px;
    bottom: 9px
}
.quick-wishlist button {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(228, 224, 231, .95);
    border-radius: 11px;
    background: rgba(255, 255, 255, .94);
    display: grid;
    place-items: center;
    cursor: pointer
}
.quick-wishlist button:hover {
    color: var(--pink)
}
.product-info {
    padding: 14px;
    display: flex;
    flex-direction: column;
    flex: 1
}
.product-category {
    font-size: 8px;
    color: var(--purple);
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase
}
.product-info h3 {
    font-size: 13px;
    line-height: 1.3;
    margin: 7px 0 10px;
    min-height: 34px
}
.product-info h3 a:hover {
    color: var(--purple)
}
.product-short {
    font-size: 9px;
    line-height: 1.45;
    color: var(--muted);
    margin: -3px 0 11px;
    min-height: 27px
}
.price-row {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap
}
.price-row strong {
    font-size: 15px
}
.price-row del {
    font-size: 10px;
    color: #999
}
.product-actions {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-top: auto;
    padding-top: 13px
}
.product-actions .btn {
    flex: 1;
    min-width: 0;
    padding: 0 8px
}
.product-actions form {
    margin: 0
}
.about-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: clamp(35px, 7vw, 105px)
}
.about-image {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    background: var(--soft);
    min-height: 570px
}
.about-image>img {
    width: 100%;
    height: 100%;
    min-height: 570px;
    object-fit: cover
}
.about-badge {
    position: absolute;
    left: 22px;
    bottom: 22px;
    border-radius: 18px;
    padding: 18px 22px;
    background: rgba(17, 18, 24, .92);
    color: #fff;
    backdrop-filter: blur(8px)
}
.about-badge strong, .about-badge span {
    display: block
}
.about-badge strong {
    font-size: 28px
}
.about-badge span {
    font-size: 9px;
    color: #c7c4ca
}
.about-copy h2 {
    font-size: clamp(42px, 5vw, 75px);
    line-height: .96;
    letter-spacing: -.055em;
    margin: 12px 0 22px
}
.about-copy>p {
    color: var(--muted);
    font-size: 15px
}
.check-list {
    display: grid;
    gap: 11px;
    margin: 25px 0
}
.check-list span {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 700
}
.check-list svg {
    color: var(--pink)
}
.stat-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 28px 0
}
.stat-row div {
    border: 1px solid var(--line);
    border-radius: 15px;
    padding: 16px
}
.stat-row strong, .stat-row span {
    display: block
}
.stat-row strong {
    font-size: 24px
}
.stat-row span {
    font-size: 9px;
    color: var(--muted)
}
.quote-banner {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 35px;
    padding: clamp(35px, 5vw, 70px);
    border-radius: 30px;
    background: #111218;
    color: #fff;
    overflow: hidden;
    position: relative
}
.quote-banner:before {
    content: "";
    position: absolute;
    right: -8%;
    top: -80%;
    width: 48%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: var(--accent);
    opacity: .62;
    filter: blur(5px)
}
.quote-banner:after {
    content: "";
    position: absolute;
    right: 15%;
    bottom: -60%;
    width: 30%;
    aspect-ratio: 1;
    border-radius: 50%;
    border: 70px solid rgba(255, 255, 255, .07)
}
.quote-banner>div, .quote-banner>a {
    position: relative;
    z-index: 2
}
.quote-banner h2 {
    font-size: clamp(34px, 4.5vw, 68px);
    line-height: 1;
    margin: 10px 0
}
.quote-banner p {
    color: #bbb8c0;
    max-width: 720px
}
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    counter-reset: process
}
.process-card {
    border-top: 2px solid var(--line);
    padding: 25px 5px
}
.process-card:before {
    counter-increment: process;
    content: "0" counter(process);
    display: inline-block;
    color: var(--pink);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .12em;
    margin-bottom: 45px
}
.process-card h3 {
    font-size: 19px;
    margin: 0 0 10px
}
.process-card p {
    font-size: 12px;
    color: var(--muted)
}
.newsletter {
    position: relative;
    overflow: hidden;
    background: var(--accent);
    color: #fff;
    border-radius: 28px;
    padding: clamp(34px, 5vw, 70px);
    display: grid;
    grid-template-columns: 1fr minmax(380px, .7fr);
    gap: 45px;
    align-items: center
}
.newsletter:after {
    content: "";
    position: absolute;
    width: 380px;
    height: 380px;
    border: 60px solid rgba(255, 255, 255, .08);
    border-radius: 50%;
    right: -180px;
    top: -150px
}
.newsletter>div, .newsletter>form {
    position: relative;
    z-index: 1
}
.newsletter h2 {
    font-size: clamp(34px, 4.2vw, 62px);
    line-height: 1;
    margin: 10px 0
}
.newsletter p {
    color: rgba(255, 255, 255, .74)
}
.newsletter-form {
    display: grid;
    grid-template-columns: 1fr auto;
    background: #fff;
    padding: 5px;
    border-radius: 15px
}
.newsletter-form input {
    border: 0;
    background: transparent;
    padding: 0 16px;
    outline: 0;
    min-width: 0
}
.newsletter-form .btn {
    background: #111218;
    color: #fff
}
.page-hero {
    padding: clamp(55px, 8vw, 110px) 0;
    background: linear-gradient(135deg, #fff 0%, #f5eff7 100%);
    border-bottom: 1px solid var(--line);
    position: relative;
    overflow: hidden
}
.page-hero:after {
    content: "";
    position: absolute;
    right: -6%;
    top: -90%;
    width: 32vw;
    aspect-ratio: 1;
    border-radius: 50%;
    border: 5vw solid rgba(196, 18, 137, .07)
}
.page-hero .container {
    position: relative;
    z-index: 1
}
.page-hero h1 {
    font-size: clamp(48px, 7vw, 100px);
    line-height: .92;
    letter-spacing: -.06em;
    margin: 13px 0
}
.page-hero p {
    max-width: 800px;
    color: var(--muted);
    font-size: 15px
}
.shop-layout {
    display: grid;
    grid-template-columns: 285px 1fr;
    gap: 28px
}
.filters {
    align-self: start;
    position: sticky;
    top: calc(var(--header-h) + 22px);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 22px;
    background: #fff
}
.filter-group {
    padding-bottom: 22px;
    margin-bottom: 22px;
    border-bottom: 1px solid var(--line)
}
.filter-group:last-of-type {
    border: 0
}
.filter-group h4 {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin: 0 0 13px
}
.filter-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    margin: 9px 0;
    color: #4d4c55
}
.filter-group input[type=radio], .filter-group input[type=checkbox] {
    accent-color: var(--pink)
}
.shop-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 22px
}
.shop-toolbar>div {
    display: flex;
    align-items: center;
    gap: 12px
}
.result-count {
    font-size: 12px;
    color: var(--muted)
}
.shop-toolbar select {
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    padding: 0 35px 0 12px
}
.filter-toggle {
    display: none
}
.pagination {
    display: flex;
    justify-content: center;
    gap: 7px;
    margin-top: 35px
}
.pagination a {
    width: 38px;
    height: 38px;
    border: 1px solid var(--line);
    border-radius: 10px;
    display: grid;
    place-items: center;
    font-size: 11px
}
.pagination a.active {
    background: var(--accent);
    color: #fff;
    border-color: transparent
}
.empty-state {
    text-align: center;
    padding: 80px 25px;
    border: 1px dashed #d4cfd8;
    border-radius: 22px;
    background: #fff
}
.empty-state h3 {
    font-size: 28px;
    margin-bottom: 6px
}
.empty-state p {
    color: var(--muted)
}
.product-detail {
    padding: clamp(35px, 6vw, 80px) 0
}
.product-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(400px, .85fr);
    gap: clamp(35px, 6vw, 90px);
    align-items: start
}
.product-gallery-main {
    border-radius: 26px;
    overflow: hidden;
    background: var(--soft);
    aspect-ratio: 1.2/1;
    border: 1px solid var(--line)
}
.product-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover
}
.thumb-row {
    display: flex;
    gap: 10px;
    margin-top: 12px;
    overflow: auto;
    padding-bottom: 5px
}
.thumb-row button {
    width: 86px;
    height: 74px;
    border: 1px solid var(--line);
    padding: 0;
    border-radius: 12px;
    background: #fff;
    overflow: hidden;
    cursor: pointer;
    flex: none
}
.thumb-row button:hover {
    border-color: var(--pink)
}
.thumb-row img {
    width: 100%;
    height: 100%;
    object-fit: cover
}
.product-summary {
    position: sticky;
    top: calc(var(--header-h) + 24px)
}
.breadcrumbs {
    font-size: 10px;
    color: var(--muted);
    margin-bottom: 18px
}
.product-summary h1 {
    font-size: clamp(40px, 4.5vw, 70px);
    letter-spacing: -.055em;
    line-height: .98;
    margin: 0 0 18px
}
.product-price strong {
    font-size: 30px
}
.product-price del {
    font-size: 15px
}
.short-desc {
    font-size: 15px;
    color: var(--muted)
}
.stock-pill {
    display: inline-flex;
    padding: 7px 10px;
    border-radius: 999px;
    background: #ecfdf3;
    color: #067647;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .08em
}
.variant-group {
    margin: 24px 0
}
.variant-group label {
    display: block;
    font-weight: 800;
    font-size: 12px;
    margin-bottom: 8px
}
.purchase-row {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 10px
}
.qty-input {
    border: 1px solid var(--line);
    border-radius: 13px;
    padding: 0 12px;
    width: 100%;
    height: 48px
}
.detail-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 9px;
    margin-top: 22px
}
.detail-benefits div {
    border: 1px solid var(--line);
    border-radius: 13px;
    padding: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 10px
}
.detail-benefits svg {
    color: var(--purple)
}
.tabs {
    margin-top: 60px
}
.tab-buttons {
    display: flex;
    gap: 26px;
    border-bottom: 1px solid var(--line);
    overflow: auto
}
.tab-buttons button {
    border: 0;
    background: transparent;
    padding: 14px 0;
    font-size: 12px;
    font-weight: 850;
    cursor: pointer;
    white-space: nowrap
}
.tab-buttons button.active {
    color: var(--purple);
    border-bottom: 2px solid var(--pink)
}
.tab-panel {
    display: none;
    padding: 28px 0;
    color: #54535d;
    font-size: 14px;
    max-width: 950px
}
.tab-panel.active {
    display: block
}
.cart-layout, .checkout-layout {
    display: grid;
    grid-template-columns: 1fr 390px;
    gap: 30px;
    padding: clamp(35px, 6vw, 80px) 0
}
.cart-list {
    display: grid;
    gap: 12px
}
.cart-item {
    display: grid;
    grid-template-columns: 125px 1fr auto;
    gap: 18px;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 14px;
    align-items: center
}
.cart-item img {
    width: 125px;
    height: 110px;
    object-fit: cover;
    border-radius: 13px;
    background: var(--soft)
}
.cart-item h3 {
    margin: 0 0 6px;
    font-size: 17px
}
.cart-item .meta {
    font-size: 10px;
    color: var(--muted)
}
.cart-item input {
    width: 80px;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 9px
}
.summary-card, .panel-card {
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 24px;
    background: #fff
}
.summary-card {
    position: sticky;
    top: calc(var(--header-h) + 22px);
    align-self: start;
    box-shadow: var(--shadow-sm)
}
.summary-card h3, .panel-card h2 {
    margin-top: 0
}
.summary-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 10px 0;
    font-size: 12px
}
.summary-row.total {
    font-size: 18px;
    font-weight: 900;
    border-top: 1px solid var(--line);
    margin-top: 7px
}
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px
}
.form-group {
    display: grid;
    gap: 7px
}
.form-group.full {
    grid-column: 1/-1
}
.form-group label {
    font-size: 11px;
    font-weight: 850
}
.form-group small {
    font-size: 9px;
    color: var(--muted)
}
.form-control {
    width: 100%;
    border: 1px solid #d8d4dc;
    border-radius: 12px;
    padding: 12px 14px;
    background: #fff;
    outline: 0
}
.form-control:focus {
    border-color: var(--purple);
    box-shadow: 0 0 0 3px rgba(141, 28, 168, .1)
}
textarea.form-control {
    resize: vertical
}
.payment-options {
    display: grid;
    gap: 10px
}
.payment-card {
    border: 1px solid var(--line);
    border-radius: 15px;
    padding: 15px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    cursor: pointer
}
.payment-card:has(input:checked) {
    border-color: var(--pink);
    box-shadow: 0 0 0 3px rgba(216, 23, 141, .08)
}
.payment-card span, .payment-card strong, .payment-card small {
    display: block
}
.payment-card small {
    font-size: 10px;
    color: var(--muted);
    margin-top: 3px
}
.payment-card input {
    accent-color: var(--pink)
}
.bkash-box {
    background: #fff2f8;
    border: 1px solid #ffd0e8;
    padding: 15px;
    border-radius: 13px;
    margin-top: 10px
}
.payment-logo {
    display: inline-flex;
    padding: 5px 9px;
    border-radius: 8px;
    background: #e2136e;
    color: #fff;
    font-weight: 900;
    font-size: 10px
}
.auth-page {
    min-height: 100vh;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #fff, #f1eaf4);
    padding: 30px
}
.auth-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 25px;
    padding: 34px;
    width: min(470px, 100%);
    box-shadow: var(--shadow)
}
.auth-card.wide {
    width: min(720px, 100%)
}
.auth-card h1 {
    font-size: 42px;
    line-height: 1;
    margin: 20px 0 25px;
    letter-spacing: -.04em
}
.auth-card form {
    display: grid;
    gap: 15px
}
.auth-links {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-top: 18px;
    font-size: 12px;
    color: var(--purple)
}
.profile-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 30px;
    padding: 55px 0
}
.account-nav {
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 13px;
    align-self: start;
    position: sticky;
    top: calc(var(--header-h) + 20px)
}
.account-nav a {
    display: block;
    padding: 11px;
    border-radius: 10px;
    font-size: 12px
}
.account-nav a:hover, .account-nav a.active {
    background: var(--accent);
    color: #fff
}
.dashboard-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px
}
.stat-card {
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 20px;
    background: #fff
}
.stat-card strong {
    display: block;
    font-size: 32px
}
.order-table {
    width: 100%;
    border-collapse: collapse
}
.order-table th, .order-table td {
    text-align: left;
    padding: 13px;
    border-bottom: 1px solid var(--line);
    font-size: 12px
}
.status {
    display: inline-flex;
    border-radius: 999px;
    padding: 6px 9px;
    background: #f2f2f3;
    font-size: 9px;
    font-weight: 900;
    text-transform: uppercase
}
.status.delivered, .status.verified {
    background: #ecfdf3;
    color: #067647
}
.status.cancelled, .status.rejected {
    background: #fff1f2;
    color: #b42336
}
.status.processing, .status.shipped, .status.confirmed, .status.ready {
    background: #f3e8ff;
    color: #6b21a8
}
.timeline {
    border-left: 2px solid var(--line);
    margin-left: 9px;
    padding-left: 24px
}
.timeline-item {
    position: relative;
    padding-bottom: 22px
}
.timeline-item:before {
    content: "";
    position: absolute;
    left: -31px;
    top: 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--pink);
    border: 3px solid #fff;
    box-shadow: 0 0 0 1px var(--pink)
}
.contact-grid {
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    gap: 35px
}
.contact-card {
    background: #111218;
    color: #fff;
    border-radius: 25px;
    padding: 35px;
    position: relative;
    overflow: hidden
}
.contact-card:after {
    content: "";
    position: absolute;
    right: -80px;
    bottom: -100px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: var(--accent);
    opacity: .55
}
.contact-card>* {
    position: relative;
    z-index: 1
}
.contact-card p {
    color: #b8b6be
}
.contact-card .eyebrow {
    color: #f4a1d1
}
.site-footer {
    background: #121318;
    color: #fff;
    position: relative;
    padding-top: 70px
}
.footer-gradient {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 6px;
    background: var(--accent)
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.55fr repeat(3, .75fr) 1.05fr;
    gap: clamp(25px, 4vw, 60px);
    padding-bottom: 55px
}
.site-footer .brand-copy small {
    color: #f05ab3
}
.site-footer .brand-logo {
    filter: drop-shadow(0 7px 10px rgba(232, 22, 144, .25))
}
.site-footer .brand.light {
    color: #fff
}
.footer-brand p {
    max-width: 420px;
    color: #a7a5ad;
    font-size: 12px
}
.footer-pills {
    display: flex;
    gap: 7px;
    flex-wrap: wrap
}
.footer-pills span {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px 9px;
    border: 1px solid #33343c;
    border-radius: 999px;
    font-size: 8px;
    color: #d1ced5
}
.social-row {
    display: flex;
    gap: 8px;
    margin-top: 20px
}
.social-row a {
    width: 35px;
    height: 35px;
    border: 1px solid #33343c;
    border-radius: 10px;
    display: grid;
    place-items: center;
    font-weight: 900
}
.social-row a:hover {
    background: var(--accent);
    border-color: transparent
}
.site-footer h4 {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .1em;
    margin: 0 0 17px
}
.site-footer>.footer-grid>div:not(.footer-brand) {
    display: flex;
    flex-direction: column
}
.site-footer>.footer-grid>div:not(.footer-brand)>a {
    font-size: 11px;
    color: #a9a7ae;
    margin: 5px 0
}
.site-footer a:hover {
    color: #fff
}
.footer-contact>a, .footer-contact>p {
    display: flex!important;
    align-items: flex-start;
    gap: 8px
}
.footer-contact p {
    font-size: 11px;
    color: #a9a7ae;
    margin: 5px 0
}
.footer-hours {
    display: grid;
    gap: 4px;
    margin-top: 14px;
    padding: 13px;
    border-radius: 12px;
    background: #1b1c22
}
.footer-hours b {
    font-size: 10px
}
.footer-hours span {
    font-size: 9px;
    color: #a9a7ae
}
.footer-bottom {
    min-height: 70px;
    border-top: 1px solid #2a2b31;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: #85838b;
    font-size: 9px
}
.footer-bottom strong {
    color: #d6d3da;
    font-weight: 650
}
.mobile-bottom-nav {
    display: none
}
.back-to-top {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 60;
    width: 43px;
    height: 43px;
    border: 0;
    border-radius: 14px;
    background: var(--accent);
    color: #fff;
    box-shadow: var(--shadow-sm);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: .2s
}
.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: none
}
.admin-body {
    background: #f5f3f6
}
.admin-shell {
    display: grid;
    grid-template-columns: 265px 1fr;
    min-height: 100vh
}
.admin-sidebar {
    background: #111218;
    color: #fff;
    padding: 24px;
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: auto
}
.admin-sidebar .brand {
    margin-bottom: 32px
}
.admin-nav {
    display: grid;
    gap: 5px
}
.admin-nav a {
    padding: 11px 12px;
    border-radius: 10px;
    color: #b8b5be;
    font-size: 12px
}
.admin-nav a:hover, .admin-nav a.active {
    background: var(--accent);
    color: #fff
}
.admin-main {
    padding: 30px
}
.admin-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px
}
.admin-topbar h1 {
    margin: 0;
    font-size: 37px;
    letter-spacing: -.04em
}
.admin-stat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px
}
.admin-stat {
    background: #fff;
    border-radius: 18px;
    padding: 20px;
    border: 1px solid var(--line)
}
.admin-stat strong {
    font-size: 29px;
    display: block
}
.admin-stat small {
    font-size: 9px;
    color: var(--muted)
}
.admin-grid-2 {
    display: grid;
    grid-template-columns: 1.4fr .6fr;
    gap: 18px;
    margin-top: 18px
}
.admin-table-wrap {
    overflow: auto;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px
}
.admin-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 760px
}
.admin-table th, .admin-table td {
    padding: 13px;
    text-align: left;
    border-bottom: 1px solid var(--line);
    font-size: 11px
}
.admin-table th {
    background: #faf9fb;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: 9px
}
.admin-form {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 24px
}
.admin-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap
}
.variant-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 110px 90px 82px;
    gap: 8px;
    margin-bottom: 8px
}
.image-preview {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 14px;
    background: var(--soft)
}
.chart-bars {
    height: 230px;
    display: flex;
    align-items: end;
    gap: 10px;
    padding-top: 20px
}
.chart-bar {
    flex: 1;
    background: var(--accent);
    border-radius: 7px 7px 0 0;
    min-height: 5px;
    position: relative
}
.chart-bar span {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 8px;
    margin-bottom: 5px;
    white-space: nowrap
}
.chart-labels {
    display: flex;
    gap: 10px
}
.chart-labels span {
    flex: 1;
    text-align: center;
    font-size: 8px;
    color: var(--muted)
}
.admin-login-hint {
    background: var(--soft);
    border-radius: 14px;
    padding: 14px;
    font-size: 11px
}
@media(max-width:1450px) {
    .primary-nav {
        gap: 16px
    }
    .primary-nav>a, .nav-dropdown>button {
        font-size: 12px
    }
    .product-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr))
    }
    .category-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr))
    }
    .service-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr))
    }
    .footer-grid {
        grid-template-columns: 1.4fr repeat(2, .75fr) 1fr
    }
    .footer-grid>div:nth-child(4) {
        display: none!important
    }
}
@media(max-width:1120px) {
    :root {
        --header-h: 72px
    }
    .announcement-inner>span {
        display: none
    }
    .navbar {
        gap: 15px
    }
    .primary-nav {
        display: none
    }
    .mobile-menu-button {
        display: grid
    }
    .brand-copy strong {
        font-size: 16px
    }
    .nav-actions {
        margin-left: auto
    }
    .hero-grid {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-top: 70px
    }
    .hero-copy {
        max-width: 850px
    }
    .hero-visual {
        min-height: 580px
    }
    .benefit-grid {
        grid-template-columns: repeat(2, 1fr)
    }
    .benefit-item:nth-child(2) {
        border-right: 0
    }
    .benefit-item:nth-child(-n+2) {
        border-bottom: 1px solid #2e2f35
    }
    .about-grid {
        grid-template-columns: 1fr
    }
    .about-copy {
        max-width: 850px
    }
    .newsletter {
        grid-template-columns: 1fr
    }
    .footer-grid {
        grid-template-columns: repeat(3, 1fr)
    }
    .footer-brand {
        grid-column: 1/-1
    }
    .footer-grid>div:nth-child(4) {
        display: flex!important
    }
    .shop-layout {
        grid-template-columns: 1fr
    }
    .filters {
        position: static;
        display: none
    }
    .filters.open {
        display: block
    }
    .filter-toggle {
        display: inline-flex
    }
    .product-detail-grid {
        grid-template-columns: 1fr
    }
    .product-summary {
        position: static
    }
    .admin-shell {
        grid-template-columns: 1fr
    }
    .admin-sidebar {
        height: auto;
        position: relative
    }
    .admin-nav {
        grid-template-columns: repeat(5, 1fr)
    }
    .admin-stat-grid {
        grid-template-columns: repeat(2, 1fr)
    }
    .admin-grid-2 {
        grid-template-columns: 1fr
    }
    .mobile-drawer {
        display: block;
        position: fixed;
        left: 0;
        top: 0;
        bottom: 0;
        width: min(390px, 88vw);
        z-index: 130;
        background: #fff;
        padding: 18px;
        box-shadow: var(--shadow);
        transform: translateX(-105%);
        transition: .28s;
        overflow: auto
    }
    .mobile-drawer.open {
        transform: none
    }
    .drawer-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-bottom: 1px solid var(--line);
        padding-bottom: 13px
    }
    .drawer-head .nav-icon {
        font-size: 27px
    }
    .drawer-search {
        display: grid;
        grid-template-columns: 1fr 48px;
        margin: 18px 0;
        border: 1px solid var(--line);
        border-radius: 13px;
        overflow: hidden
    }
    .drawer-search input {
        border: 0;
        padding: 12px;
        outline: 0
    }
    .drawer-search button {
        border: 0;
        background: var(--accent);
        color: #fff
    }
    .mobile-drawer nav {
        display: grid
    }
    .mobile-drawer nav>a, .mobile-drawer summary {
        padding: 13px 5px;
        border-bottom: 1px solid var(--line);
        font-size: 13px;
        font-weight: 750;
        cursor: pointer
    }
    .mobile-drawer details a {
        display: block;
        padding: 9px 15px;
        font-size: 11px;
        color: var(--muted)
    }
}
@media(max-width:820px) {
    body {
        padding-bottom: 70px
    }
    .site-announcement {
        display: none
    }
    .navbar {
        height: 64px
    }
    .brand-logo {
        width: 36px;
        height: 42px
    }
    .brand-copy small {
        display: none
    }
    .hide-small {
        display: none
    }
    .cart-action span {
        display: none
    }
    .cart-action {
        width: 42px;
        padding: 0
    }
    .cart-action b {
        right: -3px
    }
    .hero-grid {
        padding-top: 42px;
        padding-bottom: 35px
    }
    .hero-copy h1 {
        font-size: clamp(50px, 14vw, 76px)
    }
    .hero-copy>p {
        font-size: 14px
    }
    .hero-visual {
        min-height: 420px
    }
    .hero-chip.two {
        top: 8%;
        left: 1%
    }
    .hero-chip.one {
        right: 0;
        bottom: 9%
    }
    .hero-metrics {
        gap: 13px
    }
    .hero-metrics div {
        padding-right: 13px
    }
    .benefit-grid {
        grid-template-columns: 1fr 1fr
    }
    .benefit-item {
        padding: 16px 12px
    }
    .section {
        padding: 65px 0
    }
    .section-head {
        align-items: flex-start;
        flex-direction: column;
        margin-bottom: 28px
    }
    .section-head h2 {
        font-size: 44px
    }
    .service-grid {
        grid-template-columns: repeat(2, 1fr)
    }
    .service-card {
        min-height: 280px;
        padding: 20px
    }
    .category-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 8px
    }
    .category-card {
        min-width: 180px;
        scroll-snap-align: start
    }
    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px
    }
    .product-info {
        padding: 12px
    }
    .product-info h3 {
        font-size: 12px
    }
    .product-short {
        display: none
    }
    .product-actions .btn {
        display: flex
    }
    .about-image, .about-image>img {
        min-height: 390px
    }
    .stat-row {
        grid-template-columns: 1fr 1fr
    }
    .quote-banner {
        grid-template-columns: 1fr
    }
    .process-grid {
        grid-template-columns: repeat(2, 1fr)
    }
    .newsletter {
        padding: 32px 20px
    }
    .newsletter-form {
        grid-template-columns: 1fr;
        background: transparent;
        gap: 8px
    }
    .newsletter-form input {
        height: 48px;
        background: #fff;
        border-radius: 12px;
        padding: 0 13px
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr
    }
    .footer-brand {
        grid-column: 1/-1
    }
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        padding-block: 18px
    }
    .mobile-bottom-nav {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 75;
        background: rgba(255, 255, 255, .96);
        backdrop-filter: blur(15px);
        border-top: 1px solid var(--line);
        padding: 7px 5px max(7px, env(safe-area-inset-bottom))
    }
    .mobile-bottom-nav a {
        position: relative;
        display: grid;
        justify-items: center;
        gap: 2px;
        font-size: 8px;
        color: #66636d
    }
    .mobile-bottom-nav a:hover {
        color: var(--pink)
    }
    .mobile-bottom-nav b {
        position: absolute;
        top: -3px;
        right: 25%;
        min-width: 16px;
        height: 16px;
        border-radius: 999px;
        background: var(--pink);
        color: #fff;
        font-size: 8px;
        display: grid;
        place-items: center
    }
    .back-to-top {
        bottom: 82px;
        right: 14px
    }
    .page-hero h1 {
        font-size: 55px
    }
    .shop-toolbar {
        align-items: flex-start;
        flex-direction: column
    }
    .product-gallery-main {
        aspect-ratio: 1/1
    }
    .product-summary h1 {
        font-size: 45px
    }
    .detail-benefits {
        grid-template-columns: 1fr
    }
    .cart-layout, .checkout-layout {
        grid-template-columns: 1fr;
        padding: 35px 0
    }
    .cart-item {
        grid-template-columns: 85px 1fr
    }
    .cart-item img {
        width: 85px;
        height: 85px
    }
    .cart-item>div:last-child {
        grid-column: 2
    }
    .summary-card {
        position: static
    }
    .form-grid {
        grid-template-columns: 1fr
    }
    .form-group.full {
        grid-column: auto
    }
    .profile-layout {
        grid-template-columns: 1fr
    }
    .account-nav {
        position: static;
        display: flex;
        overflow: auto
    }
    .account-nav a {
        white-space: nowrap
    }
    .dashboard-cards {
        grid-template-columns: 1fr
    }
    .contact-grid {
        grid-template-columns: 1fr
    }
    .admin-main {
        padding: 17px
    }
    .admin-nav {
        grid-template-columns: repeat(2, 1fr)
    }
    .admin-stat-grid {
        grid-template-columns: 1fr
    }
    .admin-topbar {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px
    }
    .variant-row {
        grid-template-columns: 1fr 1fr
    }
    .variant-row button {
        grid-column: 1/-1
    }
}
@media(max-width:520px) {
    :root {
        --page-pad: 14px
    }
    .navbar {
        gap: 8px
    }
    .brand-copy strong {
        font-size: 14px
    }
    .nav-actions {
        gap: 2px
    }
    .search-trigger {
        display: none
    }
    .hero-copy h1 {
        font-size: 49px
    }
    .hero-actions {
        display: grid;
        grid-template-columns: 1fr
    }
    .hero-actions .btn {
        width: 100%
    }
    .hero-metrics {
        display: grid;
        grid-template-columns: repeat(3, 1fr)
    }
    .hero-metrics div {
        border: 0;
        padding: 0
    }
    .hero-visual {
        min-height: 335px
    }
    .hero-chip {
        padding: 9px;
        font-size: 9px
    }
    .hero-chip small {
        display: none
    }
    .hero-accent-block {
        width: 34%
    }
    .benefit-grid {
        grid-template-columns: 1fr
    }
    .benefit-item {
        border-right: 0;
        border-bottom: 1px solid #2e2f35!important
    }
    .service-grid {
        grid-template-columns: 1fr
    }
    .service-card {
        min-height: 235px
    }
    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }
    .product-card {
        border-radius: 15px
    }
    .product-info h3 {
        min-height: 31px
    }
    .product-actions {
        gap: 4px
    }
    .product-actions .btn {
        font-size: 8px;
        padding: 0 5px;
        min-height: 34px
    }
    .product-actions .icon-button {
        width: 34px;
        height: 34px
    }
    .stat-row {
        grid-template-columns: 1fr
    }
    .process-grid {
        grid-template-columns: 1fr
    }
    .footer-grid {
        grid-template-columns: 1fr
    }
    .footer-grid>div:nth-child(4) {
        display: none!important
    }
    .purchase-row {
        grid-template-columns: 78px 1fr
    }
    .auth-page {
        padding: 14px
    }
    .auth-card {
        padding: 24px
    }
    .auth-card h1 {
        font-size: 34px
    }
    .search-overlay {
        padding: 12px
    }
    .search-panel {
        padding: 20px 14px
    }
    .search-panel h2 {
        font-size: 30px
    }
    .global-search input {
        height: 52px;
        padding: 0 12px;
        font-size: 12px
    }
    .search-hints {
        display: none
    }
}
