*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:      #C0392B;
  --red-dark: #922B21;
  --red-bg:   #FDF0EE;
  --cream:    #FDFAF9;
  --white:    #FFFFFF;
  --black:    #111;
  --gray:     #777;
  --border:   #EEE;
  --serif:    'Cormorant Garamond', Georgia, serif;
  --sans:     'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; background: var(--black); }

img {
  -webkit-user-drag: none;
  user-drag: none;
  -webkit-user-select: none;
}
body { background: var(--cream); color: var(--black); font-family: var(--sans); overflow-x: hidden; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; }

/* ANNOUNCE CAROUSEL */
.announce-carousel {
  background: var(--red);
  overflow: hidden;
  padding: 0;
}

.announce-track {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  white-space: nowrap;
  padding: 11px 0;
  will-change: transform;
}

@keyframes announceScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-33.33%); }
}

.announce-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.announce-item strong {
  font-weight: 700;
  letter-spacing: 0.08em;
}

.announce-icon {
  width: 16px;
  height: 16px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  flex-shrink: 0;
}

.announce-sep {
  color: rgba(255,255,255,0.4);
  font-size: 10px;
  flex-shrink: 0;
}

/* NAV */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253,250,249,0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
}

.nav-logo {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--red);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--red);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 9px 22px;
  border-radius: 0;
  letter-spacing: 0.04em;
  transition: background 0.2s;
  position: relative;
}
.nav-cta:hover { background: var(--red-dark); }

.nav-bag-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

/* HERO */
.hero {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 56px 24px 64px;
  max-width: 1000px;
  margin: 0 auto;
}

.hero-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(44px, 12vw, 80px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.hero-title em { font-style: italic; color: var(--red); }

.hero-sub {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.7;
  margin-top: 14px;
  max-width: 340px;
}

/* ── WOBBLY BUTTON ── */
.wobbly-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--red);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 14px 32px;
  border: none;
  border-radius: 0;
  cursor: pointer;
  font-family: var(--sans);
  letter-spacing: 0.06em;
  transition: background 0.2s, transform 0.15s;
  clip-path: polygon(
    0% 3%, 2% 0%, 98% 1%, 100% 4%,
    99% 96%, 97% 100%, 3% 99%, 1% 97%
  );
}

.wobbly-btn:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
  clip-path: polygon(
    0% 2%, 3% 0%, 97% 2%, 100% 3%,
    98% 97%, 96% 100%, 4% 98%, 1% 96%
  );
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  background: var(--red);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 0;
  margin-top: 20px;
  align-self: flex-start;
  transition: background 0.2s, transform 0.15s;
  letter-spacing: 0.04em;
  clip-path: polygon(0% 3%, 2% 0%, 98% 1%, 100% 4%, 99% 96%, 97% 100%, 3% 99%, 1% 97%);
}
.hero-btn:hover { background: var(--red-dark); transform: translateY(-2px); }

.hero-visual { width: 100%; }

.hero-img-box {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #FADBD8 0%, #F1948A 100%);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-emoji { font-size: 96px; }

/* PERKS CAROUSEL */
.perks-carousel {
  background: var(--red);
  overflow: hidden;
}

.perks-track {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  will-change: transform;
}

@keyframes perksScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.perk-slide {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  border-right: 1px solid rgba(255,255,255,0.15);
  flex-shrink: 0;
}

.perk-icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  flex-shrink: 0;
}

.perk-slide p {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* PRODUCTS */
.produktai {
  padding: 64px 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(28px, 7vw, 44px);
  font-weight: 300;
  letter-spacing: -0.01em;
  margin-bottom: 32px;
}

.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.card {
  background: var(--white);
  border-radius: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(192,57,43,0.1);
}

.card-img {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
  position: relative;
  overflow: hidden;
}

.card-img--1 { background: #f5f5f5; }
.card-img--2 { background: #f5f5f5; }
.card-img--3 { background: #f5f5f5; }
.card-img--4 { background: #f5f5f5; }
.card-img--5 { background: #f5f5f5; }
.card-img--6 { background: #f5f5f5; }

.card-body { padding: 14px; }

.card-name {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 600;
  color: var(--black);
}

.card-ml {
  font-size: 11px;
  color: var(--red);
  font-weight: 600;
  letter-spacing: 0.06em;
  margin: 2px 0 4px;
}

.card-desc {
  font-size: 11px;
  color: var(--gray);
  line-height: 1.5;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
}

.card-price {
  font-family: var(--sans);
  font-size: 20px;
  font-weight: 700;
  color: var(--black);
}

@media (max-width: 639px) {
  .card-price { font-size: 14px; }
  .card-btn { padding: 8px 10px; font-size: 11px; }
}

.card-btn {
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 0;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--sans);
  transition: background 0.2s;
  letter-spacing: 0.04em;
  clip-path: polygon(0% 4%, 3% 0%, 97% 2%, 100% 5%, 98% 95%, 96% 100%, 4% 98%, 1% 94%);
}
.card-btn:hover { background: var(--red-dark); }

/* BANNER */
.banner {
  background: var(--black);
  color: #fff;
  padding: 64px 24px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.banner-left { display: flex; flex-direction: column; gap: 20px; }

.banner-title {
  font-family: var(--serif);
  font-size: clamp(32px, 8vw, 56px);
  font-weight: 300;
  line-height: 1.1;
}

.banner-points { display: flex; flex-direction: column; gap: 20px; }

.banner-point {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid #222;
}
.banner-point:last-child { border-bottom: none; padding-bottom: 0; }

.bp-arrow {
  width: 18px;
  height: auto;
  transform: rotate(-90deg);
  filter: brightness(0) saturate(100%) invert(20%) sepia(90%) saturate(1200%) hue-rotate(340deg);
  flex-shrink: 0;
  margin-top: 4px;
}

.banner-point p { font-size: 15px; color: #aaa; line-height: 1.6; }

/* FOOTER */
footer {
  background: var(--black);
  color: #fff;
  padding: 0;
}

.footer-top {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 48px 24px 40px;
  border-bottom: 1px solid #222;
}

.footer-logo-wrap {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-logo {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: #F1948A;
}

.footer-tag {
  font-size: 22px;
  color: #aaa;
  font-style: italic;
  font-family: var(--serif);
}

.footer-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 4px;
}

.footer-col a {
  font-size: 13px;
  color: #666;
  transition: color 0.2s;
  text-decoration: none;
}

.footer-col a:hover { color: #F1948A; }

.footer-bottom {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copy {
  font-size: 11px;
  color: #333;
  letter-spacing: 0.04em;
}

.footer-madeby {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #333;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-madeby:hover { color: var(--red); }

@media (min-width: 640px) {
  .footer-top {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    padding: 56px 40px 48px;
  }
  .footer-bottom { padding: 20px 40px; }
}

@media (min-width: 900px) {
  .footer-top { padding: 56px 56px 48px; }
  .footer-bottom { padding: 20px 56px; }
}

/* POPUP */
body.popup-open { overflow: hidden; }
.popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.popup-overlay.open { opacity: 1; visibility: visible; }

.popup {
  background: var(--white);
  border-radius: 0;
  padding: 32px 24px 40px;
  width: 100%;
  max-width: 480px;
  position: relative;
  transform: translateY(40px);
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.popup-overlay.open .popup { transform: translateY(0); }

.popup-close { position: absolute; top: 16px; right: 20px; background: none; border: none; font-size: 18px; color: #aaa; cursor: pointer; }

.popup-product { font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--red); margin-bottom: 4px; }

.popup-title { font-family: var(--serif); font-size: 26px; font-weight: 400; color: var(--black); margin-bottom: 24px; }

#orderForm { display: flex; flex-direction: column; gap: 14px; }

.form-field { display: flex; flex-direction: column; gap: 6px; }

.form-label { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--black); }

.form-input {
  background: #F8F8F8;
  border: 1.5px solid var(--border);
  border-radius: 0;
  padding: 13px 16px;
  font-size: 15px;
  font-family: var(--sans);
  color: var(--black);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.form-input:focus { border-color: var(--red); }
.form-input::placeholder { color: #ccc; }

.popup-submit {
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 0;
  padding: 16px;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--sans);
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 4px;
  letter-spacing: 0.04em;
  width: 100%;
  clip-path: polygon(0% 3%, 2% 0%, 98% 1%, 100% 4%, 99% 96%, 97% 100%, 3% 99%, 1% 97%);
}
.popup-submit:hover { background: var(--red-dark); }
.popup-submit:disabled { opacity: 0.5; cursor: not-allowed; }

.popup-success { display: none; flex-direction: column; align-items: center; gap: 10px; padding: 32px 0; text-align: center; }
.popup-success.visible { display: flex; }
.success-icon { font-size: 36px; color: var(--red); }
.success-title { font-family: var(--serif); font-size: 28px; font-weight: 400; }
.success-text { font-size: 14px; color: var(--gray); line-height: 1.6; }

/* TABLET+ */
@media (min-width: 640px) {
  .hero { flex-direction: row; align-items: center; padding: 80px 40px; }
  .hero-text { flex: 1; }
  .hero-visual { flex: 0 0 44%; }
  .grid { grid-template-columns: repeat(3, 1fr); }
  .banner { flex-direction: row; align-items: flex-start; gap: 60px; padding: 80px 40px; }
  .banner-left { flex: 0 0 280px; position: sticky; top: 80px; }
  .banner-points { flex: 1; }
  .popup-overlay { align-items: center; }
  .popup-overlay:has(.cart-popup) { align-items: flex-end; }
}

@media (min-width: 900px) {
  nav { padding: 16px 56px; }
  .hero { padding: 100px 56px; }
  .produktai { padding: 80px 56px; }
  .banner { padding: 100px 56px; }
}

.hero-product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-product-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.card-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.card-slide.active { opacity: 1; }

.price-old {
  font-size: 13px;
  color: #aaa;
  font-weight: 400;
  margin-right: 4px;
}

.price-old-sm {
  font-size: 11px;
  color: #aaa;
  font-weight: 400;
}

/* ── HERO SLIDER ── */
.hero-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.7s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide.prev {
  opacity: 0;
}
  transform: translateX(-100%);
}

.hero-slider-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 2;
}

.hero-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  transition: background 0.3s;
}

.hero-dot.active {
  background: var(--white);
}

.hero-title-sig {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}

.hero-sig-wrap {
  height: 80px;
  overflow: hidden;
  pointer-events: none;
}

.hero-sig-img {
  height: 205px;
  width: auto;
  object-fit: contain;
  opacity: 0.85;
  transform: rotate(-15deg) translateY(-68px);
  display: block;
  margin-left: 12px;
}

/* Footer signature */
.footer-sig-wrap {
  width: 200px;
  height: 80px;
  overflow: hidden;
  position: relative;
}

.footer-sig-img {
  height: 180px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(25%) sepia(80%) saturate(800%) hue-rotate(330deg) brightness(1.4);
  transform: rotate(-10deg) translateY(-30px) translateX(-10px);
  display: block;
}

/* ── Global custom scrollbar ── */
html {
  scrollbar-width: none;
  -ms-overflow-style: none;
}
html::-webkit-scrollbar { display: none; }
body { overflow-y: scroll; }

.card-bestseller {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--red);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  z-index: 2;
}

.card-stars {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 2px 0 4px;
}

.card-stars-s {
  color: var(--red);
  font-size: 10px;
  letter-spacing: 1px;
}

.card-stars-c {
  font-size: 10px;
  color: var(--gray);
  font-weight: 500;
}

.card--mist .card-ml {
  color: #1a73e8;
}
