/* ============================================================
   SUPERYACHT INFLATABLES — Main Stylesheet
   Design system extracted from Elementor site-settings.json
   ============================================================ */

/* ─── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Poppins:wght@300;400;500;600;700&display=swap');

/* ─── CSS Variables (design tokens) ────────────────────────── */
:root {
  --primary:    #1C244B;   /* Navy – headers, buttons, primary text */
  --secondary:  #CC7351;   /* Orange/coral – hover, accents */
  --text:       #324A6D;   /* Body text blue-grey */
  --black:      #060606;
  --white:      #FFFFFF;
  --bg:         #F7F7F8;   /* Light grey background */
  --border:     #E1E2E3;
  --gold:       #FAC213;
  --brown:      #F77E21;
  --green:      #9DAB86;

  --font-body:    'Merriweather', serif;
  --font-ui:      'Poppins', sans-serif;
  --font-heading: 'Saira Condensed', sans-serif;
  --font-pill:    'Saira', sans-serif;

  --container:  1560px;
  --radius:     4px;
  --gap:        20px;
  --transition: 0.25s ease;
}

/* ─── Reset & Base ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

[class*="__pill"], [class*="-pill"], .pill {
  font-family: var(--font-pill) !important;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading) !important;
  letter-spacing: 0.5px;
  line-height: 1.15;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--secondary); }
ul, ol { list-style: none; }

/* ─── Typography ────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--primary);
  line-height: 1.2;
}

h1 { font-size: clamp(32px, 5vw, 55px); }
h2 { font-size: clamp(26px, 3vw, 35px); font-weight: 500; letter-spacing: -0.3px; }
h3 { font-size: clamp(20px, 2.5vw, 25px); }
h4 { font-size: 20px; }
h5 { font-size: 17px; }
h6 { font-size: 15px; }

p { margin-bottom: 1em; }
strong { font-weight: 600; color: var(--primary); }

.text-center { text-align: center; }
.text-uppercase { text-transform: uppercase; letter-spacing: 2px; }

/* ─── Container ─────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.container--narrow { max-width: 960px; margin: 0 auto; padding: 0 24px; }
.container--medium { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ─── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 1px;
  padding: 14px 32px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  color: var(--white);
}

.btn-secondary {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-secondary:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--primary);
}

.btn-sm { padding: 10px 20px; font-size: 14px; }
.btn-lg { padding: 18px 48px; font-size: 18px; }
.btn-full { width: 100%; display: block; }

/* ─── Header / Navigation ───────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.header-top {
  background: var(--primary);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 8px 0;
}
.header-top .container { display: flex; justify-content: space-between; align-items: center; }
.header-top a { color: var(--white); }
.header-top a:hover { color: var(--gold); }

.header-main {
  padding: 16px 0;
}
.header-main .container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}

.header-left, .header-right {
  display: flex;
  align-items: center;
  gap: 8px;
}
.header-right { justify-content: flex-end; }

.site-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.site-logo img { height: 60px; width: auto; }
.site-logo-text {
  font-family: var(--font-ui);
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.5px;
  text-align: center;
  line-height: 1.2;
}
.site-logo-text span { display: block; font-size: 11px; font-weight: 400; letter-spacing: 2px; text-transform: uppercase; color: var(--secondary); }

/* Main nav */
.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 500;
  color: var(--primary);
  padding: 8px 10px;
  border-radius: var(--radius);
  transition: all var(--transition);
  white-space: nowrap;
}
.main-nav a:hover, .main-nav a.active { color: var(--secondary); }

/* Dropdown */
.nav-item { position: relative; }
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  min-width: 200px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  padding: 8px 0;
  z-index: 100;
}
.nav-item:hover .nav-dropdown { opacity: 1; visibility: visible; }
.nav-dropdown a {
  display: block;
  padding: 10px 20px;
  font-size: 13px;
  color: var(--text);
  border-radius: 0;
}
.nav-dropdown a:hover { background: var(--bg); color: var(--primary); }

/* Header actions */
.header-actions { display: flex; align-items: center; gap: 12px; }

.cart-icon {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  padding: 8px 16px;
  background: var(--bg);
  border-radius: var(--radius);
}
.cart-icon:hover { background: var(--primary); color: var(--white); }
.cart-icon svg { width: 20px; height: 20px; }
.cart-count {
  position: absolute;
  top: -6px; right: -6px;
  background: var(--secondary);
  color: var(--white);
  width: 18px; height: 18px;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}

.lang-switcher { position: relative; }
.lang-current {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary);
  cursor: pointer;
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex; align-items: center; gap: 6px;
  background: var(--white);
}
.lang-current:hover { border-color: var(--primary); }
.lang-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  right: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  min-width: 140px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  padding: 8px 0;
  z-index: 200;
}
.lang-switcher:hover .lang-dropdown { opacity: 1; visibility: visible; }
.lang-dropdown a {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 16px;
  font-size: 13px;
  color: var(--text);
}
.lang-dropdown a:hover { background: var(--bg); color: var(--primary); }
.lang-dropdown a.active { font-weight: 600; color: var(--primary); }

/* Mobile hamburger */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--primary);
}
.mobile-menu-toggle svg { width: 24px; height: 24px; }

/* ─── Mobile nav overlay ────────────────────────────────────── */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 2000;
  flex-direction: column;
  padding: 24px;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav-close {
  align-self: flex-end;
  background: none; border: none; cursor: pointer;
  font-size: 28px; color: var(--primary);
  margin-bottom: 24px;
}
.mobile-nav .logo-wrap { margin-bottom: 32px; }
.mobile-nav a {
  font-family: var(--font-ui);
  font-size: 18px;
  font-weight: 600;
  color: var(--primary);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  display: block;
}
.mobile-nav a:hover { color: var(--secondary); }
.mobile-nav .sub-links { padding-left: 16px; }
.mobile-nav .sub-links a { font-size: 15px; font-weight: 400; }

/* ─── Hero Banner ───────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  background: var(--primary);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.4;
}
.hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  max-width: 700px;
}
.hero-tag {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  border: 2px solid var(--gold);
  padding: 4px 12px;
  margin-bottom: 24px;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
  max-width: 520px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ─── Section ───────────────────────────────────────────────── */
.section { padding: 80px 0; }
.section--bg { background: var(--bg); }
.section--dark { background: var(--primary); color: var(--white); }
.section--dark h2 { color: var(--white); }

.section-header { text-align: center; margin-bottom: 56px; }
.section-tag {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--secondary);
  margin-bottom: 12px;
}
.section-header h2 { margin-bottom: 16px; }
.section-header p { color: var(--text); max-width: 600px; margin: 0 auto; font-size: 17px; }

/* ─── Product Grid ──────────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  box-shadow: 0 8px 32px rgba(28,36,75,0.12);
  transform: translateY(-2px);
}

.product-card__image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg);
}
.product-card__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover .product-card__image img { transform: scale(1.04); }
.product-card__badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--secondary);
  color: var(--white);
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 2px;
}

.product-card__body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-card__cat {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--secondary);
  margin-bottom: 8px;
}
.product-card__name {
  font-family: var(--font-ui);
  font-size: 17px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 8px;
  line-height: 1.3;
}
.product-card__desc {
  font-size: 14px;
  color: var(--text);
  line-height: 1.5;
  margin-bottom: 16px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.product-card__price {
  font-family: var(--font-ui);
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
}
.product-card__price .from {
  font-size: 12px;
  font-weight: 400;
  color: var(--text);
  display: block;
}

/* ─── Category Cards ────────────────────────────────────────── */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.category-card {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  display: block;
  text-decoration: none;
}
.category-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.category-card:hover img { transform: scale(1.06); }
.category-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,36,75,0.8) 0%, rgba(28,36,75,0.2) 60%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
}
.category-card__name {
  font-family: var(--font-ui);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ─── Product Page ──────────────────────────────────────────── */
.product-page { padding: 60px 0; }

.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Image gallery */
.product-gallery {}
.product-gallery__main {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--bg);
  border: 1px solid var(--border);
  margin-bottom: 12px;
}
.product-gallery__main img {
  width: 100%; height: 100%;
  object-fit: cover;
  cursor: zoom-in;
}
.product-gallery__thumbs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.product-gallery__thumb {
  width: 80px; height: 80px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid var(--border);
  cursor: pointer;
  transition: border-color var(--transition);
}
.product-gallery__thumb.active,
.product-gallery__thumb:hover { border-color: var(--primary); }
.product-gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }

/* Product info */
.product-info {}
.product-info__cat {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--secondary);
  margin-bottom: 12px;
}
.product-info__title {
  font-family: var(--font-ui);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 16px;
  line-height: 1.15;
}
.product-info__price {
  font-family: var(--font-ui);
  font-size: 36px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 24px;
}
.product-info__price .price-from { font-size: 14px; font-weight: 400; color: var(--text); margin-right: 4px; }
.product-info__short {
  font-size: 15px;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 28px;
  border-left: 3px solid var(--secondary);
  padding-left: 16px;
}

/* Variant selector */
.variant-selector { margin-bottom: 24px; }
.variant-selector label {
  display: block;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  margin-bottom: 10px;
}
.variant-options { display: flex; flex-wrap: wrap; gap: 8px; }
.variant-btn {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 18px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  background: var(--white);
  color: var(--text);
  transition: all var(--transition);
}
.variant-btn:hover, .variant-btn.selected {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--white);
}

.add-to-cart-form { margin-bottom: 20px; }
.qty-wrap { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.qty-wrap label {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
}
.qty-input {
  width: 80px;
  padding: 10px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-ui);
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  color: var(--primary);
}

.product-meta {
  padding: 20px;
  background: var(--bg);
  border-radius: var(--radius);
  font-size: 13px;
  color: var(--text);
  margin-bottom: 20px;
}
.product-meta .meta-row { display: flex; gap: 12px; margin-bottom: 6px; }
.product-meta .meta-label { font-weight: 600; color: var(--primary); min-width: 80px; }

/* Product tabs */
.product-tabs { margin-top: 60px; }
.tabs-nav {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--border);
  overflow-x: auto;
}
.tab-btn {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 14px 24px;
  border: none;
  background: none;
  cursor: pointer;
  color: var(--text);
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  white-space: nowrap;
  transition: all var(--transition);
}
.tab-btn.active, .tab-btn:hover {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

.tab-panel { display: none; padding: 36px 0; }
.tab-panel.active { display: block; }
.tab-panel h3 {
  font-family: var(--font-ui);
  font-size: 22px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 20px;
}
.tab-panel ul { margin-left: 20px; list-style: disc; }
.tab-panel ul li { margin-bottom: 8px; color: var(--text); }
.tab-panel p { color: var(--text); margin-bottom: 16px; }

/* ─── Cart Page ─────────────────────────────────────────────── */
.cart-page { padding: 60px 0; }
.cart-page h1 {
  font-family: var(--font-ui);
  font-size: 55px;
  font-weight: 600;
  color: var(--primary);
  padding: 55px 0 0;
  margin-bottom: 40px;
}

.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th {
  text-align: left;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text);
  padding: 12px 16px;
  border-bottom: 2px solid var(--border);
}
.cart-table td {
  padding: 20px 16px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.cart-item-img {
  width: 80px; height: 80px;
  object-fit: cover;
  border-radius: var(--radius);
  background: var(--bg);
}
.cart-item-name {
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 600;
  color: var(--primary);
  display: block;
  margin-bottom: 4px;
}
.cart-item-variant { font-size: 13px; color: var(--text); }
.cart-qty {
  width: 60px;
  padding: 8px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  font-family: var(--font-ui);
  font-weight: 600;
}
.cart-price {
  font-family: var(--font-ui);
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
}
.btn-remove {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
  font-size: 18px;
  transition: color var(--transition);
}
.btn-remove:hover { color: #DA7474; }

.cart-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
}

.cart-totals {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 32px;
  position: sticky;
  top: 120px;
}
.cart-totals h2 {
  font-family: var(--font-ui);
  font-size: 22px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--border);
}
.totals-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
}
.totals-row.total {
  font-family: var(--font-ui);
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  border-bottom: none;
  padding-top: 20px;
}
.cart-totals .btn { margin-top: 20px; }

.cart-empty {
  text-align: center;
  padding: 80px 20px;
}
.cart-empty svg { width: 80px; height: 80px; color: var(--border); margin: 0 auto 24px; }
.cart-empty h2 { margin-bottom: 16px; }

/* ─── Checkout Page ─────────────────────────────────────────── */
.checkout-page { padding: 60px 0; }
.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: start;
}

.checkout-form h2 {
  font-family: var(--font-ui);
  font-size: 28px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 28px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--primary);
  background: var(--bg);
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--white);
}

.order-summary-box {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 32px;
  position: sticky;
  top: 120px;
}
.order-summary-box h2 {
  font-family: var(--font-ui);
  font-size: 18px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--border);
}
.order-item {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.order-item img { width: 60px; height: 60px; object-fit: cover; border-radius: var(--radius); }
.order-item-name { font-family: var(--font-ui); font-size: 13px; font-weight: 600; color: var(--primary); }
.order-item-qty { font-size: 12px; color: var(--text); }
.order-item-price { font-family: var(--font-ui); font-weight: 700; color: var(--primary); }

/* ─── Contact Form ──────────────────────────────────────────── */
.contact-page { padding: 80px 0; }
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.contact-info h2 { margin-bottom: 24px; }
.contact-info p { color: var(--text); margin-bottom: 20px; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}
.contact-detail svg { width: 24px; height: 24px; color: var(--secondary); flex-shrink: 0; margin-top: 2px; }
.contact-detail strong { display: block; color: var(--primary); margin-bottom: 4px; }
.contact-detail span { color: var(--text); font-size: 15px; }

.alert {
  padding: 16px 20px;
  border-radius: var(--radius);
  margin-bottom: 20px;
  font-family: var(--font-ui);
  font-weight: 500;
}
.alert-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.alert-error { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }

/* ─── Blog ──────────────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 32px;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.blog-card:hover { box-shadow: 0 8px 24px rgba(28,36,75,0.1); }
.blog-card__image { aspect-ratio: 16/9; overflow: hidden; background: var(--bg); }
.blog-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.blog-card:hover .blog-card__image img { transform: scale(1.04); }
.blog-card__body { padding: 24px; }
.blog-card__date { font-size: 12px; color: var(--secondary); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
.blog-card__title { font-size: 20px; font-weight: 600; color: var(--primary); margin-bottom: 12px; }
.blog-card__excerpt { font-size: 14px; color: var(--text); line-height: 1.6; margin-bottom: 20px; }

/* ─── Breadcrumb ────────────────────────────────────────────── */
.breadcrumb {
  padding: 16px 0;
  font-size: 13px;
  color: var(--text);
}
.breadcrumb a { color: var(--text); }
.breadcrumb a:hover { color: var(--secondary); }
.breadcrumb span { color: var(--text); opacity: 0.5; margin: 0 8px; }

/* ─── Trust badges ──────────────────────────────────────────── */
.trust-bar {
  background: var(--primary);
  padding: 24px 0;
}
.trust-bar .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--white);
}
.trust-item svg { width: 32px; height: 32px; color: var(--gold); }
.trust-item strong {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
}
.trust-item span { font-size: 12px; opacity: 0.7; }

/* ─── Footer ────────────────────────────────────────────────── */
.site-footer {
  background: #F0F0F0;
  color: var(--text);
  padding: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand .logo-text {
  font-family: var(--font-ui);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-brand p { font-size: 14px; opacity: 0.75; line-height: 1.7; max-width: 320px; }

.footer-col h4 {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}
.footer-bottom a { color: rgba(255,255,255,0.6); }
.footer-bottom a:hover { color: var(--white); }

/* ─── Pagination ────────────────────────────────────────────── */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
}
.pagination a, .pagination span {
  display: flex; align-items: center; justify-content: center;
  width: 42px; height: 42px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  transition: all var(--transition);
}
.pagination a:hover { border-color: var(--primary); background: var(--primary); color: var(--white); }
.pagination span.current { background: var(--primary); color: var(--white); border-color: var(--primary); }

/* ─── Related Products ──────────────────────────────────────── */
.related-products { padding: 80px 0; background: var(--bg); }

/* ─── Page Hero ─────────────────────────────────────────────── */
.page-hero {
  background: var(--primary);
  padding: 80px 0 60px;
  text-align: center;
}
.page-hero h1 { color: var(--white); }
.page-hero p { color: rgba(255,255,255,0.8); margin-top: 12px; font-size: 18px; }

/* ─── About page ────────────────────────────────────────────── */
.about-section { padding: 80px 0; }
.about-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-img { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; }
.about-img img { width: 100%; height: 100%; object-fit: cover; }

/* ─── Notification ──────────────────────────────────────────── */
.cart-notification {
  position: fixed;
  bottom: 24px; right: 24px;
  background: var(--primary);
  color: var(--white);
  padding: 16px 24px;
  border-radius: var(--radius);
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  z-index: 9999;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s ease;
}
.cart-notification.show { transform: translateY(0); opacity: 1; }

/* ─── Responsive ────────────────────────────────────────────── */
@media (max-width: 1200px) {
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cart-layout { grid-template-columns: 1fr; }
  .cart-totals { position: static; }
}

@media (max-width: 1024px) {
  .header-main .container { grid-template-columns: auto 1fr auto; }
  .header-left, .main-nav { display: none; }
  .mobile-menu-toggle { display: flex; }
  .product-layout { grid-template-columns: 1fr; }
  .checkout-layout { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .about-layout { grid-template-columns: 1fr; }
  .trust-bar .container { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 48px 0; }
  .categories-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  h1 { font-size: 32px; }
  h2 { font-size: 26px; }
  .hero { min-height: 60vh; }
  .hero h1 { font-size: 36px; }
  .cart-table thead { display: none; }
  .cart-table td { display: block; }
  .trust-bar .container { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-actions { flex-direction: column; }
  .header-main .container { padding: 12px 16px; }
}

/* ─── WooCommerce-style product grid (used on shop, category & homepage) ── */
.woo-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px 24px;
}
.woo-product { background: #fff; cursor: pointer; border: 3px solid transparent; border-radius: 0; transition: border-color 0.2s; }
.woo-product:hover { border-color: #9ca3af; }
.woo-product a { text-decoration: none; }
.woo-product__img-wrap {
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #F7F7F8;
  margin-bottom: 14px;
  border-radius: 0;
}
.woo-product__img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: none;
  display: block;
}
.woo-product:hover .woo-product__img-wrap img { transform: none; }
.woo-product__img-placeholder {
  width: 100%; height: 100%;
  background: #E8EBF0;
  display: flex; align-items: center; justify-content: center;
  color: #aaa; font-size: 13px;
}
.woo-product__name {
  font-family: 'Poppins', sans-serif;
  font-size: 16px; font-weight: 700;
  color: #1C244B; margin-bottom: 8px; line-height: 1.3;
}
.woo-product__name a { color: #1C244B; text-decoration: none; }
.woo-product__name a:hover { color: #CC7351; }
.woo-product__price {
  font-family: 'Poppins', sans-serif;
  font-size: 14px; font-weight: 400; color: #324A6D;
}
.woo-product__price .price-range { color: #324A6D; }
.woo-product__price .price-request { font-style: italic; color: #CC7351; font-size: 13px; }

@media (max-width: 1100px) { .woo-products-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px)  { .woo-products-grid { grid-template-columns: repeat(2, 1fr); gap: 20px 16px; } }
@media (max-width: 480px)  { .woo-products-grid { grid-template-columns: 1fr; } }
