@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@1,400&display=swap');

:root {
  --white: #FFFFFF;
  --gray: #E5E5E5;
  --black: #111111;
  --coral: #FF5A5F;
  --coral-dark: #e04a4f;
  --mid-gray: #888888;
  --light-bg: #F7F7F7;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--black);
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.btn-primary {
  background: var(--coral);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--coral-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,90,95,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--black);
  border: 1.5px solid var(--black);
}
.btn-outline:hover {
  background: var(--black);
  color: var(--white);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--white);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--black);
}

/* ── HEADER ── */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: background 0.4s, box-shadow 0.4s;
}
header.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 1px 0 var(--gray);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  letter-spacing: 0.08em;
  color: var(--white);
  transition: color 0.4s;
}
header.scrolled .logo { color: var(--black); }
header.scrolled .nav-link { color: var(--black); }
header.scrolled .header-icons a { color: var(--black); }

nav { display: flex; gap: 36px; }
.nav-link {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  position: relative;
  transition: color 0.3s;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: var(--coral);
  transition: width 0.3s;
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link:hover { color: var(--coral); }

.header-icons { display: flex; align-items: center; gap: 20px; }
.header-icons a { color: var(--white); font-size: 16px; transition: color 0.3s; }
.header-icons a:hover { color: var(--coral); }
.cart-count {
  background: var(--coral);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: -6px;
  vertical-align: top;
}

.burger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.burger span { display: block; width: 24px; height: 1.5px; background: var(--white); transition: all 0.3s; }
header.scrolled .burger span { background: var(--black); }

/* ── HERO ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../img/hero.webp') center/cover no-repeat;
  opacity: 0.45;
  transform: scale(1.05);
  animation: heroZoom 12s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.12); }
}
.hero-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-line {
  position: absolute;
  top: 0; left: 50%;
  width: 1px; height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(255,90,95,0.4), transparent);
  animation: lineSlide 3s ease-in-out infinite;
}
@keyframes lineSlide {
  0%,100% { opacity: 0.3; }
  50% { opacity: 0.8; }
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 28px;
}
.hero-tag::before {
  content: '';
  display: block;
  width: 32px; height: 1px;
  background: var(--coral);
}
.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(72px, 10vw, 140px);
  line-height: 0.92;
  color: var(--white);
  letter-spacing: 0.02em;
  margin-bottom: 32px;
}
.hero-title span {
  color: var(--coral);
  font-style: italic;
  font-family: 'Playfair Display', serif;
  font-size: 0.7em;
  display: block;
}
.hero-sub {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 48px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 2;
  animation: scrollBounce 2s ease-in-out infinite;
}
.hero-scroll::after {
  content: '';
  display: block;
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
}
@keyframes scrollBounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ── MARQUEE ── */
.marquee-section {
  background: var(--coral);
  padding: 14px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 0;
  animation: marquee 20s linear infinite;
  white-space: nowrap;
}
.marquee-track span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 15px;
  letter-spacing: 0.15em;
  color: var(--white);
  padding: 0 32px;
}
.marquee-track span.dot { color: rgba(255,255,255,0.5); padding: 0 8px; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── SECTION TITLES ── */
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--coral);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  display: block;
  width: 28px; height: 1px;
  background: var(--coral);
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}
.section-sub {
  font-size: 15px;
  font-weight: 300;
  color: var(--mid-gray);
  line-height: 1.7;
  max-width: 520px;
}

/* ── ABOUT STRIP ── */
.about-strip {
  padding: 120px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-wrap img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.about-img-wrap::after {
  content: '';
  position: absolute;
  bottom: -20px; right: -20px;
  width: 60%; height: 60%;
  border: 1.5px solid var(--coral);
  z-index: -1;
}
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}
.stat-item {}
.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px;
  color: var(--coral);
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin-top: 4px;
}

/* ── CATEGORIES ── */
.categories-section { padding: 80px 0; background: var(--light-bg); }
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 56px;
}
.cat-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
}
.cat-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.cat-card:hover img { transform: scale(1.06); }
.cat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17,17,17,0.75) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 24px;
}
.cat-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: var(--white);
  letter-spacing: 0.05em;
}
.cat-count {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}
.cat-arrow {
  position: absolute;
  top: 20px; right: 20px;
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 12px;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s;
}
.cat-card:hover .cat-arrow { opacity: 1; transform: translateY(0); }

/* ── FEATURED PRODUCTS ── */
.featured-section { padding: 120px 0; }
.featured-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.product-card {
  cursor: pointer;
  transition: transform 0.3s;
}
.product-card:hover { transform: translateY(-6px); }
.product-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--light-bg);
  margin-bottom: 20px;
}
.product-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-img img { transform: scale(1.04); }
.product-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--coral);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 10px;
}
.product-actions {
  position: absolute;
  bottom: 16px; right: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transform: translateX(12px);
  transition: all 0.3s;
}
.product-card:hover .product-actions { opacity: 1; transform: translateX(0); }
.product-actions button {
  width: 40px; height: 40px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--black);
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
  transition: all 0.2s;
}
.product-actions button:hover { background: var(--coral); color: var(--white); }
.product-name {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 6px;
}
.product-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  color: var(--coral);
  letter-spacing: 0.05em;
}
.product-price .old-price {
  font-size: 16px;
  color: var(--mid-gray);
  text-decoration: line-through;
  margin-left: 8px;
}

/* ── LIFESTYLE BANNER ── */
.lifestyle-banner {
  position: relative;
  height: 70vh;
  min-height: 500px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.lifestyle-banner img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.lifestyle-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(17,17,17,0.85) 40%, transparent 100%);
}
.lifestyle-content {
  position: relative;
  z-index: 2;
  max-width: 560px;
}
.lifestyle-content .section-title { color: var(--white); }
.lifestyle-content .section-sub { color: rgba(255,255,255,0.7); }

/* ── TESTIMONIALS ── */
.testimonials-section { padding: 120px 0; background: var(--black); }
.testimonials-section .section-title { color: var(--white); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}
.testimonial-card {
  border: 1px solid rgba(255,255,255,0.08);
  padding: 36px;
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-family: 'Playfair Display', serif;
  font-size: 80px;
  color: var(--coral);
  line-height: 1;
  position: absolute;
  top: 16px; left: 28px;
  opacity: 0.4;
}
.testimonial-text {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255,255,255,0.7);
  margin-bottom: 28px;
  padding-top: 32px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--gray);
}
.author-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
}
.author-loc {
  font-size: 11px;
  color: var(--mid-gray);
  margin-top: 2px;
}
.stars { color: var(--coral); font-size: 12px; margin-bottom: 4px; }

/* ── BLOG PREVIEW ── */
.blog-section { padding: 120px 0; }
.blog-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
  margin-top: 56px;
}
.blog-card { cursor: pointer; }
.blog-img {
  overflow: hidden;
  margin-bottom: 20px;
}
.blog-img img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  transition: transform 0.5s;
}
.blog-card:hover .blog-img img { transform: scale(1.04); }
.blog-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 10px;
}
.blog-meta span { color: var(--mid-gray); font-weight: 400; }
.blog-title {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 10px;
  transition: color 0.2s;
}
.blog-card:hover .blog-title { color: var(--coral); }
.blog-excerpt {
  font-size: 13px;
  color: var(--mid-gray);
  line-height: 1.7;
}

/* ── NEWSLETTER ── */
.newsletter-section {
  padding: 100px 0;
  background: var(--light-bg);
  text-align: center;
}
.newsletter-inner { max-width: 560px; margin: 0 auto; }
.newsletter-form {
  display: flex;
  gap: 0;
  margin-top: 36px;
  border: 1.5px solid var(--black);
}
.newsletter-form input {
  flex: 1;
  padding: 16px 20px;
  font-size: 14px;
  font-family: inherit;
  border: none;
  outline: none;
  background: var(--white);
}
.newsletter-form button {
  padding: 16px 28px;
  background: var(--black);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.3s;
}
.newsletter-form button:hover { background: var(--coral); }

/* ── FOOTER ── */
footer {
  background: var(--black);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo { color: var(--white); font-size: 28px; display: block; margin-bottom: 16px; }
.footer-brand p { font-size: 13px; line-height: 1.8; max-width: 260px; }
.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--coral); }

.footer-legal {
  padding: 40px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  margin-top: 0;
}
.footer-legal-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 40px;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  line-height: 1.8;
}
.footer-legal-inner strong { color: rgba(255,255,255,0.55); }
.footer-bottom {
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

/* ── MODAL ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(17,17,17,0.85);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.modal-overlay.active { opacity: 1; pointer-events: all; }
.modal {
  background: var(--white);
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(24px);
  transition: transform 0.3s;
}
.modal-overlay.active .modal { transform: translateY(0); }
.modal-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--black);
  z-index: 10;
  transition: color 0.2s;
}
.modal-close:hover { color: var(--coral); }

/* ── MOBILE NAV ── */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 1500;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.77,0,0.175,1);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 42px;
  color: var(--white);
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--coral); }
.mobile-nav-close {
  position: absolute;
  top: 24px; right: 24px;
  font-size: 24px;
  color: var(--white);
}

/* ── UTILS ── */
.text-coral { color: var(--coral); }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-32 { margin-top: 32px; }
.text-center { text-align: center; }
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .container { padding: 0 24px; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .about-strip { grid-template-columns: 1fr; gap: 48px; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  nav { display: none; }
  .burger { display: flex; }
  .header-icons .desktop-only { display: none; }
  .hero-title { font-size: clamp(52px, 14vw, 80px); }
  .products-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .categories-grid { grid-template-columns: 1fr 1fr; gap: 2px; }
  .blog-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .featured-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .newsletter-form { flex-direction: column; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
}
