/* How to Place an Order — custom page CSS */

body:has(.og-page) .page-header,
body:has(.og-page) .ocean-page-header-wrap,
body:has(.og-page) .page-header-wrap,
body:has(.og-page) .entry-header,
body:has(.og-page) .entry-title { display: none !important; }

body:has(.og-page),
body:has(.og-page) #outer-wrap,
body:has(.og-page) #inner-wrap,
body:has(.og-page) #content-wrap { background: #f5f5f3 !important; }

body:has(.og-page) #content-wrap.container {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
}

body:has(.og-page) .content-area,
body:has(.og-page) #primary,
body:has(.og-page) .entry-content { padding: 0 !important; margin: 0 !important; }

/* ─── Reset ─────────────────────────────────────── */
.og-page *, .og-page *::before, .og-page *::after { box-sizing: border-box; }

:root {
  --og-bg: #f5f5f3;
  --og-card: #ffffff;
  --og-text: #111111;
  --og-muted: #555555;
  --og-line: #e5e2dd;
  --og-orange: #ff7a00;
  --og-soft: #fbf6ef;
  --og-shadow: 0 8px 24px rgba(0,0,0,.08);
  --og-radius: 18px;
}

.og-page {
  background: var(--og-bg);
  color: var(--og-text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  padding: 26px 18px 48px;
}

.og-page img { max-width: 100%; display: block; }
.og-page a { text-decoration: none; }

.og-wrap { max-width: 1320px; margin: 0 auto; }

.og-card {
  background: var(--og-card);
  border: 1px solid #ece8e2;
  border-radius: var(--og-radius);
  box-shadow: var(--og-shadow);
}

/* ─── Hero ───────────────────────────────────────── */
.og-hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 26px;
  padding: 26px 28px;
  align-items: center;
  overflow: hidden;
  min-height: 430px;
}
.og-eyebrow { color: var(--og-orange); font-weight: 900; letter-spacing: .04em; font-size: 13px; text-transform: uppercase; margin-bottom: 16px; }
.og-hero h1 { font-size: clamp(36px, 4.4vw, 54px); line-height: 1.04; margin: 0 0 20px; font-weight: 900; letter-spacing: -0.045em; color: var(--og-text); }
.og-hero p { font-size: 17px; line-height: 1.58; color: #344054; max-width: 630px; margin: 0 0 28px; }

.og-btn-primary, .og-btn-secondary {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  border-radius: 12px; font-weight: 800; letter-spacing: .01em; transition: .15s ease;
}
.og-btn-primary {
  background: var(--og-orange); color: #fff !important; padding: 15px 24px; font-size: 14px;
  box-shadow: 0 6px 16px rgba(255,122,0,.24); letter-spacing: .02em;
}
.og-btn-primary:hover { background: #ef6f00; color: #fff !important; }
.og-btn-primary .og-arrow {
  display: inline-flex; width: 28px; height: 28px; border-radius: 999px;
  align-items: center; justify-content: center; border: 2px solid rgba(255,255,255,.7); font-size: 15px;
}
.og-btn-secondary {
  background: #fff; color: #111 !important; border: 1px solid #d9d4cd; padding: 13px 22px; font-size: 14px;
}
.og-btn-secondary:hover { background: #f5f5f3; color: #111 !important; }
.og-btn-discord {
  background: linear-gradient(135deg, #5865f2, #6a5cff) !important;
  color: #fff !important; border: none !important;
  box-shadow: 0 8px 18px rgba(88,101,242,.22);
}
.og-btn-discord:hover { opacity: .9; color: #fff !important; }

.og-hero-visual { position: relative; min-height: 360px; }
.og-hero-modal {
  position: relative; z-index: 2; width: 86%; margin-left: auto;
  border-radius: 18px; box-shadow: 0 22px 44px rgba(0,0,0,.18);
}
.og-hero-back {
  position: absolute; right: 18px; top: 42px; width: 36%;
  border-radius: 18px; box-shadow: 0 18px 34px rgba(0,0,0,.18); z-index: 1;
}

/* ─── Summary ────────────────────────────────────── */
.og-summary {
  margin-top: 22px; display: grid; grid-template-columns: repeat(3, 1fr); overflow: hidden;
}
.og-summary-item { display: flex; gap: 18px; align-items: center; padding: 26px 28px; min-height: 118px; }
.og-summary-item + .og-summary-item { border-left: 1px solid var(--og-line); }
.og-num {
  width: 38px; height: 38px; flex: 0 0 38px; border-radius: 999px;
  background: var(--og-orange); color: #fff; font-weight: 900; font-size: 17px;
  display: grid; place-items: center;
}
.og-summary h3 { margin: 0 0 4px; font-size: 18px; font-weight: 900; color: var(--og-text); }
.og-summary p { margin: 0; font-size: 13px; line-height: 1.45; color: #4b5563; }

/* ─── Section blocks ─────────────────────────────── */
.og-section { padding: 26px 4px 0; }
.og-section-sep { border-top: 1px solid var(--og-line); margin-top: 18px; padding-top: 26px; }
.og-section h2 { margin: 0 0 22px; font-size: 30px; line-height: 1.1; letter-spacing: -0.035em; font-weight: 900; color: var(--og-text); }
.og-section h2 span { color: var(--og-orange); margin-right: 10px; }

/* ─── Step 1 grid ────────────────────────────────── */
.og-step1-grid { display: grid; grid-template-columns: 440px 1fr 350px; gap: 28px; align-items: start; }
.og-image-box { background: #2f2f31; border-radius: 8px; overflow: hidden; border: 1px solid #dad4cd; }
.og-image-box.og-small { max-width: 430px; }

.og-bullets { display: flex; flex-direction: column; gap: 26px; }
.og-bullets-tight { gap: 20px; }
.og-bullet-item { display: flex; gap: 16px; }
.og-icon {
  width: 28px; height: 28px; flex: 0 0 28px; border-radius: 999px;
  color: var(--og-orange); font-size: 24px; line-height: 1;
  display: grid; place-items: center; margin-top: 2px;
}
.og-bullet-item h4 { margin: 0 0 6px; font-size: 15px; font-weight: 900; color: var(--og-text); }
.og-bullet-item p { margin: 0; color: #445164; font-size: 13px; line-height: 1.48; }

.og-note-card {
  background: var(--og-soft); border: 1px solid #e6d9c8; border-radius: 14px;
  padding: 28px 24px; align-self: center;
}
.og-note-icon { color: var(--og-orange); font-size: 22px; margin-bottom: 12px; font-weight: 900; }
.og-note-card h4 { font-size: 15px; font-weight: 900; margin: 0 0 10px; color: var(--og-text); }
.og-note-card p { margin: 0 0 10px; font-size: 13px; line-height: 1.48; color: #445164; }

/* ─── Step 1a grid ───────────────────────────────── */
.og-step1a-grid { display: grid; grid-template-columns: 430px 1fr; gap: 34px; align-items: start; }

/* ─── Features grid (Step 2) ─────────────────────── */
.og-features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; align-items: start; }
.og-feature-col {
  background: var(--og-card);
  border: 1px solid #ece8e2;
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 2px 10px rgba(0,0,0,.05);
}
.og-feature-col h3 { margin: 0 0 8px; font-size: 15px; font-weight: 900; line-height: 1.2; color: var(--og-text); }
.og-feature-col p { margin: 0 0 12px; font-size: 13px; color: #445164; line-height: 1.48; }
.og-feature-col img { width: 100%; border-radius: 6px; display: block; }

/* Back of Your Cards — full-width horizontal panel */
.og-feature-wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: center;
  background: var(--og-soft);
  border: 1px solid #e6d9c8;
  border-radius: 14px;
  padding: 22px 26px;
  box-shadow: 0 2px 10px rgba(0,0,0,.05);
}
.og-feature-wide-text h3 { margin: 0 0 8px; font-size: 15px; font-weight: 900; color: var(--og-text); }
.og-feature-wide-text p { margin: 0; font-size: 13px; color: #445164; line-height: 1.48; }
.og-feature-wide img { max-height: 150px; width: auto; border-radius: 6px; display: block; }

/* ─── Step 3 grid ────────────────────────────────── */
.og-step3-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 28px; align-items: start; }
.og-pricing-panel { width: 100%; border-radius: 8px; }
.og-shipping-note {
  margin-top: 14px; display: flex; align-items: center; gap: 14px;
  background: var(--og-soft); border: 1px solid #ebddca; padding: 14px 16px; border-radius: 12px;
}
.og-truck {
  width: 34px; height: 34px; flex: 0 0 34px; display: grid; place-items: center;
  border-radius: 8px; color: var(--og-orange); background: #fff1de; font-weight: 800; font-size: 18px;
}
.og-shipping-note p { margin: 0; font-size: 13px; color: #445164; line-height: 1.5; }

.og-checklist { display: flex; flex-direction: column; gap: 16px; padding-top: 6px; }
.og-check-item { font-size: 14px; line-height: 1.55; color: #344054; display: flex; gap: 12px; }
.og-check-item span { color: var(--og-orange); font-size: 16px; line-height: 1.1; margin-top: 2px; flex: 0 0 auto; }

/* ─── Videos section ────────────────────────────── */
.og-videos {
  background: #fff;
  border: 1px solid #e8edf4;
  border-radius: var(--og-radius);
  box-shadow: var(--og-shadow);
  padding: 28px;
  margin-top: 28px;
}
.og-videos-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}
.og-videos-eyebrow {
  margin: 0 0 8px;
  color: var(--og-orange);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.og-videos-header h2 {
  margin: 0 0 6px;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -.035em;
  color: var(--og-text);
}
.og-videos-header p { margin: 0; font-size: 14px; color: #4b5563; line-height: 1.5; }
.og-videos-cta {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 10px;
  background: #5865f2;
  color: #fff !important;
  text-decoration: none;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(88,101,242,.22);
  white-space: nowrap;
}
.og-videos-cta:hover { background: #4752c4; color: #fff !important; }
.og-videos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.og-video-card {
  background: #fff;
  border: 1px solid #e8edf4;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(15,23,42,.06);
}
.og-video-card-media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  background: #1a1a1a;
  overflow: hidden;
  text-decoration: none;
  cursor: pointer;
}
.og-video-card-media.og-ratio-45 { aspect-ratio: 4 / 5; }
.og-video-card-media img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .25s ease;
}
.og-video-card-media:hover img { transform: scale(1.04); }
.og-video-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.03), rgba(0,0,0,.36));
}
.og-video-play {
  position: absolute;
  left: 50%; top: 50%;
  z-index: 2;
  transform: translate(-50%,-50%);
  width: 56px; height: 56px;
  border-radius: 999px;
  background: rgba(255,255,255,.93);
  color: var(--og-orange);
  display: grid;
  place-items: center;
  font-size: 22px;
  box-shadow: 0 8px 22px rgba(0,0,0,.22);
  pointer-events: none;
}
.og-video-platform {
  position: absolute;
  left: 12px; top: 12px;
  z-index: 2;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.94);
  color: #071022;
  font-size: 12px;
  font-weight: 900;
}
.og-video-body { padding: 16px; }
.og-video-body h3 { margin: 0 0 6px; font-size: 15px; font-weight: 900; color: var(--og-text); }
.og-video-body p { margin: 0 0 10px; font-size: 13px; color: #4b5563; line-height: 1.45; }
.og-video-body a { color: #5865f2; font-size: 13px; font-weight: 900; text-decoration: none; }
.og-video-body a:hover { text-decoration: underline; }

/* Lightbox */
#og-lightbox {
  display: none; position: fixed; inset: 0; z-index: 99999;
  background: rgba(0,0,0,.88);
  align-items: center; justify-content: center; padding: 20px;
}
#og-lightbox.is-open { display: flex; }
#og-lightbox-inner {
  position: relative;
  width: min(800px, 92vw);
  aspect-ratio: 16/9;
  background: #000;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,.6);
}
#og-lightbox-inner.is-45 { width: min(420px, 92vw); aspect-ratio: 4/5; }
#og-lightbox-iframe { width: 100%; height: 100%; border: 0; display: block; }
#og-lightbox-close {
  position: absolute; top: -44px; right: 0; z-index: 2;
  width: 36px; height: 36px; border-radius: 999px;
  background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.25);
  color: #fff; font-size: 16px; cursor: pointer;
  display: grid; place-items: center; transition: background .15s;
}
#og-lightbox-close:hover { background: rgba(255,255,255,.28); }

@media (max-width: 700px) {
  .og-videos-grid { grid-template-columns: 1fr; }
  .og-videos-header { flex-direction: column; align-items: flex-start; }
  .og-videos { padding: 18px; }
}

/* ─── Support bar ────────────────────────────────── */
.og-support {
  margin-top: 30px; padding: 28px 30px;
  display: flex; align-items: center; justify-content: space-between; gap: 22px;
}
.og-support-left { display: flex; align-items: center; gap: 18px; }
.og-support-icon {
  width: 52px; height: 52px; flex: 0 0 52px; border-radius: 999px;
  background: #fff2e4; color: var(--og-orange); display: grid; place-items: center;
  font-size: 22px; font-weight: 900;
}
.og-support h3 { margin: 0 0 5px; font-size: 21px; font-weight: 900; color: var(--og-text); }
.og-support p { margin: 0; font-size: 14px; color: #4b5563; }
.og-support-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.og-btn-small { font-size: 14px !important; padding: 12px 20px !important; }

/* ─── Responsive ─────────────────────────────────── */
@media (max-width: 1200px) {
  .og-hero { grid-template-columns: 1fr; }
  .og-hero p { font-size: 15px; }
  .og-hero-modal { width: 100%; }
  .og-hero-back { width: 32%; right: 12px; }
  .og-summary { grid-template-columns: 1fr; }
  .og-summary-item + .og-summary-item { border-left: 0; border-top: 1px solid var(--og-line); }
  .og-step1-grid, .og-step1a-grid, .og-step3-grid { grid-template-columns: 1fr; }
  .og-features-grid { grid-template-columns: repeat(2, 1fr); }
  .og-feature-wide { grid-template-columns: 1fr; }
  .og-feature-wide img { max-height: none; width: 100%; object-fit: cover; max-height: 260px; }
}
@media (max-width: 800px) {
  .og-page { padding: 14px 14px 38px; }
  .og-hero { padding: 22px; }
  .og-hero h1 { font-size: 36px; }
  .og-summary-item, .og-support { padding: 22px; }
  .og-section h2 { font-size: 25px; }
  .og-features-grid { grid-template-columns: 1fr; }
  .og-feature-wide { grid-template-columns: 1fr; }
  .og-support { flex-direction: column; align-items: flex-start; }
}
