/* Watch the Whale — electronics store
   Palette & layout matched to Sinp (HAThemes) reference */
:root {
  --orange: #fc6539;
  --orange-dark: #e3552c;
  --navy: #06264b;
  --dark: #1f2226;
  --text: #666666;
  --muted: #888888;
  --heading: #1f2226;
  --white: #ffffff;
  --gray: #f8f8f8;
  --gray-2: #f1f1f1;
  --cream: #f9f5f4;
  --blush: #f7f2f1;
  --line: #e5e5e5;
  --container: 1200px;
  --radius: 6px;
  --shadow: 0 8px 30px rgba(31, 34, 38, 0.08);
  --header-h: 88px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .25s, background .25s, border-color .25s, opacity .25s; }
button, input, select, textarea { font-family: inherit; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, h5, h6 {
  font-family: "Playfair Display", serif;
  color: var(--heading);
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 12px;
}
p { margin: 0 0 14px; }

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.section { padding: 90px 0; }
.section-sm { padding: 70px 0; }
.text-orange { color: var(--orange) !important; }
.text-navy { color: var(--navy); }
.fw-500 { font-weight: 500; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 10px 32px;
  border-radius: 30px;
  border: 2px solid transparent;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: .25s;
  background: var(--dark);
  color: var(--white);
}
.btn:hover { background: var(--orange); color: var(--white); }
.btn-orange { background: var(--orange); color: #fff; border-color: var(--orange); }
.btn-orange:hover { background: var(--orange-dark); }
.btn-dark { background: var(--dark); color: #fff; }
.btn-outline {
  background: transparent;
  color: var(--dark);
  border-color: var(--dark);
}
.btn-outline:hover { background: var(--orange); border-color: var(--orange); color: #fff; }
.btn-block { width: 100%; border-radius: 4px; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 1px 0 #f0f0f0;
}
.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: var(--header-h);
  gap: 20px;
}
.header-tools {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 18px;
  color: var(--dark);
  font-size: 18px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo img { height: 44px; width: auto; max-width: 240px; object-fit: contain; object-position: left center; }
.nav {
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--dark);
  position: relative;
  padding: 6px 0;
}
.nav a:hover,
.nav a.active { color: var(--orange); }
.header-tools button,
.header-tools a {
  background: none;
  border: 0;
  cursor: pointer;
  color: inherit;
  position: relative;
  padding: 4px;
}
.header-tools button:hover,
.header-tools a:hover { color: var(--orange); }
.cart-count {
  position: absolute;
  top: -6px;
  right: -10px;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}
.menu-toggle {
  display: none;
  background: none;
  border: 0;
  font-size: 22px;
  cursor: pointer;
  color: var(--dark);
}

/* Mini cart */
.mini-cart {
  position: absolute;
  right: 0;
  top: calc(100% + 16px);
  width: 340px;
  background: #fff;
  box-shadow: var(--shadow);
  border-radius: 8px;
  padding: 18px;
  display: none;
  color: var(--text);
  font-size: 14px;
}
.header-cart { position: relative; }
.header-cart #cart-link { position: relative; display: inline-flex; }
.header-cart.open .mini-cart { display: block; }
.mini-cart-item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.mini-cart-item img { width: 64px; height: 64px; object-fit: cover; border-radius: 4px; }
.mini-cart-empty { padding: 12px 0; color: var(--muted); }
.mini-cart-total { display: flex; justify-content: space-between; font-weight: 600; color: var(--dark); margin: 12px 0; }
.mini-cart-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }

/* Search overlay */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(31,34,38,.55);
  z-index: 1100;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding-top: 18vh;
}
.search-overlay.open { display: flex; }
.search-box {
  width: min(640px, 92%);
  background: #fff;
  border-radius: 40px;
  display: flex;
  overflow: hidden;
}
.search-box input {
  flex: 1;
  border: 0;
  padding: 16px 22px;
  outline: none;
  font-size: 15px;
}
.search-box button {
  border: 0;
  background: var(--orange);
  color: #fff;
  padding: 0 22px;
  cursor: pointer;
}

/* Page banner */
.page-banner {
  background: var(--gray);
  padding: 38px 0;
  text-align: center;
}
.breadcrumb {
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb span { color: var(--dark); }

/* Hero */
.hero {
  background: #f6f3fb;
  position: relative;
  overflow: hidden;
  min-height: 620px;
  display: flex;
  align-items: center;
}
.hero::before {
  content: "ELECTRONICS";
  position: absolute;
  left: -18px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  font-size: 72px;
  font-weight: 800;
  letter-spacing: .18em;
  color: rgba(6,38,75,.05);
  font-family: "Poppins", sans-serif;
  white-space: nowrap;
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 1;
  padding: 70px 0 80px;
}
.hero-kicker {
  color: var(--orange);
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 10px;
}
.hero h1 {
  font-size: 58px;
  color: var(--navy);
  margin-bottom: 18px;
}
.hero p { max-width: 460px; margin-bottom: 28px; }
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 460px;
}
.hero-circle {
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  box-shadow: 0 20px 50px rgba(120, 90, 180, .08);
}
.hero-circle img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; padding: 0; }
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  z-index: 1;
}
.blob-1 { width: 180px; height: 180px; background: #c9b6f2; right: 40px; top: 20px; }
.blob-2 { width: 120px; height: 120px; background: #8e7cc3; right: 10px; bottom: 90px; opacity: .8; }
.blob-3 { width: 90px; height: 90px; background: #d6c8f5; left: 40px; bottom: 50px; }
.sale-badge {
  position: absolute;
  right: 70px;
  top: 36px;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: #7c5cbf;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  z-index: 3;
  line-height: 1.1;
}
.sale-badge small { font-size: 11px; font-weight: 500; }
.sale-badge strong { font-size: 20px; }
.hero-dots {
  display: flex;
  gap: 8px;
  margin-top: 28px;
}
.hero-dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ddd;
}
.hero-dots span.active { background: var(--orange); }

/* Two-col promo */
.promo-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.promo-split img {
  width: 100%;
  max-height: 420px;
  object-fit: contain;
}
.kicker {
  color: var(--orange);
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 10px;
  font-family: "Poppins", sans-serif;
}
.promo-split h2 { font-size: 40px; color: var(--navy); }

/* Features around product */
.feature-orbit {
  display: grid;
  grid-template-columns: 1fr 280px 1fr;
  gap: 30px;
  align-items: center;
}
.feature-item h3 {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  margin-bottom: 8px;
}
.feature-item p { font-size: 14px; margin: 0; }
.feature-col { display: flex; flex-direction: column; gap: 48px; }
.feature-col.right { text-align: left; }
.feature-col.left { text-align: right; }
.orbit-image {
  width: 280px;
  height: 320px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.orbit-image img { max-height: 320px; object-fit: contain; }
.section-title {
  text-align: center;
  margin-bottom: 50px;
}
.section-title h2 { font-size: 36px; }

/* Smart product row */
.smart-row {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 50px;
  align-items: center;
}
.smart-row img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  max-height: 460px;
}
.smart-list { display: flex; flex-direction: column; gap: 22px; margin-top: 24px; }
.smart-list li {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  align-items: start;
}
.smart-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--blush);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.smart-list h4 { font-family: "Poppins", sans-serif; font-size: 16px; margin: 0 0 4px; }
.smart-list p { margin: 0; font-size: 14px; }

/* Deal / countdown */
.deal {
  background: #fffaf0;
  border-radius: 0;
}
.deal-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: 40px;
}
.countdown {
  display: flex;
  gap: 18px;
  margin: 22px 0 28px;
}
.count-box {
  min-width: 70px;
  text-align: center;
}
.count-box strong {
  display: block;
  font-size: 28px;
  color: var(--navy);
  font-family: "Playfair Display", serif;
}
.count-box span { font-size: 12px; color: var(--muted); text-transform: uppercase; }
.deal-visual {
  display: flex;
  justify-content: center;
}
.deal-visual img { max-height: 380px; object-fit: contain; }

/* Products */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.product-card {
  background: #fff;
  text-align: center;
  position: relative;
}
.product-thumb {
  background: var(--gray);
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.product-card:hover .product-thumb img { transform: scale(1.06); }
.badges {
  position: absolute;
  left: 12px;
  top: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 2;
}
.badge {
  background: var(--orange);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .04em;
  padding: 4px 8px;
  text-transform: uppercase;
}
.badge.new { background: var(--navy); }
.product-actions {
  position: absolute;
  inset: auto 12px 12px auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transform: translateX(8px);
  transition: .25s;
}
.product-card:hover .product-actions { opacity: 1; transform: none; }
.product-actions button {
  width: 36px;
  height: 36px;
  border: 0;
  background: #fff;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: var(--shadow);
  color: var(--dark);
}
.product-actions button:hover { background: var(--orange); color: #fff; }
.product-card h3 {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 500;
  margin: 0 0 6px;
}
.product-card h3 a:hover { color: var(--orange); }
.price { color: var(--orange); font-weight: 600; font-size: 15px; }
.price del { color: #bbb; font-weight: 400; margin-right: 6px; font-size: 13px; }

/* Blog cards */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card { background: #fff; }
.blog-card img { width: 100%; height: 220px; object-fit: cover; }
.blog-card-body { padding: 18px 4px 0; }
.blog-meta { font-size: 13px; color: var(--muted); margin-bottom: 8px; }
.blog-card h3 { font-family: "Poppins", sans-serif; font-size: 17px; font-weight: 600; }
.blog-card h3 a:hover { color: var(--orange); }
.blog-card p { font-size: 14px; }

/* Newsletter */
.newsletter {
  background: var(--cream);
  padding: 80px 0 70px;
  text-align: center;
}
.newsletter .logo { justify-content: center; margin-bottom: 16px; }
.newsletter h2 {
  font-size: 28px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  margin-bottom: 12px;
}
.newsletter p { max-width: 520px; margin: 0 auto 24px; font-size: 14px; }
.news-form {
  display: flex;
  max-width: 560px;
  margin: 0 auto 22px;
  background: #fff;
  border-radius: 40px;
  overflow: hidden;
  border: 1px solid #eee;
}
.news-form input {
  flex: 1;
  border: 0;
  padding: 14px 22px;
  outline: none;
}
.news-form button {
  border: 0;
  background: var(--dark);
  color: #fff;
  padding: 0 28px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 0 40px 40px 0;
}
.news-form button:hover { background: var(--orange); }
.socials { display: flex; justify-content: center; gap: 16px; }
.socials a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  font-size: 15px;
}
.socials a:hover { color: var(--orange); }
.form-error { color: #dc2626; font-size: 12px; margin-top: 4px; display: none; }
.form-error.show { display: block; }
.form-success {
  display: none;
  background: #ecfdf5;
  color: #047857;
  border: 1px solid #a7f3d0;
  padding: 12px 16px;
  border-radius: 6px;
  margin-bottom: 16px;
}
.form-success.show { display: block; }

/* Footer */
.site-footer {
  background: var(--dark);
  color: #b9b9b9;
  padding: 70px 0 0;
  font-size: 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
}
.site-footer h4 {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 18px;
}
.site-footer p { color: #b9b9b9; }
.site-footer a:hover { color: var(--orange); }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-bottom {
  border-top: 1px solid #333;
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #999;
}
.pay-icons { display: flex; gap: 8px; align-items: center; }
.pay-icons span {
  background: #fff;
  color: #333;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 7px;
  border-radius: 3px;
  letter-spacing: .04em;
}

/* Back to top */
.back-top {
  position: fixed;
  right: 22px;
  bottom: 90px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  border: 0;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 50;
  box-shadow: 0 6px 16px rgba(252,101,57,.4);
}
.back-top.show { display: flex; }

/* Shop layout */
.shop-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
}
.sidebar h3 {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  margin: 0 0 16px;
}
.sidebar-block { margin-bottom: 32px; }
.side-search {
  display: flex;
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
}
.side-search input { border: 0; padding: 10px 12px; flex: 1; outline: none; }
.side-search button { border: 0; background: #fff; padding: 0 12px; cursor: pointer; }
.check-list { display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.check-list label { display: flex; justify-content: space-between; cursor: pointer; gap: 8px; }
.check-list input { accent-color: var(--orange); }
.color-dots { display: flex; flex-wrap: wrap; gap: 10px; }
.color-dots button {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #fff;
  outline: 1px solid #ddd;
  cursor: pointer;
  padding: 0;
}
.color-dots button.active { outline-color: var(--orange); }
.tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-cloud a,
.tag-cloud button {
  border: 1px solid var(--line);
  background: #fff;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 13px;
  cursor: pointer;
  color: var(--text);
}
.tag-cloud a:hover,
.tag-cloud button:hover,
.tag-cloud button.active {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}
.shop-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 14px;
}
.shop-toolbar select {
  border: 1px solid var(--line);
  padding: 8px 12px;
  border-radius: 4px;
  background: #fff;
}
.shop-products { grid-template-columns: repeat(3, 1fr); }
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}
.pagination a,
.pagination button {
  min-width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  cursor: pointer;
  color: var(--dark);
}
.pagination .active,
.pagination a:hover { background: var(--orange); border-color: var(--orange); color: #fff; }

/* Product details */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}
.gallery-main {
  background: var(--gray);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.pd-price { font-size: 24px; color: var(--orange); font-weight: 700; margin: 10px 0 16px; }
.qty-row { display: flex; gap: 12px; align-items: center; margin: 22px 0; }
.qty {
  display: flex;
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
}
.qty button {
  width: 36px;
  height: 42px;
  border: 0;
  background: #fff;
  cursor: pointer;
}
.qty input {
  width: 48px;
  border: 0;
  text-align: center;
  outline: none;
}
.tabs { margin-top: 60px; }
.tab-btns { display: flex; gap: 24px; border-bottom: 1px solid var(--line); margin-bottom: 24px; }
.tab-btns button {
  background: none;
  border: 0;
  padding: 12px 0;
  font-weight: 600;
  cursor: pointer;
  color: var(--muted);
  border-bottom: 2px solid transparent;
}
.tab-btns button.active { color: var(--orange); border-color: var(--orange); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* Cart */
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th {
  background: var(--gray);
  font-weight: 600;
  color: var(--dark);
  padding: 14px;
  font-size: 14px;
  text-align: left;
}
.cart-table td {
  padding: 18px 14px;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
}
.cart-prod { display: flex; align-items: center; gap: 14px; }
.cart-prod img { width: 70px; height: 70px; object-fit: cover; background: var(--gray); }
.cart-extra {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 40px;
}
.panel {
  border: 1px solid var(--line);
  padding: 24px;
}
.panel h3 { font-family: "Poppins", sans-serif; font-size: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field { margin-bottom: 14px; }
.field label { display: block; font-size: 13px; font-weight: 500; color: var(--dark); margin-bottom: 6px; }
.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  padding: 11px 12px;
  border-radius: 4px;
  outline: none;
  background: #fff;
  color: var(--dark);
}
.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--orange); }
.field.invalid input,
.field.invalid select,
.field.invalid textarea { border-color: #dc2626; }
.totals table { width: 100%; }
.totals td { padding: 10px 0; border-bottom: 1px solid var(--line); }
.totals .grand { color: var(--orange); font-weight: 700; font-size: 18px; }
.cart-actions { display: flex; gap: 10px; justify-content: flex-end; margin-top: 16px; }

/* Checkout */
.checkout-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 40px;
}
.order-box { background: var(--gray); padding: 24px; }
.order-box h3 { font-family: "Poppins", sans-serif; }
.pay-option { margin: 12px 0; }
.pay-option label { font-weight: 600; color: var(--dark); }
.pay-option p { font-size: 13px; margin: 6px 0 0; }

/* About */
.about-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.about-hero img { width: 100%; object-fit: contain; max-height: 380px; }
.about-points { margin-top: 18px; }
.about-points h4 { font-family: "Poppins", sans-serif; font-size: 15px; margin-bottom: 6px; }
.testimonial {
  background: var(--cream);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.testimonial h2 { color: var(--orange); font-size: 36px; }
.testi-photo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  margin: 18px auto;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.team-card { text-align: center; }
.team-card img { width: 100%; height: 280px; object-fit: cover; margin-bottom: 14px; }
.team-card h4 { font-family: "Poppins", sans-serif; font-size: 16px; margin-bottom: 2px; }
.team-card span { font-size: 13px; color: var(--muted); }

/* Blog listing */
.blog-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
}
.blog-posts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.article-card {
  border: 1px solid var(--line);
  background: #fff;
}
.article-card img { width: 100%; height: 210px; object-fit: cover; }
.article-card .body { padding: 20px; }
.recent-post {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 12px;
  margin-bottom: 14px;
  align-items: center;
}
.recent-post img { width: 70px; height: 70px; object-fit: cover; }
.recent-post h5 { font-family: "Poppins", sans-serif; font-size: 14px; margin: 0 0 4px; }
.custom-menu a { display: block; padding: 6px 0; font-size: 14px; }
.custom-menu a:hover { color: var(--orange); }
.archive a { display: block; padding: 5px 0; font-size: 14px; }

/* Blog details */
.blog-detail img.cover { width: 100%; max-height: 420px; object-fit: cover; margin-bottom: 22px; }
.blog-detail h1 { font-size: 32px; }
.blog-content p { margin-bottom: 16px; }
.blog-content h2 { font-size: 24px; margin: 28px 0 12px; font-family: "Playfair Display", serif; }
.blog-content h3 { font-size: 20px; margin: 22px 0 10px; }
.blog-content ul { list-style: disc; padding-left: 20px; margin: 0 0 16px; }
.blog-content li { margin-bottom: 6px; }
.quote {
  border-left: 3px solid var(--orange);
  padding: 8px 0 8px 18px;
  font-style: italic;
  color: var(--navy);
  margin: 20px 0;
}
.share-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
  margin: 28px 0;
  font-size: 14px;
}
.comment-form .form-row { margin-bottom: 0; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 50px;
}
.contact-info h2 { font-size: 36px; }
.info-item {
  display: flex;
  gap: 14px;
  margin: 18px 0;
  align-items: flex-start;
}
.info-item i { color: var(--orange); font-size: 18px; margin-top: 4px; }
.contact-form-box {
  background: #fff;
  box-shadow: var(--shadow);
  padding: 32px;
}

/* Legal */
.legal {
  max-width: 860px;
  margin: 0 auto;
}
.legal h1 { font-size: 36px; margin-bottom: 8px; }
.legal h2 { font-size: 22px; margin: 28px 0 10px; }
.legal h3 { font-size: 18px; margin: 18px 0 8px; font-family: "Poppins", sans-serif; }
.legal p, .legal li { font-size: 15px; }
.legal ul, .legal ol { padding-left: 20px; margin: 0 0 16px; }
.legal ul { list-style: disc; }
.legal ol { list-style: decimal; }
.updated { font-size: 13px; color: var(--muted); margin-bottom: 24px; }

/* Subscribe pages */
.sub-card {
  max-width: 560px;
  margin: 0 auto;
  background: #fff;
  box-shadow: var(--shadow);
  padding: 40px 36px;
  text-align: center;
}
.sub-card h1 { font-size: 32px; }
.thankyou {
  text-align: center;
  padding: 50px 20px;
}
.thankyou i { font-size: 56px; color: var(--orange); margin-bottom: 16px; }
.thankyou h2 { font-size: 28px; }

/* Toast */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--dark);
  color: #fff;
  padding: 12px 20px;
  border-radius: 30px;
  opacity: 0;
  pointer-events: none;
  transition: .3s;
  z-index: 2000;
  font-size: 14px;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* Mobile nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 12px;
  padding: 0 16px 16px;
  background: #fff;
}
.mobile-nav.open { display: flex; }

@media (max-width: 1100px) {
  .product-grid, .shop-products { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: 44px; }
  .feature-orbit { grid-template-columns: 1fr; }
  .feature-col.left, .feature-col.right { text-align: left; }
  .orbit-image { order: -1; }
}

@media (max-width: 900px) {
  .header-inner { grid-template-columns: 1fr auto; }
  .nav { display: none; }
  .menu-toggle { display: block; }
  .hero-grid,
  .promo-split,
  .smart-row,
  .deal-grid,
  .shop-layout,
  .blog-layout,
  .product-detail,
  .checkout-grid,
  .cart-extra,
  .about-hero,
  .contact-grid { grid-template-columns: 1fr; }
  .blog-grid, .blog-posts, .team-grid { grid-template-columns: 1fr 1fr; }
  .product-grid, .shop-products { grid-template-columns: 1fr 1fr; }
  .hero { min-height: auto; }
  .hero-circle { width: 280px; height: 280px; }
  .form-row { grid-template-columns: 1fr; }
  .cart-table thead { display: none; }
  .cart-table, .cart-table tbody, .cart-table tr, .cart-table td { display: block; width: 100%; }
  .cart-table td { border: 0; border-bottom: 1px solid var(--line); }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
}

@media (max-width: 600px) {
  .blog-grid, .blog-posts, .team-grid, .product-grid, .shop-products { grid-template-columns: 1fr; }
  .hero h1 { font-size: 34px; }
  .section { padding: 60px 0; }
  .header-tools { gap: 10px; }
  .logo img { height: 34px; }
  .mini-cart { width: 290px; right: -40px; }
}
