/* ============================================
   Organized International — Unified Styles
   ============================================ */

:root {
  --sky: #eef9ff;
  --sky-strong: #7ecdf5;
  --navy: #0f2f4b;
  --navy-deep: #051a2a;
  --accent: #ff7a3d;
  --accent-2: #2b97f0;
  --text: #18344d;
  --muted: #60748b;
  --card-bg: rgba(255, 255, 255, 0.93);
  --border: rgba(15, 47, 75, 0.12);
  --shadow: 0 18px 45px rgba(15, 47, 75, 0.12);
  --radius-lg: 24px;
  --radius-xl: 32px;
  --font-heading: 'Montserrat', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
  --header-h: 72px;
  --max-w: 1220px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-heading);
  background: linear-gradient(135deg, #f7fdff 0%, var(--sky) 100%);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

body a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { font-family: inherit; }

.section-block { padding: 48px 0; }
.section-block--tight { padding: 32px 0; }

.eyebrow {
  margin-bottom: 8px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 800;
  color: #dceeff;
}

/* ---------- Announcement bar ---------- */
.announcement-bar {
  background: linear-gradient(90deg, var(--accent-2), #6dc8ff);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 10px 52px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.4px;
  transition: max-height 0.3s ease, padding 0.3s ease, opacity 0.3s ease;
  max-height: 60px;
  overflow: hidden;
}

.announcement-bar.is-hidden {
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  opacity: 0;
}

.announcement-bar .pause-btn {
  position: absolute;
  right: 16px;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  color: #fff;
  display: flex;
  align-items: center;
  padding: 6px 8px;
  transition: background 0.2s ease;
}

.announcement-bar .pause-btn:hover { background: rgba(255, 255, 255, 0.28); }
.pause-btn svg { width: 14px; height: 14px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: var(--header-h);
  padding: 0 32px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(15, 47, 75, 0.08);
  box-shadow: 0 8px 28px rgba(15, 47, 75, 0.08);
}

.nav-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.nav-links a {
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  transition: color 0.2s ease;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--accent-2);
  border-radius: 2px;
  transition: width 0.2s ease;
}

.nav-links a:hover,
.nav-links a.is-active { color: var(--accent-2); }
.nav-links a:hover::after,
.nav-links a.is-active::after { width: 100%; }

.logo img {
  height: 46px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}

.icons {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 18px;
}

.icons a,
.icons button {
  color: var(--navy);
  display: flex;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 50%;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.icons a:hover,
.icons button:hover {
  background: rgba(43, 151, 240, 0.1);
  color: var(--accent-2);
  transform: translateY(-1px);
}

.icons svg { width: 20px; height: 20px; }

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.menu-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--navy);
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-panel {
  display: none;
  flex-direction: column;
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 12px 24px rgba(15, 47, 75, 0.08);
}

.mobile-panel a {
  padding: 14px 24px;
  color: var(--navy);
  font-size: 15px;
  font-weight: 600;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s ease, color 0.2s ease;
}

.mobile-panel a:hover {
  background: rgba(43, 151, 240, 0.06);
  color: var(--accent-2);
}

.mobile-panel.open { display: flex; }

/* ---------- Hero carousel ---------- */
.hero-showcase {
  width: 100%;
  max-width: 1400px;
  margin: clamp(12px, 2vw, 24px) auto 0;
  padding: 0 clamp(12px, 2.5vw, 32px);
}

.hero-carousel {
  width: 100%;
  border-radius: clamp(16px, 2vw, var(--radius-xl));
  overflow: hidden;
  box-shadow: 0 32px 70px rgba(15, 47, 75, 0.18);
  background: #e8f4fc;
}

.carousel {
  width: 100%;
  margin: 0;
  padding: 0;
}

.carousel-inner {
  width: 100%;
  border-radius: inherit;
  overflow: hidden;
}

.carousel-item {
  position: relative;
  width: 100%;
  height: 0 !important;
  min-height: 0 !important;
  padding-bottom: 50%;
  background: #e8f4fc;
  overflow: hidden;
}

.carousel-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}

.carousel-control-prev,
.carousel-control-next {
  width: clamp(40px, 4vw, 48px);
  height: clamp(40px, 4vw, 48px);
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  opacity: 1;
  margin: 0 clamp(8px, 1.5vw, 20px);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: brightness(0) saturate(100%) invert(15%) sepia(25%) saturate(756%) hue-rotate(170deg) brightness(95%) contrast(95%);
}

.carousel-indicators { margin-bottom: 16px; }

.carousel-indicators li {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  margin: 0 5px;
}

.carousel-indicators .active { background: #fff; }

/* ---------- Hero intro ---------- */
.hero-intro {
  max-width: var(--max-w);
  margin: 36px auto 0;
  padding: 0 24px;
}

.hero-intro__content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 20px;
  padding: 36px;
  background: linear-gradient(135deg, #0f2f4b 0%, #1c4e74 60%, #2b97f0 100%);
  border-radius: var(--radius-xl);
  color: #fff;
  box-shadow: var(--shadow);
}

.hero-intro__copy h1 {
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.05;
  margin-bottom: 12px;
  font-weight: 900;
}

.hero-intro__copy p {
  color: #dceeff;
  font-size: 16px;
  line-height: 1.7;
  max-width: 560px;
}

.hero-intro__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.hero-intro__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  background: #fff;
  color: var(--navy);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-intro__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.14);
}

.hero-intro__btn--ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.hero-intro__stats {
  display: grid;
  gap: 12px;
}

.hero-intro__stat {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 18px 20px;
  border-radius: 18px;
  transition: background 0.2s ease;
}

.hero-intro__stat:hover { background: rgba(255, 255, 255, 0.2); }

.hero-intro__stat strong {
  display: block;
  font-size: 22px;
  margin-bottom: 4px;
}

.hero-intro__stat span {
  font-size: 14px;
  color: #dceeff;
  line-height: 1.5;
}

/* ---------- Section headers ---------- */
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.section-title {
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.1;
}

.section-link {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--accent-2);
  white-space: nowrap;
  transition: color 0.2s ease;
}

.section-link:hover { color: var(--navy); }

/* ---------- Sale / featured grid ---------- */
.sale-panel {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 48px 24px 16px;
}

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

.sale-card {
  display: block;
  color: var(--text);
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.sale-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 50px rgba(15, 47, 75, 0.16);
}

.sale-card__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #e8f4fc;
}

.sale-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.sale-card:hover .sale-card__media img { transform: scale(1.05); }

.sale-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: linear-gradient(135deg, var(--accent), #ff945b);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 999px;
}

.sale-card__title {
  margin: 14px 16px 16px;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ---------- Gender hero banners ---------- */
.hero-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 32px 24px;
}

.hero-panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  min-height: 320px;
  box-shadow: var(--shadow);
}

.hero-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  filter: brightness(0.85);
}

.hero-panel:hover img { transform: scale(1.04); }

.hero-panel .hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
  padding: 24px;
  background: linear-gradient(135deg, rgba(15, 47, 75, 0.1), rgba(15, 47, 75, 0.5));
}

.hero-panel .headline {
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.shop-btn {
  display: inline-block;
  background: #fff;
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 12px 24px;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.shop-btn:hover {
  background: var(--navy);
  color: #fff;
  transform: translateY(-2px);
}

/* ---------- Product rows ---------- */
.top10 {
  max-width: var(--max-w);
  margin: 0 auto 48px;
  padding: 0 24px;
}

.top10__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.top10__title {
  font-size: 24px;
  font-weight: 900;
  color: var(--navy);
}

.top10__track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  list-style: none;
}

.product-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 12px;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(15, 47, 75, 0.14);
}

.product-card__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 16px;
  margin-bottom: 10px;
  background: #e8f4fc;
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card:hover .product-card__media img { transform: scale(1.05); }

.product-card__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 5px 9px;
  border-radius: 999px;
}

.product-card__title {
  font-size: 14px;
  font-weight: 800;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

/* ---------- Full-width promo hero ---------- */
.promo-hero {
  position: relative;
  width: 100%;
  max-width: var(--max-w);
  margin: 32px auto;
  padding: 0 24px;
}

.promo-hero__inner {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 16 / 6;
  min-height: 280px;
  box-shadow: var(--shadow);
}

.promo-hero__inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.promo-hero__inner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.3) 40%,
    rgba(0, 0, 0, 0) 70%
  );
}

.promo-hero__content {
  position: absolute;
  bottom: clamp(24px, 4vw, 48px);
  left: clamp(24px, 4vw, 48px);
  z-index: 2;
  color: #fff;
  max-width: 420px;
}

.promo-hero__content h2 {
  font-size: clamp(22px, 3vw, 38px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 12px;
}

.promo-hero__content p {
  font-size: clamp(13px, 1.2vw, 15px);
  line-height: 1.6;
  margin-bottom: 20px;
  color: #eee;
}

/* ---------- Page shell (About, Contact) ---------- */
.page-shell {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px 72px;
}

.page-header {
  max-width: var(--max-w);
  margin: 32px auto 0;
  padding: 0 24px;
}

.page-header h1 {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 900;
  color: var(--navy);
  text-transform: uppercase;
}

.page-header p {
  color: var(--muted);
  margin-top: 8px;
  font-size: 16px;
}

.page-banner {
  margin: 24px 0;
  padding: 40px 36px;
  border-radius: 30px;
  background: linear-gradient(135deg, #0f2f4b 0%, #1c4e74 60%, #2b97f0 100%);
  color: #fff;
  box-shadow: var(--shadow);
}

.page-banner h1 {
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1.08;
  font-weight: 900;
  margin-bottom: 12px;
}

.page-banner p {
  color: #dceeff;
  font-size: 16px;
  line-height: 1.7;
  max-width: 680px;
}

.page-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.page-grid--stats { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.page-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
}

.page-card h2 {
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 12px;
  font-weight: 900;
}

.page-card p,
.page-card li {
  color: var(--muted);
  line-height: 1.7;
}

.page-card ul {
  list-style: none;
  display: grid;
  gap: 10px;
}

.page-card li::before {
  content: "•";
  color: var(--accent-2);
  font-weight: 900;
  margin-right: 8px;
}

.page-stat strong {
  display: block;
  font-size: 28px;
  color: var(--navy);
  margin-bottom: 8px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 20px;
  margin-top: 20px;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 700;
  color: var(--navy);
  font-size: 14px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px 14px;
  font-size: 14px;
  color: var(--text);
  background: #fff;
  font-family: var(--font-body);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent-2);
  box-shadow: 0 0 0 3px rgba(43, 151, 240, 0.15);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form button {
  border: none;
  border-radius: 999px;
  padding: 14px 22px;
  background: linear-gradient(135deg, var(--accent-2), #1e72c7);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(43, 151, 240, 0.3);
}

.form-alert {
  max-width: var(--max-w);
  margin: 0 auto 20px;
  padding: 14px 18px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 600;
}

.form-alert--success {
  background: #e8f8ef;
  color: #1b6b3a;
  border: 1px solid #b8e6c8;
}

.form-alert--error {
  background: #fff0f0;
  color: #9b2c2c;
  border: 1px solid #f5c2c2;
}

.page-card a {
  color: var(--accent-2);
  font-weight: 600;
}

.page-card a:hover {
  color: var(--navy);
}

/* ---------- Product catalog (oi-) ---------- */
.oi-panel {
  padding: 0 24px 60px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.oi-grid,
#productGrid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 20px;
  width: 100%;
}

.oi-card {
  cursor: pointer;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.oi-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(15, 47, 75, 0.14);
}

.oi-card__media {
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #e8f4fc;
}

.oi-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.oi-card:hover .oi-card__media img { transform: scale(1.05); }

.oi-card__title {
  margin: 14px 16px 16px;
  font-size: 14px;
  font-weight: 800;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.oi-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(5, 26, 42, 0.65);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(4px);
}

.oi-modal-overlay.open { display: flex; }

.oi-modal-box {
  background: #fff;
  width: 100%;
  max-width: 440px;
  max-height: 90vh;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.25);
}

.oi-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  font-size: 18px;
  cursor: pointer;
  z-index: 2;
  color: var(--navy);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.oi-modal-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  flex-shrink: 0;
}

.oi-modal-info {
  padding: 22px 24px;
  flex: 1;
  overflow-y: auto;
}

.oi-modal-info h2 {
  font-size: 22px;
  margin-bottom: 8px;
  color: var(--navy);
  font-weight: 900;
}

.oi-modal-info .oi-modal-price {
  font-size: 18px;
  font-weight: 800;
  color: var(--accent-2);
  margin-bottom: 12px;
}

.oi-modal-info p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* Modal aliases used by product catalog pages */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(5, 26, 42, 0.65);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(4px);
}

.modal-overlay.open { display: flex; }

.modal-box {
  background: #fff;
  width: 100%;
  max-width: 440px;
  max-height: 90vh;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.25);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  font-size: 18px;
  cursor: pointer;
  z-index: 2;
  color: var(--navy);
}

.modal-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.modal-info {
  padding: 22px 24px;
}

.modal-info h2 {
  font-size: 22px;
  margin-bottom: 8px;
  color: var(--navy);
  font-weight: 900;
}

.modal-price {
  font-size: 18px;
  font-weight: 800;
  color: var(--accent-2);
  margin-bottom: 12px;
}

.modal-info p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

#productGrid .sale-card {
  display: block;
  color: var(--text);
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

#productGrid .sale-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(15, 47, 75, 0.14);
}

#productGrid .sale-card__media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #e8f4fc;
}

#productGrid .sale-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

#productGrid .sale-card:hover .sale-card__media img { transform: scale(1.05); }

#productGrid .sale-card__title {
  margin: 14px 16px 16px;
  font-size: 14px;
  font-weight: 800;
  color: var(--navy);
  text-transform: uppercase;
}

/* ---------- Product detail page (Gymshark-style, no price) ---------- */
.pdp {
  padding: 0 24px 72px;
}

.pdp__shell {
  max-width: 1220px;
  margin: 0 auto;
}

.pdp__back {
  display: inline-block;
  margin: 24px 0 20px;
  color: var(--muted);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.pdp__back:hover {
  color: var(--navy);
}

.pdp__hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 40px;
  align-items: start;
}

.pdp__gallery {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 16px;
  position: sticky;
  top: calc(var(--header-h) + 16px);
}

.pdp__thumbs {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pdp__thumb {
  border: 2px solid transparent;
  border-radius: 12px;
  overflow: hidden;
  padding: 0;
  background: #fff;
  cursor: pointer;
  aspect-ratio: 1;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.pdp__thumb.is-active {
  border-color: var(--navy);
}

.pdp__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pdp__main-image {
  background: #f4f8fc;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

.pdp__main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pdp__buybox {
  padding-top: 8px;
}

.pdp__badge {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 10px;
  background: var(--navy);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  border-radius: 4px;
}

.pdp__title {
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.08;
  margin-bottom: 8px;
  text-transform: capitalize;
}

.pdp__support {
  display: inline-block;
  margin-bottom: 16px;
  padding: 6px 12px;
  background: rgba(43, 151, 240, 0.1);
  color: var(--accent-2);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  border-radius: 999px;
}

.pdp__summary {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 480px;
}

.pdp__label {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--navy);
  margin-bottom: 10px;
}

.pdp__colors,
.pdp__sizes {
  margin-bottom: 22px;
}

.pdp__swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pdp__swatch {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid #ddd;
  background: var(--swatch);
  cursor: pointer;
  padding: 0;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.pdp__swatch.is-active {
  border-color: var(--navy);
  transform: scale(1.08);
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--navy);
}

.pdp__sizes-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.pdp__size-guide {
  border: none;
  background: none;
  color: var(--accent-2);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
}

.pdp__size-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
}

.pdp__size {
  min-height: 44px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.2s ease;
}

.pdp__size:hover {
  border-color: var(--navy);
}

.pdp__size.is-active {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.pdp__add-btn {
  width: 100%;
  border: none;
  border-radius: 999px;
  padding: 16px 24px;
  background: var(--navy);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.pdp__add-btn:hover:not(:disabled) {
  background: #1c4e74;
  transform: translateY(-1px);
}

.pdp__add-btn:disabled {
  opacity: 0.7;
  cursor: default;
}

.pdp__contact-link {
  display: inline-block;
  margin: 14px 0 20px;
  color: var(--accent-2);
  font-size: 14px;
  font-weight: 700;
  text-decoration: underline;
}

.pdp__perks {
  list-style: none;
  display: grid;
  gap: 8px;
  padding: 18px 0 0;
  border-top: 1px solid var(--border);
}

.pdp__perks li {
  color: var(--muted);
  font-size: 13px;
  padding-left: 18px;
  position: relative;
}

.pdp__perks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-2);
  font-weight: 900;
}

.pdp__features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 48px 0 32px;
}

.pdp__feature-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.pdp__feature-card h3 {
  font-size: 16px;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.pdp__feature-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.pdp__tabs {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.pdp__tab-nav {
  display: flex;
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
}

.pdp__tab-btn {
  flex: 1;
  min-width: 140px;
  border: none;
  background: transparent;
  padding: 16px 20px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--muted);
  cursor: pointer;
  border-bottom: 3px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.pdp__tab-btn.is-active {
  color: var(--navy);
  border-bottom-color: var(--navy);
}

.pdp__tab-panels {
  padding: 24px 28px 28px;
}

.pdp__tab-panel {
  display: none;
  color: var(--muted);
  line-height: 1.8;
  font-size: 15px;
}

.pdp__tab-panel.is-active {
  display: block;
}

.pdp__tab-panel ul {
  list-style: none;
  display: grid;
  gap: 12px;
}

.pdp__tab-panel li::before {
  content: "•";
  color: var(--accent-2);
  font-weight: 900;
  margin-right: 8px;
}

.pdp__related {
  margin-top: 48px;
}

.pdp__related-head {
  margin-bottom: 20px;
}

.pdp__related-head h2 {
  font-size: 24px;
  font-weight: 900;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.pdp__related-head p {
  color: var(--muted);
  font-size: 14px;
}

.pdp__related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.pdp__related-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease;
}

.pdp__related-card:hover {
  transform: translateY(-4px);
}

.pdp__related-media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #e8f4fc;
}

.pdp__related-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pdp__related-card h3 {
  margin: 14px 16px 16px;
  font-size: 14px;
  font-weight: 800;
  color: var(--navy);
  text-transform: uppercase;
}

.pdp__modal .modal-content {
  border-radius: 18px;
  border: none;
}

.pdp__modal .modal-header {
  border-bottom: 1px solid var(--border);
}

.pdp__modal .modal-title {
  font-weight: 900;
  color: var(--navy);
  text-transform: uppercase;
}

.pdp__size-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.pdp__size-table th,
.pdp__size-table td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--border);
  text-align: left;
}

.pdp__size-table th {
  color: var(--navy);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 12px;
}

@media (max-width: 900px) {
  .pdp__hero {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .pdp__gallery {
    position: static;
    grid-template-columns: 1fr;
  }

  .pdp__thumbs {
    flex-direction: row;
    order: 2;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .pdp__thumb {
    min-width: 72px;
    flex: 0 0 72px;
  }

  .pdp__features,
  .pdp__related-grid {
    grid-template-columns: 1fr;
  }

  .pdp__size-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .pdp {
    padding: 0 16px 56px;
  }

  .pdp__tab-btn {
    min-width: 120px;
    font-size: 11px;
    padding: 14px 12px;
  }
}

/* ---------- Buttons (catalog pages) ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.btn-primary {
  background: var(--navy);
  color: #fff;
}

.btn-primary:hover {
  background: #1c4e74;
  transform: translateY(-2px);
}

/* ---------- Footer ---------- */
.site-footer {
  margin-top: 72px;
  padding: 56px 24px 28px;
  background: linear-gradient(135deg, var(--navy-deep) 0%, #10324b 45%, #194f74 100%);
  color: #f5fbff;
  position: relative;
  overflow: hidden;
  border-top-left-radius: var(--radius-xl);
  border-top-right-radius: var(--radius-xl);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.12), transparent 28%),
    radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.06), transparent 22%);
  pointer-events: none;
}

.footer-cta {
  max-width: var(--max-w);
  margin: 0 auto 28px;
  padding: 22px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 1;
}

.footer-cta h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 900;
}

.footer-cta__btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: #fff;
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
  transition: transform 0.2s ease;
}

.footer-cta__btn:hover { transform: translateY(-2px); }

.footer-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.35fr 0.85fr 0.85fr 0.95fr;
  gap: 32px;
  position: relative;
  z-index: 1;
}

.footer-brand p {
  color: #d8e9ff;
  line-height: 1.8;
  margin-top: 14px;
  max-width: 360px;
  font-size: 14px;
}

.footer-brand .brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer-brand .brand-mark img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.footer-links h4,
.footer-newsletter h4 {
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 16px;
}

.footer-links ul {
  list-style: none;
  display: grid;
  gap: 10px;
}

.footer-links a {
  color: #dbe9ff;
  font-size: 14px;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-links a:hover {
  color: #fff;
  transform: translateX(3px);
}

.footer-newsletter p {
  color: #dbe9ff;
  font-size: 14px;
  line-height: 1.6;
}

.footer-newsletter__form {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.footer-newsletter input {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  outline: none;
  border-radius: 999px;
  padding: 13px 16px;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-family: var(--font-body);
}

.footer-newsletter input::placeholder { color: rgba(255, 255, 255, 0.55); }

.footer-newsletter button {
  border: none;
  border-radius: 999px;
  padding: 13px 18px;
  font-weight: 800;
  background: linear-gradient(135deg, #51a8ff, #1f6cd5);
  color: #fff;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.footer-newsletter button:hover { transform: translateY(-2px); }

.footer-bottom {
  max-width: var(--max-w);
  margin: 32px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #cfe8ff;
  font-size: 13px;
  position: relative;
  z-index: 1;
  gap: 16px;
}

.footer-bottom span { opacity: 0.75; }

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  transition: background 0.2s ease, transform 0.2s ease;
}

.footer-social a:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-2px);
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-intro__content { grid-template-columns: 1fr; }
  .hero-intro__stats { grid-template-columns: repeat(2, 1fr); }
  .page-grid,
  .page-grid--stats { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .oi-grid { grid-template-columns: repeat(3, 1fr) !important; }
}

@media (max-width: 768px) {
  .sale-panel,
  .hero-intro,
  .top10,
  .hero-banner,
  .hero-showcase,
  .promo-hero,
  .page-shell,
  .page-header,
  .oi-panel {
    padding-left: 16px;
    padding-right: 16px;
  }
  .sale-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-banner { grid-template-columns: 1fr; }
  .top10__track { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .carousel-item {
    padding-bottom: 56.25%;
    height: 0 !important;
    min-height: 0 !important;
  }
  .promo-hero__inner { aspect-ratio: 4 / 3; }
  .footer-cta { flex-direction: column; align-items: flex-start; }
  .oi-grid { grid-template-columns: repeat(2, 1fr) !important; }
}

@media (max-width: 640px) {
  .announcement-bar {
    font-size: 11px;
    padding: 9px 40px 9px 14px;
    justify-content: flex-start;
  }
  .site-header {
    grid-template-columns: auto 1fr auto;
    padding: 0 14px;
    height: 60px;
  }
  .nav-links { display: none; }
  .menu-toggle { display: flex; }
  .logo img { height: 36px; }
  .icons { gap: 10px; }
  .icons svg { width: 18px; height: 18px; }
  .hero-intro__content { padding: 24px; }
  .hero-intro__stats { grid-template-columns: 1fr; }
  .sale-grid,
  .top10__track { grid-template-columns: 1fr; }
  .hero-panel { min-height: 240px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; align-items: flex-start; }
  .section-header { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 380px) {
  .icons a[aria-label="Wishlist"] { display: none; }
  .carousel-item {
    padding-bottom: 75%;
    height: 0 !important;
    min-height: 0 !important;
  }
}

@media (max-width: 700px) {
  .oi-modal-box { max-height: 85vh; }
  .oi-modal-img { height: 260px; }
}
