/**
 * Globonex Executive Brand Theme - Theme Components Stylesheet
 * 
 * Attractive, accessible Accordions and modern Content Placeholders / Showcases
 * inheriting the active Billing Theme color presets and Night Mode.
 *
 * @package Globonex_Billing_Theme
 * @version 1.4.0
 */

/* ==========================================================================
   1. ACCORDIONS SYSTEM
   ========================================================================== */

.globonex-accordion-group {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  margin: 1.75rem 0 2.5rem;
}

/* Base Accordion Item */
.globonex-accordion-item {
  background: var(--card-bg, #ffffff);
  border: 1px solid var(--card-border, #e2e8f0);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.03);
  box-sizing: border-box;
}

.globonex-accordion-item:hover {
  border-color: rgba(5, 100, 210, 0.45);
}

/* Active / Open Accordion State */
.globonex-accordion-item.is-open {
  border-color: var(--primary-color, #0564d2);
  border-left: 4px solid var(--primary-color, #0564d2);
  box-shadow: 0 10px 28px rgba(5, 100, 210, 0.1);
}

/* Accordion Trigger Header Button */
.globonex-accordion-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.15rem 1.35rem;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 1rem;
  color: var(--headings-color, #0f172a);
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
  transition: background-color 0.2s ease, color 0.2s ease;
  user-select: none;
  box-sizing: border-box;
}

.globonex-accordion-header:hover {
  background-color: rgba(5, 100, 210, 0.03);
}

.globonex-accordion-header:focus-visible {
  outline: 2px solid var(--primary-color, #0564d2);
  outline-offset: -2px;
}

.globonex-accordion-item.is-open .globonex-accordion-header {
  color: var(--primary-color, #0564d2);
}

/* Header Content Alignment */
.globonex-accordion-title-wrap {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
  min-width: 0;
}

.globonex-accordion-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 8px;
  background: rgba(5, 100, 210, 0.08);
  color: var(--primary-color, #0564d2);
  font-size: 1.05rem;
  line-height: 1;
  transition: transform 0.25s ease, background-color 0.25s ease;
}

.globonex-accordion-item.is-open .globonex-accordion-icon {
  background: var(--primary-color, #0564d2);
  color: #ffffff;
  transform: scale(1.05);
}

.globonex-accordion-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: inherit;
  margin: 0;
}

/* Optional Pill Badge */
.globonex-accordion-badge {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.22rem 0.65rem;
  border-radius: 20px;
  background: var(--accent-badge-bg, rgba(5, 100, 210, 0.12));
  color: var(--accent-badge-text, var(--primary-color, #0564d2));
  white-space: nowrap;
  line-height: 1.2;
}

/* Animated Indicator / Chevron */
.globonex-accordion-indicator {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.04);
  color: var(--text-muted, #64748b);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.2s ease, color 0.2s ease;
}

.globonex-accordion-indicator svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.globonex-accordion-item.is-open .globonex-accordion-indicator {
  transform: rotate(180deg);
  background: rgba(5, 100, 210, 0.12);
  color: var(--primary-color, #0564d2);
}

/* Smooth CSS Grid Collapse Engine */
.globonex-accordion-collapse {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.32s cubic-bezier(0.16, 1, 0.3, 1);
  box-sizing: border-box;
}

.globonex-accordion-item.is-open .globonex-accordion-collapse {
  grid-template-rows: 1fr;
}

.globonex-accordion-body {
  overflow: hidden;
  box-sizing: border-box;
}

.globonex-accordion-content-inner {
  padding: 0.25rem 1.35rem 1.35rem;
  font-size: 0.96rem;
  line-height: 1.65;
  color: var(--text-main, #0f172a);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  margin-top: 0.15rem;
}

.globonex-accordion-content-inner p:last-child {
  margin-bottom: 0;
}

/* Accordion Style Variants */
/* 1. Bordered Connected Group */
.globonex-accordion-group.style-bordered {
  gap: 0;
  border: 1px solid var(--card-border, #e2e8f0);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.globonex-accordion-group.style-bordered .globonex-accordion-item {
  border: none;
  border-bottom: 1px solid var(--card-border, #e2e8f0);
  border-radius: 0;
  box-shadow: none;
}

.globonex-accordion-group.style-bordered .globonex-accordion-item:last-child {
  border-bottom: none;
}

.globonex-accordion-group.style-bordered .globonex-accordion-item.is-open {
  border-left: 4px solid var(--primary-color, #0564d2);
}

/* 2. Flush Minimal */
.globonex-accordion-group.style-flush {
  gap: 0;
  box-shadow: none;
}

.globonex-accordion-group.style-flush .globonex-accordion-item {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--card-border, #e2e8f0);
  border-radius: 0;
  box-shadow: none;
}

.globonex-accordion-group.style-flush .globonex-accordion-item.is-open {
  border-left: none;
  border-bottom: 2px solid var(--primary-color, #0564d2);
}


/* ==========================================================================
   2. ATTRACTIVE CONTENT PLACEHOLDERS & SHOWCASES
   ========================================================================== */

/* Universal Content Showcase Container */
.globonex-showcase-section {
  width: 100%;
  max-width: 100%;
  margin: 2.5rem 0 3.5rem;
  box-sizing: border-box;
}

.globonex-showcase-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 2.25rem;
}

.globonex-showcase-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.35rem 1rem;
  border-radius: 25px;
  background: var(--accent-badge-bg, rgba(5, 100, 210, 0.1));
  color: var(--accent-badge-text, var(--primary-color, #0564d2));
  margin-bottom: 0.85rem;
  border: 1px solid rgba(5, 100, 210, 0.18);
}

.globonex-showcase-title {
  font-size: clamp(1.6rem, 2.2vw, 2.3rem);
  font-weight: 800;
  color: var(--headings-color, #0f172a);
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
  line-height: 1.25;
}

.globonex-showcase-desc {
  font-size: 1rem;
  color: var(--text-muted, #64748b);
  line-height: 1.6;
  margin: 0;
}

/* Responsive Content Grid */
.globonex-content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 1.5rem;
  width: 100%;
  box-sizing: border-box;
}

.globonex-content-grid[data-columns="1"] { grid-template-columns: 1fr; }
.globonex-content-grid[data-columns="2"] { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.globonex-content-grid[data-columns="3"] { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.globonex-content-grid[data-columns="4"] { grid-template-columns: repeat(4, minmax(0, 1fr)); }

@media (max-width: 860px) {
  .globonex-content-grid[data-columns="3"],
  .globonex-content-grid[data-columns="4"] {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .globonex-content-grid,
  .globonex-content-grid[data-columns="2"],
  .globonex-content-grid[data-columns="3"],
  .globonex-content-grid[data-columns="4"] {
    grid-template-columns: 1fr !important;
  }
}

/* Glassmorphism Content Card */
.globonex-content-card {
  background: var(--card-bg, #ffffff);
  border: 1px solid var(--card-border, #e2e8f0);
  border-radius: 18px;
  padding: 2rem 1.75rem;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.25s ease;
  box-sizing: border-box;
  overflow: hidden;
}

.globonex-content-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary-color, #0564d2);
  box-shadow: 0 16px 36px rgba(5, 100, 210, 0.12);
}

/* Card Top: Icon & Badge Row */
.globonex-card-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.globonex-card-icon-box {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(5, 100, 210, 0.12) 0%, rgba(5, 100, 210, 0.03) 100%);
  border: 1px solid rgba(5, 100, 210, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--primary-color, #0564d2);
  box-shadow: 0 4px 12px rgba(5, 100, 210, 0.1);
  transition: transform 0.3s ease;
}

.globonex-content-card:hover .globonex-card-icon-box {
  transform: scale(1.08) rotate(3deg);
  background: var(--primary-gradient, linear-gradient(135deg, #0564d2 0%, #00b4d8 100%));
  color: #ffffff;
  border-color: transparent;
}

.globonex-card-badge {
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  background: var(--accent-badge-bg, rgba(5, 100, 210, 0.1));
  color: var(--accent-badge-text, var(--primary-color, #0564d2));
}

.globonex-card-heading {
  font-size: 1.28rem;
  font-weight: 800;
  color: var(--headings-color, #0f172a);
  margin: 0 0 0.5rem;
  line-height: 1.35;
}

.globonex-card-text {
  font-size: 0.95rem;
  color: var(--text-muted, #64748b);
  line-height: 1.6;
  margin: 0 0 1.25rem;
  flex: 1;
}

/* Feature Checkmarks Inside Card */
.globonex-card-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  font-size: 0.92rem;
  color: var(--text-main, #0f172a);
}

.globonex-card-checklist li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.globonex-card-checklist .check-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #10b981;
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
}

.globonex-card-action {
  margin-top: auto;
}

.globonex-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  width: 100%;
  padding: 0.75rem 1.25rem;
  border-radius: 10px;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s ease;
  background: rgba(5, 100, 210, 0.08);
  color: var(--primary-color, #0564d2);
  border: 1px solid rgba(5, 100, 210, 0.2);
  box-sizing: border-box;
}

.globonex-card-btn:hover {
  background: var(--primary-color, #0564d2);
  color: #ffffff;
  border-color: var(--primary-color, #0564d2);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(5, 100, 210, 0.25);
}

/* Card Style: Featured Spotlight */
.globonex-content-card.style-featured {
  border: 2px solid var(--primary-color, #0564d2);
  background: linear-gradient(180deg, var(--card-bg, #ffffff) 0%, rgba(5, 100, 210, 0.04) 100%);
  box-shadow: 0 12px 32px rgba(5, 100, 210, 0.15);
}

.globonex-content-card.style-featured .globonex-card-btn {
  background: var(--primary-color, #0564d2);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(5, 100, 210, 0.35);
}

.globonex-content-card.style-featured .globonex-card-btn:hover {
  background: var(--primary-hover, #034ca3);
}

/* Card Style: Gradient Glow */
.globonex-content-card.style-gradient {
  background: var(--primary-gradient, linear-gradient(135deg, #0564d2 0%, #00b4d8 100%));
  color: #ffffff;
  border-color: transparent;
}

.globonex-content-card.style-gradient .globonex-card-heading,
.globonex-content-card.style-gradient .globonex-card-text,
.globonex-content-card.style-gradient .globonex-card-checklist {
  color: #ffffff;
}

.globonex-content-card.style-gradient .globonex-card-icon-box {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.3);
}

.globonex-content-card.style-gradient .globonex-card-badge {
  background: rgba(255, 255, 255, 0.22);
  color: #ffffff;
}

.globonex-content-card.style-gradient .globonex-card-btn {
  background: #ffffff;
  color: var(--primary-color, #0564d2);
  border-color: #ffffff;
}

.globonex-content-card.style-gradient .globonex-card-btn:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}


/* ==========================================================================
   3. BENTO BOX SHOWCASE GRID
   ========================================================================== */

.globonex-bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem;
  width: 100%;
  box-sizing: border-box;
}

.globonex-bento-cell {
  background: var(--card-bg, #ffffff);
  border: 1px solid var(--card-border, #e2e8f0);
  border-radius: 18px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.25s ease;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

.globonex-bento-cell:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color, #0564d2);
  box-shadow: 0 16px 36px rgba(5, 100, 210, 0.1);
}

/* Bento Layout Spans */
.globonex-bento-cell.span-8 { grid-column: span 8; }
.globonex-bento-cell.span-6 { grid-column: span 6; }
.globonex-bento-cell.span-4 { grid-column: span 4; }
.globonex-bento-cell.span-12 { grid-column: span 12; }

@media (max-width: 960px) {
  .globonex-bento-cell.span-8,
  .globonex-bento-cell.span-6,
  .globonex-bento-cell.span-4 {
    grid-column: span 12 !important;
  }
}

.globonex-bento-hero {
  background: linear-gradient(135deg, var(--card-bg, #ffffff) 0%, rgba(5, 100, 210, 0.06) 100%);
  border-color: rgba(5, 100, 210, 0.3);
}

.globonex-bento-number {
  font-size: clamp(2.4rem, 3.5vw, 3.4rem);
  font-weight: 900;
  line-height: 1;
  color: var(--primary-color, #0564d2);
  letter-spacing: -0.03em;
  margin: 0.5rem 0 0.35rem;
}

.globonex-bento-trend {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: #10b981;
  background: rgba(16, 185, 129, 0.12);
  padding: 0.2rem 0.6rem;
  border-radius: 12px;
  width: fit-content;
  margin-top: 0.5rem;
}


/* ==========================================================================
   4. BROWSER / APPLICATION WINDOW MOCKUP
   ========================================================================== */

.globonex-browser-mockup {
  width: 100%;
  border-radius: 16px;
  border: 1px solid var(--card-border, #cbd5e1);
  background: var(--card-bg, #ffffff);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  box-sizing: border-box;
  margin: 2rem 0;
}

.globonex-mockup-topbar {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1.25rem;
  background: rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid var(--card-border, #e2e8f0);
  box-sizing: border-box;
}

.globonex-mockup-dots {
  display: flex;
  gap: 6px;
}

.globonex-mockup-dots span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  display: inline-block;
}

.globonex-mockup-dots .dot-red { background: #ff5f56; }
.globonex-mockup-dots .dot-yellow { background: #ffbd2e; }
.globonex-mockup-dots .dot-green { background: #27c93f; }

.globonex-mockup-url {
  flex: 1;
  max-width: 460px;
  margin: 0 auto;
  background: var(--card-bg, #ffffff);
  border: 1px solid var(--card-border, #e2e8f0);
  border-radius: 8px;
  padding: 0.35rem 0.85rem;
  font-size: 0.8rem;
  color: var(--text-muted, #64748b);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.03);
  user-select: none;
}

.globonex-mockup-body {
  padding: 2.25rem 2rem;
  box-sizing: border-box;
}


/* ==========================================================================
   5. STATS & METRICS COUNTER GRID
   ========================================================================== */

.globonex-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  width: 100%;
  margin: 2.5rem 0;
  box-sizing: border-box;
}

.globonex-stat-card {
  background: var(--card-bg, #ffffff);
  border: 1px solid var(--card-border, #e2e8f0);
  border-radius: 16px;
  padding: 1.75rem 1.5rem;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  box-sizing: border-box;
}

.globonex-stat-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary-color, #0564d2);
  box-shadow: 0 12px 28px rgba(5, 100, 210, 0.12);
}

.globonex-stat-icon {
  font-size: 1.75rem;
  color: var(--primary-color, #0564d2);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.globonex-stat-value {
  font-size: clamp(2rem, 2.5vw, 2.75rem);
  font-weight: 900;
  color: var(--headings-color, #0f172a);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 0.35rem;
}

.globonex-stat-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted, #64748b);
  margin: 0;
}

@media (max-width: 900px) {
  .globonex-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .globonex-stats-grid {
    grid-template-columns: 1fr;
  }
}


/* ==========================================================================
   6. DARK MODE OVERRIDES
   ========================================================================== */

html[data-theme="dark"] .globonex-accordion-item {
  background: #0f172a;
  border-color: rgba(56, 189, 248, 0.2);
}

html[data-theme="dark"] .globonex-accordion-item:hover {
  border-color: rgba(56, 189, 248, 0.45);
}

html[data-theme="dark"] .globonex-accordion-item.is-open {
  border-color: var(--primary-color, #06b6d4);
  box-shadow: 0 10px 28px rgba(6, 182, 212, 0.15);
}

html[data-theme="dark"] .globonex-accordion-header {
  color: #ffffff;
}

html[data-theme="dark"] .globonex-accordion-header:hover {
  background-color: rgba(6, 182, 212, 0.06);
}

html[data-theme="dark"] .globonex-accordion-content-inner {
  color: #cbd5e1;
  border-top-color: rgba(255, 255, 255, 0.08);
}

html[data-theme="dark"] .globonex-accordion-indicator {
  background: rgba(255, 255, 255, 0.06);
  color: #94a3b8;
}

html[data-theme="dark"] .globonex-content-card,
html[data-theme="dark"] .globonex-bento-cell,
html[data-theme="dark"] .globonex-stat-card,
html[data-theme="dark"] .globonex-browser-mockup {
  background: #0f172a;
  border-color: rgba(56, 189, 248, 0.2);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
}

html[data-theme="dark"] .globonex-content-card:hover,
html[data-theme="dark"] .globonex-bento-cell:hover,
html[data-theme="dark"] .globonex-stat-card:hover {
  border-color: var(--primary-color, #06b6d4);
  box-shadow: 0 16px 36px rgba(6, 182, 212, 0.18);
}

html[data-theme="dark"] .globonex-card-btn {
  background: rgba(6, 182, 212, 0.12);
  color: #22d3ee;
  border-color: rgba(6, 182, 212, 0.3);
}

html[data-theme="dark"] .globonex-card-btn:hover {
  background: var(--primary-color, #06b6d4);
  color: #030712;
  border-color: var(--primary-color, #06b6d4);
}

html[data-theme="dark"] .globonex-mockup-topbar {
  background: rgba(0, 0, 0, 0.2);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

html[data-theme="dark"] .globonex-mockup-url {
  background: #0b1120;
  border-color: rgba(255, 255, 255, 0.1);
  color: #94a3b8;
}

/* ==========================================================================
   4. HORIZONTAL PRODUCT ACCORDION SYSTEM
   ========================================================================== */

.globonex-horizontal-accordion {
  display: flex;
  flex-direction: row;
  gap: 14px;
  width: 100%;
  height: var(--globonex-h-height, 480px);
  margin: 2rem 0 3rem;
  box-sizing: border-box;
}

.globonex-h-item {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: row;
  background: var(--card-bg, #ffffff);
  border: 1px solid var(--card-border, #e2e8f0);
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  transition: flex 0.45s cubic-bezier(0.2, 0.9, 0.3, 1),
              border-color 0.3s ease,
              box-shadow 0.3s ease,
              background 0.3s ease;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
  box-sizing: border-box;
}

.globonex-h-item:hover {
  border-color: rgba(5, 100, 210, 0.4);
}

.globonex-h-item.is-open {
  flex: 3.6;
  cursor: default;
  border-color: var(--primary-color, #0564d2);
  box-shadow: 0 16px 40px rgba(5, 100, 210, 0.14);
}

/* Collapsed Tab Strip */
.globonex-h-tab-strip {
  width: 76px;
  min-width: 76px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 1.6rem 0.5rem;
  background: rgba(5, 100, 210, 0.035);
  border: none;
  border-right: 1px solid var(--card-border, #e2e8f0);
  cursor: pointer;
  user-select: none;
  transition: all 0.3s ease;
  font-family: inherit;
  box-sizing: border-box;
}

.globonex-h-item:hover .globonex-h-tab-strip {
  background: rgba(5, 100, 210, 0.07);
}

.globonex-h-item.is-open .globonex-h-tab-strip {
  background: var(--primary-gradient, linear-gradient(135deg, #0564d2, #1e3e62));
  color: #ffffff;
  border-right-color: transparent;
  cursor: default;
}

.globonex-h-tab-icon {
  font-size: 1.7rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.globonex-h-item:hover .globonex-h-tab-icon {
  transform: scale(1.15);
}

.globonex-h-tab-title {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
  margin: auto 0;
  color: var(--headings-color, #0f172a);
  transition: color 0.3s ease;
}

.globonex-h-item.is-open .globonex-h-tab-title {
  color: #ffffff;
}

.globonex-h-tab-price {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--primary-color, #0564d2);
  white-space: nowrap;
  background: rgba(5, 100, 210, 0.1);
  padding: 0.25rem 0.45rem;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.globonex-h-item.is-open .globonex-h-tab-price {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

/* Expanded Content Panel */
.globonex-h-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 2.25rem 2.5rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(18px);
  transition: opacity 0.35s ease 0.12s, transform 0.35s ease 0.12s, visibility 0.35s ease 0.12s;
  overflow-y: auto;
  box-sizing: border-box;
}

.globonex-h-item.is-open .globonex-h-content {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0);
}

.globonex-h-content-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.globonex-h-badge-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.85rem;
  gap: 1rem;
}

.globonex-h-badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  background: rgba(5, 100, 210, 0.12);
  color: var(--primary-color, #0564d2);
}

.globonex-h-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.globonex-h-price {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--primary-color, #0564d2);
  line-height: 1;
}

.globonex-h-cycle {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-color, #64748b);
  opacity: 0.85;
}

.globonex-h-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--headings-color, #0f172a);
  margin: 0 0 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.globonex-h-icon {
  font-size: 1.4rem;
}

.globonex-h-subtitle {
  font-size: 0.95rem;
  color: var(--text-color, #475569);
  line-height: 1.5;
  margin: 0 0 1rem;
}

.globonex-h-desc {
  font-size: 0.9rem;
  color: var(--text-color, #64748b);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.globonex-h-desc p {
  margin: 0 0 0.6rem;
}

.globonex-h-specs {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.65rem 1.25rem;
}

.globonex-h-specs li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--headings-color, #1e293b);
}

.globonex-h-specs .check {
  color: #10b981;
  font-weight: 800;
  font-size: 0.95rem;
}

.globonex-h-actions {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-top: 1rem;
}

.globonex-h-btn-order {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.4rem;
  font-weight: 700;
}

/* Dark Mode Overrides for Horizontal Accordion */
html[data-theme="dark"] .globonex-h-item {
  background: var(--card-bg, #1a2332);
  border-color: var(--card-border, #2d3748);
}

html[data-theme="dark"] .globonex-h-tab-strip {
  background: rgba(255, 255, 255, 0.03);
  border-right-color: var(--card-border, #2d3748);
}

html[data-theme="dark"] .globonex-h-tab-title {
  color: #f1f5f9;
}

html[data-theme="dark"] .globonex-h-title {
  color: #ffffff;
}

html[data-theme="dark"] .globonex-h-specs li {
  color: #e2e8f0;
}

/* Responsive: Mobile Screens */
@media (max-width: 860px) {
  .globonex-horizontal-accordion {
    flex-direction: column;
    height: auto !important;
    gap: 12px;
  }

  .globonex-h-item {
    flex-direction: column;
    flex: none !important;
    height: auto;
  }

  .globonex-h-tab-strip {
    width: 100%;
    min-width: 100%;
    height: 64px;
    flex-direction: row;
    padding: 0 1.25rem;
    border-right: none;
    border-bottom: 1px solid var(--card-border, #e2e8f0);
  }

  .globonex-h-tab-title {
    writing-mode: horizontal-tb;
    transform: none;
    margin: 0;
    font-size: 1rem;
  }

  .globonex-h-item.is-open .globonex-h-tab-strip {
    border-bottom: none;
  }

  .globonex-h-content {
    display: none;
    padding: 1.5rem;
    transform: none;
  }

  .globonex-h-item.is-open .globonex-h-content {
    display: flex;
    opacity: 1;
    visibility: visible;
  }

  .globonex-h-specs {
    grid-template-columns: 1fr;
  }
}

