/* =============================================
   GbrDecor — Main Stylesheet
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --black:   #111;
    --white:   #fff;
    --off-white: #faf9f7;
    --accent:  #c8973a;
    --accent-dark: #a67828;
    --text:    #2d2d2d;
    --muted:   #777;
    --border:  #e8e4df;
    --header-h: 68px;
    --radius:  4px;
    --max-w:   1380px;
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans:  'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-sans); color: var(--text); background: var(--white); font-size: 15px; line-height: 1.6; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

/* =============================================
   HEADER
   ============================================= */
.site-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 900;
    background: rgba(255,255,255,.97);
    border-bottom: 1px solid var(--border);
    height: var(--header-h);
    backdrop-filter: blur(8px);
    transition: box-shadow .2s;
}
.site-header.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,.1); }

.header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 32px;
}

.site-logo {
    text-decoration: none;
    color: var(--black);
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

/* Text logo — GBC stílusban: uppercase + serif + accent */
.logo-text {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--black);
    line-height: 1;
}
/* Admin-ból beállítható: <span> tag-gel arany szín a second word-re */
.logo-text span {
    color: var(--accent);
}

/* Image logo */
.logo-img {
    max-height: 48px;
    width: auto;
    object-fit: contain;
    display: block;
}

.site-nav {
    display: flex;
    gap: 4px;
    flex: 1;
}
.site-nav a {
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 500;
    letter-spacing: .3px;
    padding: 6px 12px;
    color: var(--text);
    border-radius: var(--radius);
    transition: color .15s, background .15s;
}
.site-nav a:hover, .site-nav a.active { color: var(--black); background: #f3ece0; }

.header-actions { display: flex; align-items: center; gap: 16px; margin-left: auto; }

.lang-switcher { display: flex; align-items: center; gap: 6px; font-size: 12.5px; font-weight: 600; }
.lang-switcher a { text-decoration: none; color: var(--muted); padding: 2px 4px; }
.lang-switcher a.active { color: var(--black); }
.lang-switcher span { color: var(--border); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--black); border-radius: 2px; transition: .3s; }

/* =============================================
   HERO SLIDER — Ken Burns + crossfade + text animation
   ============================================= */
.hero-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-top: var(--header-h);
    background: var(--black);
}

/* Stack slides on top of each other — no track needed */
.hero-track {
    position: relative;
    width: 100%;
    height: clamp(440px, 56vw, 780px);
}

.hero-slide {
    position: absolute;
    inset: 0;
    overflow: hidden;
    opacity: 0;
    z-index: 1;
    pointer-events: none;
}

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

/* Ken Burns zoom on active slide image */
.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.08);
    transition: transform 7s ease;
}
.hero-slide.active img {
    transform: scale(1);
}

/* Crossfade transition */
.hero-slide.active {
    animation: slideIn .9s cubic-bezier(.4,0,.2,1) forwards;
}
.hero-slide.exit-left  { animation: exitLeft  .9s cubic-bezier(.4,0,.2,1) forwards; z-index: 3; }
.hero-slide.exit-right { animation: exitRight .9s cubic-bezier(.4,0,.2,1) forwards; z-index: 3; }
.hero-slide.enter-right { transform: translateX(6%); opacity: 0; }
.hero-slide.enter-left  { transform: translateX(-6%); opacity: 0; }

@keyframes slideIn {
    from { opacity: 0; transform: translateX(0) scale(1.03); }
    to   { opacity: 1; transform: translateX(0) scale(1); }
}
@keyframes exitLeft {
    from { opacity: 1; transform: translateX(0); }
    to   { opacity: 0; transform: translateX(-4%); }
}
@keyframes exitRight {
    from { opacity: 1; transform: translateX(0); }
    to   { opacity: 0; transform: translateX(4%); }
}

/* Gradient overlay */
.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right, rgba(0,0,0,.65) 0%, rgba(0,0,0,.25) 55%, rgba(0,0,0,.05) 100%),
        linear-gradient(to top, rgba(0,0,0,.4) 0%, transparent 50%);
    display: flex;
    align-items: center;
    z-index: 2;
}

/* Content */
.hero-slide-content {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 64px;
    width: 100%;
    color: var(--white);
    position: relative;
    z-index: 3;
}

/* Tag line above title */
.slide-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 14px;
    opacity: 0;
}

.slide-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4.5vw, 4rem);
    font-weight: 700;
    line-height: 1.12;
    margin-bottom: 16px;
    text-shadow: 0 2px 24px rgba(0,0,0,.35);
    max-width: 640px;
    opacity: 0;
}

.slide-sub {
    font-size: clamp(.95rem, 1.6vw, 1.15rem);
    max-width: 480px;
    margin-bottom: 32px;
    opacity: 0;
    line-height: 1.6;
    color: rgba(255,255,255,.88);
}

.slide-btn {
    opacity: 0;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 34px;
    background: var(--white);
    color: var(--black);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .8px;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid transparent;
    transition: background .25s, color .25s, border-color .25s, gap .25s;
    position: relative;
    overflow: hidden;
}
.btn-hero::after {
    content: '→';
    opacity: 0;
    margin-left: -8px;
    transition: opacity .2s, margin .2s;
}
.btn-hero:hover { background: transparent; color: var(--white); border-color: rgba(255,255,255,.8); gap: 14px; }
.btn-hero:hover::after { opacity: 1; margin-left: 0; }

/* Accent line decoration */
.hero-slide-content::before {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    background: var(--accent);
    margin-bottom: 20px;
    opacity: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: opacity .5s .1s, transform .6s .1s ease;
}
.hero-slide.active .hero-slide-content::before {
    opacity: 1;
    transform: scaleX(1);
}

/* Slider nav buttons */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,.1);
    border: 1.5px solid rgba(255,255,255,.3);
    color: var(--white);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
    transition: background .2s, border-color .2s, transform .2s;
    backdrop-filter: blur(6px);
}
.slider-btn:hover {
    background: rgba(255,255,255,.25);
    border-color: rgba(255,255,255,.7);
    transform: translateY(-50%) scale(1.08);
}
.slider-btn.prev { left: 24px; }
.slider-btn.next { right: 24px; }

/* Dots */
.slider-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 20;
}
.slider-dot {
    width: 28px;
    height: 3px;
    border-radius: 2px;
    background: rgba(255,255,255,.35);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background .3s, width .3s, transform .3s;
}
.slider-dot.active {
    background: var(--white);
    width: 44px;
}

/* Progress bar at bottom of slider */
.slider-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: var(--accent);
    width: 0%;
    z-index: 20;
    transition: width linear;
}

/* =============================================
   SCROLL REVEAL
   ============================================= */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s ease var(--reveal-delay, 0s), transform .6s ease var(--reveal-delay, 0s);
}
.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* =============================================
   SECTIONS
   ============================================= */
.section { padding: 72px 24px; }
.section-narrow { max-width: var(--max-w); margin: 0 auto; }
.section-title {
    font-family: var(--font-serif);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 8px;
}
.section-sub {
    text-align: center;
    color: var(--muted);
    margin-bottom: 48px;
    font-size: 15px;
}
.section-sub a { color: var(--accent); text-decoration: none; font-weight: 600; }
.section-sub a:hover { text-decoration: underline; }

/* Category scroll strip — horizontal swipeable */
.cat-scroll-wrap {
    position: relative;
    margin: 0 -24px; /* bleed to edge */
}
.cat-scroll-wrap::before,
.cat-scroll-wrap::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 48px;
    z-index: 2;
    pointer-events: none;
}
.cat-scroll-wrap::before {
    left: 0;
    background: linear-gradient(to right, var(--white), transparent);
}
.cat-scroll-wrap::after {
    right: 0;
    background: linear-gradient(to left, var(--white), transparent);
}
.cat-grid {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 8px 24px 16px;
    cursor: grab;
    user-select: none;
}
.cat-grid::-webkit-scrollbar { display: none; }
.cat-grid.dragging { cursor: grabbing; scroll-snap-type: none; }
.cat-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 3/4;
    text-decoration: none;
    display: block;
    flex: 0 0 200px;   /* fixed width in scroll strip */
    scroll-snap-align: start;
}
.cat-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.cat-card:hover img { transform: scale(1.05); }
.cat-card-label {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,.75));
    color: var(--white);
    padding: 32px 14px 14px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .3px;
}

/* Trust bar */
.trust-bar {
    background: var(--black);
    padding: 0 24px;
}
.trust-bar-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: stretch;
}
.trust-item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 32px 24px;
    transition: background .2s;
}
.trust-item:hover { background: rgba(255,255,255,.04); }
.trust-divider {
    width: 1px;
    background: rgba(255,255,255,.08);
    flex-shrink: 0;
    margin: 16px 0;
}
.trust-icon-wrap {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
}
.trust-icon-wrap svg { width: 100%; height: 100%; }
.trust-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.trust-title {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--white);
    letter-spacing: .2px;
    line-height: 1.3;
}
.trust-sub {
    font-size: 12px;
    color: rgba(255,255,255,.45);
    line-height: 1.4;
}

/* Product / art grid */
.art-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}
.art-card-wrap {
    display: flex;
    flex-direction: column;
}
.art-card {
    text-decoration: none;
    color: inherit;
    display: block;
    flex: 1;
}
.art-card-img {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    background: #f0ece6;
    aspect-ratio: 4/5;
}
.art-card-img::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 45%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0) 100%);
    pointer-events: none;
    z-index: 1;
}
.art-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.art-card:hover .art-card-img img { transform: scale(1.04); }
.art-card-badge {
    position: absolute;
    top: 12px; left: 12px;
    z-index: 2;
    background: var(--accent);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 2px;
    letter-spacing: .5px;
}
.art-card-body { padding: 14px 4px 0; }
.art-card-title { font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.art-card-sub { font-size: 13px; color: var(--muted); margin-bottom: 8px; }
.art-card-price { font-size: 15px; font-weight: 700; color: var(--black); }
.art-card-etsy {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 18px;
    background: var(--accent);
    color: var(--white);
    font-size: 12.5px;
    font-weight: 700;
    border-radius: var(--radius);
    text-decoration: none;
    letter-spacing: .3px;
    transition: background .2s;
}
.art-card-etsy:hover { background: var(--accent-dark); }

/* Featured artist block */
.featured-artist {
    background: var(--off-white);
    padding: 0;
    overflow: hidden;
}
.featured-artist-inner {
    display: grid;
    grid-template-columns: 340px 1fr;
    max-width: var(--max-w);
    margin: 0 auto;
}
.featured-artist-text {
    background: var(--black);
    color: var(--white);
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.featured-artist-text .label { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; opacity: .6; margin-bottom: 12px; }
.featured-artist-text h3 { font-family: var(--font-serif); font-size: 2rem; font-weight: 700; margin-bottom: 16px; }
.featured-artist-text p { font-size: 14px; line-height: 1.75; opacity: .85; margin-bottom: 24px; }
.btn-featured {
    display: inline-block;
    padding: 11px 24px;
    background: var(--accent);
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    align-self: flex-start;
}
.featured-artist-img { display: grid; grid-template-columns: 1fr 1fr; }
.featured-artist-img img { width: 100%; height: 100%; object-fit: cover; }

/* Blog grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 28px;
}
.blog-card { text-decoration: none; color: inherit; }
.blog-card-img { border-radius: var(--radius); overflow: hidden; aspect-ratio: 16/9; background: #f0ece6; margin-bottom: 16px; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.blog-card:hover .blog-card-img img { transform: scale(1.04); }
.blog-card-date { font-size: 12px; color: var(--muted); margin-bottom: 6px; }
.blog-card-title { font-family: var(--font-serif); font-size: 1.1rem; font-weight: 600; margin-bottom: 8px; line-height: 1.35; }
.blog-card-excerpt { font-size: 13.5px; color: var(--muted); line-height: 1.6; }

/* =============================================
   GALLERY PAGE
   ============================================= */
.page-hero {
    margin-top: var(--header-h);
    position: relative;
    padding: 72px 24px;
    text-align: center;
    overflow: hidden;
    background: #1a1410;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: -10px;
    background: center/cover no-repeat;
    filter: blur(3px) brightness(0.75) saturate(0.9);
    transform: scale(1.06);
    opacity: 1;
    z-index: 0;
}
.page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(20,15,10,0.32);
    z-index: 1;
}
.page-hero-inner {
    position: relative;
    z-index: 2;
}
.page-hero h1 {
    position: relative;
    z-index: 2;
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 14px;
    display: inline-block;
    color: #fff;
    padding: 8px 32px 12px;
    background: rgba(0,0,0,0.28);
    backdrop-filter: blur(12px) saturate(1.3);
    -webkit-backdrop-filter: blur(12px) saturate(1.3);
    border-radius: 6px;
    box-shadow: 0 4px 32px rgba(0,0,0,0.18);
    border-bottom: 2px solid rgba(200,151,58,0.50);
    animation: heroFadeUp 0.65s cubic-bezier(.22,.68,0,1.2) both;
}
.page-hero p {
    position: relative;
    z-index: 2;
    color: rgba(255,255,255,0.82);
    max-width: 540px;
    margin: 0 auto;
    animation: heroFadeUp 0.65s 0.13s cubic-bezier(.22,.68,0,1.2) both;
}
@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

.gallery-filters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 36px;
    justify-content: center;
}
.filter-btn {
    padding: 7px 18px;
    border: 1.5px solid var(--border);
    border-radius: 20px;
    background: none;
    font-size: 13px;
    cursor: pointer;
    text-decoration: none;
    color: var(--text);
    transition: all .15s;
}
.filter-btn:hover, .filter-btn.active { background: var(--black); color: var(--white); border-color: var(--black); }

.gallery-spinner {
    width: 36px;
    height: 36px;
    border: 3px solid var(--border);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: gallery-spin .7s linear infinite;
    margin: 0 auto;
}
@keyframes gallery-spin { to { transform: rotate(360deg); } }

.gallery-item {
    transition: opacity .35s ease, transform .35s ease;
}

/* ── Product Gallery (detail page swipe) ───────────────────────────────── */
.product-gallery {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    background: #f0ece6;
}
.product-gallery-track {
    display: flex;
    transition: transform .35s ease;
    will-change: transform;
}
.product-gallery-slide {
    flex: 0 0 100%;
    min-width: 0;
}
.product-gallery-slide img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    display: block;
}
.product-gallery-thumbs {
    display: flex;
    gap: 6px;
    padding: 8px;
    background: #f0ece6;
    flex-wrap: wrap;
}
.pg-thumb {
    width: 56px;
    height: 56px;
    border-radius: 4px;
    border: 2px solid transparent;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    transition: border-color .2s;
    flex-shrink: 0;
}
.pg-thumb.active { border-color: var(--accent); }
.pg-thumb:hover { border-color: var(--accent-dark); }

/* ── Homepage Product Strip ──────────────────────────────────────────────── */
.product-strip {
    background: var(--white);
    padding: 48px 0 52px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    position: relative;
}
.product-strip-inner {
    width: 100%;
    padding: 0;
}
.product-strip-track {
    display: flex;
    gap: 20px;
    padding: 12px 0;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    align-items: flex-end;
}
.product-strip-track::-webkit-scrollbar { display: none; }

.product-strip-item {
    flex: 0 0 148px;
    display: block;
    flex-shrink: 0;
    transition: transform .3s ease;
    background: transparent;
}
.product-strip-item:nth-child(even) {
    transform: translateY(-12px);
}
.product-strip-item:hover {
    transform: translateY(-18px) !important;
}
.product-strip-item img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    display: block;
    border-radius: 3px;
    box-shadow: 0 8px 24px rgba(0,0,0,.13), 0 2px 6px rgba(0,0,0,.08);
    background: #f5f5f5;
}
.product-strip-title {
    font-size: 11px;
    text-align: center;
    color: var(--muted);
    margin-top: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 148px;
    letter-spacing: .3px;
}
.ps-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid var(--accent);
    background: var(--white);
    color: var(--accent);
    font-size: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s, color .2s;
    box-shadow: 0 2px 8px rgba(0,0,0,.10);
}
.ps-arrow-prev { left: 12px; }
.ps-arrow-next { right: 12px; }
.ps-arrow:hover { background: var(--accent); color: var(--white); }

@media (max-width: 768px) {
    .product-strip-track { padding: 8px 0; gap: 14px; }
    .product-strip-item { flex: 0 0 100px; }
    .product-strip-title { max-width: 100px; }
    .ps-arrow { display: none; }
}

/* ── Lightbox ────────────────────────────────────────────────────────────── */
#lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;
}
#lightbox.visible {
    opacity: 1;
    pointer-events: all;
}
.lb-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10,10,10,.96);
    backdrop-filter: blur(8px);
}
.lb-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: 1.5px solid rgba(255,255,255,.3);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color .2s, background .2s;
}
.lb-close:hover { background: rgba(255,255,255,.1); border-color: #fff; }
.lb-img-wrap {
    position: relative;
    z-index: 5;
    max-width: min(90vw, 900px);
    max-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lb-img {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 32px 80px rgba(0,0,0,.7);
    opacity: 0;
    transform: scale(.92);
    transition: opacity .25s ease, transform .25s ease;
    display: block;
}
.lb-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,.08);
    border: 1.5px solid rgba(200,151,58,.6);
    color: var(--accent);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s, border-color .2s;
    backdrop-filter: blur(4px);
}
.lb-nav:hover { background: rgba(200,151,58,.2); border-color: var(--accent); }
.lb-prev { left: 20px; }
.lb-next { right: 20px; }
.lb-counter {
    position: absolute;
    bottom: 110px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,.5);
    font-size: 12px;
    letter-spacing: 2px;
    z-index: 10;
    font-family: var(--font-sans);
}
.lb-thumbs {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
    max-width: 90vw;
    overflow-x: auto;
    padding: 4px;
    scrollbar-width: none;
}
.lb-thumbs::-webkit-scrollbar { display: none; }
.lb-thumb-btn {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 4px;
    border: 2px solid rgba(255,255,255,.15);
    background-size: cover;
    background-position: center;
    cursor: pointer;
    transition: border-color .2s, transform .2s;
    opacity: .6;
}
.lb-thumb-btn:hover { opacity: 1; transform: scale(1.05); }
.lb-thumb-btn.active { border-color: var(--accent); opacity: 1; }

/* Product detail */
.product-detail {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 48px 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
}
.product-info h1 { font-family: var(--font-serif); font-size: 2rem; margin-bottom: 12px; }
.product-price { font-size: 1.5rem; font-weight: 700; margin-bottom: 20px; color: var(--accent); }
.product-desc { color: var(--muted); line-height: 1.8; margin-bottom: 28px; }
.btn-etsy-large {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: var(--accent);
    color: var(--white);
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    border-radius: var(--radius);
    transition: background .2s;
    letter-spacing: .3px;
}
.btn-etsy-large:hover { background: var(--accent-dark); }

.product-share { margin-top: 24px; }
.btn-fb-share {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 28px;
    background: #1a2a3a;
    color: #8ab4d4;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius);
    border: 1.5px solid #2a3f54;
    transition: background .25s, color .25s, border-color .25s, box-shadow .25s, transform .18s;
    letter-spacing: .4px;
    position: relative;
    overflow: hidden;
}
.btn-fb-share::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 0%, rgba(138,180,212,.08) 50%, transparent 100%);
    transform: translateX(-100%);
    transition: transform .45s ease;
}
.btn-fb-share:hover {
    background: #1e3448;
    color: #c8e0f0;
    border-color: #4a7fa0;
    box-shadow: 0 4px 18px rgba(74,127,160,.25), 0 1px 4px rgba(0,0,0,.3);
    transform: translateY(-2px);
}
.btn-fb-share:hover::after { transform: translateX(100%); }
.btn-fb-share:active { transform: translateY(0); box-shadow: none; }

/* =============================================
   BLOG
   ============================================= */
.blog-post { max-width: 800px; margin: 0 auto; padding: 48px 24px; }
.blog-post h1 { font-family: var(--font-serif); font-size: clamp(1.8rem, 3.5vw, 2.8rem); line-height: 1.2; margin-bottom: 16px; }
.blog-meta { color: var(--muted); font-size: 13px; margin-bottom: 32px; }
.blog-cover { border-radius: var(--radius); overflow: hidden; margin-bottom: 36px; }
.blog-cover img { width: 100%; max-height: 480px; object-fit: cover; }
.blog-body { font-size: 16px; line-height: 1.85; }
.blog-body h2, .blog-body h3 { font-family: var(--font-serif); margin: 32px 0 12px; }
.blog-body p { margin-bottom: 20px; }
.blog-body img { border-radius: var(--radius); margin: 24px 0; }

/* =============================================
   CONTACT / CUSTOM ORDER
   ============================================= */
.contact-wrap {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 64px 24px;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 64px;
    align-items: start;
}
.contact-info h2 { font-family: var(--font-serif); font-size: 1.8rem; margin-bottom: 16px; }
.contact-info p { color: var(--muted); line-height: 1.8; margin-bottom: 20px; }
.contact-info a { color: var(--accent); text-decoration: none; }
.contact-form-card { background: var(--off-white); border-radius: var(--radius); padding: 36px; }
.cf-group { margin-bottom: 20px; }
.cf-group label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; }
.cf-group input, .cf-group textarea, .cf-group select {
    width: 100%; padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 14px; font-family: inherit;
    background: var(--white);
    transition: border .15s;
}
.cf-group input:focus, .cf-group textarea:focus, .cf-group select:focus { outline: none; border-color: var(--accent); }
.cf-group textarea { min-height: 140px; resize: vertical; }
.btn-submit {
    width: 100%; padding: 14px;
    background: var(--black); color: var(--white);
    border: none; border-radius: var(--radius);
    font-size: 15px; font-weight: 700;
    cursor: pointer; letter-spacing: .3px;
    transition: background .2s;
}
.btn-submit:hover { background: #333; }
.form-success { background: #f0fff4; border: 1px solid #b7e4c7; color: #155724; padding: 14px 18px; border-radius: var(--radius); margin-bottom: 20px; }
.form-error { background: #fff0f0; border: 1px solid #f5c2c7; color: #842029; padding: 14px 18px; border-radius: var(--radius); margin-bottom: 20px; }

/* =============================================
   FOOTER
   ============================================= */
.site-footer { background: var(--black); color: rgba(255,255,255,.75); padding: 64px 24px 0; }
.footer-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
}
.footer-logo-link { text-decoration: none; display: inline-block; margin-bottom: 14px; }
.footer-logo-text {
    font-family: var(--font-serif);
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    line-height: 1;
    display: block;
}
.footer-logo-text span { color: var(--accent); }
.footer-logo-img { max-height: 52px; width: auto; object-fit: contain; filter: brightness(0) invert(1); opacity: .9; }
.footer-brand p { font-size: 14px; line-height: 1.7; margin-bottom: 20px; }
.btn-etsy-footer {
    display: inline-block;
    padding: 10px 22px;
    border: 1.5px solid var(--accent);
    color: var(--accent);
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 700;
    border-radius: var(--radius);
    transition: background .2s, color .2s;
}
.btn-etsy-footer:hover { background: var(--accent); color: var(--white); }
.footer-nav h4, .footer-social h4, .footer-legal h4 { font-size: 12px; text-transform: uppercase; letter-spacing: 1.5px; color: rgba(255,255,255,.4); margin-bottom: 16px; }
.footer-nav a, .footer-social a, .footer-legal a { display: block; text-decoration: none; color: rgba(255,255,255,.7); font-size: 14px; margin-bottom: 10px; transition: color .15s; }
.footer-nav a:hover, .footer-social a:hover, .footer-legal a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 20px 0; text-align: center; font-size: 13px; color: rgba(255,255,255,.3); max-width: var(--max-w); margin: 0 auto; }

/* =============================================
   UTILITIES
   ============================================= */
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-32 { margin-top: 32px; }
.mb-32 { margin-bottom: 32px; }

/* =============================================
   RESPONSIVE — tablet
   ============================================= */
@media (max-width: 1024px) {
    .featured-artist-inner { grid-template-columns: 1fr; }
    .featured-artist-img { grid-template-columns: 1fr 1fr; height: 300px; }
    .product-detail { grid-template-columns: 1fr; gap: 32px; }
    .contact-wrap { grid-template-columns: 1fr; gap: 32px; }
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
    .section { padding: 56px 20px; }
}

/* =============================================
   RESPONSIVE — mobile (768px)
   ============================================= */
@media (max-width: 768px) {
    :root { --header-h: 58px; }

    /* Header */
    .header-inner { padding: 0 16px; gap: 12px; }
    .logo-text { font-size: 18px; letter-spacing: 1px; }
    .logo-img { max-height: 38px; }
    .lang-switcher { font-size: 12px; }

    /* Hamburger */
    .nav-toggle { display: flex; margin-left: auto; }
    .site-nav {
        position: fixed;
        top: var(--header-h); left: 0; right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 8px 0 16px;
        border-bottom: 1px solid var(--border);
        box-shadow: 0 8px 24px rgba(0,0,0,.12);
        transform: translateY(-110%);
        transition: transform .3s cubic-bezier(.4,0,.2,1);
        z-index: 800;
        gap: 0;
    }
    .site-nav.open { transform: translateY(0); }
    .site-nav a {
        padding: 13px 20px;
        font-size: 15px;
        border-radius: 0;
        border-bottom: 1px solid #f2f2f2;
    }
    .site-nav a:last-child { border-bottom: none; }

    /* Hero slider */
    .hero-slide { height: clamp(280px, 55vw, 420px); }
    .hero-slide-content { padding: 0 20px; }
    .hero-slide-content h2 { font-size: clamp(1.4rem, 5vw, 2rem); margin-bottom: 10px; }
    .hero-slide-content p { font-size: 14px; margin-bottom: 18px; }
    .btn-hero { padding: 11px 24px; font-size: 13px; }
    .slider-btn { width: 38px; height: 38px; font-size: 16px; }
    .slider-btn.prev { left: 10px; }
    .slider-btn.next { right: 10px; }

    /* Sections */
    .section { padding: 44px 16px; }
    .section-title { font-size: 1.5rem; }
    .section-sub { font-size: 14px; margin-bottom: 32px; }

    /* Category grid */
    .cat-grid { gap: 12px; padding: 8px 16px 16px; }
    .cat-card { flex: 0 0 160px; }
    .cat-card-label { font-size: 13px; padding: 20px 10px 10px; }

    /* Trust bar — 2 col grid on mobile */
    .trust-bar { padding: 0 16px; }
    .trust-bar-inner { display: grid; grid-template-columns: 1fr 1fr; }
    .trust-item { padding: 22px 12px; gap: 12px; }
    .trust-icon-wrap { width: 34px; height: 34px; }
    .trust-title { font-size: 12.5px; }
    .trust-sub { display: none; }
    .trust-divider { display: none; }

    /* Art grid */
    .art-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .art-card-title { font-size: 13.5px; }
    .art-card-etsy { padding: 7px 14px; font-size: 12px; }

    /* Blog grid */
    .blog-grid { grid-template-columns: 1fr; gap: 24px; }

    /* Page hero */
    .page-hero { padding: 40px 16px; }
    .page-hero h1 { font-size: 1.8rem; }

    /* Product detail */
    .product-detail { padding: 24px 16px; }

    /* Contact */
    .contact-wrap { padding: 32px 16px; gap: 24px; }
    .contact-form-card { padding: 24px 18px; }

    /* Footer */
    .footer-inner { grid-template-columns: 1fr; gap: 28px; padding-bottom: 32px; }
    .site-footer { padding: 40px 16px 0; }
}

/* =============================================
   RESPONSIVE — small mobile (480px)
   ============================================= */
@media (max-width: 480px) {
    .cat-grid { gap: 10px; }
    .cat-card { flex: 0 0 140px; }
    .art-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .art-card-body { padding: 10px 2px 0; }
    .art-card-title { font-size: 13px; }
    .art-card-price { font-size: 13px; }
    .art-card-etsy { width: 100%; text-align: center; display: block; }
    .slider-btn { display: none; }
    .hero-slide { height: clamp(240px, 60vw, 320px); }
    .hero-slide-content h2 { font-size: 1.25rem; }
    .hero-slide-content p { display: none; }
    .section-title { font-size: 1.3rem; }
    .gallery-filters { gap: 6px; }
    .filter-btn { padding: 6px 13px; font-size: 12px; }
    .blog-card-title { font-size: 1rem; }
    .contact-form-card { padding: 20px 14px; }

    /* Bigger touch targets */
    .btn-submit { padding: 15px; font-size: 15px; }
    .cf-group input, .cf-group textarea, .cf-group select { padding: 12px 14px; font-size: 16px; }
}

/* Prevent iOS zoom on input focus */
@media (max-width: 768px) {
    input, select, textarea { font-size: 16px !important; }
}

/* =============================================
   SHOP — Cart Button in Header
   ============================================= */
.cart-btn {
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--black);
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color .2s;
}
.cart-btn:hover { color: var(--accent); }
.cart-count {
    position: absolute;
    top: -4px;
    right: -6px;
    background: var(--accent);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    min-width: 17px;
    height: 17px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 3px;
    line-height: 1;
}

/* =============================================
   SHOP — Cart Drawer
   ============================================= */
.cart-overlay {
    position: fixed; inset: 0; z-index: 1000;
    background: rgba(0,0,0,.45);
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s;
}
.cart-overlay.open { opacity: 1; pointer-events: all; }

.cart-drawer {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: 380px;
    max-width: 100vw;
    z-index: 1001;
    background: var(--white);
    box-shadow: -4px 0 32px rgba(0,0,0,.12);
    transform: translateX(100%);
    transition: transform .3s cubic-bezier(.4,0,.2,1);
    display: flex;
    flex-direction: column;
}
.cart-drawer.open { transform: translateX(0); }

.cart-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    flex-shrink: 0;
}
.cart-drawer-header h3 {
    font-family: var(--font-serif);
    font-size: 1.15rem;
}
.cart-close {
    background: none;
    border: none;
    font-size: 26px;
    cursor: pointer;
    color: var(--muted);
    line-height: 1;
    padding: 0;
    transition: color .2s;
}
.cart-close:hover { color: var(--black); }

.cart-drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px 24px;
}
.cart-empty { color: var(--muted); text-align: center; padding: 40px 0; }

.cart-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}
.cart-item:last-child { border-bottom: none; }
.cart-item-img {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
    background: var(--off-white);
}
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-title { font-size: 13.5px; font-weight: 600; margin-bottom: 4px; }
.cart-item-price { font-size: 13px; color: var(--muted); margin-bottom: 8px; }
.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 0;
}
.qty-btn {
    background: var(--off-white);
    border: 1px solid var(--border);
    width: 28px;
    height: 28px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .15s;
    color: var(--black);
}
.qty-btn:first-child { border-radius: 4px 0 0 4px; }
.qty-btn:last-child  { border-radius: 0 4px 4px 0; }
.qty-btn:hover { background: var(--border); }
.qty-val {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    min-width: 32px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
}
.cart-item-remove {
    background: none;
    border: none;
    color: var(--muted);
    cursor: pointer;
    font-size: 12px;
    padding: 0;
    margin-top: 8px;
    text-decoration: underline;
    transition: color .2s;
}
.cart-item-remove:hover { color: #dc3545; }
.cart-item-subtotal { font-size: 14px; font-weight: 700; flex-shrink: 0; }

.cart-drawer-footer {
    padding: 20px 24px;
    border-top: 1px solid var(--border);
    flex-shrink: 0;
}
.cart-totals { margin-bottom: 4px; }
.cart-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    padding: 5px 0;
    color: var(--muted);
}
.cart-total-row {
    font-size: 17px;
    font-weight: 700;
    color: var(--black);
    border-top: 2px solid var(--border);
    margin-top: 6px;
    padding-top: 10px;
}

/* =============================================
   SHOP — Add to Cart button on product cards
   ============================================= */
.art-card-atc {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    padding: 9px 12px;
    background: var(--black);
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: .5px;
    cursor: pointer;
    transition: background .2s, transform .1s;
    margin-top: 10px;
    font-family: var(--font-sans);
}
.art-card-atc:hover { background: var(--accent); }
.art-card-atc:active { transform: scale(.97); }
.art-card-atc.added { background: #28a745; }

/* Checkout page form */
.cf-group label {
    display: block;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 6px;
}
.cf-group input,
.cf-group textarea,
.cf-group select {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--font-sans);
    font-size: 14px;
    background: var(--white);
    color: var(--text);
    transition: border-color .2s;
    outline: none;
}
.cf-group input:focus,
.cf-group textarea:focus,
.cf-group select:focus { border-color: var(--accent); }

.btn-submit {
    display: block;
    width: 100%;
    padding: 14px;
    background: var(--accent);
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: .5px;
    cursor: pointer;
    transition: background .2s, opacity .2s;
}
.btn-submit:hover:not(:disabled) { background: var(--accent-dark); }
.btn-submit:disabled { opacity: .6; cursor: not-allowed; }

.badge-green { background: #d4edda; color: #155724; padding: 4px 10px; border-radius: 20px; font-size: 12px; font-weight: 700; }
.badge-yellow { background: #fff3cd; color: #856404; padding: 4px 10px; border-radius: 20px; font-size: 12px; font-weight: 700; }
.badge-red { background: #f8d7da; color: #842029; padding: 4px 10px; border-radius: 20px; font-size: 12px; font-weight: 700; }

/* =============================================
   EDITION BADGES — 1/1 Unique / Limited
   ============================================= */

/* Shimmer keyframe for gold foil effect */
@keyframes editionShimmer {
    0%   { background-position: -200% center; }
    100% { background-position:  200% center; }
}
@keyframes editionPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(200,151,58,.35); }
    50%       { box-shadow: 0 0 0 6px rgba(200,151,58,0); }
}
@keyframes editionFadeIn {
    from { opacity:0; transform: translateY(-4px) scale(.96); }
    to   { opacity:1; transform: translateY(0) scale(1); }
}

.edition-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: var(--font-serif);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    border-radius: 3px;
    padding: 4px 9px;
    white-space: nowrap;
    animation: editionFadeIn .4s ease both;
}

/* 1/1 Unique — animated gold shimmer */
.edition-badge.unique {
    background: linear-gradient(110deg, #b8781a 0%, #e4b84a 30%, #f5d57c 50%, #e4b84a 70%, #b8781a 100%);
    background-size: 200% auto;
    color: #fff;
    animation: editionShimmer 3s linear infinite, editionFadeIn .4s ease both;
    text-shadow: 0 1px 2px rgba(0,0,0,.3);
    box-shadow: 0 1px 6px rgba(200,151,58,.45);
}

/* Limited edition — pulsing gold border */
.edition-badge.limited {
    background: transparent;
    border: 1.5px solid var(--accent);
    color: var(--accent);
    animation: editionPulse 2.4s ease-in-out infinite, editionFadeIn .4s ease both;
}
.edition-badge.limited .ed-fraction {
    font-size: 11px;
    font-weight: 800;
    color: var(--accent-dark);
}

/* Sold out overlay */
.edition-badge.sold-out {
    background: #e8e4df;
    color: #999;
    letter-spacing: .8px;
    animation: editionFadeIn .4s ease both;
}

/* On art cards — positioned in image corner */
.art-card-edition {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    z-index: 2;
}

/* On product detail page — larger, standalone */
.product-edition {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    margin-bottom: 18px;
}
.product-edition .edition-badge {
    font-size: 12px;
    padding: 5px 12px;
    letter-spacing: 1.4px;
}
.product-edition .ed-label {
    font-size: 13px;
    color: var(--muted);
}

/* Edition progress bar (limited) */
.edition-progress {
    margin-top: 10px;
    width: 100%;
    max-width: 240px;
}
.edition-progress-stats {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 8px;
    border: 1px solid var(--border);
    border-radius: 6px;
    overflow: hidden;
}
.edition-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    padding: 7px 10px;
    gap: 1px;
}
.edition-stat-num {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
}
.edition-stat-num--muted {
    color: var(--muted);
    font-size: 1rem;
    font-weight: 500;
}
.edition-stat-label {
    font-size: 9px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 600;
}
.edition-stat-sep {
    width: 1px;
    align-self: stretch;
    background: var(--border);
    flex-shrink: 0;
}
.edition-progress-bar {
    height: 3px;
    background: var(--border);
    border-radius: 2px;
    overflow: hidden;
}
.edition-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-dark), var(--accent));
    border-radius: 2px;
    transition: width .6s ease;
}

/* Shipping method option cards on checkout */
.sm-option {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    border: 2px solid var(--border);
    border-radius: 6px;
    cursor: pointer;
    transition: border-color .15s, background .15s;
}
.sm-option:hover { border-color: var(--accent); background: #fdf9f2; }
.sm-option.sm-selected { border-color: var(--accent); background: #fdf9f2; }
.sm-option input[type=radio] { accent-color: var(--accent); width: 16px; height: 16px; margin-top: 1px; }
