/* =========================================
   MASUTA — Premium Minimal Dark Theme v2
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&display=swap');

:root {
    --bg: #080808;
    --bg-surface: #0c0c0c;
    --bg-elevated: #111111;

    --accent: #d4af37;
    --accent-dim: rgba(212, 175, 55, 0.08);

    --text: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.6);
    --text-tertiary: rgba(255, 255, 255, 0.3);

    --border: rgba(255, 255, 255, 0.06);

    --nav-bg: rgba(8, 8, 8, 0.4);
    --nav-bg-scrolled: rgba(8, 8, 8, 0.95);
    --logo-filter: none;
    --noise-opacity: 0.04;

    /* Glassmorphism Standard */
    --glass-bg: rgba(255, 255, 255, 0.04);
    --glass-bg-accent: rgba(212, 175, 55, 0.08);
    --glass-blur: blur(12px);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-border-accent: rgba(212, 175, 55, 0.3);
    --glass: blur(12px) saturate(1.5);
    /* This is the original glass effect, kept for compatibility */

    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Inter', -apple-system, sans-serif;
    --ease: cubic-bezier(0.2, 0, 0, 1);

    /* Hero specific */
    --hero-bg-start: #121212;
    --hero-bg-end: #080808;
    --hero-char-color: rgba(255, 255, 255, 0.02);
}

/* Light Theme */
body.light-theme {
    --bg: #fefefe;
    --bg-surface: #fefefe;
    --bg-elevated: #f4f4f4;

    --accent: #a67c00;
    --accent-dim: rgba(166, 124, 0, 0.08);

    --text: #000000;
    --text-secondary: rgba(0, 0, 0, 0.7);
    --text-tertiary: rgba(0, 0, 0, 0.4);

    --border: rgba(0, 0, 0, 0.08);

    --nav-bg: rgba(254, 254, 254, 0.6);
    --nav-bg-scrolled: rgba(254, 254, 254, 0.98);
    --logo-filter: brightness(0.9) contrast(1.1);
    --noise-opacity: 0.02;

    --glass-bg: rgba(0, 0, 0, 0.05);
    --glass-border: rgba(0, 0, 0, 0.08);

    /* Hero specific for light mode */
    --hero-bg-start: #f0f0f0;
    --hero-bg-end: #fefefe;
    --hero-char-color: rgba(0, 0, 0, 0.02);
}

/* Noise Texture Overlay */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("https://grainy-gradients.vercel.app/noise.svg");
    opacity: var(--noise-opacity);
    pointer-events: none;
    z-index: 999;
    backface-visibility: hidden;
    will-change: opacity;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: var(--font-sans);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    scrollbar-gutter: stable;
    transition: background-color 0.3s var(--ease), color 0.3s var(--ease);
}

body.body-lock {
    overflow: hidden !important;
    height: 100vh;
    height: 100dvh;
    overscroll-behavior: contain;
    position: relative;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
    color: inherit;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

input,
textarea,
select {
    font-family: inherit;
}

::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 4px;
}

/* ── Nav ─────────────────────────────────── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 clamp(20px, 5vw, 80px);
    height: 64px;
    background: var(--nav-bg);
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.4s var(--ease);
    will-change: transform, background-color, height;
}

.nav,
.hero__rating,
.hero__cta,
.gallery-nav,
.cart-drawer {
    backdrop-filter: var(--glass);
    -webkit-backdrop-filter: var(--glass);
}

.nav.scrolled {
    height: 56px;
    background: var(--nav-bg-scrolled);
}

.nav__brand {
    display: flex;
    align-items: center;
}

.nav__logo {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent);
    transition: color 0.3s var(--ease);
}

.nav__actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav__cart {
    position: relative;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    color: var(--text);
    height: 48px;
    padding: 0 20px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s var(--ease);
}

.nav__cart:hover {
    background: var(--bg-elevated);
    border-color: var(--border);
    transform: translateY(-1px);
}

.nav__cart-icon {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    stroke-width: 1.5;
    fill: none;
}

.nav__cart-count {
    display: none;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    background: var(--accent);
    color: var(--bg);
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 10px;
}

.nav__cart-count.visible {
    display: flex;
}

.nav__theme-toggle {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.3s var(--ease);
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    background: transparent;
}

.nav__theme-toggle:hover {
    background: var(--glass-bg);
    color: var(--accent);
}

.nav__theme-toggle svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    position: absolute;
    transition: all 0.4s var(--ease);
}

/* Default dark theme - moon visible, sun hidden */
.sun-icon {
    opacity: 0;
    transform: scale(0.5) rotate(90deg);
}

.moon-icon {
    opacity: 1;
    transform: scale(1) rotate(0);
}

/* Light theme - sun visible, moon hidden */
body.light-theme .sun-icon {
    opacity: 1;
    transform: scale(1) rotate(0);
}

body.light-theme .moon-icon {
    opacity: 0;
    transform: scale(0.5) rotate(-90deg);
}

/* ── Category Nav ────────────────────────── */
.cat-nav {
    position: sticky;
    top: 64px;
    left: 0;
    right: 0;
    z-index: 90;
    background: var(--nav-bg-scrolled);
    backdrop-filter: var(--glass);
    -webkit-backdrop-filter: var(--glass);
    border-bottom: 1px solid var(--border);
    padding: 0 16px;
    overflow-x: auto;
    scrollbar-width: none;
    transition: all 0.4s var(--ease);
}

.cat-nav::-webkit-scrollbar {
    display: none;
}

.cat-nav__wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 1280px;
    margin: 0 auto;
    height: 48px;
}

.cat-nav__link {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-secondary);
    padding: 8px 16px;
    border-radius: 20px;
    white-space: nowrap;
    transition: all 0.3s var(--ease);
    border: 1px solid transparent;
}

.cat-nav__link:hover {
    color: var(--text);
    background: var(--glass-bg);
}

.cat-nav__link.active {
    color: var(--bg);
    background: var(--accent);
    border-color: var(--accent);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
    transform: scale(1.05);
}

.nav.scrolled+.cat-nav {
    top: 56px;
}

/* ── Hero ─────────────────────────────────── */
/* ── Hero Section ────────────────────────── */
.hero {
    position: relative;
    min-height: clamp(500px, 90dvh, 100dvh);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 24px 40px;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.05) 0%, transparent 70%),
        linear-gradient(to bottom, var(--hero-bg-start), var(--hero-bg-end));
    overflow: hidden;
    transition: background 0.3s var(--ease);
}

.hero::after {
    content: "鮨";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 35vw;
    color: var(--hero-char-color);
    z-index: 1;
    pointer-events: none;
    font-family: var(--font-serif);
    transition: color 0.3s var(--ease);
    animation: floatingChar 15s ease-in-out infinite;
    opacity: 0.4;
}

@keyframes floatingChar {

    0%,
    100% {
        transform: translate(-50%, -50%) rotate(0deg) scale(1);
    }

    50% {
        transform: translate(-48%, -52%) rotate(2deg) scale(1.05);
    }
}

.logo-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    z-index: 2;
}

.hero__logo-container {
    margin-bottom: 24px;
    z-index: 2;
}

.hero__logo {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid var(--accent);
    padding: 4px;
    background: var(--bg-surface);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.5s var(--ease);
}

.hero:hover .hero__logo {
    transform: scale(1.05);
}

.hero__handle {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
    z-index: 2;
    padding: 6px 16px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
}

.hero__verified {
    flex-shrink: 0;
}

.hero__eyebrow {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
    z-index: 2;
}

.hero__title {
    font-family: var(--font-serif);
    font-size: clamp(2.8rem, 12vw, 6.5rem);
    font-weight: 300;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    line-height: 0.9;
    color: var(--text);
    margin-bottom: 24px;
    z-index: 2;
    max-width: 85vw;
    text-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

/* Rating badge in hero */
.hero__rating,
.hero__cta,
.gallery-nav,
.cart-drawer {
    backdrop-filter: var(--glass);
    -webkit-backdrop-filter: var(--glass);
}

.hero__rating {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--glass-bg);
    padding: 8px 16px;
    border-radius: 100px;
    border: 1px solid var(--glass-border);
    z-index: 2;
    transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
    max-width: fit-content;
}

.hero__stars {
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: var(--accent);
}

.hero__score {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--text);
}

.hero__reviews-count {
    font-size: 0.65rem;
    color: var(--text-tertiary);
    letter-spacing: 0.5px;
}

.hero__cta {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--text);
    margin-top: 24px;
    padding: 14px 28px;
    border: 1px solid var(--accent);
    text-decoration: none;
    transition: all 0.4s var(--ease);
    background: var(--glass-bg);
    z-index: 2;
}

.hero__cta:hover {
    background: var(--accent);
    color: var(--bg);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* ── Section ──────────────────────────────── */
.section {
    padding: 60px clamp(20px, 5vw, 80px);
    max-width: 1280px;
    margin: 0 auto;
}

.section__label {
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 6px;
    transition: color 0.3s var(--ease);
}

.section__title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 200;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 48px;
    color: var(--text);
    transition: color 0.3s var(--ease);
}

.section__divider {
    width: 32px;
    height: 1px;
    background: var(--accent);
    margin-bottom: 40px;
    transition: background 0.3s var(--ease);
}

/* ── Trust Badges ────────────────────────── */
.trust-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 40px 24px;
    max-width: 1280px;
    margin: 0 auto;
    flex-wrap: wrap;
    border-bottom: 1px solid var(--border);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 200px;
}

.trust-badge__info {
    display: flex;
    flex-direction: column;
}

.trust-badge__title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.trust-badge__desc {
    font-size: 0.7rem;
    color: var(--text-tertiary);
}

@media (max-width: 768px) {
    .trust-badges {
        gap: 24px;
        padding: 32px 20px;
    }

    .trust-badge {
        min-width: 100%;
        justify-content: flex-start;
    }
}

/* ── Menu List ────────────────────────────── */
.menu-list {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
}

/* ── App Style Menu ──────────────────────── */
.app-nav-header {
    margin-bottom: 32px;
}

.app-back-link {
    position: fixed;
    top: 24px;
    left: 24px;
    z-index: 1000;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text);
    text-decoration: none;
    padding: 10px 20px;
    background: var(--nav-bg-scrolled);
    backdrop-filter: var(--glass);
    -webkit-backdrop-filter: var(--glass);
    border: 1px solid var(--accent);
    border-radius: 100px;
    transition: all 0.3s var(--ease);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.app-back-link:hover {
    color: var(--bg);
    background: var(--accent);
    transform: translateX(-4px);
}

.app-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid var(--border);
    transition: all 0.4s var(--ease);
    cursor: pointer;
}

.app-item:hover {
    background: var(--bg-elevated);
    padding-left: 16px;
    padding-right: 16px;
}

.app-item__image-container {
    position: relative;
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
}

.app-item__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 2px solid var(--accent-dim);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s var(--ease);
}

.app-item:hover .app-item__image {
    transform: scale(1.1);
}

.app-item__badge {
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.5rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--bg);
    background: var(--accent);
    padding: 2px 8px;
    border-radius: 20px;
    white-space: nowrap;
    letter-spacing: 1px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.app-item__badge--new {
    background: var(--text-secondary);
}

.app-item__badge--popular {
    background: #e74c3c;
    /* A slightly more aggressive red for prominence */
}

.app-item__info {
    flex-grow: 1;
    min-width: 0;
}

.app-item__name {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 400;
    margin-bottom: 4px;
    color: var(--text);
}

.app-item__desc {
    font-size: 0.75rem;
    color: var(--text-secondary);
    line-height: 1.4;
    margin-bottom: 12px;
}

.app-item__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.app-item__price {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--accent);
}

.app-item__add {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--text);
    background: transparent;
    transition: all 0.3s var(--ease);
    cursor: pointer;
}

.app-item__add svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

.app-item__add:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--accent-dim);
}

.app-item__add:active {
    transform: scale(0.9);
}

.app-item__add.pulse {
    animation: pulse 0.35s var(--ease);
}

/* ── Gallery Section ──────────────────────── */
.gallery-section {
    padding-bottom: 0px;
}

.gallery-container {
    position: relative;
    max-width: 100%;
    margin: 40px 0 0;
}

.gallery-wrapper {
    display: flex;
    gap: 20px;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 20px;
    -webkit-overflow-scrolling: touch;
}

.gallery-wrapper::-webkit-scrollbar {
    display: none;
}

.gallery-img {
    flex: 0 0 55%;
    height: 245px;
    object-fit: cover;
    scroll-snap-align: center;
    border-radius: 24px;
    filter: brightness(1);
    cursor: zoom-in;
    transition: all 0.6s var(--ease);
}

.gallery-img:hover {
    filter: brightness(1) contrast(1);
    transform: scale(1.02);
}

.gallery-thumbnails {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
}

.thumb {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--text-tertiary);
    cursor: pointer;
    transition: all 0.3s var(--ease);
}

.thumb.active {
    background: var(--accent);
    transform: scale(1.5);
}

/* ── Gallery Nav Buttons ─────────────────── */
.gallery-nav {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s var(--ease);
}

.gallery-nav:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--bg);
}

.gallery-nav--prev {
    left: 20px;
}

.gallery-nav--next {
    right: 20px;
}

.gallery-nav svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
}

/* ── Promo Grid ───────────────────── */
.promo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 40px;
}

/* Promo items now use app-item block */

/* ── Reviews ──────────────────────────────── */
/* Carousel Nav & Dots (Shared) */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s var(--ease);
}

.carousel-nav:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--bg);
}

.carousel-nav--prev {
    left: -22px;
}

.carousel-nav--next {
    right: -22px;
}

.carousel-nav svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
}

.dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--text-tertiary);
    cursor: pointer;
    transition: all 0.3s var(--ease);
}

.dot.active {
    background: var(--accent);
    transform: scale(1.5);
}

.reviews {
    padding: 60px clamp(20px, 5vw, 80px);
    max-width: 1280px;
    margin: 0 auto;
}

.reviews__header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 40px;
}

.reviews__meta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.reviews__title {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--text);
    transition: color 0.3s var(--ease);
}

.reviews__source {
    font-size: 0.6rem;
    color: var(--text-tertiary);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.reviews__link {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 12px;
    border: 1px solid var(--accent-dim);
    border-radius: 100px;
    transition: all 0.3s var(--ease);
}

.reviews__link:hover {
    background: var(--accent-dim);
    border-color: var(--accent);
}

.reviews__carousel-container {
    position: relative;
    max-width: 100%;
}

.reviews__grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    gap: 20px;
    padding: 20px 0;
    -webkit-overflow-scrolling: touch;
}

.reviews__grid::-webkit-scrollbar {
    display: none;
}

.review-card {
    flex: 0 0 320px;
    scroll-snap-align: center;
    background: transparent;
    padding: 0 24px 0 24px;
    border-left: 2px solid var(--accent);
    transition: all 0.4s var(--ease);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.review-card:hover {
    padding-left: 32px;
    opacity: 0.8;
}

.review-card__stars {
    font-size: 0.6rem;
    letter-spacing: 3px;
    color: var(--accent);
    margin-bottom: 8px;
    opacity: 0.8;
}

.review-card__text {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 300;
    line-height: 1.4;
    color: var(--text);
    margin-bottom: 12px;
    letter-spacing: 0.01em;
    transition: color 0.3s var(--ease);
}

.review-card__author {
    font-size: 0.6rem;
    color: var(--text-tertiary);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
}

/* ── Location Section ─────────────────────── */
.location-section {
    padding: 100px 40px;
    display: flex;
    justify-content: center;
}

.location-card {
    max-width: 500px;
    text-align: center;
    padding: 48px;
    border: 1px solid var(--border);
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border-radius: 4px;
    transition: all 0.3s var(--ease);
}

.location-title {
    font-family: var(--font-serif);
    font-size: 2.4rem;
    font-weight: 200;
    letter-spacing: 0.04em;
    margin-bottom: 24px;
    text-transform: uppercase;
    color: var(--text);
    transition: color 0.3s var(--ease);
}

.location-address {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 24px;
    letter-spacing: 0.02em;
}

.location-map {
    width: 100%;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: border-color 0.3s var(--ease);
}

.location-map iframe {
    display: block;
    filter: var(--map-filter, none);
}

/* Map filter for dark/light mode */
body:not(.light-theme) .location-map {
    filter: invert(90%) hue-rotate(180deg) brightness(1.2);
}

body.light-theme .location-map {
    filter: none;
}

/* ── Lightbox ────────────────────────────── */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease);
}

.lightbox.open {
    opacity: 1;
    visibility: visible;
}

.lightbox__close {
    position: absolute;
    top: 30px;
    right: 30px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 10px;
    z-index: 10;
}

.lightbox__close svg {
    width: 32px;
    height: 32px;
    stroke: currentColor;
    stroke-width: 1.5;
}

.lightbox__content {
    max-width: 90%;
    max-height: 85%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.9);
    transition: transform 0.6s var(--ease);
}

.lightbox.open .lightbox__content {
    transform: scale(1);
}

.lightbox__content img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    object-fit: contain;
}

/* ── Cart Drawer ──────────────────────────── */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease);
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 440px;
    height: 100%;
    background: var(--bg-surface);
    backdrop-filter: var(--glass-blur);
    border-left: 1px solid var(--glass-border);
    z-index: 201;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.5s var(--ease);
    will-change: transform;
}

.cart-drawer.active {
    transform: translateX(0);
}

.cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 28px;
    border-bottom: 1px solid var(--border);
    flex-shrink: 0;
}

.cart-header__title {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: var(--text);
}

.cart-header__close {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: color 0.2s;
    background: transparent;
    border: none;
    cursor: pointer;
}

.cart-header__close svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
}

.cart-header__close:hover {
    color: var(--text);
}

.cart-body {
    flex: 1;
    overflow-y: auto;
    padding: 0 28px;
}

.cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--text-tertiary);
    text-align: center;
    padding: 60px 0;
}

.cart-empty__label {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Cart Line */
.cart-line {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
}

.cart-line__info {
    flex: 1;
    min-width: 0;
}

.cart-line__name {
    font-size: 0.82rem;
    font-weight: 500;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--text);
}

.cart-line__price {
    font-size: 0.7rem;
    color: var(--text-secondary);
}

.cart-line__controls {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.cart-line__btn {
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: 50%;
    font-size: 0.8rem;
    color: var(--text-secondary);
    transition: all 0.2s var(--ease);
    background: transparent;
    cursor: pointer;
}

.cart-line__btn:hover {
    border-color: var(--text-secondary);
    color: var(--text);
}

.cart-line__qty {
    font-size: 0.82rem;
    font-weight: 500;
    min-width: 14px;
    text-align: center;
    color: var(--text);
}

/* Cart Footer */
.cart-footer {
    padding: 20px 28px;
    border-top: 1px solid var(--border);
    flex-shrink: 0;
}

.cart-footer__total {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 20px;
}

.cart-footer__label {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.cart-footer__amount {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--text);
}

/* ── Cart Recommendations ────────────────── */
.cart-recommendations {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    animation: fadeIn 0.4s var(--ease);
}

.cart-rec__title {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.cart-rec__list {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 12px;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
}

.cart-rec__list::-webkit-scrollbar {
    height: 6px;
}

.cart-rec__list::-webkit-scrollbar-track {
    background: var(--bg-surface);
}

.cart-rec__list::-webkit-scrollbar-thumb {
    background: var(--text-tertiary);
    border-radius: 6px;
}

.cart-rec__list::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

.cart-rec-item {
    flex: 0 0 160px;
    scroll-snap-align: start;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s var(--ease);
}

.cart-rec-item:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
}

.cart-rec-item__image-container {
    width: 60px;
    height: 60px;
    margin-bottom: 8px;
}

.cart-rec-item__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.cart-rec-item__name {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}

.cart-rec-item__price {
    display: block;
    font-size: 0.7rem;
    color: var(--accent);
    margin-bottom: 8px;
}

.cart-rec-item__add {
    width: 28px;
    height: 28px;
    background: var(--glass-bg);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.2s;
}

.cart-rec-item:hover .cart-rec-item__add {
    background: var(--accent);
    color: var(--bg);
    border-color: var(--accent);
}

/* Steps indicator */
.cart-steps {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

.cart-step-dot {
    flex: 1;
    height: 2px;
    background: var(--border);
    transition: background 0.3s var(--ease);
}

.cart-step-dot.active {
    background: var(--accent);
}

/* Step views */
.cart-step {
    display: none;
}

.cart-step.active {
    display: block;
    animation: fadeIn 0.3s var(--ease);
}

/* Delivery choice */
.delivery-options {
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: var(--border);
    margin-bottom: 20px;
}

.delivery-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    cursor: pointer;
    transition: all 0.3s var(--ease);
    user-select: none;
}

.delivery-option:hover {
    background: var(--bg-elevated);
}

.delivery-option.selected {
    background: var(--bg-elevated);
}

.delivery-option__label {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: var(--text);
}

.delivery-option__check {
    width: 18px;
    height: 18px;
    border: 1px solid var(--border);
    border-radius: 50%;
    transition: all 0.2s var(--ease);
    position: relative;
}

.delivery-option.selected .delivery-option__check {
    border-color: var(--accent);
}

.delivery-option.selected .delivery-option__check::after {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
}

/* Form fields */
.form-group {
    margin-bottom: 14px;
}

.form-label {
    display: block;
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.form-input {
    width: 100%;
    padding: 12px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border);
    color: var(--text);
    font-size: 0.85rem;
    outline: none;
    transition: border-color 0.3s var(--ease);
}

.form-input:focus {
    border-color: var(--accent);
}

.form-input::placeholder {
    color: var(--text-tertiary);
}

textarea.form-input {
    resize: none;
    min-height: 60px;
    line-height: 1.5;
}

/* Payment option */
.payment-options {
    display: flex;
    gap: 1px;
    background: var(--border);
    margin-bottom: 20px;
}

.payment-option {
    flex: 1;
    padding: 14px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    text-align: center;
    cursor: pointer;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-secondary);
    transition: all 0.3s var(--ease);
    user-select: none;
}

.payment-option:hover {
    background: var(--bg-elevated);
}

.payment-option.selected {
    background: var(--bg-elevated);
    color: var(--accent);
}

/* Cart action buttons */
.cart-btn {
    width: 100%;
    padding: 14px;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s var(--ease);
    cursor: pointer;
    border: none;
}

.cart-btn--primary {
    background: var(--text);
    color: var(--bg);
    border: none;
}

.cart-btn--secondary {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border);
}

.cart-btn--primary:hover:not(:disabled) {
    background: #b89a6e;
    transform: translateY(-1px);
}

.cart-btn--primary:disabled {
    opacity: 0.25;
    pointer-events: none;
    cursor: not-allowed;
}

.cart-btn--whatsapp {
    background: var(--accent);
    color: var(--bg);
}

.cart-btn--whatsapp:hover:not(:disabled) {
    background: #b89a6e;
    transform: translateY(-1px);
}

.cart-btn--whatsapp:disabled {
    opacity: 0.25;
    pointer-events: none;
    cursor: not-allowed;
}

.cart-btn--whatsapp svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.cart-btn--back {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border);
    margin-bottom: 8px;
}

.cart-btn--back:hover {
    border-color: var(--text-secondary);
    color: var(--text);
}

/* ── Footer ───────────────────────────────── */
.footer {
    text-align: center;
    padding: 50px 24px 32px;
    border-top: 1px solid var(--border);
}

.footer__brand {
    font-family: var(--font-serif);
    font-size: 0.95rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 10px;
}

.footer__text {
    font-size: 0.65rem;
    color: var(--text-tertiary);
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.footer__link {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s var(--ease);
}

.footer__link:hover {
    color: var(--accent);
}

/* ── Skeleton Loading ────────────────────── */
.skeleton {
    background: linear-gradient(90deg, var(--bg-surface) 25%, var(--bg-elevated) 50%, var(--bg-surface) 75%);
    background-size: 200% 100%;
    animation: skeletonPulse 1.5s infinite linear;
}

@keyframes skeletonPulse {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.img-loading {
    filter: blur(5px);
    opacity: 0.3;
}

/* ── Favorites ───────────────────────────── */
.favorites-section {
    margin-bottom: 60px;
    animation: fadeIn 0.5s var(--ease);
}

/* .app-item__fav and animations removed */

/* ── Haptic feedback visual splash ───────── */
.haptic-splash {
    animation: hapticSplash 0.4s var(--ease);
}

@keyframes hapticSplash {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 var(--accent);
    }

    50% {
        transform: scale(0.95);
        box-shadow: 0 0 0 10px transparent;
    }

    100% {
        transform: scale(1);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* ── Reveal Animation ────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s var(--ease);
    will-change: transform, opacity;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Responsive ───────────────────────────── */
@media (max-width: 640px) {
    .nav {
        padding: 0 16px;
        height: 56px;
    }

    .nav__logo {
        font-size: 1.15rem;
        letter-spacing: 3px;
    }

    .nav__cart {
        padding: 0 16px;
        height: 44px;
        gap: 8px;
    }

    .nav__cart>span:not(.nav__cart-count) {
        display: none;
    }

    .section {
        padding: 48px 16px;
    }

    .reviews {
        padding: 48px 16px;
    }

    .app-item {
        padding: 16px 0;
        gap: 16px;
    }


    .app-item__image-container {
        width: 64px;
        height: 64px;
        border-radius: 50%;
        overflow: hidden;
    }


    .app-item__name {
        font-size: 1.05rem;
    }

    .app-item__desc {
        -webkit-line-clamp: 2;
        line-clamp: 2;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        overflow: hidden;
        margin-bottom: 8px;
    }

    .promo-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .reviews__grid {
        grid-template-columns: 1fr;
    }

    .reviews__header {
        flex-direction: column;
        gap: 8px;
        align-items: center;
        text-align: center;
    }

    .cart-drawer {
        width: 100%;
        max-width: 100%;
    }

    .cart-body {
        padding: 0 20px;
    }

    .cart-header {
        padding: 18px 20px;
    }

    .cart-footer {
        padding: 20px 20px;
    }

    .hero {
        padding: 60px 20px 40px;
        min-height: 100dvh;
        gap: 12px;
    }

    .hero__logo {
        width: 100px;
        height: 100px;
    }

    .hero__title {
        font-size: clamp(3rem, 18vw, 4.5rem);
        margin-bottom: 16px;
    }

    .hero__rating {
        padding: 6px 12px;
        gap: 8px;
    }

    .hero__score {
        font-size: 1rem;
    }

    .hero__cta {
        margin-top: 12px;
        width: 100%;
        max-width: 280px;
        padding: 16px;
    }

    .gallery-wrapper {
        padding: 0 20px 20px;
        scroll-padding: 0 20px;
    }

    .gallery-img {
        flex: 0 0 85%;
        height: 280px;
        scroll-snap-align: center;
    }

    .gallery-nav {
        width: 36px;
        height: 36px;
        top: 40%;
    }

    .gallery-nav--prev {
        left: 10px;
    }

    .gallery-nav--next {
        right: 10px;
    }

    .lightbox__close {
        top: 20px;
        right: 20px;
    }

    .lightbox__content {
        max-width: 95%;
    }

    .location-section {
        padding: 60px 20px;
    }

    .location-card {
        padding: 32px 20px;
    }

    .location-title {
        font-size: 2rem;
    }

    /* Product Detail Mobile Optimization */
    .p-detail__content {
        padding: 12px 14px 10px;
        max-height: 92dvh;
        overflow-y: auto;
        display: flex;
        flex-direction: column;
    }

    .p-detail__close {
        top: 8px;
        right: 8px;
        background: rgba(0, 0, 0, 0.5);
        /* Better visibility on top of images */
    }

    .p-detail__image-container {
        width: 70px;
        height: 70px;
        border-width: 2px;
        flex-shrink: 0;
        margin-top: 5px;
    }

    .p-detail__body {
        gap: 8px;
    }

    .p-detail__title {
        font-size: 1.1rem;
        margin-bottom: 2px;
    }

    .p-detail__desc {
        font-size: 0.75rem;
        margin-bottom: 8px;
        -webkit-line-clamp: 3;
        line-clamp: 3;
    }

    .p-detail__price-row {
        margin-bottom: 12px;
        gap: 16px;
    }

    .p-detail__price {
        font-size: 1.25rem;
    }

    .qty-control {
        padding: 4px 10px;
        gap: 10px;
    }

    .qty-btn {
        width: 24px;
        height: 24px;
    }

    .p-detail__footer {
        margin-top: 12px;
        gap: 16px;
        flex-direction: row;
        justify-content: center;
    }

    .p-detail__btn-circle {
        width: 40px;
        height: 40px;
    }

    .p-detail__btn-circle svg {
        width: 18px;
        height: 18px;

    }
}

@media (min-width: 641px) and (max-width: 1024px) {
    .promo-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .reviews__grid {
        padding: 0 16px;
    }

    .review-card {
        flex: 0 0 280px;
    }

    .carousel-nav {
        display: none;
    }
}

/* Accessibility - focus styles */
button:focus-visible,
a:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

/* Loading state for buttons */
.cart-btn--whatsapp:disabled,
.cart-btn--primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ── Product Detail Modal ────────────────── */
.p-detail {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: flex;
    align-items: flex-end;
    visibility: hidden;
    transition: visibility 0.4s;
}

.p-detail.active {
    visibility: visible;
}

.p-detail__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    opacity: 0;
    transition: opacity 0.4s var(--ease);
}

.p-detail.active .p-detail__overlay {
    opacity: 1;
}

.p-detail__content {
    position: relative;
    width: 100%;
    background: var(--bg-surface);
    border-top: 1px solid var(--border);
    border-radius: 24px 24px 0 0;
    padding: 32px 20px 20px;
    transform: translateY(100%);
    transition: transform 0.5s var(--ease);
    max-height: 90vh;
    overflow-y: auto;
}

.p-detail.active .p-detail__content {
    transform: translateY(0);
}

.p-detail__close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 32px;
    height: 32px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
}

.p-detail__body {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
}

.p-detail__image-container {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--accent-dim);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.p-detail__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.p-detail__info {
    width: 100%;
}

.p-detail__title {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 300;
    color: var(--text);
    margin-bottom: 8px;
}

.p-detail__desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 32px;
}

.p-detail__price-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: 32px;
}

.p-detail__price {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--accent);
}

.qty-control {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--bg-elevated);
    padding: 8px 16px;
    border-radius: 100px;
    border: 1px solid var(--border);
}

.qty-btn {
    background: transparent;
    border: none;
    color: var(--text);
    font-size: 1.2rem;
    width: 30px;
    height: 30px;
    cursor: pointer;
    transition: color 0.3s;
}

.qty-btn:hover {
    color: var(--accent);
}

.qty-val {
    font-size: 1.1rem;
    font-weight: 600;
    min-width: 20px;
    color: var(--text);
}

.p-detail__footer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    margin-top: 32px;
}

.p-detail__btn-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text);
    transition: all 0.3s var(--ease);
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.p-detail__btn-circle:hover {
    background: var(--bg-elevated);
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.p-detail__btn-circle:active {
    transform: scale(0.95);
}

.p-detail__btn-circle--add {
    background: var(--accent);
    color: var(--bg);
    border-color: var(--accent);
}

.p-detail__btn-circle--add:hover {
    background: var(--accent);
    color: var(--bg);
    filter: brightness(1.1);
}

.p-detail__btn-circle--checkout {
    background: var(--text);
    color: var(--bg);
    border-color: var(--text);
}

.p-detail__btn-circle--checkout:hover {
    background: var(--text);
    color: var(--bg);
    filter: brightness(0.9);
}

.p-detail__btn-circle svg {
    width: 28px;
    height: 28px;
}

@media (min-width: 768px) {
    .p-detail__content {
        max-width: 500px;
        margin: 0 auto;
        border-radius: 32px;
        transform: translateY(120%);
    }

    .p-detail {
        align-items: center;
    }
}

.p-detail__btn-circle--add.added {
    background: #2ecc71 !important;
    border-color: #2ecc71 !important;
    color: white !important;
    animation: successPop 0.4s var(--ease);
}

@keyframes successPop {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
    }

    100% {
        transform: scale(1);
    }
}