/* ─── PCPAUSE.DE — MAIN STYLESHEET v2 ─── */
:root {
  --cream: #FAF8F4;
  --white: #FFFFFF;
  --ink: #1A1714;
  --ink-light: #5C5651;
  --ink-muted: #9C978F;
  --accent: #D4521A;
  --accent-light: #F5E8E0;
  --accent-pale: #FDF3EE;
  --gold: #C9970A;
  --gold-light: #FDF6DC;
  --border: #E8E3DB;
  --border-dark: #D0C9BE;
  --green: #2A7A4B;
  --green-light: #E6F4EC;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 4px rgba(26,23,20,.06);
  --shadow-md: 0 4px 20px rgba(26,23,20,.10);
  --shadow-lg: 0 12px 48px rgba(26,23,20,.14);
  --nav-h: 60px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: 'DM Sans', sans-serif; background: var(--cream); color: var(--ink); line-height: 1.6; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ─── NAV ─── */
.main-nav { background: var(--white); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 100; }
.nav-inner { max-width: 1240px; margin: 0 auto; padding: 0 1rem; display: flex; align-items: center; gap: .75rem; height: var(--nav-h); }
.logo { font-family: 'DM Serif Display', serif; font-size: 20px; color: var(--ink); display: flex; align-items: center; gap: 4px; white-space: nowrap; flex-shrink: 0; }
.logo span { color: var(--accent); }
.logo-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); display: inline-block; }
.nav-cats { display: flex; gap: 2px; flex: 1; overflow: hidden; }
.nav-cat { font-size: 13px; font-weight: 500; color: var(--ink-light); padding: 5px 10px; border-radius: var(--radius-sm); white-space: nowrap; transition: all .15s; }
.nav-cat:hover { background: var(--cream); color: var(--ink); }
.nav-search-wrap { flex-shrink: 0; }
.nav-search-form { display: flex; align-items: center; gap: 7px; background: var(--cream); border: 1px solid var(--border); border-radius: 24px; padding: 6px 13px; }
.nav-search-form svg { width: 14px; height: 14px; color: var(--ink-muted); flex-shrink: 0; }
.nav-search-form input { border: none; background: none; outline: none; font-size: 13px; font-family: inherit; width: 150px; color: var(--ink); }
.nav-actions { display: flex; align-items: center; gap: 7px; flex-shrink: 0; }
.nav-avatar { width: 32px; height: 32px; border-radius: 50%; background: var(--accent); color: white; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; }
.btn-ghost-sm { padding: 6px 13px; border-radius: var(--radius-sm); font-size: 13px; font-weight: 500; border: 1px solid var(--border-dark); background: var(--white); color: var(--ink); transition: all .15s; display: inline-block; }
.btn-ghost-sm:hover { background: var(--cream); }
.btn-solid-sm { padding: 6px 14px; border-radius: var(--radius-sm); font-size: 13px; font-weight: 600; border: none; background: var(--accent); color: white; transition: all .15s; display: inline-block; }
.btn-solid-sm:hover { background: #B8431A; }
.nav-burger { display: none; background: none; border: none; font-size: 22px; padding: 4px; color: var(--ink); }
.mobile-nav { display: none; flex-direction: column; border-top: 1px solid var(--border); background: var(--white); }
.mobile-nav a { padding: 13px 1.25rem; font-size: 15px; border-bottom: 1px solid var(--border); display: block; }
.mobile-nav.open { display: flex; }

/* ─── MESSAGES ─── */
.messages-bar { max-width: 1240px; margin: .75rem auto 0; padding: 0 1rem; }
.msg { padding: 10px 14px; border-radius: var(--radius-sm); font-size: 14px; margin-bottom: 6px; }
.msg-error, .msg-warning { background: #FDECEA; color: #B71C1C; border: 1px solid #F5C6CB; }
.msg-success, .msg-info { background: var(--green-light); color: var(--green); border: 1px solid #A8D5B8; }

/* ─── LAYOUT ─── */
.container { max-width: 1240px; margin: 0 auto; padding: 0 1rem 4rem; }
.breadcrumb { max-width: 1240px; margin: 0 auto; padding: .75rem 1rem; display: flex; gap: 6px; align-items: center; font-size: 13px; color: var(--ink-muted); flex-wrap: wrap; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .sep { color: var(--border-dark); }

/* ─── HERO ─── */
.hero { background: var(--white); border-bottom: 1px solid var(--border); padding: 3rem 1rem 2.5rem; text-align: center; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 60% at 50% 0%, #FDF3EE 0%, transparent 70%); pointer-events: none; }
.hero-inner { max-width: 620px; margin: 0 auto; position: relative; }
.hero-badge { display: inline-flex; align-items: center; gap: 5px; background: var(--accent-light); color: var(--accent); font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 20px; margin-bottom: 1rem; letter-spacing: .5px; text-transform: uppercase; }
.hero-title { font-family: 'DM Serif Display', serif; font-size: clamp(1.8rem, 5vw, 3rem); line-height: 1.15; letter-spacing: -1px; color: var(--ink); margin-bottom: .9rem; }
.hero-title em { font-style: italic; color: var(--accent); }
.hero-sub { font-size: 15px; color: var(--ink-light); max-width: 480px; margin: 0 auto 1.75rem; line-height: 1.7; }
.hero-search { display: flex; max-width: 460px; margin: 0 auto; background: var(--white); border: 1.5px solid var(--border-dark); border-radius: 50px; overflow: hidden; box-shadow: var(--shadow-md); }
.hero-search input { flex: 1; border: none; outline: none; padding: 12px 18px; font-size: 15px; font-family: inherit; background: transparent; color: var(--ink); min-width: 0; }
.hero-search button { background: var(--accent); color: white; border: none; padding: 10px 20px; font-size: 14px; font-weight: 600; border-radius: 0 50px 50px 0; transition: background .15s; white-space: nowrap; }
.hero-search button:hover { background: #B8431A; }
.hero-stats { display: flex; gap: 2rem; justify-content: center; margin-top: 2rem; flex-wrap: wrap; }
.hero-stat { text-align: center; }
.hero-stat-num { font-family: 'DM Serif Display', serif; font-size: 24px; color: var(--ink); display: block; }
.hero-stat-label { font-size: 11px; color: var(--ink-muted); }

/* ─── CATEGORIES ─── */
.cat-pills-row { display: flex; gap: 8px; flex-wrap: wrap; margin: 1.75rem 0 1.25rem; }
.cat-pill { display: flex; align-items: center; gap: 6px; padding: 7px 14px; border-radius: 50px; border: 1px solid var(--border); background: var(--white); font-size: 13px; font-weight: 500; color: var(--ink-light); transition: all .15s; }
.cat-pill:hover, .cat-pill.active { border-color: var(--accent); color: var(--accent); background: var(--accent-light); }

/* ─── FEATURED BANNER ─── */
.featured-banner { background: var(--ink); border-radius: var(--radius-lg); padding: 2rem 2.5rem; display: flex; align-items: center; gap: 2rem; margin-bottom: 2.5rem; position: relative; overflow: hidden; }
.featured-banner::before { content: ''; position: absolute; right: -50px; top: -50px; width: 220px; height: 220px; border-radius: 50%; background: var(--accent); opacity: .15; pointer-events: none; }
.featured-text { flex: 1; min-width: 0; }
.featured-tag { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--accent); margin-bottom: 8px; }
.featured-title { font-family: 'DM Serif Display', serif; font-size: clamp(1.3rem, 3vw, 1.8rem); color: white; line-height: 1.2; margin-bottom: 6px; }
.featured-sub { font-size: 13px; color: rgba(255,255,255,.55); margin-bottom: 1.1rem; }
.btn-white { display: inline-block; padding: 9px 20px; border-radius: var(--radius-sm); font-size: 13px; font-weight: 600; background: white; color: var(--ink); transition: all .15s; }
.btn-white:hover { background: var(--cream); }
.featured-img img { max-width: 160px; border-radius: var(--radius-md); position: relative; z-index: 1; }
.featured-emoji { font-size: 70px; position: relative; z-index: 1; flex-shrink: 0; }

/* ─── SECTION HEADER ─── */
.section-header { display: flex; align-items: baseline; gap: .75rem; margin-bottom: 1.25rem; flex-wrap: wrap; }
.section-title { font-family: 'DM Serif Display', serif; font-size: 20px; color: var(--ink); letter-spacing: -.3px; }
.section-sub { font-size: 13px; color: var(--ink-muted); }
.see-all { margin-left: auto; font-size: 13px; font-weight: 500; color: var(--accent); }
.see-all:hover { text-decoration: underline; }

/* ─── PRODUCT GRID ─── */
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1rem; }
.product-grid-sm { grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); }
.product-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: all .2s; box-shadow: var(--shadow-sm); }
.product-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--border-dark); }
.product-card-link { display: block; }
.product-card-img { width: 100%; height: 170px; overflow: hidden; background: var(--cream); display: flex; align-items: center; justify-content: center; }
.product-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.product-card:hover .product-card-img img { transform: scale(1.04); }
.product-emoji { font-size: 48px; }
.product-card-body { padding: .85rem .9rem .9rem; }
.product-card-cat { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: var(--accent); margin-bottom: 2px; }
.product-card-name { font-size: 14px; font-weight: 600; color: var(--ink); margin-bottom: 2px; line-height: 1.3; }
.product-card-brand { font-size: 12px; color: var(--ink-muted); margin-bottom: 6px; }
.stars-row { display: flex; align-items: center; gap: 4px; }
.stars { color: var(--gold); font-size: 12px; letter-spacing: 1px; }
.stars-num { font-size: 12px; font-weight: 600; color: var(--ink); }
.stars-count { font-size: 11px; color: var(--ink-muted); }
.product-card-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 8px; padding-top: 8px; border-top: 1px solid var(--border); }
.product-price { font-size: 15px; font-weight: 700; color: var(--ink); }
.check-btn { font-size: 11px; font-weight: 600; color: var(--accent); background: var(--accent-light); border: none; padding: 4px 10px; border-radius: 20px; transition: all .15s; }
.product-card:hover .check-btn { background: var(--accent); color: white; }
.empty-note { color: var(--ink-muted); font-size: 14px; padding: 2rem 0; }

/* ─── REVIEW FEED ─── */
.review-feed { display: flex; flex-direction: column; gap: .9rem; }
.review-feed-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 1.1rem; display: flex; gap: 1rem; }
.review-feed-thumb { width: 70px; height: 70px; border-radius: var(--radius-sm); overflow: hidden; background: var(--cream); flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.review-feed-thumb img { width: 100%; height: 100%; object-fit: cover; }
.feed-emoji { font-size: 28px; }
.review-feed-body { flex: 1; min-width: 0; }
.review-feed-product { font-size: 11px; color: var(--accent); font-weight: 700; display: block; margin-bottom: 1px; text-transform: uppercase; letter-spacing: .4px; }
.review-feed-title { font-size: 14px; font-weight: 600; color: var(--ink); margin: 3px 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.review-feed-text { font-size: 13px; color: var(--ink-light); line-height: 1.5; margin-bottom: 7px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.review-feed-meta { display: flex; align-items: center; gap: 7px; }
.chip-avatar { width: 22px; height: 22px; border-radius: 50%; background: var(--accent-light); color: var(--accent); display: inline-flex; align-items: center; justify-content: center; font-size: 9px; font-weight: 700; flex-shrink: 0; }
.chip-name { font-size: 12px; color: var(--ink-muted); }

/* ─── PRODUCT PAGE ─── */
.product-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin-bottom: 3rem; padding-top: .75rem; }
.gallery-col { position: sticky; top: 70px; height: fit-content; }
.header-banner-img { margin-bottom: 10px; border-radius: var(--radius-md); overflow: hidden; }
.header-banner-img img { width: 100%; }
.gallery-main { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); aspect-ratio: 1; display: flex; align-items: center; justify-content: center; overflow: hidden; position: relative; margin-bottom: 10px; cursor: zoom-in; }
.gallery-main img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.gallery-main:hover img { transform: scale(1.03); }
.gallery-emoji { font-size: 80px; }
.gallery-badge { position: absolute; top: 12px; left: 12px; background: var(--accent); color: white; font-size: 10px; font-weight: 700; padding: 3px 9px; border-radius: 20px; text-transform: uppercase; letter-spacing: .5px; }
.gallery-thumbs { display: flex; gap: 8px; flex-wrap: wrap; }
.gallery-thumb { width: 62px; height: 62px; border-radius: var(--radius-sm); border: 2px solid var(--border); cursor: pointer; overflow: hidden; display: flex; align-items: center; justify-content: center; background: var(--white); transition: border-color .15s; flex-shrink: 0; }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumb.active, .gallery-thumb:hover { border-color: var(--accent); }
.product-cat-label { font-size: 11px; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: .8px; margin-bottom: 6px; }
.product-name { font-family: 'DM Serif Display', serif; font-size: clamp(1.6rem, 3vw, 2rem); color: var(--ink); line-height: 1.15; letter-spacing: -.5px; margin-bottom: 4px; }
.product-brand { font-size: 14px; color: var(--ink-muted); margin-bottom: 1rem; }
.rating-box { display: flex; align-items: center; gap: 1rem; padding: .9rem 1.1rem; background: var(--gold-light); border-radius: var(--radius-md); margin-bottom: 1.25rem; border: 1px solid #EDD87A; flex-wrap: wrap; gap: .75rem; }
.rating-big { font-family: 'DM Serif Display', serif; font-size: 2.6rem; color: var(--ink); line-height: 1; }
.rating-mid { }
.rating-stars { color: var(--gold); font-size: 18px; letter-spacing: 2px; }
.rating-count { font-size: 12px; color: var(--ink-light); }
.rating-bars { flex: 2; min-width: 130px; display: flex; flex-direction: column; gap: 3px; }
.bar-row { display: flex; align-items: center; gap: 6px; font-size: 11px; color: var(--ink-muted); }
.bar-label { width: 18px; text-align: right; flex-shrink: 0; }
.bar-track { flex: 1; height: 5px; background: #E8E3DB; border-radius: 3px; overflow: hidden; }
.bar-fill { height: 100%; background: var(--gold); border-radius: 3px; transition: width .6s ease; }
.bar-pct { width: 26px; flex-shrink: 0; }
.product-desc { font-size: 15px; color: var(--ink-light); line-height: 1.75; margin-bottom: 1.25rem; }
.specs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; margin-bottom: 1.5rem; }
.spec-item { background: var(--cream); border-radius: var(--radius-sm); padding: 8px 11px; }
.spec-label { font-size: 10px; color: var(--ink-muted); text-transform: uppercase; letter-spacing: .5px; }
.spec-val { font-size: 13px; font-weight: 600; color: var(--ink); margin-top: 2px; }
.product-cta { display: flex; align-items: center; gap: .75rem; margin-bottom: .9rem; flex-wrap: wrap; }
.product-price-big { font-size: 22px; font-weight: 700; color: var(--ink); }
.btn-go-dealer { display: inline-flex; align-items: center; gap: 6px; padding: 13px 24px; border-radius: var(--radius-md); font-size: 15px; font-weight: 700; background: var(--accent); color: white; transition: all .15s; border: none; }
.btn-go-dealer:hover { background: #B8431A; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.trust-note { font-size: 13px; color: var(--green); background: var(--green-light); border-radius: var(--radius-sm); padding: 8px 12px; }

/* ─── REVIEWS SECTION ─── */
.reviews-section { margin-bottom: 3rem; }
.reviews-top { display: flex; align-items: center; gap: .75rem; margin-bottom: 1.1rem; flex-wrap: wrap; padding-bottom: 1rem; border-bottom: 1px solid var(--border); }
.reviews-title { font-family: 'DM Serif Display', serif; font-size: 20px; color: var(--ink); }
.reviews-filter { display: flex; gap: 5px; flex-wrap: wrap; margin-left: auto; }
.filter-chip { padding: 4px 12px; border-radius: 20px; font-size: 12px; font-weight: 500; border: 1px solid var(--border); background: var(--white); color: var(--ink-light); transition: all .15s; }
.filter-chip.active, .filter-chip:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-light); }
.write-prompt { background: var(--accent-pale); border: 1px solid #F0C5AE; border-radius: var(--radius-md); padding: 1rem 1.25rem; display: flex; align-items: center; gap: 1rem; margin-bottom: 1.25rem; flex-wrap: wrap; }
.write-prompt p { font-size: 14px; color: var(--ink-light); flex: 1; min-width: 180px; }
.write-prompt a { color: var(--accent); font-weight: 600; }
.btn-accent { padding: 8px 16px; border-radius: var(--radius-sm); font-size: 13px; font-weight: 600; border: none; background: var(--accent); color: white; transition: all .15s; white-space: nowrap; }
.btn-accent:hover { background: #B8431A; }

/* Review write form */
.review-form-wrap { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.5rem; margin-bottom: 1.5rem; }
.form-title { font-family: 'DM Serif Display', serif; font-size: 18px; color: var(--ink); margin-bottom: 1.1rem; }
.star-picker-wrap { display: flex; align-items: center; gap: 10px; margin-bottom: .9rem; flex-wrap: wrap; }
.star-picker { display: flex; gap: 3px; }
.star-btn { font-size: 30px; color: var(--border-dark); background: none; border: none; padding: 0; line-height: 1; transition: color .1s; touch-action: manipulation; }
.star-btn.lit { color: var(--gold); }
.form-group { margin-bottom: .9rem; }
.form-label { display: block; font-size: 11px; font-weight: 700; color: var(--ink); margin-bottom: 5px; text-transform: uppercase; letter-spacing: .5px; }
.form-input { width: 100%; padding: 10px 12px; border-radius: var(--radius-sm); border: 1.5px solid var(--border); font-size: 14px; font-family: inherit; color: var(--ink); background: var(--cream); outline: none; transition: border-color .15s; -webkit-appearance: none; }
.form-input:focus { border-color: var(--accent); background: var(--white); }
.form-textarea { width: 100%; padding: 10px 12px; border-radius: var(--radius-sm); border: 1.5px solid var(--border); font-size: 14px; font-family: inherit; color: var(--ink); background: var(--cream); outline: none; transition: border-color .15s; resize: vertical; min-height: 90px; -webkit-appearance: none; }
.form-textarea:focus { border-color: var(--accent); background: var(--white); }
.form-hint { font-size: 11px; color: var(--ink-muted); margin-top: 4px; }
.btn-primary { display: inline-block; padding: 11px 20px; border-radius: var(--radius-sm); font-size: 14px; font-weight: 700; border: none; background: var(--accent); color: white; transition: all .15s; }
.btn-primary:hover { background: #B8431A; }
.btn-full { width: 100%; padding: 13px; border-radius: var(--radius-sm); font-size: 15px; font-weight: 700; border: none; background: var(--accent); color: white; transition: all .15s; margin-top: .4rem; -webkit-appearance: none; touch-action: manipulation; }
.btn-full:hover { background: #B8431A; }

/* ─── PRODUCT SEARCH DROPDOWN ─── */
.product-search-wrap { position: relative; }
.product-dropdown { position: absolute; top: calc(100% + 4px); left: 0; right: 0; background: var(--white); border: 1.5px solid var(--border-dark); border-radius: var(--radius-md); box-shadow: var(--shadow-lg); z-index: 50; max-height: 280px; overflow-y: auto; display: none; }
.product-dropdown.open { display: block; }
.product-dropdown-item { display: flex; align-items: center; gap: 10px; padding: 10px 12px; cursor: pointer; border-bottom: 1px solid var(--border); transition: background .1s; }
.product-dropdown-item:last-child { border-bottom: none; }
.product-dropdown-item:hover, .product-dropdown-item.selected { background: var(--accent-pale); }
.product-dropdown-thumb { width: 40px; height: 40px; border-radius: var(--radius-sm); overflow: hidden; background: var(--cream); flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 18px; }
.product-dropdown-thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-dropdown-name { font-size: 14px; font-weight: 500; color: var(--ink); }
.product-dropdown-cat { font-size: 11px; color: var(--ink-muted); }
.product-dropdown-empty { padding: 14px 12px; font-size: 13px; color: var(--ink-muted); text-align: center; }

/* ─── REVIEWS MASONRY ─── */
.reviews-masonry { columns: 2; column-gap: 1rem; margin-bottom: 1.5rem; }
.review-card { break-inside: avoid; margin-bottom: 1rem; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; cursor: pointer; transition: all .2s; }
.review-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.review-card-img { width: 100%; height: 170px; overflow: hidden; }
.review-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.review-card:hover .review-card-img img { transform: scale(1.04); }
.review-card-body { padding: .85rem .9rem .9rem; }
.review-card-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 4px; }
.review-stars { color: var(--gold); font-size: 13px; letter-spacing: 1px; }
.verified-badge { font-size: 10px; font-weight: 700; color: var(--green); background: var(--green-light); padding: 2px 7px; border-radius: 10px; }
.review-card-title { font-size: 13px; font-weight: 600; color: var(--ink); margin-bottom: 4px; line-height: 1.3; }
.review-card-text { font-size: 12px; color: var(--ink-light); line-height: 1.5; margin-bottom: 8px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.review-inline-imgs { display: flex; gap: 5px; flex-wrap: wrap; margin-bottom: 8px; }
.review-inline-imgs img { width: 52px; height: 52px; object-fit: cover; border-radius: 5px; border: 1px solid var(--border); cursor: zoom-in; transition: transform .15s; }
.review-inline-imgs img:hover { transform: scale(1.05); }
.review-card-footer { display: flex; align-items: center; gap: 7px; }
.rev-avatar-chip { width: 26px; height: 26px; border-radius: 50%; background: var(--accent-light); color: var(--accent); display: inline-flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 700; flex-shrink: 0; }
.rev-name { font-size: 12px; font-weight: 500; color: var(--ink); }
.rev-helpful { margin-left: auto; font-size: 12px; color: var(--ink-muted); background: none; border: none; padding: 0; display: flex; align-items: center; gap: 3px; transition: color .15s; touch-action: manipulation; }
.rev-helpful:hover { color: var(--accent); }
.user-reviews-divider { text-align: center; padding: .6rem 0; font-size: 11px; color: var(--ink-muted); font-weight: 700; letter-spacing: .5px; text-transform: uppercase; border-top: 1px solid var(--border); margin-bottom: .9rem; }
.user-reviews-list { display: flex; flex-direction: column; gap: .85rem; }
.user-review-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 1rem 1.1rem; }
.user-review-header { display: flex; align-items: center; gap: 9px; margin-bottom: 7px; }
.user-review-title { font-size: 14px; font-weight: 600; color: var(--ink); margin-bottom: 4px; }
.user-review-text { font-size: 14px; color: var(--ink-light); line-height: 1.65; margin-bottom: 9px; }
.new-badge { margin-left: auto; font-size: 10px; background: var(--green-light); color: var(--green); padding: 2px 7px; border-radius: 10px; font-weight: 700; }
.rev-stars-small { color: var(--gold); font-size: 11px; }
.related-section { margin-top: 2.5rem; }

/* ─── MODALS ─── */
.modal-overlay { position: fixed; inset: 0; background: rgba(26,23,20,.65); display: flex; align-items: flex-end; justify-content: center; z-index: 200; padding: 0; opacity: 0; pointer-events: none; transition: opacity .2s; }
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal-box { background: var(--white); border-radius: var(--radius-lg) var(--radius-lg) 0 0; width: 100%; max-width: 560px; overflow-y: auto; max-height: 90vh; transform: translateY(20px); transition: transform .25s; position: relative; padding: 1.25rem; }
.modal-overlay.open .modal-box { transform: translateY(0); }
.modal-handle { width: 40px; height: 4px; background: var(--border-dark); border-radius: 2px; margin: 0 auto 1rem; }
.modal-close-btn { position: absolute; top: 12px; right: 12px; background: var(--cream); border: none; width: 28px; height: 28px; border-radius: 50%; font-size: 13px; color: var(--ink); display: flex; align-items: center; justify-content: center; }
.modal-stars { color: var(--gold); font-size: 20px; margin-bottom: 5px; }
.modal-title { font-family: 'DM Serif Display', serif; font-size: 19px; color: var(--ink); margin-bottom: 7px; }
.modal-body { font-size: 14px; color: var(--ink-light); line-height: 1.65; margin-bottom: 1.1rem; }
.modal-footer { display: flex; align-items: center; gap: 9px; border-top: 1px solid var(--border); padding-top: .9rem; margin-top: .9rem; }
.img-modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.88); display: flex; align-items: center; justify-content: center; z-index: 300; opacity: 0; pointer-events: none; transition: opacity .2s; padding: 1rem; }
.img-modal-overlay.open { opacity: 1; pointer-events: all; cursor: zoom-out; }
.img-modal-overlay img { max-width: 100%; max-height: 90vh; border-radius: var(--radius-md); object-fit: contain; }

/* ─── AUTH ─── */
.auth-wrapper { min-height: calc(100vh - var(--nav-h)); display: flex; align-items: center; justify-content: center; padding: 1.5rem 1rem; }
.auth-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem 1.75rem; width: 100%; max-width: 400px; box-shadow: var(--shadow-md); }
.auth-logo { font-family: 'DM Serif Display', serif; font-size: 22px; color: var(--ink); text-align: center; margin-bottom: .25rem; }
.auth-logo span { color: var(--accent); }
.auth-subtitle { text-align: center; font-size: 13px; color: var(--ink-muted); margin-bottom: 1.5rem; }
.auth-footer { text-align: center; font-size: 13px; color: var(--ink-muted); margin-top: 1.1rem; }
.auth-footer a { color: var(--accent); }

/* ─── DASHBOARD ─── */
.dash-layout { display: grid; grid-template-columns: 210px 1fr; gap: 1.5rem; padding: 1.5rem 0 3rem; min-height: calc(100vh - var(--nav-h)); }
.dash-sidebar { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.25rem; height: fit-content; position: sticky; top: 70px; }
.dash-profile { text-align: center; padding-bottom: 1rem; border-bottom: 1px solid var(--border); margin-bottom: 1rem; }
.dash-avatar { width: 54px; height: 54px; border-radius: 50%; background: var(--accent); color: white; display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 700; margin: 0 auto 8px; }
.dash-name { font-size: 14px; font-weight: 600; color: var(--ink); }
.dash-handle { font-size: 12px; color: var(--ink-muted); }
.dash-nav { display: flex; flex-direction: column; gap: 2px; }
.dash-nav-item { display: block; padding: 8px 10px; border-radius: var(--radius-sm); font-size: 13px; font-weight: 500; color: var(--ink-light); transition: all .15s; }
.dash-nav-item:hover { background: var(--cream); color: var(--ink); }
.dash-nav-item.active { background: var(--accent-light); color: var(--accent); }
.dash-nav hr { border: none; border-top: 1px solid var(--border); margin: 6px 0; }
.dash-main { display: flex; flex-direction: column; gap: 1.25rem; }
.dash-greeting { background: var(--ink); border-radius: var(--radius-lg); padding: 1.5rem 1.75rem; position: relative; overflow: hidden; }
.dash-greeting::before { content: ''; position: absolute; right: -40px; bottom: -40px; width: 160px; height: 160px; border-radius: 50%; background: var(--accent); opacity: .2; pointer-events: none; }
.dash-greeting-label { font-size: 11px; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .8px; }
.dash-greeting-title { font-family: 'DM Serif Display', serif; font-size: 20px; color: white; margin: 3px 0 4px; }
.dash-greeting-sub { font-size: 13px; color: rgba(255,255,255,.5); }
.dash-stats { display: flex; gap: .9rem; flex-wrap: wrap; }
.dash-stat { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 1rem 1.1rem; flex: 1; min-width: 120px; }
.dash-stat-label { font-size: 11px; color: var(--ink-muted); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 4px; }
.dash-stat-num { font-family: 'DM Serif Display', serif; font-size: 1.9rem; color: var(--ink); line-height: 1; }
.dash-section-title { font-family: 'DM Serif Display', serif; font-size: 19px; color: var(--ink); margin-bottom: .9rem; }
.write-review-form { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.5rem; }
.my-reviews-list { display: flex; flex-direction: column; gap: 9px; }
.my-review-item { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: .85rem 1rem; display: flex; align-items: center; gap: .9rem; }
.my-review-thumb { width: 44px; height: 44px; border-radius: var(--radius-sm); background: var(--cream); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; border: 1px solid var(--border); overflow: hidden; }
.my-review-thumb img { width: 100%; height: 100%; object-fit: cover; }
.my-review-info { flex: 1; min-width: 0; }
.my-review-product { font-size: 13px; font-weight: 600; color: var(--ink); display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.my-review-product:hover { color: var(--accent); }
.my-review-preview { font-size: 12px; color: var(--ink-muted); margin-top: 1px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.likes-count { font-size: 12px; color: var(--ink-muted); white-space: nowrap; }

/* ─── CATEGORY PAGE ─── */
.cat-header { display: flex; align-items: center; gap: 1rem; margin: 1.25rem 0 1rem; }
.cat-header-icon { font-size: 40px; flex-shrink: 0; }
.cat-title { font-family: 'DM Serif Display', serif; font-size: clamp(1.5rem, 4vw, 2rem); color: var(--ink); }
.cat-desc { font-size: 14px; color: var(--ink-muted); margin-top: 3px; }
.sort-row { display: flex; align-items: center; gap: 7px; margin-bottom: 1.25rem; flex-wrap: wrap; }
.sort-label { font-size: 13px; color: var(--ink-muted); }
.sort-btn { padding: 5px 12px; border-radius: 20px; font-size: 12px; font-weight: 500; border: 1px solid var(--border); background: var(--white); color: var(--ink-light); transition: all .15s; }
.sort-btn.active, .sort-btn:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-light); }

/* ─── FOOTER ─── */
.site-footer { background: var(--white); border-top: 1px solid var(--border); padding: 2rem 1rem 1.25rem; }
.footer-inner { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2.5rem; margin-bottom: 1.5rem; }
.footer-brand p { font-size: 13px; color: var(--ink-muted); line-height: 1.6; margin-top: .5rem; max-width: 260px; }
.footer-col-title { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .8px; color: var(--ink); margin-bottom: .65rem; }
.footer-cats, .footer-links { display: flex; flex-direction: column; gap: 5px; }
.footer-cats a, .footer-links a { font-size: 13px; color: var(--ink-muted); transition: color .15s; }
.footer-cats a:hover, .footer-links a:hover { color: var(--accent); }
.footer-bottom { max-width: 1240px; margin: 0 auto; padding-top: 1rem; border-top: 1px solid var(--border); font-size: 12px; color: var(--ink-muted); }
.footer-bottom a { color: var(--ink-muted); }
.footer-bottom a:hover { color: var(--accent); }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .product-layout { grid-template-columns: 1fr; gap: 1.5rem; }
  .gallery-col { position: static; }
  .reviews-masonry { columns: 1; }
  .featured-banner { flex-direction: column; padding: 1.5rem; gap: 1rem; }
  .featured-emoji { font-size: 50px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
  .nav-cats { display: none; }
  .nav-burger { display: block; }
  .dash-layout { grid-template-columns: 1fr; }
  .dash-sidebar { position: static; }
  .rating-box { flex-wrap: wrap; }
}
@media (max-width: 600px) {
  .hero { padding: 2rem 1rem 1.75rem; }
  .hero-stats { gap: 1.25rem; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: .75rem; }
  .nav-search-wrap { display: none; }
  .specs-grid { grid-template-columns: 1fr; }
  .product-cta { flex-direction: column; align-items: stretch; }
  .btn-go-dealer { text-align: center; justify-content: center; }
  .reviews-masonry { columns: 1; }
  .dash-stats { flex-direction: column; }
  .modal-box { border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
}

/* ─── IMAGE UPLOAD ─── */
.img-upload-area { border:2px dashed var(--border-dark); border-radius:var(--radius-md); padding:1.5rem 1rem; text-align:center; cursor:pointer; transition:all .2s; background:var(--cream); }
.img-upload-area:hover, .img-upload-area.has-files { border-color:var(--accent); background:var(--accent-pale); }
.img-upload-icon { font-size:32px; margin-bottom:6px; }
.img-upload-text { font-size:14px; font-weight:600; color:var(--ink); margin-bottom:3px; }
.img-upload-hint { font-size:11px; color:var(--ink-muted); }
.img-preview-row { display:flex; gap:8px; flex-wrap:wrap; margin-top:10px; }
.img-preview-item { position:relative; width:80px; height:80px; border-radius:var(--radius-sm); overflow:hidden; border:1px solid var(--border); }
.img-preview-item img { width:100%; height:100%; object-fit:cover; }
.img-preview-remove { position:absolute; top:2px; right:2px; background:rgba(0,0,0,.6); color:white; border:none; width:20px; height:20px; border-radius:50%; font-size:10px; display:flex; align-items:center; justify-content:center; cursor:pointer; }

/* ─── USER REVIEW IMAGES (swipeable) ─── */
.user-review-imgs-wrap { overflow-x:auto; -webkit-overflow-scrolling:touch; margin:10px 0; scrollbar-width:none; }
.user-review-imgs-wrap::-webkit-scrollbar { display:none; }
.user-review-imgs { display:flex; gap:8px; width:max-content; }
.user-review-imgs img { width:100px; height:100px; object-fit:cover; border-radius:var(--radius-sm); border:1px solid var(--border); cursor:zoom-in; flex-shrink:0; transition:transform .15s; }
.user-review-imgs img:hover { transform:scale(1.04); }
