/* =============================================
   Arteegoldennuts WordPress Theme
   Visual match for the buckssauce.com-inspired
   React build (Anton/Bebas/Inter + dark cocoa
   + cream + gold + parallax + marquees).
   ============================================= */

:root {
    --bg: #1a1410;
    --bg-soft: #221a14;
    --bg-deeper: #120c08;
    --cream: #f5ecd9;
    --cream-soft: #e8dcc0;
    --muted: #8a7e6a;
    --gold: #d4a44a;
    --gold-bright: #f0c062;
    --accent: #b8863c;
    --line: rgba(245, 236, 217, 0.16);
    --container: 1280px;
}

/* === Reset / base === */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body {
    margin: 0;
    padding: 0;
    background: var(--bg);
    color: var(--cream);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    line-height: 1.5;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font: inherit; }
h1, h2, h3, h4, h5, h6 { margin: 0; font-weight: 400; }
p { margin: 0; }
ul { list-style: none; padding: 0; margin: 0; }
::selection { background: var(--cream); color: var(--bg); }

.arteego-container { max-width: var(--container); margin: 0 auto; padding: 0 16px; }
@media (min-width: 768px) { .arteego-container { padding: 0 32px; } }

/* === Typography helpers === */
.font-display, .arteego-section__title, .arteego-mega-outline, .arteego-hero__title,
.arteego-product-card__head h4, .arteego-why-card h4, .arteego-review-card__body h4,
.arteego-stat__num, .arteego-product-strip__name, .arteego-footer__mark, .arteego-footer__logo,
.arteego-logo__text, .arteego-intro__title, .arteego-page-title {
    font-family: 'Anton', 'Bebas Neue', Impact, sans-serif;
    letter-spacing: 0.01em;
    font-weight: 400;
}
.font-bebas, .arteego-eyebrow, .arteego-hero__hint, .arteego-hero__meta,
.arteego-stat__label, .arteego-why-card__num, .arteego-product-card__sku,
.arteego-product-card__badge, .arteego-product-card__add, .arteego-product-card__view,
.arteego-hero__dots, .btn-cream, .btn-outline-cream, .arteego-nav__menu a,
.arteego-cart-btn, .arteego-menu-btn, .arteego-why__ticker, .arteego-footer__tag,
.arteego-newsletter button, .footer-title, .arteego-footer__newsletter h5,
.arteego-footer__grid h5, .arteego-intro__kicker, .arteego-intro__sub,
.arteego-hero__scroll, .arteego-hero-slide__label, .arteego-review-card__pill {
    font-family: 'Bebas Neue', 'Anton', Impact, sans-serif;
    letter-spacing: 0.04em;
}

.arteego-eyebrow {
    font-size: 12px;
    letter-spacing: 0.4em;
    color: var(--gold);
}
.arteego-section__title {
    font-size: clamp(36px, 6vw, 64px);
    line-height: 0.92;
    text-transform: uppercase;
    color: var(--cream);
    margin-top: 8px;
}
.arteego-section__title--xl {
    font-size: clamp(40px, 8vw, 96px);
}
.arteego-section__sub {
    margin-top: 12px;
    color: var(--cream-soft);
    opacity: 0.7;
    font-size: 14px;
    max-width: 520px;
}
.arteego-section__sub--center { margin-left: auto; margin-right: auto; }

.text-outline { color: transparent; -webkit-text-stroke: 1.5px var(--cream); }
.text-shadow-soft { text-shadow: 0 2px 16px rgba(0,0,0,0.4); }
.img-blend-lighten { mix-blend-mode: lighten; }

.dashed-line {
    background-image: linear-gradient(to right, var(--line) 50%, transparent 50%);
    background-size: 14px 1px;
    background-repeat: repeat-x;
    background-position: center;
    height: 1px;
    flex: 1;
}

.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }
.no-scrollbar::-webkit-scrollbar { display: none; }

.drag-cursor { cursor: grab; }
.drag-cursor:active { cursor: grabbing; }

.diamond-bg {
    background-color: var(--bg);
    background-image:
        radial-gradient(ellipse 5px 12px at 50% 0%,   rgba(245,236,217,0.05) 50%, transparent 51%),
        radial-gradient(ellipse 5px 12px at 50% 100%, rgba(245,236,217,0.05) 50%, transparent 51%);
    background-size: 24px 28px;
    background-position: 0 0, 12px 14px;
}

.bg-grain { position: relative; }
.bg-grain::after {
    content: "";
    position: absolute; inset: 0;
    pointer-events: none;
    opacity: 0.06;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.6'/></svg>");
}

/* === Buttons === */
.btn-cream {
    background: var(--cream);
    color: var(--bg);
    border-radius: 9999px;
    padding: 14px 28px;
    font-size: 18px;
    border: none;
    display: inline-flex; align-items: center; gap: 10px;
    transition: transform 0.2s, background-color 0.2s, box-shadow 0.2s;
}
.btn-cream:hover { transform: translateY(-2px); background: #fff7e3; box-shadow: 0 10px 30px rgba(245,236,217,0.18); }
.btn-cream--sm { padding: 10px 18px; font-size: 14px; }

.btn-outline-cream {
    background: transparent;
    color: var(--cream);
    border: 1.5px solid var(--cream);
    border-radius: 9999px;
    padding: 12px 22px;
    font-size: 16px;
    display: inline-flex; align-items: center; gap: 8px;
    transition: all 0.2s;
}
.btn-outline-cream:hover { background: var(--cream); color: var(--bg); }
.btn-outline-cream.is-circle { padding: 12px; border-radius: 9999px; width: 44px; height: 44px; justify-content: center; }

/* === Section spacing === */
.arteego-section { position: relative; padding: 80px 0; overflow: hidden; }
@media (min-width: 768px) { .arteego-section { padding: 112px 0; } }
.arteego-section--page { padding-top: 160px; }

.arteego-main { padding-top: 0; }

/* === Header === */
.arteego-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 50;
    background: rgba(26, 20, 16, 0.78);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
}
.arteego-header__inner {
    max-width: var(--container);
    margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    padding: 12px 16px;
}
@media (min-width: 768px) { .arteego-header__inner { padding: 12px 32px; } }
.arteego-logo { display: flex; align-items: center; gap: 8px; }
.arteego-logo__star { color: var(--gold); font-size: 20px; }
.arteego-logo__text { font-size: 24px; letter-spacing: 0.02em; }
.arteego-nav { display: none; }
@media (min-width: 768px) { .arteego-nav { display: block; } .arteego-menu-btn { display: none !important; } }
.arteego-nav__menu { display: flex; gap: 28px; }
.arteego-nav__menu a {
    font-size: 14px;
    color: var(--cream-soft);
    letter-spacing: 0.18em;
    transition: color 0.2s;
}
.arteego-nav__menu a:hover { color: #fff; }

.arteego-header__actions { display: flex; align-items: center; gap: 8px; }
.arteego-cart-btn, .arteego-menu-btn {
    position: relative;
    width: 42px; height: 42px;
    border-radius: 8px;
    border: 1px solid var(--cream);
    color: var(--cream);
    background: transparent;
    display: inline-flex; align-items: center; justify-content: center;
}
.arteego-cart-badge {
    position: absolute; top: -4px; right: -4px;
    background: var(--cream); color: var(--bg);
    border-radius: 9999px; padding: 1px 5px;
    font-size: 10px; font-weight: 700;
}
.btn-cream--sm { display: none; }
@media (min-width: 640px) { .btn-cream--sm { display: inline-flex; } }

/* === Intro Loader === */
.arteego-intro {
    position: fixed; inset: 0; z-index: 99;
    background: var(--bg-deeper);
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
    transition: transform 0.7s cubic-bezier(0.76, 0, 0.24, 1);
}
.arteego-intro.is-hidden { transform: translateY(-100%); pointer-events: none; }
.arteego-intro__radial {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at center, rgba(212,164,74,0.18) 0%, transparent 60%);
}
.arteego-intro__inner { position: relative; z-index: 2; text-align: center; }
.arteego-intro__kicker {
    font-size: 12px;
    letter-spacing: 0.5em;
    color: var(--gold);
    margin-bottom: 12px;
    animation: fade-up 0.6s 0.1s both;
}
.arteego-intro__title {
    color: var(--cream);
    font-size: clamp(38px, 7vw, 88px);
    line-height: 1;
    text-transform: uppercase;
    display: inline-flex; gap: 2px;
    overflow: hidden;
}
.arteego-intro__letter {
    display: inline-block;
    animation: letter-pop 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.arteego-intro__bar {
    width: 160px; height: 2px;
    background: var(--gold);
    margin: 24px auto 0;
    transform-origin: left;
    animation: bar-grow 0.8s 1.2s both;
}
.arteego-intro__sub {
    margin-top: 20px;
    font-size: 12px;
    letter-spacing: 0.35em;
    color: var(--cream-soft);
    animation: fade-up 0.6s 1.4s both;
}
.arteego-intro__progress {
    position: absolute; bottom: 0; left: 0;
    height: 2px;
    background: var(--gold);
    width: 0;
    animation: progress-fill 2s ease-in-out both;
}
.arteego-intro__orbit { position: absolute; top: 50%; left: 50%; width: 0; height: 0; }
.arteego-intro__orbit-img {
    position: absolute;
    width: 80px; height: 80px;
    left: -40px; top: -40px;
    object-fit: contain;
    mix-blend-mode: lighten;
    filter: drop-shadow(0 12px 24px rgba(0,0,0,0.5));
    opacity: 0;
    animation: orbit 2.3s cubic-bezier(0.2,0.7,0.3,1) forwards;
}

@keyframes letter-pop  { 0% { transform: translateY(120%) rotate(8deg); opacity: 0; } 100% { transform: translateY(0) rotate(0); opacity: 1; } }
@keyframes fade-up     { 0% { transform: translateY(20px); opacity: 0; } 100% { transform: translateY(0); opacity: 1; } }
@keyframes bar-grow    { 0% { transform: scaleX(0); } 100% { transform: scaleX(1); } }
@keyframes progress-fill { 0% { width: 0%; } 100% { width: 100%; } }
@keyframes orbit       { 0% { transform: rotate(0deg) translateX(180px) rotate(0deg); opacity: 0; } 20% { opacity: 1; } 100% { transform: rotate(360deg) translateX(180px) rotate(-360deg); opacity: 0; } }
@keyframes float-bob   { 0%, 100% { transform: translateY(0) rotate(-2deg); } 50% { transform: translateY(-14px) rotate(2deg); } }
@keyframes ticker      { 0% { transform: translateX(0); }    100% { transform: translateX(-50%); } }
@keyframes ticker-rev  { 0% { transform: translateX(-50%); } 100% { transform: translateX(0); } }
@keyframes spin-slow   { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* === Hero === */
.arteego-hero { position: relative; min-height: 100vh; padding-top: 96px; padding-bottom: 60px; overflow: hidden; }
.arteego-hero__bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.arteego-hero__float {
    position: absolute;
    object-fit: contain;
    opacity: 0.22;
    filter: blur(0.5px) drop-shadow(0 14px 28px rgba(0,0,0,0.5));
    will-change: transform;
}
.arteego-hero__radial {
    position: absolute; inset: 0; pointer-events: none;
    transition: background 800ms ease;
    background: radial-gradient(ellipse 800px 500px at 50% 50%, rgba(216,163,115,0.13) 0%, transparent 70%);
}
.arteego-hero__inner {
    position: relative; z-index: 2;
    display: grid; grid-template-columns: 1fr; gap: 40px;
    align-items: center; min-height: 85vh;
}
@media (min-width: 1024px) { .arteego-hero__inner { grid-template-columns: 1fr 1fr; gap: 64px; } }

.arteego-hero__copy { order: 2; }
@media (min-width: 1024px) { .arteego-hero__copy { order: 1; } }
.arteego-hero__visual { order: 1; position: relative; }
@media (min-width: 1024px) { .arteego-hero__visual { order: 2; } }

.arteego-hero__title {
    color: var(--cream);
    font-size: clamp(48px, 8.5vw, 138px);
    line-height: 0.88;
    margin-top: 20px;
    text-transform: uppercase;
}
.arteego-hero__title > span { display: block; }
.arteego-hero__sub {
    margin-top: 28px;
    color: var(--cream-soft);
    opacity: 0.85;
    font-size: 16px;
    max-width: 480px;
    line-height: 1.65;
}
@media (min-width: 768px) { .arteego-hero__sub { font-size: 18px; } }
.arteego-hero__cta { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 16px; }
.arteego-hero__rating { margin-top: 40px; display: flex; align-items: center; gap: 24px; }
.arteego-hero__avatars { display: flex; }
.arteego-hero__avatars > * + * { margin-left: -8px; }
.arteego-avatar {
    width: 36px; height: 36px; border-radius: 9999px;
    border: 2px solid var(--bg);
    display: inline-flex; align-items: center; justify-content: center;
    overflow: hidden;
}
.arteego-avatar img { width: 100%; height: 100%; object-fit: contain; }
.arteego-hero__stars { font-size: 14px; letter-spacing: 0.15em; color: var(--cream); font-family: 'Bebas Neue', sans-serif; }
.arteego-hero__loved { font-size: 12px; color: var(--cream-soft); opacity: 0.7; }

.arteego-hero__visual { position: relative; }
.arteego-hero__bignum {
    position: absolute; inset: 0; z-index: 0;
    display: flex; align-items: center; justify-content: center;
    color: transparent; -webkit-text-stroke: 1.5px var(--cream);
    opacity: 0.22; font-size: clamp(180px, 32vw, 480px); line-height: 0.8;
    pointer-events: none; user-select: none;
}
.arteego-hero__swiper-wrap {
    position: relative;
    width: 100%; max-width: 640px; aspect-ratio: 1 / 1;
    margin: 0 auto;
}
.arteego-hero-swiper, .arteego-hero-swiper .swiper-wrapper, .arteego-hero-swiper .swiper-slide {
    width: 100%; height: 100%;
}
.arteego-hero-slide { position: relative; display: flex !important; align-items: center; justify-content: center; }
.arteego-hero-slide__puck {
    position: absolute;
    width: 82%; height: 82%;
    border-radius: 50%;
    filter: blur(28px);
}
.arteego-hero-slide__img {
    position: relative; z-index: 2;
    width: 92%; height: 92%; object-fit: contain;
    filter: drop-shadow(0 50px 60px rgba(0,0,0,0.55)) brightness(1.05) contrast(1.05);
    animation: float-bob 6s ease-in-out infinite;
}
.arteego-hero-slide__label {
    position: absolute; bottom: 8px; left: 50%; transform: translateX(-50%);
    z-index: 3;
    background: var(--cream); color: var(--bg);
    padding: 6px 16px; border-radius: 9999px;
    font-size: 12px; letter-spacing: 0.2em;
}
.arteego-hero__nav {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 52px; height: 52px; border-radius: 9999px;
    background: var(--cream); color: var(--bg);
    border: none;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
    z-index: 10;
    font-size: 24px;
    display: none;
}
@media (min-width: 640px) { .arteego-hero__nav { display: inline-flex; align-items: center; justify-content: center; } }
.arteego-hero__nav--prev { left: 0; }
.arteego-hero__nav--next { right: 0; }

.arteego-hero__meta {
    margin-top: 24px;
    display: flex; align-items: center; gap: 12px;
    font-size: 12px; letter-spacing: 0.3em;
    color: var(--cream-soft);
    text-transform: uppercase;
}
.arteego-hero__dots {
    margin-top: 16px;
    display: flex; justify-content: center; gap: 8px;
}
.arteego-hero__dot {
    width: 8px; height: 8px; border: none;
    border-radius: 9999px; background: var(--muted);
    transition: all 0.3s ease;
}
.arteego-hero__dot.is-active { width: 32px; background: var(--cream); }
.arteego-hero__hint {
    margin-top: 12px; text-align: center;
    font-size: 10px; letter-spacing: 0.3em;
    color: var(--muted);
}
.arteego-hero__scroll {
    position: absolute; bottom: 24px; left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    color: var(--cream-soft);
    font-size: 10px; letter-spacing: 0.3em;
    animation: fade-up 0.6s 1.5s both;
}
.arteego-hero__scroll svg { animation: bob 1.4s ease-in-out infinite; }
@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(8px); } }

/* === Mega outline titles === */
.arteego-mega-outline {
    position: absolute; top: 0; left: 0; right: 0;
    text-align: center;
    color: transparent; -webkit-text-stroke: 1.2px var(--cream);
    opacity: 0.16;
    font-size: clamp(80px, 22vw, 360px);
    line-height: 0.85;
    pointer-events: none; user-select: none;
    text-transform: uppercase;
    margin-top: 20px;
}
.arteego-mega-outline--smaller { font-size: clamp(80px, 20vw, 320px); opacity: 0.18; }
.arteego-mega-outline--biggest { font-size: clamp(120px, 28vw, 460px); opacity: 0.22; }

/* === Products section === */
.arteego-products__head {
    display: flex; align-items: end; justify-content: space-between;
    margin-bottom: 56px; gap: 16px; flex-wrap: wrap;
    position: relative; z-index: 1;
}
.arteego-products__arrows { display: none; gap: 12px; }
@media (min-width: 768px) { .arteego-products__arrows { display: flex; } }

.arteego-products__scroller {
    display: flex; gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 16px;
    position: relative;
}
.arteego-product-card {
    position: relative;
    flex-shrink: 0;
    scroll-snap-align: start;
    width: min(78vw, 280px);
    min-height: 420px;
    display: flex; flex-direction: column;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
    transition: transform 0.25s ease;
}
.arteego-product-card:hover { transform: translateY(-10px); }
.arteego-product-card__sku, .arteego-product-card__badge {
    position: absolute; top: 12px; z-index: 5;
    padding: 4px 8px; border-radius: 9999px;
    font-size: 9px; letter-spacing: 0.16em;
}
.arteego-product-card__sku   { left: 12px; }
.arteego-product-card__badge { right: 12px; }

.arteego-product-card__head {
    padding: 30px 18px 0;
    text-align: center;
    position: relative; z-index: 2;
}
.arteego-product-card__head h4 {
    color: var(--cream);
    font-size: clamp(26px, 4.2vw, 34px);
    line-height: 0.9;
    text-transform: uppercase;
    text-shadow: 0 2px 16px rgba(0,0,0,0.4);
}
.arteego-product-card__head p {
    margin-top: 6px;
    color: var(--cream); opacity: 0.92;
    font-size: 12px; letter-spacing: 0.18em;
    font-family: 'Bebas Neue', sans-serif;
}
.arteego-product-card__img-wrap {
    flex: 1;
    display: flex; align-items: center; justify-content: center;
    padding: 12px 18px;
    position: relative; z-index: 2;
    min-height: 200px;
}
.arteego-product-card__img {
    max-width: 220px; width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 25px 40px rgba(0,0,0,0.45)) brightness(1.1) contrast(1.08);
    animation: float-bob 6s ease-in-out infinite;
}
.arteego-product-card__actions {
    display: grid; grid-template-columns: 1fr auto;
    margin-top: auto;
}
.arteego-product-card__add {
    padding: 13px 16px;
    background: var(--cream);
    font-size: 12px; letter-spacing: 0.16em;
    transition: background 0.2s;
}
.arteego-product-card__add:hover { background: #fff7e3; }
.arteego-product-card__view {
    padding: 13px 14px;
    color: var(--cream);
    display: flex; align-items: center; gap: 6px;
    font-size: 12px; letter-spacing: 0.16em;
}
.arteego-products__more { margin-top: 48px; display: flex; justify-content: center; }

/* === Product strip (side-moving) === */
.arteego-product-strip {
    position: relative;
    margin-top: 80px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    overflow: hidden;
    padding: 24px 0;
}
.arteego-product-strip .ticker-track {
    display: flex; gap: 48px; align-items: center;
    white-space: nowrap; width: max-content;
    animation: ticker 40s linear infinite;
}
.arteego-product-strip__item { display: flex; gap: 16px; align-items: center; flex-shrink: 0; }
.arteego-product-strip__item img { width: 64px; height: 64px; object-fit: contain; }
.arteego-product-strip__name { color: var(--cream); font-size: clamp(28px, 4vw, 48px); text-transform: uppercase; }
.arteego-product-strip__sep  { color: var(--gold); font-size: 24px; }

/* === Why Choose === */
.arteego-why { background: var(--bg-soft); }
.arteego-why__float {
    position: absolute; pointer-events: none;
    opacity: 0.32;
    filter: drop-shadow(0 12px 24px rgba(0,0,0,0.5));
    will-change: transform;
}
.arteego-why__head { text-align: center; max-width: 720px; margin: 0 auto; position: relative; z-index: 2; }
.arteego-why__stats {
    margin-top: 56px;
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
    text-align: center;
    position: relative; z-index: 2;
}
@media (min-width: 768px) { .arteego-why__stats { grid-template-columns: repeat(4, 1fr); gap: 40px; } }
.arteego-stat__num {
    font-size: clamp(48px, 8vw, 80px);
    line-height: 1;
    color: var(--cream);
    text-transform: uppercase;
}
.arteego-stat__label {
    margin-top: 8px;
    color: var(--cream-soft);
    font-size: 11px; letter-spacing: 0.25em;
    text-transform: uppercase;
}

.arteego-why__grid {
    margin-top: 80px;
    display: grid; grid-template-columns: 1fr; gap: 20px;
    position: relative; z-index: 2;
}
@media (min-width: 640px) { .arteego-why__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .arteego-why__grid { grid-template-columns: repeat(4, 1fr); } }
.arteego-why-card {
    position: relative;
    padding: 32px;
    border-radius: 16px;
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(245,236,217,0.06) 0%, rgba(245,236,217,0.02) 100%);
    backdrop-filter: blur(10px);
    text-align: center;
    transition: transform 0.25s, box-shadow 0.25s;
    overflow: hidden;
}
.arteego-why-card:hover { transform: translateY(-8px) scale(1.02); box-shadow: 0 20px 40px rgba(0,0,0,0.3); }
.arteego-why-card__icon {
    width: 72px; height: 72px;
    border-radius: 9999px;
    border: 1.5px solid var(--cream);
    color: var(--cream);
    background: rgba(245,236,217,0.06);
    display: inline-flex; align-items: center; justify-content: center;
    margin-bottom: 24px;
    transition: transform 0.3s;
}
.arteego-why-card:hover .arteego-why-card__icon { transform: rotate(12deg); }
.arteego-why-card h4 { color: var(--cream); font-size: 28px; text-transform: uppercase; }
.arteego-why-card p { margin-top: 12px; color: var(--cream-soft); opacity: 0.8; font-size: 14px; line-height: 1.6; }
.arteego-why-card__num { margin-top: 24px; color: var(--gold); font-size: 10px; letter-spacing: 0.3em; }

.arteego-why__ticker {
    margin-top: 96px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 16px 0;
    overflow: hidden;
}
.arteego-why__ticker .ticker-track {
    display: flex; gap: 48px;
    white-space: nowrap; width: max-content;
    animation: ticker 40s linear infinite;
    font-size: clamp(24px, 4vw, 48px);
    text-transform: uppercase; color: var(--cream);
    align-items: center;
    padding: 8px 0;
}
.arteego-why__ticker .ticker-track--rev {
    animation: ticker-rev 40s linear infinite;
}
.arteego-why__ticker .dot { color: var(--gold); }

/* === Reviews === */
.arteego-reviews__head { text-align: center; position: relative; z-index: 2; margin-top: 80px; padding-bottom: 56px; }
@media (min-width: 768px) { .arteego-reviews__head { margin-top: 180px; } }
.arteego-reviews__rows { position: relative; overflow: hidden; }
.arteego-reviews__rows > * + * { margin-top: 16px; }
.arteego-reviews__rows .ticker-track {
    display: flex;
    width: max-content;
    animation: ticker 50s linear infinite;
}
.arteego-reviews__rows .ticker-track--rev { animation: ticker-rev 50s linear infinite; }
.arteego-review-card { flex-shrink: 0; margin: 0 12px; width: 360px; }
.arteego-review-card__pill {
    background: var(--cream); color: var(--bg);
    border-radius: 4px 4px 0 0;
    display: flex; align-items: center; justify-content: space-between;
    padding: 8px 20px;
    font-size: 14px; letter-spacing: 0.18em;
}
.arteego-review-card__pill .dot { width: 5px; height: 5px; background: var(--bg); border-radius: 9999px; }
.arteego-review-card__body {
    border: 1px solid var(--line); border-top: none;
    padding: 36px 28px;
    min-height: 320px;
    display: flex; flex-direction: column;
}
.arteego-review-card__top { display: flex; align-items: center; justify-content: space-between; }
.arteego-review-card__top .quote { font-size: 32px; color: var(--cream); line-height: 0.6; }
.arteego-review-card__top .stars { color: var(--gold); font-size: 14px; }
.arteego-review-card__body h4 {
    margin-top: 24px;
    color: var(--cream);
    font-size: clamp(22px, 3vw, 28px);
    line-height: 1.05;
    text-transform: uppercase;
}
.arteego-review-card__body p {
    margin-top: auto;
    padding-top: 32px;
    color: var(--cream-soft); opacity: 0.85;
    font-size: 14px; text-align: center;
}
.arteego-review-card__body .handle { opacity: 0.65; }
.arteego-reviews__follow { margin-top: 64px; text-align: center; }

/* === Footer === */
.arteego-footer { background: var(--bg); border-top: 1px solid var(--line); }
.arteego-footer__inner { max-width: var(--container); margin: 0 auto; padding: 64px 16px 0; }
@media (min-width: 768px) { .arteego-footer__inner { padding: 64px 32px 0; } }
.arteego-footer__grid {
    display: grid; grid-template-columns: 1fr; gap: 40px;
}
@media (min-width: 768px) { .arteego-footer__grid { grid-template-columns: 1.4fr 1fr 1.6fr 0.8fr; } }
.arteego-footer__logo { font-size: 28px; letter-spacing: 0.06em; color: var(--cream); text-transform: uppercase; }
.arteego-footer__brand p { margin-top: 16px; color: var(--cream-soft); opacity: 0.75; font-size: 14px; max-width: 320px; }
.arteego-footer__grid h5, .footer-title { color: var(--gold); font-size: 12px; letter-spacing: 0.3em; text-transform: uppercase; margin-bottom: 20px; }
.arteego-footer__grid ul li + li { margin-top: 12px; }
.arteego-footer__grid ul a { color: var(--cream); font-size: 14px; letter-spacing: 0.18em; font-family: 'Bebas Neue', sans-serif; }
.arteego-footer__newsletter p { font-size: 14px; color: var(--cream-soft); opacity: 0.8; margin-top: 4px; }
.arteego-newsletter { margin-top: 20px; display: flex; }
.arteego-newsletter input {
    flex: 1; background: transparent; outline: none;
    padding: 12px 16px; font-size: 14px;
    border: 1px solid var(--cream); border-right: none;
    border-radius: 9999px 0 0 9999px;
    color: var(--cream);
}
.arteego-newsletter input::placeholder { color: var(--cream-soft); opacity: 0.7; }
.arteego-newsletter button {
    padding: 0 18px;
    background: var(--cream); color: var(--bg);
    border: none;
    border-radius: 0 9999px 9999px 0;
    font-size: 16px;
}
.arteego-newsletter__msg { margin-top: 12px; color: var(--gold); font-size: 12px; }
.arteego-footer__social { display: flex; gap: 12px; }
.arteego-footer__social .social {
    width: 44px; height: 44px; border-radius: 8px;
    display: inline-flex; align-items: center; justify-content: center;
    font-family: 'Bebas Neue', sans-serif; font-size: 14px; letter-spacing: 0.1em;
}
.arteego-footer__social .social--filled  { background: var(--cream); color: var(--bg); }
.arteego-footer__social .social--outline { border: 1px solid var(--cream); color: var(--cream); }
.arteego-footer__mark {
    margin-top: 64px;
    text-align: center;
    color: transparent; -webkit-text-stroke: 1.2px var(--cream);
    font-size: clamp(60px, 14vw, 220px);
    line-height: 0.85;
    opacity: 0.16; user-select: none;
    text-transform: uppercase;
}
.arteego-footer__bar {
    border-top: 1px solid var(--line);
    margin-top: 24px;
    padding: 24px 0;
    display: flex; flex-direction: column; align-items: center; gap: 12px;
    color: var(--cream-soft); opacity: 0.6; font-size: 12px;
}
@media (min-width: 768px) { .arteego-footer__bar { flex-direction: row; justify-content: space-between; } }
.arteego-footer__tag { font-size: 11px; letter-spacing: 0.3em; }

/* === Reveal animations === */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal--line { display: block; }

/* === Shop / WooCommerce overrides === */
.arteego-shop ul.products { list-style: none; padding: 0; display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 640px) { .arteego-shop ul.products { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .arteego-shop ul.products { grid-template-columns: repeat(3, 1fr); } }
.arteego-shop ul.products li.product {
    background: var(--bg-soft);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    transition: transform 0.2s, border-color 0.2s;
}
.arteego-shop ul.products li.product:hover { transform: translateY(-6px); border-color: var(--cream); }
.arteego-shop ul.products li.product img { margin: 0 auto 16px; max-width: 220px; mix-blend-mode: lighten; }
.arteego-shop .woocommerce-loop-product__title {
    color: var(--cream) !important;
    font-family: 'Anton', sans-serif !important;
    font-size: 28px !important;
    text-transform: uppercase;
    margin-bottom: 8px !important;
}
.arteego-shop .price { color: var(--gold) !important; font-size: 18px; font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.1em; }
.arteego-shop .button, .arteego-shop .added_to_cart, .woocommerce a.button {
    background: var(--cream) !important; color: var(--bg) !important;
    border-radius: 9999px !important;
    padding: 10px 22px !important;
    font-family: 'Bebas Neue', sans-serif !important;
    letter-spacing: 0.12em !important;
    border: none !important;
    margin-top: 12px !important;
}
.woocommerce .woocommerce-result-count, .woocommerce .woocommerce-ordering select { color: var(--cream) !important; background: var(--bg-soft) !important; border: 1px solid var(--line) !important; border-radius: 8px; padding: 8px 12px; }

.woocommerce div.product .product_title { color: var(--cream); font-family: 'Anton', sans-serif; text-transform: uppercase; font-size: clamp(36px, 5vw, 56px); }
.woocommerce div.product .price, .woocommerce div.product p.price { color: var(--gold); font-family: 'Bebas Neue', sans-serif; font-size: 28px; }
.woocommerce div.product .single_add_to_cart_button { background: var(--cream) !important; color: var(--bg) !important; border-radius: 9999px !important; padding: 14px 28px !important; font-family: 'Bebas Neue', sans-serif !important; letter-spacing: 0.12em !important; }

.arteego-page-title { color: var(--cream); font-size: clamp(40px, 7vw, 88px); text-transform: uppercase; margin-bottom: 32px; }
.arteego-page-content, .arteego-single__content { color: var(--cream-soft); font-size: 16px; line-height: 1.75; }

/* Hide menu items default styling in WP */
.menu-item { list-style: none; }
.menu-item a { padding: 0; }

/* ============================================================
   BULLETPROOF VISIBILITY FIX (≤ 1023px) — applies on ALL non-desktop sizes
   so that content NEVER stays blank if JS is slow / blocked / errored.
   Desktop (≥ 1024px) reveal animations are NOT touched.
   ============================================================ */
@media (max-width: 1023px) {
    #arteego-intro,
    .arteego-intro {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }
    .reveal,
    .reveal.is-visible,
    .reveal--line {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
        animation: none !important;
    }
}

/* ============================================================
   MOBILE-ONLY FIXES (≤ 767px)
   These rules only apply on mobile devices. Desktop / laptop
   view (≥ 768px) is intentionally NOT changed by this block.
   ============================================================ */
@media (max-width: 767px) {

    /* Prevent any element from forcing horizontal scroll */
    html, body { max-width: 100%; overflow-x: hidden; }

    /* BULLETPROOF: ensure all content is visible on mobile no matter what.
       Original .reveal sets opacity:0 + transform until JS adds .is-visible.
       On mobile we kill that completely so content NEVER stays blank. */
    .reveal,
    .reveal.is-visible,
    .reveal--line {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
        animation: none !important;
    }

    /* BULLETPROOF: kill the intro loader entirely on mobile.
       It's a fixed full-screen overlay that depends on JS to disappear.
       If JS is slow / blocked / errored, it covers the page forever.
       On mobile we just don't show it at all — desktop still gets it. */
    .arteego-intro,
    #arteego-intro {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }

    /* --- Hero: tighter padding, no horizontal overflow --- */
    .arteego-hero {
        padding-top: 88px;
        padding-bottom: 48px;
        min-height: auto;
    }
    .arteego-hero__inner {
        gap: 32px;
        min-height: auto;
    }

    /* MOBILE ORDER: content first, image second.
       (Original mobile order had visual first; user requested swap.
       Desktop ≥ 1024px order is preserved unchanged.) */
    .arteego-hero__copy   { order: 1 !important; }
    .arteego-hero__visual { order: 2 !important; }

    /* Headline: cap size so words never overflow viewport */
    .arteego-hero__title {
        font-size: clamp(34px, 10.5vw, 54px);
        line-height: 0.95;
        margin-top: 14px;
        word-break: break-word;
        overflow-wrap: anywhere;
        hyphens: auto;
    }

    /* Sub paragraph: full width, smaller font, no clipping */
    .arteego-hero__sub {
        font-size: 15px;
        line-height: 1.55;
        max-width: 100%;
        margin-top: 20px;
        word-break: break-word;
        overflow-wrap: anywhere;
    }

    /* CTA buttons: stack neatly, full visible width */
    .arteego-hero__cta { margin-top: 24px; gap: 12px; }
    .arteego-hero__cta .btn-cream,
    .arteego-hero__cta .btn-outline-cream {
        flex: 1 1 auto;
        justify-content: center;
        padding: 12px 18px;
        font-size: 14px;
        white-space: nowrap;
    }

    /* Rating block: more compact */
    .arteego-hero__rating { margin-top: 28px; gap: 16px; }

    /* Hide decorative parallax float nuts on mobile.
       They cause horizontal overflow and hurt LCP/CLS. */
    .arteego-hero__bg,
    .arteego-hero__float,
    .arteego-why__float {
        display: none !important;
    }

    /* Hero big outline number behind swiper: shrink to avoid overflow */
    .arteego-hero__bignum {
        font-size: clamp(140px, 44vw, 260px);
        opacity: 0.18;
    }

    /* Swiper wrap: clamp width and aspect ratio for safe rendering */
    .arteego-hero__swiper-wrap {
        max-width: 100%;
        width: 100%;
        aspect-ratio: 1 / 1;
    }
    .arteego-hero-slide__img {
        width: 88%;
        height: 88%;
    }

    /* Section titles and outline mega text: cap so nothing clips */
    .arteego-section { padding: 56px 0; }
    .arteego-section__title { font-size: clamp(28px, 8.5vw, 44px); }
    .arteego-section__title--xl { font-size: clamp(32px, 10vw, 52px); }
    .arteego-mega-outline,
    .arteego-mega-outline--smaller,
    .arteego-mega-outline--biggest {
        font-size: clamp(56px, 16vw, 120px);
        opacity: 0.14;
    }

    /* Product cards: keep within viewport */
    .arteego-product-card {
        width: min(82vw, 320px);
        min-height: 480px;
    }
    .arteego-product-card__head { padding: 36px 20px 0; }
    .arteego-product-card__head h4 { font-size: clamp(30px, 7vw, 40px); }

    /* Why cards: tighter padding so nothing overflows */
    .arteego-why-card { padding: 24px; }
    .arteego-why-card h4 { font-size: 22px; }

    /* Reviews cards: narrower, scrolling stays inside viewport */
    .arteego-review-card { width: 280px; }
    .arteego-review-card__body { padding: 24px 20px; min-height: 260px; }

    /* Footer mega watermark: avoid extreme size on small screens */
    .arteego-footer__mark { font-size: clamp(48px, 14vw, 120px); }
    .arteego-footer__inner { padding: 48px 16px 0; }

    /* Intro loader title: keep within viewport */
    .arteego-intro__title { font-size: clamp(28px, 8vw, 56px); }

    /* Newsletter input row: keep inside viewport */
    .arteego-newsletter { flex-wrap: wrap; }
    .arteego-newsletter input { min-width: 0; }

    /* ===== Mobile nav drawer (opened by hamburger button) ===== */
    /* The desktop ≥ 768px keeps display:block on .arteego-nav. */
    /* On mobile we override only when .is-open is added by JS. */
    .arteego-nav.is-open {
        display: block !important;
        position: fixed;
        top: 64px;            /* below header */
        left: 0;
        right: 0;
        background: rgba(18, 12, 8, 0.98);
        border-bottom: 1px solid var(--line);
        padding: 24px 20px 32px;
        z-index: 49;
        animation: arteego-nav-in 0.28s cubic-bezier(0.22, 1, 0.36, 1) both;
    }
    .arteego-nav.is-open .arteego-nav__menu {
        flex-direction: column;
        gap: 0;
    }
    .arteego-nav.is-open .arteego-nav__menu li {
        border-bottom: 1px solid var(--line);
    }
    .arteego-nav.is-open .arteego-nav__menu li:last-child { border-bottom: none; }
    .arteego-nav.is-open .arteego-nav__menu a {
        display: block;
        padding: 16px 4px;
        font-size: 15px;
        letter-spacing: 0.22em;
        color: var(--cream);
    }
    @keyframes arteego-nav-in {
        from { opacity: 0; transform: translateY(-12px); }
        to   { opacity: 1; transform: translateY(0); }
    }
    /* Hamburger active state */
    .arteego-menu-btn.is-open {
        background: var(--cream);
        color: var(--bg);
    }
}

/* Extra tightening for very small phones (≤ 380px) */
@media (max-width: 380px) {
    .arteego-hero__title { font-size: clamp(30px, 9.5vw, 46px); }
    .arteego-hero__cta .btn-cream,
    .arteego-hero__cta .btn-outline-cream {
        font-size: 13px;
        padding: 11px 14px;
        letter-spacing: 0.06em;
    }
    .arteego-logo__text { font-size: 18px; }
}

/* ============================================================
   Performance: reduce expensive effects on mobile to help LCP/TBT
   ============================================================ */
@media (max-width: 767px) {
    /* Disable backdrop blur on mobile (very expensive on mid-range phones) */
    .arteego-header { backdrop-filter: none; -webkit-backdrop-filter: none; background: rgba(26, 20, 16, 0.94); }
    .arteego-why-card { backdrop-filter: none; -webkit-backdrop-filter: none; }

    /* Pause infinite tickers on mobile to save CPU and battery */
    .arteego-product-strip .ticker-track,
    .arteego-why__ticker .ticker-track,
    .arteego-reviews__rows .ticker-track {
        animation-duration: 90s;
    }

    /* Honour user motion preferences and reduce animation weight */
    .arteego-hero-slide__img,
    .arteego-product-card__img { animation: none; }
}

/* Respect prefers-reduced-motion universally */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
}

/* ============================================================
   DRAG-TO-SCROLL CURSOR + ENTRANCE ANIMATIONS
   For the "PICK YOUR WEAPON" product scroller and other reveals.
   ============================================================ */
.arteego-products__scroller {
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    scroll-behavior: smooth;
}
.arteego-products__scroller.is-dragging { cursor: grabbing; scroll-behavior: auto; }
.arteego-products__scroller.is-dragging * { pointer-events: none; }

/* Product card entrance: staggered slide-up + fade (animation, not transition,
   so we don't break the existing hover transform transition). */
.arteego-product-card {
    opacity: 0;
}
.arteego-product-card.is-shown {
    opacity: 1;
    animation: card-enter 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: calc(var(--card-i, 0) * 0.08s);
}
@keyframes card-enter {
    0%   { opacity: 0; transform: translateY(40px) scale(0.96); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

/* Subtle floating idle motion is purely on the IMAGE inside the card,
   leaving the card itself free for hover transforms. */
.arteego-product-card.is-shown .arteego-product-card__img {
    animation: card-float 7s ease-in-out infinite;
    animation-delay: calc(var(--card-i, 0) * 0.4s + 1s);
}
@keyframes card-float {
    0%, 100% { transform: translateY(0) rotate(-1deg); }
    50%      { transform: translateY(-8px) rotate(1deg); }
}

/* SHOP NOW arrow micro-animation on hover */
.btn-cream { position: relative; overflow: hidden; }
.btn-cream::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 20%, rgba(255,255,255,0.45) 50%, transparent 80%);
    transform: translateX(-120%);
    transition: transform 0.7s ease;
    pointer-events: none;
}
.btn-cream:hover::after { transform: translateX(120%); }

/* Section title underline-reveal animation */
.arteego-section__title { position: relative; display: inline-block; }
.arteego-section__title::after {
    content: "";
    position: absolute;
    left: 0; bottom: -8px;
    height: 3px;
    width: 0;
    background: var(--gold);
    transition: width 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.2s;
}
.arteego-section__title.is-visible::after,
.reveal.is-visible .arteego-section__title::after { width: 64px; }

/* "PICK YOUR WEAPON" mega-outline subtle drift */
.arteego-products .arteego-mega-outline {
    animation: outline-drift 18s ease-in-out infinite;
}
@keyframes outline-drift {
    0%, 100% { transform: translateX(0); }
    50%      { transform: translateX(-2%); }
}

/* "WEAPON" gold word pulse */
.arteego-section__title span { display: inline-block; }
.arteego-products .arteego-section__title span {
    animation: gold-pulse 3.5s ease-in-out infinite;
}
@keyframes gold-pulse {
    0%, 100% { text-shadow: 0 0 0 transparent; transform: scale(1); }
    50%      { text-shadow: 0 0 24px rgba(231, 184, 90, 0.45); transform: scale(1.02); }
}

/* MOBILE: keep entrance animation but ensure cards still visible if obs fails */
@media (max-width: 1023px) {
    html body .arteego-product-card { opacity: 1 !important; transform: none !important; }
    html body .arteego-product-card.is-shown { opacity: 1; transform: none; }
}

/* ============================================================
   SHOP — PRODUCT PAGE, CART, CHECKOUT, CONTACT, MINI-CART, TOAST
   ============================================================ */

/* --- Breadcrumbs --- */
.arteego-breadcrumbs {
    display: flex; flex-wrap: wrap; gap: 8px; align-items: center;
    font-size: 12px; letter-spacing: 0.2em; opacity: 0.7;
    margin-bottom: 24px; padding-top: 16px;
}
.arteego-breadcrumbs a { color: var(--cream); text-decoration: none; transition: opacity 0.2s; }
.arteego-breadcrumbs a:hover { opacity: 1; color: var(--gold); }
.arteego-breadcrumbs span { opacity: 0.5; }
.arteego-breadcrumbs__current { color: var(--gold); }

/* --- PDP layout --- */
.arteego-pdp__hero { padding: 130px 0 80px; overflow: hidden; position: relative; }
.arteego-pdp__grid {
    display: grid; grid-template-columns: 1.05fr 1fr; gap: 64px;
    align-items: start;
}
.arteego-pdp__gallery { position: relative; }
.arteego-pdp__main-img {
    position: relative; aspect-ratio: 1/1; max-width: 580px;
    border: 1px solid var(--line); border-radius: 32px;
    background: linear-gradient(160deg, var(--bg-deeper), var(--bg));
    overflow: hidden; display: flex; align-items: center; justify-content: center;
}
.arteego-pdp__main-img img {
    width: 92%; height: 92%; object-fit: contain;
    animation: pdp-float 6s ease-in-out infinite;
    filter: drop-shadow(0 30px 60px rgba(0,0,0,0.6));
}
@keyframes pdp-float {
    0%, 100% { transform: translateY(0) rotate(-1deg); }
    50%      { transform: translateY(-14px) rotate(1deg); }
}
.arteego-pdp__puck {
    position: absolute; width: 80%; height: 80%; top: 10%; left: 10%;
    border-radius: 50%; opacity: 0.55; filter: blur(20px);
}
.arteego-pdp__badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.arteego-pdp__badge {
    padding: 8px 14px; border-radius: 999px;
    background: rgba(245, 236, 217, 0.08); border: 1px solid var(--line);
    font-size: 11px; letter-spacing: 0.16em;
}
.arteego-pdp__badge--gold { background: var(--gold); color: var(--bg); border-color: transparent; }

.arteego-pdp__buy { padding-top: 20px; }
.arteego-pdp__title {
    font-family: 'Anton', sans-serif;
    font-size: clamp(48px, 6.5vw, 96px);
    line-height: 0.95; letter-spacing: 0.01em; margin: 8px 0 14px;
}
.arteego-pdp__tagline {
    color: var(--gold); font-size: 16px; letter-spacing: 0.06em;
    margin-bottom: 18px;
}
.arteego-pdp__short {
    font-size: 16px; line-height: 1.65; max-width: 520px;
    opacity: 0.86; margin-bottom: 32px;
}

.arteego-pdp__price-row {
    display: flex; justify-content: space-between; align-items: flex-end;
    padding: 18px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
    margin-bottom: 28px;
}
.arteego-pdp__price-label { font-size: 11px; letter-spacing: 0.2em; opacity: 0.6; }
.arteego-pdp__price {
    font-family: 'Anton', sans-serif; font-size: 44px; line-height: 1;
    color: var(--gold); margin-top: 4px;
}
.arteego-pdp__price-meta { text-align: right; font-size: 11px; letter-spacing: 0.16em; }
.arteego-pdp__instock { color: #6ce58a; }
.arteego-pdp__cod { display: block; opacity: 0.6; margin-top: 4px; }

.arteego-pdp__field-label {
    font-size: 11px; letter-spacing: 0.22em; opacity: 0.7;
    margin-bottom: 12px; text-transform: uppercase;
}
.arteego-pdp__sizes { display: grid; grid-template-columns: repeat(auto-fit, minmax(110px, 1fr)); gap: 10px; margin-bottom: 28px; }
.arteego-pdp__size {
    position: relative; background: transparent; border: 1.5px solid var(--line);
    color: var(--cream); padding: 14px 12px; border-radius: 14px;
    cursor: pointer; transition: all 0.25s ease; text-align: center;
    display: flex; flex-direction: column; gap: 4px;
}
.arteego-pdp__size:hover { border-color: var(--gold); transform: translateY(-2px); }
.arteego-pdp__size.is-active { background: var(--cream); color: var(--bg); border-color: var(--cream); }
.arteego-pdp__size-label { font-weight: 700; letter-spacing: 0.08em; }
.arteego-pdp__size-price { font-size: 14px; opacity: 0.8; }
.arteego-pdp__size-tag {
    position: absolute; top: -8px; right: -4px;
    background: var(--gold); color: var(--bg);
    font-size: 9px; padding: 3px 8px; border-radius: 999px;
    letter-spacing: 0.1em; font-weight: 700;
}

.arteego-pdp__qty {
    display: inline-flex; align-items: center; gap: 0;
    border: 1.5px solid var(--line); border-radius: 999px; margin-bottom: 24px;
    overflow: hidden;
}
.arteego-qty-btn {
    width: 44px; height: 44px;
    background: transparent; color: var(--cream); border: none;
    font-size: 18px; cursor: pointer; transition: background 0.2s;
}
.arteego-qty-btn:hover { background: rgba(245, 236, 217, 0.1); }
.arteego-qty-input {
    width: 56px; background: transparent; color: var(--cream);
    border: none; text-align: center; font-size: 16px; font-weight: 600;
    -moz-appearance: textfield;
}
.arteego-qty-input::-webkit-outer-spin-button,
.arteego-qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.arteego-pdp__actions { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 28px; }
.arteego-pdp__add, .arteego-pdp__buy-now {
    padding: 16px 22px !important; font-size: 14px !important;
    border-radius: 999px;
}
.arteego-pdp__add:hover { transform: translateY(-2px) scale(1.01); }
.arteego-pdp__buy-now:hover { background: var(--cream); color: var(--bg); }

.arteego-pdp__trust {
    list-style: none; padding: 20px 0; margin: 0;
    border-top: 1px solid var(--line); display: grid; grid-template-columns: 1fr 1fr;
    gap: 14px; font-size: 13px; opacity: 0.88;
}
.arteego-pdp__trust li { display: flex; gap: 8px; align-items: center; }
.arteego-pdp__marketplaces {
    margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--line);
    font-size: 13px; opacity: 0.78;
}

/* PDP Details section */
.arteego-pdp__details { padding: 80px 0; }
.arteego-pdp__details-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 60px; align-items: start; }
.arteego-pdp__story p { font-size: 16px; line-height: 1.75; opacity: 0.88; margin-bottom: 14px; }
.arteego-pdp__features {
    list-style: none; padding: 32px; margin: 0;
    background: rgba(245, 236, 217, 0.04); border: 1px solid var(--line); border-radius: 24px;
}
.arteego-pdp__features-head { font-family: 'Anton', sans-serif; font-size: 22px; color: var(--gold); margin-bottom: 18px; letter-spacing: 0.04em; }
.arteego-pdp__features li {
    display: flex; gap: 12px; padding: 12px 0;
    border-bottom: 1px solid rgba(245, 236, 217, 0.08); font-size: 14px;
}
.arteego-pdp__features li:last-child { border-bottom: none; }
.arteego-pdp__features li span { color: var(--gold); }

.arteego-pdp__info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 56px; }
.arteego-pdp__info-card {
    padding: 28px; border-radius: 20px;
    background: rgba(245, 236, 217, 0.04); border: 1px solid var(--line);
    transition: transform 0.3s, border-color 0.3s;
}
.arteego-pdp__info-card:hover { transform: translateY(-4px); border-color: var(--gold); }
.arteego-pdp__info-label { color: var(--gold); font-size: 11px; letter-spacing: 0.22em; margin-bottom: 12px; }
.arteego-pdp__info-card p { font-size: 14px; line-height: 1.6; }

/* --- Cart page --- */
.arteego-cart__layout {
    display: grid; grid-template-columns: 1.5fr 1fr; gap: 48px;
    margin-top: 32px;
}
.arteego-cart__row {
    display: grid; grid-template-columns: 100px 1fr auto auto; gap: 18px;
    align-items: center; padding: 18px 0; border-bottom: 1px solid var(--line);
}
.arteego-cart__img img { width: 100px; height: 100px; object-fit: contain; }
.arteego-cart__name { display: block; font-family: 'Anton', sans-serif; font-size: 24px; color: var(--cream); text-decoration: none; }
.arteego-cart__size { font-size: 13px; opacity: 0.7; margin: 4px 0; }
.arteego-cart__rm { background: none; border: none; color: var(--gold); font-size: 12px; cursor: pointer; padding: 0; }
.arteego-cart__qty { display: inline-flex; border: 1px solid var(--line); border-radius: 999px; align-items: center; }
.arteego-cart__qty span { padding: 0 12px; }
.arteego-cart__line-total { font-family: 'Anton', sans-serif; font-size: 22px; color: var(--gold); }
.arteego-cart__summary {
    padding: 32px; border-radius: 24px;
    background: rgba(245, 236, 217, 0.05); border: 1px solid var(--line);
    position: sticky; top: 100px;
}
.arteego-cart__summary h3 { font-family: 'Anton', sans-serif; font-size: 24px; margin-bottom: 18px; }
.arteego-cart__summary .btn-cream { width: 100%; text-align: center; display: block; margin-top: 18px; }
.arteego-cart__empty { text-align: center; padding: 80px 20px; grid-column: 1 / -1; }

/* --- Checkout page --- */
.arteego-checkout__layout { display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; margin-top: 24px; }
.arteego-checkout__form, .arteego-checkout__summary {
    background: rgba(245, 236, 217, 0.04); border: 1px solid var(--line);
    border-radius: 24px; padding: 32px;
}
.arteego-checkout__h { font-family: 'Anton', sans-serif; font-size: 18px; color: var(--gold); letter-spacing: 0.06em; margin: 0 0 16px; }
.arteego-checkout__h + .arteego-field { margin-top: 0; }
.arteego-checkout__h:not(:first-child) { margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--line); }
.arteego-field { display: block; margin-bottom: 14px; }
.arteego-field > span { display: block; font-size: 11px; letter-spacing: 0.18em; opacity: 0.7; margin-bottom: 6px; }
.arteego-field input {
    width: 100%; padding: 14px 16px; background: rgba(0,0,0,0.25);
    border: 1px solid var(--line); border-radius: 12px;
    color: var(--cream); font-family: 'Inter', sans-serif; font-size: 15px;
    transition: border-color 0.2s, background 0.2s;
}
.arteego-field input:focus { outline: none; border-color: var(--gold); background: rgba(0,0,0,0.4); }
.arteego-field-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; }

.arteego-pay-options { display: grid; gap: 10px; margin-bottom: 24px; }
.arteego-pay-option {
    display: flex; align-items: center; gap: 12px; padding: 16px;
    border: 1.5px solid var(--line); border-radius: 14px; cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
}
.arteego-pay-option:hover { border-color: var(--gold); }
.arteego-pay-option.is-active, .arteego-pay-option:has(input:checked) {
    border-color: var(--gold); background: rgba(231, 184, 90, 0.06);
}
.arteego-pay-option input { width: 18px; height: 18px; accent-color: var(--gold); }
.arteego-pay-option__title { flex: 1; font-weight: 600; letter-spacing: 0.04em; }
.arteego-pay-option__title small { display: block; font-weight: 400; opacity: 0.7; font-size: 12px; margin-top: 4px; }
.arteego-pay-option__badge { background: var(--gold); color: var(--bg); font-size: 11px; padding: 4px 10px; border-radius: 999px; }

.arteego-checkout__pay { width: 100%; padding: 18px !important; font-size: 15px !important; }
.arteego-checkout__legal { font-size: 12px; opacity: 0.7; margin-top: 14px; text-align: center; }
.arteego-checkout__item {
    display: grid; grid-template-columns: 56px 1fr auto; gap: 12px; align-items: center;
    padding: 12px 0; border-bottom: 1px solid var(--line);
}
.arteego-checkout__item img { width: 56px; height: 56px; object-fit: contain; }
.arteego-checkout__item small { display: block; opacity: 0.7; font-size: 12px; }
.arteego-checkout__totals { margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line); }
.arteego-checkout__row { display: flex; justify-content: space-between; padding: 8px 0; font-size: 14px; }
.arteego-checkout__row--total { font-family: 'Anton', sans-serif; font-size: 22px; color: var(--gold); padding-top: 14px; border-top: 1px solid var(--line); margin-top: 8px; }

/* --- Mini-cart drawer --- */
.arteego-minicart {
    position: fixed; top: 0; right: -440px; bottom: 0; width: 100%; max-width: 420px;
    background: var(--bg-deeper); border-left: 1px solid var(--line); z-index: 999;
    display: flex; flex-direction: column;
    transition: right 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.arteego-minicart.is-open { right: 0; }
.arteego-minicart__backdrop {
    position: fixed; inset: 0; background: rgba(0,0,0,0.6); opacity: 0;
    pointer-events: none; transition: opacity 0.3s; z-index: 998;
    backdrop-filter: blur(4px);
}
.arteego-minicart__backdrop.is-open { opacity: 1; pointer-events: auto; }
.arteego-minicart__head {
    display: flex; justify-content: space-between; align-items: center;
    padding: 24px; border-bottom: 1px solid var(--line);
}
.arteego-minicart__head h4 { font-family: 'Anton', sans-serif; font-size: 22px; margin: 0; }
.arteego-minicart__close { background: none; border: none; color: var(--cream); font-size: 28px; cursor: pointer; line-height: 1; }
.arteego-minicart__items { flex: 1; overflow-y: auto; padding: 16px 24px; }
.arteego-minicart__item { display: grid; grid-template-columns: 60px 1fr; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.arteego-minicart__item img { width: 60px; height: 60px; object-fit: contain; }
.arteego-minicart__item-name { font-weight: 600; margin: 0 0 4px; font-size: 14px; }
.arteego-minicart__item-price { color: var(--gold); font-family: 'Anton', sans-serif; font-size: 18px; margin: 0; }
.arteego-minicart__qty { display: flex; align-items: center; gap: 10px; margin-top: 6px; }
.arteego-minicart__qty .arteego-qty-btn { width: 28px; height: 28px; border: 1px solid var(--line); border-radius: 50%; font-size: 14px; }
.arteego-minicart__rm { margin-left: auto; background: none; border: none; color: var(--gold); cursor: pointer; font-size: 18px; }
.arteego-minicart__foot { padding: 20px 24px 28px; border-top: 1px solid var(--line); }
.arteego-minicart__total { display: flex; justify-content: space-between; font-family: 'Anton', sans-serif; font-size: 24px; color: var(--gold); margin-bottom: 16px; }
.arteego-minicart__foot .btn-cream, .arteego-minicart__foot .btn-outline-cream { display: block; width: 100%; text-align: center; margin-bottom: 8px; }
.arteego-minicart__empty { text-align: center; padding: 60px 0; opacity: 0.6; }

/* --- Toast --- */
.arteego-toast {
    position: fixed; bottom: 24px; left: 50%; transform: translate(-50%, 80px);
    background: var(--cream); color: var(--bg);
    padding: 14px 22px; border-radius: 14px; z-index: 1001;
    font-size: 14px; opacity: 0; pointer-events: none;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s;
    box-shadow: 0 16px 40px rgba(0,0,0,0.4);
    max-width: 90vw;
}
.arteego-toast.is-visible { transform: translate(-50%, 0); opacity: 1; }
.arteego-toast strong { display: block; font-family: 'Anton', sans-serif; font-size: 16px; }

/* --- Cart count badge in header --- */
.arteego-cart-badge {
    position: absolute; top: -4px; right: -4px;
    background: var(--gold); color: var(--bg); font-size: 10px;
    width: 18px; height: 18px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700;
}

/* --- Thank-you page --- */
.arteego-thankyou {
    min-height: 100vh; display: flex; flex-direction: column;
    align-items: center; justify-content: center; padding: 40px;
    text-align: center; background: var(--bg-deeper); color: var(--cream);
    font-family: 'Inter', sans-serif;
}
.arteego-thankyou h1 { font-family: 'Anton', sans-serif; font-size: clamp(48px, 8vw, 96px); color: var(--gold); margin: 0 0 16px; }
.arteego-thankyou .btn-cream { margin-top: 32px; }

/* --- Contact page --- */
.arteego-contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-top: 32px; }
.arteego-contact__cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; align-content: start; }
.arteego-contact-card {
    padding: 28px; background: rgba(245, 236, 217, 0.04);
    border: 1px solid var(--line); border-radius: 20px;
    text-decoration: none; color: var(--cream); display: block;
    transition: transform 0.3s, border-color 0.3s;
}
.arteego-contact-card:hover { transform: translateY(-4px); border-color: var(--gold); }
.arteego-contact-card__icon { font-size: 32px; margin-bottom: 14px; }
.arteego-contact-card__label { font-size: 11px; letter-spacing: 0.22em; color: var(--gold); margin: 0 0 8px; }
.arteego-contact-card__value { font-family: 'Anton', sans-serif; font-size: 22px; margin: 0 0 6px; line-height: 1.1; }
.arteego-contact-card__hint { font-size: 12px; opacity: 0.7; margin: 0; line-height: 1.5; }
.arteego-contact__map { display: flex; flex-direction: column; gap: 12px; }
.arteego-contact__map-frame { aspect-ratio: 4/3; border-radius: 20px; overflow: hidden; border: 1px solid var(--line); }
.arteego-contact__map-frame iframe { display: block; width: 100%; height: 100%; }
.arteego-contact__map-hint { font-size: 12px; opacity: 0.7; text-align: center; }
.arteego-contact__market { margin-top: 64px; padding-top: 40px; border-top: 1px solid var(--line); text-align: center; }
.arteego-contact__market-list { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin: 16px 0 8px; }
.arteego-contact__market-chip {
    padding: 12px 24px; background: rgba(231, 184, 90, 0.08); border: 1px solid var(--gold);
    border-radius: 999px; font-family: 'Anton', sans-serif; font-size: 16px; letter-spacing: 0.04em; color: var(--gold);
}
.arteego-contact__market-note { font-size: 13px; opacity: 0.7; }

/* --- Footer credit --- */
.arteego-footer__credit { font-size: 13px; opacity: 0.8; }
.arteego-footer__credit a {
    color: var(--gold); text-decoration: none; border-bottom: 1px dotted var(--gold);
    transition: color 0.2s;
}
.arteego-footer__credit a:hover { color: var(--cream); }
.arteego-footer__marketplaces { font-size: 13px; opacity: 0.85; margin-top: 14px; }
.arteego-footer__marketplaces-note { display: block; opacity: 0.6; font-size: 11px; margin-top: 4px; }
.arteego-footer__contact p { font-size: 14px; margin: 6px 0; }
.arteego-footer__contact a { color: var(--cream); text-decoration: none; }
.arteego-footer__contact a:hover { color: var(--gold); }

/* --- Smoother mobile scroller --- */
.arteego-products__scroller {
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-padding-left: 20px;
    overscroll-behavior-x: contain;
}
.arteego-product-card { scroll-snap-align: start; }

/* ============================================================
   MOBILE OVERRIDES for new pages (≤ 767px)
   ============================================================ */
@media (max-width: 767px) {
    html body .arteego-pdp__hero { padding: 110px 0 40px !important; }
    html body .arteego-pdp__grid { grid-template-columns: 1fr !important; gap: 32px !important; }
    html body .arteego-pdp__main-img { max-width: 100% !important; }
    html body .arteego-pdp__title { font-size: clamp(38px, 11vw, 64px) !important; }
    html body .arteego-pdp__details { padding: 48px 0 !important; }
    html body .arteego-pdp__details-grid { grid-template-columns: 1fr !important; gap: 32px !important; }
    html body .arteego-pdp__info-grid { grid-template-columns: 1fr !important; gap: 12px !important; margin-top: 40px !important; }
    html body .arteego-pdp__actions { grid-template-columns: 1fr !important; }
    html body .arteego-pdp__trust { grid-template-columns: 1fr !important; }

    html body .arteego-cart__layout { grid-template-columns: 1fr !important; gap: 28px !important; }
    html body .arteego-cart__row { grid-template-columns: 80px 1fr !important; grid-template-rows: auto auto !important; gap: 12px !important; }
    html body .arteego-cart__qty, html body .arteego-cart__line-total { grid-column: 2 !important; }
    html body .arteego-cart__summary { position: static !important; }

    html body .arteego-checkout__layout { grid-template-columns: 1fr !important; gap: 28px !important; }
    html body .arteego-field-row { grid-template-columns: 1fr 1fr !important; }

    html body .arteego-contact__grid { grid-template-columns: 1fr !important; gap: 28px !important; }
    html body .arteego-contact__cards { grid-template-columns: 1fr !important; }

    html body .arteego-minicart { max-width: 100% !important; right: -100% !important; }
    html body .arteego-minicart.is-open { right: 0 !important; }
}

/* ============================================================
   ON-HOMEPAGE MARKETPLACE BANNER
   ============================================================ */
.arteego-products__marketplace {
    margin-top: 56px;
    padding: 22px 28px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(231, 184, 90, 0.08), rgba(245, 236, 217, 0.03));
    text-align: center;
    font-size: 15px;
}
.arteego-products__marketplace strong { color: var(--gold); font-family: 'Anton', sans-serif; letter-spacing: 0.04em; }
.arteego-products__marketplace span { opacity: 0.65; font-size: 13px; }

/* ============================================================
   MOBILE GRID: show ALL products as a 2-col grid, not horizontal scroll.
   This is what the user explicitly asked for (no scrolling to see products).
   Desktop (≥ 768) keeps the horizontal scroller behaviour.
   ============================================================ */
@media (max-width: 767px) {
    html body .arteego-products__mobile-grid {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 12px !important;
        overflow: visible !important;
        scroll-snap-type: none !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    html body .arteego-products__mobile-grid .arteego-product-card {
        width: 100% !important;
        min-width: 0 !important;
        min-height: 340px !important;
        scroll-snap-align: none !important;
        flex: 0 0 auto !important;
        opacity: 1 !important;
        transform: none !important;
    }
    html body .arteego-products__mobile-grid .arteego-product-card__head h4 { font-size: clamp(22px, 5.5vw, 30px) !important; }
    html body .arteego-products__mobile-grid .arteego-product-card__head p { font-size: 11px !important; }
    html body .arteego-products__mobile-grid .arteego-product-card__img-wrap img { width: 78% !important; }
    html body .arteego-products__mobile-grid .arteego-product-card__actions { padding: 10px 14px !important; }
    html body .arteego-products__mobile-grid .arteego-product-card__add { font-size: 10px !important; padding: 6px 10px !important; }
    html body .arteego-products__mobile-grid .arteego-product-card__view { font-size: 10px !important; }
    html body .arteego-products__mobile-grid .arteego-product-card__sku { font-size: 9px !important; padding: 4px 8px !important; }
    html body .arteego-products__mobile-grid .arteego-product-card__badge { font-size: 9px !important; padding: 4px 8px !important; }
    /* Hide the arrows on mobile — grid doesn't need them */
    html body .arteego-products__arrows { display: none !important; }
}

/* ============================================================
   VISIBLE MOBILE QUICK NAV — under the logo strip on mobile so users
   can clearly see SHOP / CONTACT / WHATSAPP without opening hamburger.
   ============================================================ */
.arteego-mobile-quicknav {
    display: none;
    position: sticky;
    top: 64px;
    z-index: 40;
    background: rgba(18, 12, 8, 0.96);
    border-bottom: 1px solid var(--line);
    padding: 10px 16px;
    gap: 8px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.arteego-mobile-quicknav a {
    flex: 0 0 auto;
    padding: 8px 16px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--cream);
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 0.16em;
    white-space: nowrap;
    transition: background 0.2s, border-color 0.2s;
}
.arteego-mobile-quicknav a:hover,
.arteego-mobile-quicknav a:focus { border-color: var(--gold); }
.arteego-mobile-quicknav a.is-cta { background: var(--gold); color: var(--bg); border-color: var(--gold); }

@media (max-width: 767px) {
    html body .arteego-mobile-quicknav { display: none !important; }
}

/* ============================================================
   Floating WhatsApp button — always reachable on mobile
   ============================================================ */
.arteego-wa-fab {
    position: fixed; bottom: 18px; right: 18px; z-index: 100;
    width: 56px; height: 56px; border-radius: 50%;
    background: #25D366; color: #fff; display: flex; align-items: center; justify-content: center;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    text-decoration: none; transition: transform 0.25s;
    animation: wa-pulse 2.4s ease-in-out infinite;
}
.arteego-wa-fab:hover { transform: scale(1.08); }
.arteego-wa-fab svg { width: 30px; height: 30px; }
@keyframes wa-pulse {
    0%, 100% { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4); }
    50%      { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4), 0 0 0 14px rgba(37, 211, 102, 0); }
}

/* ============================================================
   NEW LOGO (artee-logo image)
   ============================================================ */
.arteego-logo {
    display: flex; align-items: center; gap: 10px;
    text-decoration: none; color: var(--cream);
}
.arteego-logo__img {
    width: 44px; height: 44px;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(231, 184, 90, 0.35));
    transition: transform 0.3s;
}
.arteego-logo:hover .arteego-logo__img { transform: rotate(-8deg) scale(1.05); }
.arteego-logo__text {
    font-family: 'Anton', sans-serif;
    font-size: clamp(18px, 3.5vw, 24px);
    letter-spacing: 0.04em; line-height: 1;
}
.arteego-logo__gold { color: var(--gold); }
@media (max-width: 767px) {
    html body .arteego-logo__img { width: 38px; height: 38px; }
    html body .arteego-logo__text { font-size: 16px; }
}

/* ============================================================
   THEMED FLOATING ACTION BUTTONS (gold/cream — match site theme)
   Replaces the bright-green WhatsApp brand bubble with a theme-matched pair:
   Call + WhatsApp stacked bottom-right.
   ============================================================ */
.arteego-fab-stack {
    position: fixed;
    right: 16px; bottom: 16px;
    z-index: 100;
    display: flex; flex-direction: column; gap: 12px;
}
.arteego-fab {
    width: 52px; height: 52px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    text-decoration: none;
    color: var(--bg);
    background: linear-gradient(140deg, var(--gold) 0%, #d4a04d 100%);
    box-shadow: 0 8px 24px rgba(231, 184, 90, 0.35),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border: 1.5px solid rgba(245, 236, 217, 0.4);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    position: relative;
}
.arteego-fab svg { width: 24px; height: 24px; }
.arteego-fab:hover {
    transform: scale(1.08) translateY(-2px);
    box-shadow: 0 12px 30px rgba(231, 184, 90, 0.5);
}
.arteego-fab--call {
    background: linear-gradient(140deg, var(--cream) 0%, #d6cbb0 100%);
}
.arteego-fab--call::before,
.arteego-fab--wa::before {
    content: ""; position: absolute; inset: -4px;
    border-radius: 50%;
    border: 1.5px solid var(--gold);
    opacity: 0;
    animation: fab-ring 3s ease-out infinite;
    pointer-events: none;
}
.arteego-fab--wa::before { animation-delay: 1.5s; border-color: var(--cream); }
@keyframes fab-ring {
    0%   { transform: scale(1);   opacity: 0.7; }
    100% { transform: scale(1.5); opacity: 0; }
}
@media (max-width: 767px) {
    html body .arteego-fab-stack { right: 12px; bottom: 12px; }
    html body .arteego-fab { width: 48px; height: 48px; }
    html body .arteego-fab svg { width: 22px; height: 22px; }
}
/* Hide old wa-fab if it still loads from a cached page */
.arteego-wa-fab { display: none !important; }

/* ============================================================
   FIX (iteration 5): Hamburger backdrop, FAB stack, marketplace
   strip, reviews edge mask, footer social size
   ============================================================ */

/* (1) Hamburger menu backdrop overlay — dims hero content behind
       the open drawer. */
.arteego-nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(8, 5, 3, 0.7);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    opacity: 0;
    pointer-events: none;
    z-index: 48;       /* below nav (49) and header (50), above content */
    transition: opacity 0.25s ease;
}
body.arteego-menu-open .arteego-nav-backdrop {
    opacity: 1;
    pointer-events: auto;
}
body.arteego-menu-open { overflow: hidden; }   /* lock scroll while menu open */

/* (4) X-close icon: swap bars ↔ X based on .is-open state. */
.arteego-menu-btn__x    { display: none; }
.arteego-menu-btn.is-open .arteego-menu-btn__bars { display: none; }
.arteego-menu-btn.is-open .arteego-menu-btn__x    { display: block; }

/* (2) FAB stack: leave breathing room at the bottom of mobile pages
       so floating buttons don't sit on top of CTA buttons / footer. */
@media (max-width: 1023px) {
    html body .arteego-fab-stack {
        right: 14px !important;
        bottom: 14px !important;
        gap: 10px;
        z-index: 47;     /* below backdrop when menu open */
    }
    html body .arteego-fab {
        width: 44px !important;
        height: 44px !important;
        opacity: 0.96;
        box-shadow: 0 8px 22px rgba(0,0,0,0.45);
    }
    html body .arteego-fab svg { width: 20px; height: 20px; }
    /* Hide FABs while the mobile menu is open so they don't sit on
       top of the dimmed backdrop. */
    body.arteego-menu-open .arteego-fab-stack { opacity: 0; pointer-events: none; }
    /* Push content above so it never sits behind the FAB cluster. */
    .arteego-main { padding-bottom: 80px; }
    .arteego-footer { padding-bottom: 80px; }
}

/* (5) "Also available on Amazon, Flipkart & Meesho — coming soon"
       wastes prime above-the-fold space on mobile — hide it < 768. */
@media (max-width: 767px) {
    .arteego-products__marketplace { display: none !important; }
}

/* (6) Reviews ticker — same fade mask used elsewhere so cards don't
       look truncated at the screen edges. */
.arteego-reviews__rows {
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
            mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}
@media (max-width: 767px) {
    .arteego-review-card { width: 84vw !important; max-width: 320px; margin: 0 8px; }
    .arteego-review-card__body { min-height: 240px; padding: 24px 20px; }
}

/* (7) Footer social icons — bigger, thumb-friendly tap targets on
       mobile (Apple HIG: 44 px min; we use 56). */
@media (max-width: 767px) {
    .arteego-footer__social { gap: 14px; }
    .arteego-footer__social .social {
        width: 56px !important;
        height: 56px !important;
        border-radius: 12px;
        font-size: 17px;
        font-weight: 700;
        letter-spacing: 0.08em;
    }
}

/* ============================================================
   FIX (iteration 3): Mobile-specific overrides
   ============================================================ */

/* Hero swiper images on mobile/tablet: kill mix-blend-mode globally
   for ALL product photos so dark photo backgrounds don't disappear
   into the page bg. (Only the first slide was reliably visible
   before because Swiper sets visibility on non-active slides which
   compounds with the blend issue.) */
@media (max-width: 1023px) {
    .arteego-hero-slide__img,
    .arteego-product-card__img,
    .arteego-product-strip__item img,
    .arteego-hero__avatars img,
    .img-blend-lighten { mix-blend-mode: normal !important; }
    .arteego-hero-slide__puck { width: 92%; height: 92%; filter: blur(34px); opacity: .9; }
    .arteego-hero__swiper-wrap { aspect-ratio: 1 / 1; max-height: 60vh; }
    /* Force every Swiper slide visible so swiping reveals each photo */
    .arteego-hero-swiper .swiper-slide { opacity: 1 !important; }
    .arteego-hero-swiper .swiper-slide:not(.swiper-slide-active) .arteego-hero-slide__img { opacity: 1 !important; }
}

/* Hide the mobile quicknav strip — user wants only the hamburger
   menu on mobile (Shop / Why Us / Reviews / Contact are reachable
   via the drawer menu opened by the hamburger button). */
.arteego-mobile-quicknav { display: none !important; }

/* "VIEW ALL X PRODUCTS →" button + helper text below the home
   featured grid. */
.arteego-products__view-all {
    margin: 40px auto 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.arteego-products__view-all-btn {
    font-size: 14px;
    letter-spacing: 0.22em;
    padding: 14px 28px;
}
.arteego-products__view-all-hint {
    font-size: 12px;
    letter-spacing: 0.16em;
    color: var(--cream-soft);
    opacity: 0.75;
    text-transform: uppercase;
    font-family: 'Bebas Neue', sans-serif;
}

/* Home product scroller now shows only 4 cards — render as a clean
   4-column grid on desktop. Hide on mobile (mobile uses the ticker). */
.arteego-products__desktop-grid {
    display: none; /* mobile default — hidden */
}
@media (min-width: 768px) {
    .arteego-products__desktop-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }
    .arteego-products__desktop-grid .arteego-product-card {
        width: 100%;
        scroll-snap-align: none;
    }
}
@media (min-width: 768px) and (max-width: 1023px) {
    .arteego-products__desktop-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================================
   MOBILE PRODUCT TICKER  (auto-scrolling infinite carousel
   showing all 8 products in a single row, < 768px)
   ============================================================ */
.arteego-products__mobile-ticker {
    display: none; /* desktop default — hidden */
}
@media (max-width: 767px) {
    .arteego-products__mobile-ticker {
        display: block;
        position: relative;
        width: 100vw;
        margin-left: calc(50% - 50vw);   /* break out of container padding */
        margin-right: calc(50% - 50vw);
        overflow: hidden;
        -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
                mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    }
    .arteego-products__mobile-track {
        display: flex;
        gap: 14px;
        width: max-content;
        padding: 16px 8px;
        animation: arteego-ticker-x 48s linear infinite;
        will-change: transform;
    }
    .arteego-products__mobile-ticker:hover .arteego-products__mobile-track,
    .arteego-products__mobile-ticker:focus-within .arteego-products__mobile-track {
        animation-play-state: paused;
    }
    @keyframes arteego-ticker-x {
        from { transform: translateX(0); }
        to   { transform: translateX(-50%); }   /* exactly one full cycle (we rendered 2× copies) */
    }
    .arteego-product-card--ticker {
        width: 78vw;
        max-width: 280px;
        flex-shrink: 0;
        opacity: 1 !important;       /* never hide */
        transform: none !important;
        animation: none !important;  /* override card-enter */
        min-height: 380px;
    }
    .arteego-product-card--ticker .arteego-product-card__img-wrap { min-height: 160px; padding: 10px 14px; }
    .arteego-product-card--ticker .arteego-product-card__img      { max-width: 180px; }
    .arteego-product-card--ticker .arteego-product-card__head     { padding: 22px 14px 0; }
    .arteego-product-card--ticker .arteego-product-card__head h4  { font-size: clamp(24px, 6.5vw, 30px); }
    .arteego-product-card--ticker .arteego-product-card__head p   { font-size: 11px; }
    .arteego-product-card--ticker .arteego-product-card__add      { padding: 11px 12px; font-size: 11px; letter-spacing: 0.12em; }
    .arteego-product-card--ticker .arteego-product-card__view     { padding: 11px 12px; font-size: 11px; letter-spacing: 0.12em; }

    /* Older mobile-grid CSS no longer applies because we removed
       that class from the markup, but keep this defensive hide
       in case any cached CSS class lingers. */
    .arteego-products__mobile-grid { display: none !important; }
    .arteego-products__arrows      { display: none !important; }
}

@media (prefers-reduced-motion: reduce) {
    .arteego-products__mobile-track { animation: none !important; }
}
.arteego-product-card__link {
    display: block;
    text-decoration: none;
    color: inherit;
    flex: 1;
    cursor: pointer;
}
.arteego-product-card__add {
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-weight: 700;
    transition: transform 0.2s, background-color 0.2s;
}
.arteego-product-card__add:hover { transform: scale(1.04); }
.arteego-product-card__add.is-added {
    background: #6ce58a !important;
    color: var(--bg-deeper) !important;
}
.arteego-product-card__view {
    text-decoration: none;
    transition: color 0.2s, opacity 0.2s;
}
.arteego-product-card__view:hover { color: var(--gold) !important; opacity: 1; }

/* ============================================================
   DEDICATED SHOP PAGE  ( /shop/ )
   ============================================================ */
.arteego-shop-grid-section { padding-top: 24px; padding-bottom: 96px; }
.arteego-shop-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
@media (max-width: 1199px) { .arteego-shop-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 899px)  { .arteego-shop-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; } }
@media (max-width: 480px)  { .arteego-shop-grid { gap: 12px; } }

.arteego-shop-card {
    width: 100% !important;
    min-height: 460px;
    scroll-snap-align: none;
    opacity: 1 !important;
    transform: none !important;
}
.arteego-shop-card__price {
    margin: 0 18px 14px;
    text-align: center;
    color: var(--cream);
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 0.16em;
    font-size: 16px;
    opacity: 0.96;
}
@media (max-width: 767px) {
    .arteego-shop-card { min-height: 360px; }
    .arteego-shop-card .arteego-product-card__head { padding: 22px 14px 0; }
    .arteego-shop-card .arteego-product-card__head h4 { font-size: clamp(20px, 5.5vw, 28px); }
    .arteego-shop-card .arteego-product-card__head p { font-size: 10px; }
    .arteego-shop-card .arteego-product-card__img-wrap { padding: 8px 12px; min-height: 140px; }
    .arteego-shop-card .arteego-product-card__img { max-width: 150px; }
    .arteego-shop-card .arteego-product-card__actions { padding: 0 !important; }
    .arteego-shop-card .arteego-product-card__add { font-size: 10px; padding: 9px 8px; letter-spacing: 0.1em; }
    .arteego-shop-card .arteego-product-card__view { font-size: 10px; padding: 9px 8px; letter-spacing: 0.1em; }
    .arteego-shop-card .arteego-product-card__sku,
    .arteego-shop-card .arteego-product-card__badge { font-size: 8px; padding: 3px 6px; }
    .arteego-shop-card__price { font-size: 13px; margin: 0 12px 10px; }
}
