/* ─────────────────────────────────────────────────────────────
   SEXY ME JA® — Nike-Inspired Stylesheet
   Fonts: Bebas Neue (headings) · Inter (body)
───────────────────────────────────────────────────────────── */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black: #111111;
  --white: #ffffff;
  --grey-light: #f5f5f5;
  --grey-mid: #e5e5e5;
  --grey-text: #757575;
  --gold: #c9a07a;
  --font-head: 'Bebas Neue', sans-serif;
  --font-body: 'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  border-radius: 30px;
  cursor: pointer;
  border: none;
  transition: background 0.2s, color 0.2s, transform 0.15s;
  white-space: nowrap;
}
.btn:hover { transform: scale(1.03); }

.btn-white   { background: var(--white);  color: var(--black); }
.btn-black   { background: var(--black);  color: var(--white); }
.btn-outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.7); }
.btn-outline:hover { background: rgba(255,255,255,0.1); }

.btn-sm { padding: 10px 20px; font-size: 12px; }

/* ─── LABELS ─────────────────────────────────────────────── */
.label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey-text);
  margin-bottom: 8px;
}

/* ─── TOP BAR ────────────────────────────────────────────── */
.top-bar {
  background: var(--black);
  color: var(--white);
  text-align: center;
  padding: 10px 16px;
  font-size: 12px;
  letter-spacing: 0.06em;
  font-weight: 400;
}
.top-bar strong { font-weight: 700; }

/* ─── NAVBAR ─────────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--grey-mid);
  transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: 0 2px 12px rgba(0,0,0,0.08); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo {
  font-family: var(--font-head);
  font-size: 24px;
  letter-spacing: 0.08em;
  color: var(--black);
  line-height: 1;
}
.nav-logo sup { font-size: 12px; vertical-align: super; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links li a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--black);
  transition: opacity 0.2s;
}
.nav-links li a:hover { opacity: 0.5; }
.nav-links li a.nav-sale { color: #cc0000; font-weight: 700; }

.nav-icons {
  display: flex;
  align-items: center;
  gap: 8px;
}
.icon-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s;
}
.icon-btn:hover { background: var(--grey-light); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: all 0.3s;
}

/* MOBILE MENU */
.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--grey-mid);
  padding: 12px 0 20px;
}
.nav-mobile a {
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--black);
  transition: background 0.2s;
  border-bottom: 1px solid var(--grey-mid);
}
.nav-mobile a:hover { background: var(--grey-light); }
.nav-mobile.open { display: flex; }

/* ─── HERO SLIDESHOW ─────────────────────────────────────── */
.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.slides-wrap {
  position: relative;
  width: 100%;
  height: 88vh;
  min-height: 520px;
}

.slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  transition: opacity 0.7s ease;
  pointer-events: none;
}
.slide.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

.slide-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.slide-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.slide-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  color: var(--white);
}

.slide-content.dark { color: var(--black); }
.slide-content.dark .slide-tag { background: var(--black); color: var(--white); }

.slide-tag {
  display: inline-block;
  background: var(--white);
  color: var(--black);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 2px;
  margin-bottom: 20px;
}

.slide-content h1 {
  font-family: var(--font-head);
  font-size: clamp(60px, 9.5vw, 120px);
  line-height: 0.9;
  letter-spacing: 0.02em;
  margin-bottom: 18px;
}

.slide-content p {
  font-size: 16px;
  font-weight: 400;
  max-width: 420px;
  margin-bottom: 32px;
  opacity: 0.85;
  line-height: 1.55;
}

.slide-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* SLIDE CONTROLS */
.slide-controls {
  position: absolute;
  bottom: 32px;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.slide-prev,
.slide-next {
  background: rgba(255,255,255,0.18);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.15s;
  backdrop-filter: blur(6px);
}
.slide-prev:hover,
.slide-next:hover {
  background: rgba(255,255,255,0.32);
  transform: scale(1.1);
}

.slide-dots { display: flex; gap: 8px; }
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
.dot.active {
  background: var(--white);
  transform: scale(1.35);
}

/* ─── NEW ARRIVALS BANNER ────────────────────────────────── */
.new-banner {
  padding: 80px 0;
  background: var(--white);
}
.new-banner-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.new-banner-text h2 {
  font-family: var(--font-head);
  font-size: clamp(40px, 5vw, 68px);
  letter-spacing: 0.03em;
  line-height: 1;
  margin-bottom: 14px;
}
.new-banner-text p {
  font-size: 15px;
  color: var(--grey-text);
  max-width: 360px;
  line-height: 1.65;
  margin-bottom: 28px;
}
.new-banner-img {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.new-banner-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ─── SECTION DEFAULTS ───────────────────────────────────── */
.section { padding: 80px 0; }

.section-head { margin-bottom: 40px; }
.section-head.center { text-align: center; }
.section-head h2 {
  font-family: var(--font-head);
  font-size: clamp(32px, 4.5vw, 54px);
  letter-spacing: 0.03em;
  line-height: 1;
}
.section-head.flex-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.see-all {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: underline;
  color: var(--black);
  margin-bottom: 4px;
  transition: opacity 0.2s;
}
.see-all:hover { opacity: 0.5; }

/* ─── CATEGORIES ─────────────────────────────────────────── */
.categories-section { background: var(--grey-light); }

.cat-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 16px;
  height: 560px;
}
.cat-right {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
}
.cat-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
}
.cat-card:hover .cat-bg img { transform: scale(1.05); }
.cat-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 8px;
}
.cat-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.cat-info {
  position: absolute;
  bottom: 24px;
  left: 24px;
  z-index: 2;
}
.cat-info h3 {
  font-family: var(--font-head);
  font-size: clamp(22px, 2.5vw, 32px);
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 12px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

/* ─── PRODUCTS ───────────────────────────────────────────── */
.products-section { background: var(--white); }

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.product-card { cursor: pointer; }
.product-card:hover .product-img img { transform: scale(1.04); }
.product-card:hover .product-hover-btn { opacity: 1; transform: translateX(-50%) translateY(0); }

.product-img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 12px;
  aspect-ratio: 3/4;
}
.product-img {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--black);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
}
.product-badge.new  { background: #0070f3; }
.product-badge.fav  { background: #7c3aed; }
.product-badge.top  { background: #047857; }

.product-hover-btn {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  opacity: 0;
  transition: opacity 0.25s, transform 0.25s;
  white-space: nowrap;
}

.product-info { padding: 0 2px; }
.product-top-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 4px;
}
.product-top-row h4 { font-size: 14px; font-weight: 600; letter-spacing: 0.02em; }
.product-price { font-size: 14px; font-weight: 700; white-space: nowrap; }
.product-sub { font-size: 12px; color: var(--grey-text); margin-bottom: 8px; }

.product-colors { display: flex; gap: 6px; }
.color-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1.5px solid rgba(0,0,0,0.12);
  display: inline-block;
  cursor: pointer;
  transition: transform 0.2s;
}
.color-dot:hover { transform: scale(1.25); }

/* ─── DON'T MISS ─────────────────────────────────────────── */
.dont-miss {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.dm-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.dm-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.dm-card:hover img { transform: scale(1.04); }
.dm-content {
  position: absolute;
  bottom: 40px;
  left: 40px;
  z-index: 2;
  color: var(--white);
}
.dm-content.dark { color: var(--black); }
.dm-content span {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
  opacity: 0.7;
}
.dm-content h3 {
  font-family: var(--font-head);
  font-size: clamp(28px, 3.5vw, 48px);
  letter-spacing: 0.04em;
  line-height: 0.95;
  margin-bottom: 20px;
}

/* ─── REVIEWS ────────────────────────────────────────────── */
.reviews-section { background: var(--grey-light); }

.rating-row {
  font-size: 15px;
  font-weight: 600;
  color: var(--black);
  margin-top: 10px;
  letter-spacing: 0.03em;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--white);
  border-radius: 10px;
  padding: 28px 24px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.r-stars {
  color: #f5a623;
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.review-card p {
  font-size: 14px;
  color: #333;
  line-height: 1.65;
  margin-bottom: 20px;
}
.r-author { display: flex; align-items: center; gap: 12px; }
.r-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.r-author strong { display: block; font-size: 13px; font-weight: 700; }
.r-author span { font-size: 11px; color: var(--grey-text); display: block; margin-top: 1px; }

/* ─── ABOUT ──────────────────────────────────────────────── */
.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}
.about-img {
  overflow: hidden;
  position: relative;
}
.about-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-content {
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
}
.about-content h2 {
  font-family: var(--font-head);
  font-size: clamp(36px, 4vw, 56px);
  letter-spacing: 0.03em;
  line-height: 1;
  margin-bottom: 20px;
}
.about-content p {
  font-size: 15px;
  color: #444;
  max-width: 420px;
  line-height: 1.7;
  margin-bottom: 14px;
}
.about-content .btn { margin-top: 12px; align-self: flex-start; }

/* ─── EMAIL SIGNUP ───────────────────────────────────────── */
.email-section {
  background: var(--black);
  color: var(--white);
  padding: 80px 0;
  text-align: center;
}
.email-section h2 {
  font-family: var(--font-head);
  font-size: clamp(40px, 6vw, 76px);
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}
.email-section p {
  font-size: 15px;
  opacity: 0.6;
  margin-bottom: 36px;
}
.email-form {
  display: flex;
  justify-content: center;
  max-width: 480px;
  margin: 0 auto;
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 30px;
  overflow: hidden;
}
.email-form input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 14px 20px;
  font-size: 14px;
  color: var(--white);
  font-family: var(--font-body);
  outline: none;
}
.email-form input::placeholder { color: rgba(255,255,255,0.35); }
.email-form .btn { border-radius: 0 30px 30px 0; padding: 14px 24px; }

/* ─── FOOTER ─────────────────────────────────────────────── */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 60px 0 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo {
  font-family: var(--font-head);
  font-size: 26px;
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 10px;
}
.footer-logo sup { font-size: 12px; vertical-align: super; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.5; }
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer-col h5 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: rgba(255,255,255,0.5);
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 13px; color: rgba(255,255,255,0.7); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--white); }

.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.3); letter-spacing: 0.03em; }

/* ─── CONTACT & SOCIALS ──────────────────────────────────── */
.contact-section {
  background: var(--grey-light);
  padding: 80px 0;
}
.contact-header {
  text-align: center;
  margin-bottom: 48px;
}
.contact-header h2 {
  font-family: var(--font-head);
  font-size: clamp(36px, 5vw, 60px);
  letter-spacing: 0.03em;
  line-height: 1;
  margin-bottom: 12px;
}
.contact-header p {
  font-size: 15px;
  color: var(--grey-text);
  max-width: 480px;
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border-radius: 12px;
  padding: 20px 18px;
  text-decoration: none;
  color: var(--black);
  border: 1.5px solid var(--grey-mid);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
}
.contact-card:hover {
  border-color: var(--black);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

.contact-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--white);
}
.contact-card-icon.ig { background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045); }
.contact-card-icon.wa { background: #25D366; }
.contact-card-icon.fb { background: #1877F2; }
.contact-card-icon.tt { background: #000000; }

.contact-card-text { flex: 1; }
.contact-card-text h4 { font-size: 14px; font-weight: 700; margin-bottom: 3px; }
.contact-card-text span { font-size: 12px; color: var(--grey-text); }

.contact-card-arrow {
  font-size: 18px;
  color: var(--grey-text);
  transition: transform 0.2s, color 0.2s;
}
.contact-card:hover .contact-card-arrow { transform: translateX(4px); color: var(--black); }

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .cat-grid { height: 440px; }
}

@media (max-width: 768px) {
  /* NAV */
  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  /* HERO */
  .slides-wrap { height: 75vh; min-height: 480px; }
  .slide-content h1 { font-size: clamp(44px, 12vw, 72px); }
  .slide-content p { font-size: 14px; }

  /* NEW ARRIVALS */
  .new-banner { padding: 56px 0; }
  .new-banner-inner { grid-template-columns: 1fr; gap: 32px; }
  .new-banner-img { aspect-ratio: 16/9; }

  /* CATEGORIES */
  .cat-grid { grid-template-columns: 1fr; height: auto; }
  .cat-card.large { aspect-ratio: 4/3; }
  .cat-card { aspect-ratio: 3/2; }

  /* PRODUCTS */
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .product-hover-btn { opacity: 1; transform: translateX(-50%) translateY(0); }

  /* DON'T MISS */
  .dont-miss { grid-template-columns: 1fr; }
  .dm-card { aspect-ratio: 16/9; }
  .dm-content { bottom: 24px; left: 24px; }

  /* REVIEWS */
  .reviews-grid { grid-template-columns: 1fr; gap: 16px; }

  /* ABOUT */
  .about-section { grid-template-columns: 1fr; }
  .about-img { height: 300px; position: relative; }
  .about-content { padding: 48px 24px; }

  /* EMAIL */
  .email-section { padding: 56px 0; }
  .email-form { flex-direction: column; border-radius: 12px; }
  .email-form input { padding: 14px 20px; border-bottom: 1px solid rgba(255,255,255,0.12); }
  .email-form .btn { border-radius: 0 0 12px 12px; text-align: center; }

  /* CONTACT */
  .contact-grid { grid-template-columns: repeat(2, 1fr); }

  /* FOOTER */
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-cols { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .slide-content { padding: 0 20px; }
  .slide-content h1 { font-size: clamp(38px, 13vw, 58px); }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .product-top-row { flex-direction: column; gap: 2px; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .dm-content { bottom: 16px; left: 16px; }
  .section-head.flex-head { flex-direction: column; align-items: flex-start; gap: 8px; }
  .contact-grid { grid-template-columns: 1fr; }
}
