﻿:root {
    --orange: #e67e22;
    --orange-hover: #d96c0f;
    --green: #3fae49;
    --white: #ffffff;
    --bg: #f5f5f5;
    --text: #2f2f2f;
    --muted: #6c6f75;
    --border: #e6e6e6;
    --ink: #151515;
    --soft: #fafafa;
    --line: rgba(47, 47, 47, 0.1);
    --shadow: 0 14px 38px rgba(31, 31, 31, 0.08);
    --shadow-soft: 0 8px 24px rgba(31, 31, 31, 0.06);
    --radius: 8px;
    --container: 1180px;
    --header: 78px;
    font-family: "Noto Sans Georgian", "Segoe UI", Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

@view-transition {
    navigation: auto;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: var(--font, "Noto Sans Georgian", "Segoe UI", Arial, sans-serif);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    overflow-x: hidden;
    animation: page-enter 360ms ease both;
}

body:not(.is-home) main {
    padding-top: var(--header);
}

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

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

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

button {
    cursor: pointer;
}

button:disabled,
.is-disabled {
    cursor: not-allowed;
    opacity: 0.55;
    pointer-events: none;
}

.container {
    width: min(calc(100% - 32px), var(--container));
    margin-inline: auto;
}

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

.muted {
    color: var(--muted);
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    height: var(--header);
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(18px);
    transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header--transparent:not(.is-scrolled) {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.18);
    color: var(--white);
}

.site-header.is-scrolled {
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
}

.header-inner {
    height: 100%;
    display: grid;
    grid-template-columns: auto 1fr minmax(220px, 360px) auto;
    align-items: center;
    gap: 22px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    letter-spacing: 0;
}

.brand img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: var(--shadow-soft);
}

.brand span {
    font-size: 1.08rem;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-self: start;
    font-size: 0.94rem;
    font-weight: 600;
}

.main-nav a {
    transition: color 160ms ease;
}

.main-nav a:hover,
.link-arrow:hover {
    color: var(--orange-hover);
}

.nav-dropdown {
    position: relative;
}

.dropdown-panel {
    position: absolute;
    top: 100%;
    left: -14px;
    min-width: 220px;
    padding: 10px;
    background: var(--white);
    color: var(--text);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(8px);
    pointer-events: none;
    transition: opacity 160ms ease, transform 160ms ease;
}

.dropdown-panel a {
    display: block;
    padding: 10px 12px;
    border-radius: 6px;
}

.dropdown-panel a:hover {
    background: var(--bg);
}

.nav-dropdown:hover .dropdown-panel,
.nav-dropdown:focus-within .dropdown-panel {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.header-search {
    position: relative;
    display: flex;
    align-items: center;
    height: 44px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid var(--border);
    border-radius: 999px;
    overflow: visible;
}

.site-header--transparent:not(.is-scrolled) .header-search {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.28);
}

.header-search input {
    min-width: 0;
    flex: 1;
    height: 100%;
    padding: 0 14px 0 18px;
    color: var(--text);
    background: transparent;
    border: 0;
    outline: 0;
}

.site-header--transparent:not(.is-scrolled) .header-search input {
    color: var(--white);
}

.site-header--transparent:not(.is-scrolled) .header-search input::placeholder {
    color: rgba(255, 255, 255, 0.82);
}

.header-search button {
    width: 42px;
    height: 42px;
    color: var(--text);
    background: transparent;
    border: 0;
}

.search-suggestions {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    max-height: 360px;
    overflow: auto;
    background: var(--white);
    color: var(--text);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 8px;
}

.search-suggestions.is-open {
    display: block;
}

.suggestion-item {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 10px;
    align-items: center;
    padding: 9px;
    border-radius: 6px;
}

.suggestion-item:hover {
    background: var(--bg);
}

.suggestion-item img {
    width: 42px;
    height: 42px;
    border-radius: 6px;
    object-fit: cover;
}

.suggestion-item span {
    display: block;
    color: var(--muted);
    font-size: 0.78rem;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-action,
.language-pill,
.icon-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 10px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.84);
    color: var(--text);
    transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.header-action:hover,
.icon-button:hover {
    transform: translateY(-1px);
    border-color: rgba(230, 126, 34, 0.45);
}

.header-action {
    position: relative;
    gap: 6px;
    font-size: 0.88rem;
    font-weight: 500;
}

.header-action b {
    min-width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    border-radius: 999px;
    background: var(--orange);
    color: var(--white);
    font-size: 0.72rem;
}

.language-pill {
    font-weight: 500;
    font-size: 0.8rem;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    border: 0;
}

.nav-toggle span {
    width: 18px;
    height: 2px;
    background: currentColor;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 11px 18px;
    border: 1px solid transparent;
    border-radius: var(--radius);
    font-weight: 500;
    line-height: 1.2;
    transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.btn:hover {
    transform: translateY(-1px);
}

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

.btn-primary:hover {
    background: var(--orange-hover);
}

.btn-light {
    color: var(--text);
    background: var(--white);
    border-color: var(--border);
}

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

.btn-small {
    min-height: 38px;
    padding: 9px 13px;
    font-size: 0.88rem;
}

.btn-full {
    width: 100%;
}

.hero {
    position: relative;
    min-height: 82svh;
    display: grid;
    align-items: center;
    padding: 112px 0 80px;
    color: var(--white);
    background-image: var(--hero-image);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.18));
}

.hero__content {
    position: relative;
    max-width: 720px;
    margin-inline: auto;
}

.hero h1,
.page-hero h1 {
    margin: 0;
    color: inherit;
    font-size: clamp(34px, 7vw, 60px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: 0;
}

.hero p:not(.eyebrow) {
    max-width: 620px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(18px, 2vw, 20px);
    font-weight: 400;
    line-height: 1.7;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.eyebrow {
    margin: 0 0 18px;
    color: var(--orange);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0;
}

.hero .eyebrow {
    color: #ffd1ae;
}

.section {
    padding: 72px 0;
}

.section--soft {
    background: var(--white);
}

.section--newsletter {
    padding-block: 44px;
}

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

.section-head h2,
.split-feature h2,
.newsletter-panel h2,
.two-column h2,
.prose h2,
.account-panel h2 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(1.65rem, 3vw, 2.5rem);
    font-weight: 600;
    line-height: 1.18;
    letter-spacing: 0;
}

.link-arrow {
    color: var(--orange);
    font-weight: 600;
}

.category-grid,
.product-grid,
.advantage-grid,
.review-grid,
.gallery-grid,
.value-grid,
.blog-grid,
.address-grid,
.stats-grid {
    display: grid;
    gap: 18px;
}

.category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.category-card {
    position: relative;
    min-height: 220px;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.category-card img {
    width: 100%;
    height: 100%;
    min-height: 220px;
    object-fit: cover;
    transition: transform 240ms ease;
}

.category-card span {
    position: absolute;
    left: 16px;
    bottom: 16px;
    padding: 8px 12px;
    color: var(--white);
    background: rgba(0, 0, 0, 0.48);
    border-radius: 999px;
    font-weight: 600;
}

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

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

.product-card {
    min-width: 0;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.product-card:hover {
    transform: translateY(-3px);
    border-color: rgba(230, 126, 34, 0.28);
    box-shadow: var(--shadow);
}

.product-card__media {
    position: relative;
    display: block;
    aspect-ratio: 4 / 3;
    background: var(--soft);
    overflow: hidden;
}

.product-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 220ms ease;
}

.product-card:hover .product-card__media img {
    transform: scale(1.035);
}

.badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 4px 9px;
    border-radius: 999px;
    color: var(--white);
    background: var(--green);
    font-size: 0.75rem;
    font-weight: 600;
}

.badge--sale {
    background: var(--orange);
}

.product-card__body {
    display: grid;
    gap: 10px;
    padding: 15px;
}

.product-card__meta {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    color: var(--muted);
    font-size: 0.78rem;
}

.product-card h3 {
    min-height: 48px;
    margin: 0;
    color: var(--ink);
    font-size: 1rem;
    line-height: 1.35;
    letter-spacing: 0;
}

.product-card p {
    min-height: 44px;
    margin: 0;
    color: var(--muted);
    font-size: 0.88rem;
}

.product-card__price,
.product-card__actions,
.product-price-large {
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-card__price strong,
.product-price-large strong {
    color: var(--ink);
}

.product-card__price del,
.product-price-large del {
    color: var(--muted);
}

.product-card__actions {
    justify-content: space-between;
}

.wishlist-button.is-active,
.btn-light.is-active {
    color: var(--orange);
    border-color: rgba(230, 126, 34, 0.4);
    background: #fff7f0;
}

.split-feature {
    display: grid;
    gap: 28px;
}

.split-feature > div:first-child {
    max-width: 520px;
}

.split-feature p {
    color: var(--muted);
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.advantage-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.advantage-card,
.review-card,
.address-card,
.account-panel,
.confirmation-card,
.contact-info article,
.value-grid article,
.placeholder-box {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

.advantage-card,
.review-card,
.address-card,
.account-panel,
.confirmation-card,
.contact-info article,
.value-grid article {
    padding: 22px;
}

.advantage-card span {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border-radius: 50%;
    color: var(--orange);
    background: #fff2e7;
    font-weight: 600;
}

.advantage-card h3,
.review-card h3,
.value-grid h3,
.contact-info h2 {
    margin: 0 0 8px;
    color: var(--ink);
    font-size: 1.08rem;
    letter-spacing: 0;
}

.advantage-card p,
.review-card p,
.value-grid p,
.contact-info p {
    margin: 0;
    color: var(--muted);
}

.newsletter-panel {
    display: grid;
    gap: 22px;
    align-items: center;
    padding: 28px;
    color: var(--white);
    background: var(--ink);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.newsletter-panel p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.74);
}

.newsletter-form,
.newsletter-mini {
    display: flex;
    gap: 10px;
}

.newsletter-mini {
    margin-top: 14px;
}

.form-control,
.newsletter-mini input,
.auth-card input:not([type="checkbox"]) {
    width: 100%;
    min-height: 44px;
    padding: 11px 13px;
    color: var(--text);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    outline: 0;
    transition: border-color 160ms ease, box-shadow 160ms ease;
}

textarea.form-control {
    resize: vertical;
}

.form-control:focus,
.newsletter-mini input:focus {
    border-color: rgba(230, 126, 34, 0.6);
    box-shadow: 0 0 0 4px rgba(230, 126, 34, 0.12);
}

.gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gallery-grid img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

.review-grid {
    grid-template-columns: 1fr;
}

.stars {
    color: var(--orange);
    letter-spacing: 0;
}

.brand-strip {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.brand-strip a,
.brand-strip span {
    min-width: 132px;
    min-height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    color: var(--muted);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-weight: 600;
}

.brand-strip img {
    max-height: 34px;
    object-fit: contain;
}

.page-hero {
    --page-hero-image: url("https://images.unsplash.com/photo-1616486338812-3dadae4b4ace?auto=format&fit=crop&w=2200&q=85");
    --page-hero-position: center;
    --page-hero-offset: 0px;
    --page-hero-overlay: rgba(18, 18, 18, 0.48);
    position: relative;
    isolation: isolate;
    overflow: hidden;
    min-height: clamp(320px, 34vw, 420px);
    display: grid;
    align-items: center;
    padding: 76px 0;
    color: var(--white);
    background: #f3eee9;
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: -22px 0;
    z-index: -2;
    background-image: var(--page-hero-image);
    background-size: cover;
    background-position: var(--page-hero-position) calc(50% + var(--page-hero-offset));
    background-repeat: no-repeat;
    transform: scale(1.02);
    transition: background-image 260ms ease, background-position 80ms linear;
}

.page-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.55), var(--page-hero-overlay)),
        linear-gradient(135deg, rgba(230, 126, 34, 0.34), rgba(255, 255, 255, 0) 46%);
}

.page-hero--abstract::before {
    background-image:
        linear-gradient(135deg, rgba(230, 126, 34, 0.96), rgba(246, 178, 110, 0.82) 42%, rgba(246, 241, 235, 0.7)),
        repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.16) 0 1px, transparent 1px 42px),
        repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0 1px, transparent 1px 54px);
}

.page-hero--abstract::after {
    background:
        linear-gradient(90deg, rgba(55, 34, 22, 0.5), rgba(55, 34, 22, 0.42)),
        linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0) 55%);
}

.page-hero--soft-abstract::before {
    background-image:
        linear-gradient(135deg, rgba(230, 126, 34, 0.72), rgba(245, 215, 190, 0.92) 52%, rgba(255, 255, 255, 0.86)),
        repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0 1px, transparent 1px 48px),
        repeating-linear-gradient(45deg, rgba(230, 126, 34, 0.11) 0 1px, transparent 1px 56px);
}

.page-hero--soft-abstract::after {
    background:
        linear-gradient(90deg, rgba(79, 45, 22, 0.48), rgba(79, 45, 22, 0.4)),
        linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0) 58%);
}

.page-hero .container {
    position: relative;
    animation: hero-rise 620ms ease both;
}

.page-hero .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.82);
}

.page-hero .eyebrow::before {
    content: "";
    width: 42px;
    height: 2px;
    background: var(--orange);
    border-radius: 999px;
    box-shadow: 0 0 18px rgba(230, 126, 34, 0.5);
}

.page-hero h1 {
    max-width: 860px;
    text-wrap: balance;
}

.page-hero p:not(.eyebrow) {
    max-width: 700px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(18px, 2vw, 20px);
    font-weight: 400;
    line-height: 1.7;
}

.shop-layout {
    display: grid;
    gap: 22px;
}

.filter-panel {
    display: none;
    align-self: start;
    padding: 18px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

.filter-panel.is-open {
    display: block;
}

.filter-panel__head,
.panel-head,
.shop-toolbar,
.summary-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.filter-panel__head h2 {
    margin: 0;
    font-size: 1.25rem;
}

.filter-panel__head a,
.panel-head a,
.card-actions a,
.card-actions button,
.cart-item__total button {
    color: var(--orange);
    background: transparent;
    border: 0;
    font-weight: 600;
}

.filter-row,
.form-grid {
    display: grid;
    gap: 14px;
}

.filter-row {
    grid-template-columns: 1fr 1fr;
    margin-top: 16px;
}

.field-label,
form label span {
    display: block;
    margin-bottom: 6px;
    color: var(--ink);
    font-weight: 600;
    font-size: 0.88rem;
}

.filter-group {
    display: grid;
    gap: 9px;
    margin-top: 18px;
}

.filter-group h3 {
    margin: 0;
    font-size: 0.96rem;
}

.filter-group label,
.checkbox-line {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--muted);
}

.filter-group input,
.checkbox-line input {
    accent-color: var(--orange);
}

.shop-content,
.account-content,
.search-layout {
    min-width: 0;
}

.shop-toolbar {
    margin-bottom: 18px;
    color: var(--muted);
    font-weight: 600;
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 32px;
}

.pagination a,
.pagination span {
    min-width: 44px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-weight: 600;
}

.category-list-grid {
    display: grid;
    gap: 20px;
}

.category-list-card {
    display: grid;
    gap: 18px;
    padding: 16px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

.category-list-card__image {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 6px;
}

.category-list-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-list-card h2 {
    margin: 0 0 6px;
}

.subcategories {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.subcategories a {
    padding: 7px 10px;
    background: var(--bg);
    border-radius: 999px;
    color: var(--muted);
    font-weight: 700;
}

.product-detail {
    --product-hero-image: url("https://images.unsplash.com/photo-1600210492493-0946911123ea?auto=format&fit=crop&w=2200&q=85");
    --product-hero-offset: 0px;
    position: relative;
    isolation: isolate;
    overflow: hidden;
    min-height: clamp(360px, 40vw, 520px);
    padding: 76px 0;
    color: var(--white);
    background: #f3eee9;
}

.product-detail::before {
    content: "";
    position: absolute;
    inset: -28px 0;
    z-index: 0;
    background-image: var(--product-hero-image);
    background-size: cover;
    background-position: center calc(50% + var(--product-hero-offset));
    background-repeat: no-repeat;
    filter: blur(5px);
    transform: scale(1.05);
    transition: background-position 80ms linear;
}

.product-detail::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.54), rgba(0, 0, 0, 0.44)),
        linear-gradient(135deg, rgba(230, 126, 34, 0.2), rgba(255, 255, 255, 0) 56%);
}

.product-detail__grid {
    position: relative;
    z-index: 2;
    display: grid;
    align-items: center;
    gap: 36px;
    animation: hero-rise 620ms ease both;
}

.product-gallery__main {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

.product-gallery__main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 160ms ease;
}

.product-gallery__thumbs {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
    margin-top: 12px;
}

.product-gallery__thumbs button {
    aspect-ratio: 1;
    padding: 0;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 6px;
}

.product-gallery__thumbs button.is-active {
    border-color: var(--orange);
}

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

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.88rem;
    margin-bottom: 20px;
    font-weight: 400;
}

.product-summary::before {
    content: "";
    display: block;
    width: 44px;
    height: 2px;
    margin-bottom: 22px;
    background: var(--orange);
    border-radius: 999px;
    box-shadow: 0 0 18px rgba(230, 126, 34, 0.45);
}

.product-summary h1 {
    margin: 0;
    color: var(--white);
    font-size: clamp(34px, 7vw, 60px);
    font-weight: 700;
    line-height: 1.08;
    text-wrap: balance;
}

.product-summary__short {
    max-width: 700px;
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(18px, 2vw, 20px);
    font-weight: 400;
    line-height: 1.7;
}

.product-price-large {
    margin: 20px 0 12px;
}

.product-price-large strong {
    font-size: 2rem;
}

.product-detail .product-price-large strong {
    color: var(--white);
}

.product-detail .product-price-large del {
    color: rgba(255, 255, 255, 0.62);
}

.product-price-large span {
    padding: 5px 9px;
    color: var(--white);
    background: var(--orange);
    border-radius: 999px;
    font-weight: 600;
}

.availability {
    display: inline-flex;
    margin-bottom: 18px;
    padding: 6px 10px;
    color: var(--muted);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 999px;
    font-weight: 600;
}

.product-detail .availability {
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(10px);
}

.product-detail .availability.is-available {
    color: #d9f5dd;
    background: rgba(63, 174, 73, 0.18);
    border-color: rgba(217, 245, 221, 0.3);
}

.availability.is-available {
    color: var(--green);
    border-color: rgba(63, 174, 73, 0.3);
    background: rgba(63, 174, 73, 0.08);
}

.product-buy-box,
.product-secondary-actions {
    display: grid;
    gap: 12px;
}

.product-secondary-actions {
    margin-top: 12px;
}

.quantity-control {
    display: inline-grid;
    grid-template-columns: 44px 68px 44px;
    align-items: center;
    width: max-content;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--white);
}

.quantity-control button,
.quantity-control input {
    width: 100%;
    height: 44px;
    border: 0;
    background: transparent;
    text-align: center;
}

.quantity-control button {
    font-weight: 600;
}

.share-box {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
    color: var(--muted);
}

.share-box a {
    color: var(--orange);
    font-weight: 600;
}

.product-info-tabs {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

.tab-list {
    display: flex;
    overflow-x: auto;
    border-bottom: 1px solid var(--border);
}

.tab-list button {
    flex: 1;
    min-width: 140px;
    padding: 16px;
    color: var(--muted);
    background: transparent;
    border: 0;
    font-weight: 600;
}

.tab-list button.is-active {
    color: var(--orange);
    background: #fff7f0;
}

.tab-panel {
    display: none;
    padding: 24px;
}

.tab-panel.is-active {
    display: block;
}

.spec-list {
    display: grid;
    gap: 8px;
    margin: 0;
}

.spec-list div,
.summary-product,
.order-lines article {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.spec-list dt {
    color: var(--muted);
    font-weight: 600;
}

.spec-list dd {
    margin: 0;
    color: var(--ink);
    font-weight: 600;
}

.review-columns {
    display: grid;
    gap: 24px;
}

.review-form,
.checkout-form,
.contact-form {
    display: grid;
    gap: 14px;
}

.review-form label,
.checkout-form label,
.contact-form label,
.auth-card label,
.account-panel form label {
    display: block;
}

label small {
    display: block;
    margin-top: 5px;
    color: #b42318;
}

.form-errors {
    padding: 12px;
    color: #842029;
    background: #fff1f0;
    border: 1px solid #ffd6d2;
    border-radius: var(--radius);
}

.cart-layout,
.checkout-layout,
.confirmation-layout,
.contact-layout,
.two-column {
    display: grid;
    gap: 24px;
}

.cart-items {
    display: grid;
    gap: 14px;
}

.cart-item {
    display: grid;
    grid-template-columns: 86px 1fr;
    gap: 14px;
    align-items: center;
    padding: 14px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

.cart-item__image {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 6px;
    background: var(--soft);
}

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

.cart-item__info {
    min-width: 0;
}

.cart-item__info a {
    display: block;
    color: var(--ink);
    font-weight: 600;
}

.cart-item__info span {
    color: var(--muted);
    font-size: 0.88rem;
}

.cart-item__total {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.order-summary {
    align-self: start;
    padding: 20px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.order-summary h2 {
    margin: 0 0 16px;
}

.summary-line {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.summary-line--total {
    color: var(--ink);
    font-size: 1.15rem;
}

.placeholder-box {
    padding: 14px;
    margin: 14px 0;
    background: var(--soft);
    box-shadow: none;
}

.placeholder-box span {
    display: block;
    margin-bottom: 4px;
    font-weight: 600;
}

.placeholder-box p {
    margin: 0;
    color: var(--muted);
    font-size: 0.88rem;
}

.summary-product {
    grid-template-columns: 56px 1fr auto;
    align-items: center;
}

.summary-product img {
    width: 56px;
    height: 56px;
    object-fit: cover;
    border-radius: 6px;
}

.auth-section {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    min-height: calc(100svh - var(--header));
    display: grid;
    place-items: center;
    padding: calc(var(--header) + 56px) 16px 72px;
    background:
        linear-gradient(135deg, rgba(230, 126, 34, 0.18), rgba(255, 255, 255, 0.86) 44%, rgba(230, 126, 34, 0.11)),
        repeating-linear-gradient(135deg, rgba(230, 126, 34, 0.08) 0 1px, transparent 1px 38px),
        #f7f4f1;
}

.auth-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.42)),
        url("https://images.unsplash.com/photo-1524758631624-e2822e304c36?auto=format&fit=crop&w=2200&q=80");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.22;
}

.auth-section::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: rgba(255, 255, 255, 0.48);
}

.auth-card {
    width: min(100%, 460px);
    padding: 34px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(230, 230, 230, 0.82);
    border-radius: var(--radius);
    box-shadow: 0 22px 60px rgba(31, 31, 31, 0.1);
    backdrop-filter: blur(18px);
    animation: hero-rise 620ms ease both;
}

.auth-card--wide {
    width: min(100%, 760px);
}

.auth-card h1 {
    margin: 0 0 30px;
    color: var(--ink);
    font-size: clamp(34px, 7vw, 52px);
    font-weight: 700;
    line-height: 1.1;
}

.auth-card .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
    color: var(--orange);
    font-weight: 600;
}

.auth-card .eyebrow::before {
    content: "";
    width: 38px;
    height: 2px;
    background: var(--orange);
    border-radius: 999px;
}

.auth-card form {
    display: grid;
    gap: 14px;
}

.auth-links {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    margin-top: 18px;
}

.auth-links a {
    color: var(--orange);
    font-weight: 600;
}

.account-layout {
    display: grid;
    gap: 22px;
}

.account-nav {
    display: grid;
    gap: 8px;
    align-self: start;
    padding: 10px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

.account-nav a {
    padding: 11px 12px;
    border-radius: 6px;
    color: var(--muted);
    font-weight: 600;
}

.account-nav a:hover {
    color: var(--orange);
    background: #fff7f0;
}

.stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 18px;
}

.stats-grid article {
    padding: 18px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

.stats-grid span {
    display: block;
    color: var(--muted);
    font-size: 0.88rem;
}

.stats-grid strong {
    display: block;
    margin-top: 6px;
    color: var(--ink);
    font-size: 1.8rem;
}

.account-panel + .account-panel {
    margin-top: 18px;
}

.panel-head {
    margin-bottom: 14px;
}

.order-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
    align-items: center;
    padding: 13px 0;
    border-bottom: 1px solid var(--border);
}

.order-row em,
.order-row small {
    color: var(--muted);
    font-style: normal;
}

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

.mini-product-row a {
    padding: 8px 10px;
    background: var(--bg);
    border-radius: 999px;
    font-weight: 600;
}

.address-grid {
    grid-template-columns: 1fr;
}

.address-card .badge {
    position: static;
    width: max-content;
    margin-bottom: 8px;
}

.card-actions {
    display: flex;
    gap: 12px;
    margin-top: 14px;
}

.contact-info {
    display: grid;
    gap: 14px;
}

.contact-info span {
    color: var(--orange);
    font-weight: 600;
}

.prose {
    max-width: 780px;
}

.prose p {
    color: var(--muted);
}

.image-panel {
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.image-panel img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
}

.blog-card {
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

.blog-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.blog-card div {
    padding: 18px;
}

.blog-card span,
.blog-card p {
    color: var(--muted);
}

.blog-card h2 {
    margin: 8px 0;
    color: var(--ink);
    font-size: 1.22rem;
}

.blog-detail__body {
    padding: 54px 0;
}

.blog-detail__image {
    width: 100%;
    max-height: 520px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 32px;
}

.empty-state {
    grid-column: 1 / -1;
    padding: 28px;
    text-align: center;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

.empty-state h2 {
    margin-top: 0;
}

.messages {
    position: fixed;
    top: calc(var(--header) + 12px);
    right: 16px;
    z-index: 80;
    display: grid;
    gap: 10px;
    width: min(360px, calc(100% - 32px));
}

.message {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 13px 14px;
    background: var(--white);
    border: 1px solid var(--border);
    border-left: 4px solid var(--orange);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.message--success {
    border-left-color: var(--green);
}

.message button {
    border: 0;
    background: transparent;
    font-size: 1.2rem;
}

.reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 420ms ease, transform 420ms ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

h1,
.hero h1,
.page-hero h1,
.product-summary h1,
.auth-card h1 {
    font-weight: 700;
}

h2,
.section-head h2,
.split-feature h2,
.newsletter-panel h2,
.two-column h2,
.prose h2,
.account-panel h2,
.order-summary h2 {
    font-weight: 600;
}

h3,
.product-card h3,
.advantage-card h3,
.review-card h3,
.value-grid h3,
.contact-info h2,
.blog-card h2,
.filter-group h3 {
    font-weight: 600;
}

p,
.product-card p,
.advantage-card p,
.review-card p,
.value-grid p,
.placeholder-box p,
.blog-card p,
.prose p {
    font-weight: 400;
}

.btn,
.newsletter-mini button,
.main-nav,
.header-action,
.language-pill,
.link-arrow,
.filter-panel__head a,
.panel-head a,
.card-actions a,
.card-actions button,
.cart-item__total button,
.auth-links a,
.account-nav a,
.pagination a,
.pagination span {
    font-weight: 500;
}

.brand,
.product-card__price strong,
.product-price-large strong,
.stats-grid strong,
.order-row strong,
.summary-line strong,
.summary-product strong,
.cart-item__info a,
.mini-product-row a {
    font-weight: 600;
}

.badge,
.header-action b,
.product-price-large span,
.advantage-card span,
.placeholder-box span {
    font-weight: 600;
}

@keyframes hero-rise {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes page-enter {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.site-footer {
    padding: 54px 0 24px;
    color: #d7d7d7;
    background: var(--ink);
}

.footer-grid {
    display: grid;
    gap: 28px;
}

.brand--footer {
    color: var(--white);
}

.site-footer p {
    color: #ababab;
}

.site-footer h3 {
    margin: 0 0 12px;
    color: var(--white);
}

.site-footer a {
    display: block;
    margin: 8px 0;
    color: #d7d7d7;
}

.newsletter-mini button {
    min-height: 44px;
    padding: 0 14px;
    color: var(--white);
    background: var(--orange);
    border: 0;
    border-radius: var(--radius);
    font-weight: 500;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
    margin-top: 34px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: #9e9e9e;
    font-size: 0.88rem;
}

@media (min-width: 640px) {
    .category-grid,
    .product-grid--catalog,
    .gallery-grid,
    .review-grid,
    .blog-grid,
    .address-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .form-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .form-span {
        grid-column: 1 / -1;
    }

    .cart-item {
        grid-template-columns: 110px 1fr auto auto;
    }

    .cart-item__total {
        grid-column: auto;
        display: grid;
        justify-items: end;
    }

    .product-buy-box,
    .product-secondary-actions {
        grid-template-columns: auto 1fr;
    }
}

@media (min-width: 860px) {
    .category-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .product-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .advantage-grid,
    .value-grid,
    .stats-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .review-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .newsletter-panel,
    .split-feature,
    .product-detail__grid,
    .checkout-layout,
    .cart-layout,
    .confirmation-layout,
    .contact-layout,
    .two-column {
        grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
    }

    .shop-layout {
        grid-template-columns: 270px minmax(0, 1fr);
    }

    .filter-panel {
        display: block;
        position: sticky;
        top: calc(var(--header) + 18px);
    }

    .filter-toggle {
        display: none;
    }

    .account-layout {
        grid-template-columns: 240px minmax(0, 1fr);
    }

    .category-list-card {
        grid-template-columns: 260px 1fr;
        align-items: center;
    }

    .footer-grid {
        grid-template-columns: 1.2fr 0.7fr 0.7fr 1.1fr;
    }
}

@media (min-width: 1021px) {
    .hero h1,
    .page-hero h1,
    .product-summary h1 {
        font-size: clamp(52px, 4vw, 60px);
    }
}

@media (min-width: 721px) and (max-width: 1020px) {
    .hero h1,
    .page-hero h1,
    .product-summary h1 {
        font-size: clamp(42px, 5vw, 46px);
    }

    .page-hero {
        min-height: 360px;
    }
}

@media (min-width: 1120px) {
    .blog-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 1020px) {
    .header-inner {
        grid-template-columns: auto auto 1fr auto;
        gap: 12px;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .main-nav {
        position: fixed;
        top: var(--header);
        left: 0;
        right: 0;
        display: none;
        padding: 18px;
        background: var(--white);
        color: var(--text);
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow);
    }

    .main-nav.is-open {
        display: grid;
    }

    .dropdown-panel {
        position: static;
        display: grid;
        opacity: 1;
        transform: none;
        pointer-events: auto;
        margin-top: 8px;
        box-shadow: none;
    }

    .header-action--account,
    .language-pill {
        display: none;
    }
}

@media (max-width: 720px) {
    :root {
        --header: 70px;
    }

    .container {
        width: min(calc(100% - 24px), var(--container));
    }

    .header-inner {
        grid-template-columns: auto auto 1fr auto;
    }

    .brand span {
        display: none;
    }

    .brand img {
        width: 40px;
        height: 40px;
    }

    .header-search {
        height: 40px;
    }

    .header-actions {
        gap: 6px;
    }

    .header-action {
        min-width: 34px;
        height: 34px;
        padding: 0 7px;
    }

    .header-action b {
        min-width: 18px;
        height: 18px;
    }

    .section {
        padding: 48px 0;
    }

    .hero {
        min-height: 78svh;
        padding-top: 98px;
    }

    .section-head {
        display: grid;
        align-items: start;
    }

    .offer-grid,
    .advantage-grid,
    .product-grid {
        grid-template-columns: 1fr;
    }

    .product-card h3,
    .product-card p {
        min-height: auto;
    }

    .newsletter-form,
    .newsletter-mini,
    .auth-links {
        display: grid;
    }

    .auth-card {
        padding: 22px;
    }

    .hero h1,
    .page-hero h1,
    .product-summary h1,
    .auth-card h1 {
        font-size: clamp(34px, 9vw, 38px);
    }

    .page-hero,
    .page-hero--compact {
        min-height: 320px;
        padding: 58px 0;
    }

    .page-hero p:not(.eyebrow),
    .hero p:not(.eyebrow),
    .product-summary__short {
        font-size: 18px;
    }
}

