/* === GOOGLE FONTS === */
@import url('https://fonts.googleapis.com/css2?family=Rye&family=Special+Elite&family=Inter:wght@300;400;600&display=swap');

/* === VARIABLES === */
:root {
  --bg: #0e0e0e;
  --surface: #141414;
  --border: #1e1e1e;
  --accent: #e63946;
  --text: #f0f0f0;
  --text-muted: #888888;
  --text-dim: #444444;
  --whatsapp: #25D366;
  --font-display: 'Rye', serif;
  --font-accent: 'Special Elite', cursive;
  --font-body: 'Inter', sans-serif;
  --max-w: 1200px;
}

/* === RESET === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--bg); color: var(--text); line-height: 1.6; overflow-x: hidden; }
img { display: block; width: 100%; height: auto; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* === TYPOGRAPHY === */
h1, h2, h3 { font-family: var(--font-display); font-weight: 400; }
.eyebrow { font-family: var(--font-body); font-size: 0.62rem; letter-spacing: 4px; text-transform: uppercase; color: var(--accent); margin-bottom: 1rem; display: block; }
.subtitle { font-family: var(--font-accent); color: var(--text-muted); font-size: 0.9rem; letter-spacing: 1px; }
.section-title { font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 3rem); line-height: 1.1; margin-bottom: 0.5rem; }

/* === LAYOUT === */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }
.section { padding: 6rem 0; }
.section--surface { background: var(--surface); }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }

/* === NAV === */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.5rem 2rem;
  display: flex; align-items: center; justify-content: space-between;
  transition: background 0.3s, padding 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled { background: var(--bg); border-color: var(--border); padding: 1rem 2rem; }
.nav__logo { font-family: var(--font-display); font-size: 1.1rem; letter-spacing: 3px; display: flex; align-items: center; gap: 9px; }
.nav__logo svg { flex-shrink: 0; opacity: 0.92; }
.nav__logo__text { display: flex; flex-direction: column; line-height: 1; }
.nav__logo__top { font-family: var(--font-display); font-size: 1.1rem; letter-spacing: 3px; }
.nav__logo__sub { font-family: var(--font-body); font-size: 0.55rem; letter-spacing: 4px; text-transform: uppercase; color: var(--text-muted); margin-top: 0.4rem; }
.nav__links { display: flex; gap: 2.5rem; }
.nav__links a { font-size: 0.62rem; letter-spacing: 3px; text-transform: uppercase; color: var(--text-muted); transition: color 0.2s; }
.nav__links a:hover { color: var(--accent); }
.nav__cta { background: var(--accent); color: #fff; padding: 0.6rem 1.4rem; font-size: 0.6rem; letter-spacing: 3px; text-transform: uppercase; font-family: var(--font-body); transition: opacity 0.2s; }
.nav__cta:hover { opacity: 0.85; }

/* === HERO === */
.hero {
  min-height: 100vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; position: relative; overflow: hidden; padding: 2rem;
}
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background: url('../images/shop-front.jpg') center/cover no-repeat;
  transform: scale(1.1);
  filter: grayscale(100%) brightness(0.35);
}
.hero__bg::after { content: ''; position: absolute; inset: 0; background: rgba(14,14,14,0.78); }
.hero__ghost {
  position: absolute; bottom: -0.05em; left: 50%; transform: translateX(-50%);
  font-family: var(--font-display); font-size: clamp(5rem, 14vw, 11rem);
  color: rgba(255,255,255,0.022); white-space: nowrap; pointer-events: none; z-index: 1; letter-spacing: 0.15em;
}
.hero__corners { position: absolute; inset: 2rem; pointer-events: none; z-index: 2; }
.hero__corners::before, .hero__corners::after { content: ''; position: absolute; width: 28px; height: 28px; }
.hero__corners::before { top: 0; left: 0; border-top: 1px solid #2e2e2e; border-left: 1px solid #2e2e2e; }
.hero__corners::after { bottom: 0; right: 0; border-bottom: 1px solid #2e2e2e; border-right: 1px solid #2e2e2e; }
.hero__content { position: relative; z-index: 3; max-width: 700px; }
.hero__rule { width: 40px; height: 1px; background: var(--accent); margin: 0 auto 1.5rem; }
.hero__title { font-family: var(--font-display); font-size: clamp(2.4rem, 6vw, 4.8rem); line-height: 1.08; }
.hero__title em { color: var(--accent); font-style: italic; }
.hero__location { font-family: var(--font-body); font-size: 0.58rem; letter-spacing: 5px; color: var(--text-muted); text-transform: uppercase; margin: 1.2rem 0 2rem; }
.hero__cta-row { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* === BUTTONS === */
.btn { display: inline-block; padding: 0.8rem 2rem; font-family: var(--font-body); font-size: 0.6rem; letter-spacing: 3px; text-transform: uppercase; transition: all 0.2s; cursor: pointer; border: none; }
.btn--primary { background: var(--accent); color: #fff; }
.btn--primary:hover { opacity: 0.85; }
.btn--outline { border: 1px solid var(--text-muted); color: var(--text-muted); background: none; }
.btn--outline:hover { border-color: var(--text); color: var(--text); }
.btn--whatsapp { background: var(--whatsapp); color: #fff; display: inline-flex; align-items: center; gap: 0.5rem; }
.btn--whatsapp:hover { opacity: 0.9; }
.btn--klarna { background: #FFB3C7; color: #17120F; display: inline-flex; align-items: center; gap: 0.5rem; font-style: italic; }
.btn--klarna:hover { opacity: 0.85; }
.klarna-pay { display: inline-flex; align-items: center; gap: 0.6rem; color: var(--text-muted); font-size: 0.65rem; letter-spacing: 2px; text-transform: uppercase; transition: color 0.2s; }
.klarna-pay:hover { color: var(--text); }
.klarna-pay__badge { background: #FFB3C7; color: #17120F; font-size: 0.75rem; font-weight: 700; font-style: italic; font-family: var(--font-body); padding: 0.18rem 0.55rem; border-radius: 100px; letter-spacing: 0.5px; text-transform: lowercase; line-height: 1.4; }

/* === STATS === */
.stats { display: flex; justify-content: center; gap: 4rem; text-align: center; flex-wrap: wrap; }
.stat__number { font-family: var(--font-display); font-size: 2.5rem; color: var(--text); display: block; }
.stat__label { font-size: 0.58rem; letter-spacing: 3px; text-transform: uppercase; color: var(--text-muted); }

/* === SECTION HEADER === */
.section-header { text-align: center; margin-bottom: 4rem; }
.accent-rule { width: 0; height: 2px; background: var(--accent); margin: 1rem auto 0; transition: width 0.8s ease; }
.accent-rule.visible { width: 60px; }

/* === STYLE CARDS === */
.style-card { position: relative; overflow: hidden; aspect-ratio: 3/4; display: block; border: 1px solid var(--border); }
.style-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.style-card:hover img { transform: scale(1.06); }
.style-card__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(14,14,14,0.95) 0%, transparent 55%); display: flex; flex-direction: column; justify-content: flex-end; padding: 1.4rem; }
.style-card__name { font-family: var(--font-display); font-size: 1.1rem; margin-bottom: 0.3rem; }
.style-card__desc { font-size: 0.7rem; color: var(--text-muted); line-height: 1.5; }
.style-card--cta { background: var(--surface); display: flex; align-items: center; justify-content: center; text-align: center; padding: 2rem; }

/* === PORTFOLIO GRID === */
.portfolio-filters { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2.5rem; justify-content: center; }
.filter-btn { padding: 0.5rem 1.2rem; border: 1px solid var(--border); color: var(--text-muted); font-size: 0.58rem; letter-spacing: 2px; text-transform: uppercase; cursor: default; background: none; font-family: var(--font-body); display: inline-block; }
.filter-btn.active { border-color: var(--accent); color: var(--accent); }
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.portfolio-item { position: relative; overflow: hidden; aspect-ratio: 1; }
.portfolio-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.portfolio-item__overlay { position: absolute; inset: 0; background: rgba(14,14,14,0.72); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; }
.portfolio-item:hover .portfolio-item__overlay { opacity: 1; }
.portfolio-item:hover img { transform: scale(1.08); }
.portfolio-item__label { font-family: var(--font-accent); font-size: 0.85rem; letter-spacing: 3px; text-transform: uppercase; color: #fff; }
.portfolio-item[data-hidden] { display: none; }

/* === REVIEW CARDS === */
.review-card { border: 1px solid var(--border); padding: 2rem; display: flex; flex-direction: column; gap: 1rem; background: var(--surface); }
.review-card__stars { color: var(--accent); font-size: 1rem; letter-spacing: 2px; }
.review-card__text { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; font-style: italic; flex: 1; }
.review-card__author { font-size: 0.55rem; letter-spacing: 3px; text-transform: uppercase; color: var(--text-muted); opacity: 0.6; }

/* === BLOG CARDS === */
.blog-card { border: 1px solid var(--border); overflow: hidden; transition: border-color 0.25s; display: block; }
.blog-card:hover { border-color: var(--accent); }
.blog-card__img { aspect-ratio: 16/9; overflow: hidden; }
.blog-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.blog-card:hover .blog-card__img img { transform: scale(1.04); }
.blog-card__body { padding: 1.5rem; }
.blog-card__category { font-size: 0.55rem; letter-spacing: 3px; text-transform: uppercase; color: var(--accent); margin-bottom: 0.5rem; display: block; }
.blog-card__title { font-family: var(--font-display); font-size: 1.15rem; line-height: 1.25; margin-bottom: 0.6rem; }
.blog-card__excerpt { font-size: 0.8rem; color: var(--text-muted); line-height: 1.7; }
.blog-card__read { display: inline-block; margin-top: 1rem; font-size: 0.58rem; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); border-bottom: 1px solid var(--accent); padding-bottom: 2px; }

/* === CONTACT === */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.contact-info__item { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.8rem; }
.contact-info__label { font-size: 0.55rem; letter-spacing: 3px; text-transform: uppercase; color: var(--text-muted); display: block; margin-bottom: 0.25rem; }
.contact-info__value { font-size: 0.95rem; color: var(--text); }
.map-embed { width: 100%; height: 340px; border: 1px solid var(--border); filter: grayscale(100%) invert(88%) contrast(0.9); display: block; }

/* === WHATSAPP FIXED === */
.wa-fixed {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 99;
  background: var(--whatsapp); color: #fff;
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
  animation: waPulse 2.5s ease-in-out infinite;
}
@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.35); }
  50% { box-shadow: 0 4px 32px rgba(37,211,102,0.65); }
}

/* === FOOTER === */
.footer { background: #080808; border-top: 1px solid var(--border); padding: 3rem 0; text-align: center; }
.footer__logo { font-family: var(--font-display); font-size: 1.4rem; letter-spacing: 3px; margin-bottom: 1.2rem; }
.footer__links { display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap; margin-bottom: 1.5rem; }
.footer__links a { font-size: 0.58rem; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); transition: color 0.2s; }
.footer__links a:hover { color: var(--accent); }
.footer__copy { font-size: 0.62rem; color: var(--text-dim); }

/* === SCROLL REVEAL === */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }

/* === HERO ANIMATION === */
@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
.hero .eyebrow    { animation: fadeUp 0.7s ease 0.2s both; }
.hero .hero__rule { animation: fadeUp 0.5s ease 0.5s both; }
.hero .hero__title { animation: fadeUp 0.8s ease 0.7s both; }
.hero .hero__location { animation: fadeUp 0.6s ease 1.0s both; }
.hero .hero__cta-row { animation: fadeUp 0.6s ease 1.2s both; }

/* === ARTICLE === */
.article-hero { height: 58vh; position: relative; overflow: hidden; }
.article-hero img { width: 100%; height: 100%; object-fit: cover; }
.article-hero__overlay { position: absolute; inset: 0; background: rgba(14,14,14,0.72); display: flex; flex-direction: column; align-items: center; justify-content: flex-end; padding: 3rem; text-align: center; }
.article-hero__category { font-size: 0.6rem; letter-spacing: 4px; text-transform: uppercase; color: var(--accent); margin-bottom: 0.8rem; font-family: var(--font-body); }
.article-hero__title { font-family: var(--font-display); font-size: clamp(1.6rem, 3.5vw, 2.8rem); line-height: 1.15; max-width: 800px; }
.article-body { max-width: 760px; margin: 0 auto; padding: 4rem 2rem; }
.article-body h2 { font-family: var(--font-display); font-size: 1.5rem; margin: 2.5rem 0 0.8rem; }
.article-body h2::after { content: ''; display: block; width: 28px; height: 2px; background: var(--accent); margin-top: 0.4rem; }
.article-body p { font-size: 0.95rem; line-height: 1.9; color: var(--text-muted); margin-bottom: 1.1rem; }
.article-body ul { margin: 0.8rem 0 1.4rem 1.5rem; }
.article-body li { font-size: 0.9rem; color: var(--text-muted); line-height: 1.85; }
.faq { background: var(--surface); padding: 1.5rem 1.8rem; border-left: 3px solid var(--accent); margin: 1rem 0; }
.faq h3 { font-family: var(--font-display); font-size: 1rem; margin-bottom: 0.4rem; }
.faq p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.75; margin: 0; }
.article-cta { background: var(--surface); border: 1px solid var(--border); padding: 3rem; text-align: center; margin-top: 4rem; border-top: 3px solid var(--accent); }
.article-cta h3 { font-family: var(--font-display); font-size: 1.4rem; margin-bottom: 0.5rem; }
.article-cta p { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 1.5rem; line-height: 1.7; }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .nav__links { display: none; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .stats { gap: 2rem; }
  .hero__cta-row { flex-direction: column; align-items: center; }
  .hero__ghost { display: none; }
}