/** Shopify CDN: Minification failed

Line 3609:14 Expected identifier but found whitespace
Line 3631:0 Expected "}" to go with "{"

**/
/* ============================================================
   304 Inner Circle — Design System
   Scope: /pages/inner-circle, /pages/member-dashboard,
          product page member pricing teaser
   Architecture: mobile-first, CSS custom properties, BEM-ish
   ============================================================ */

/* === 1. DESIGN TOKENS === */
:root {
  --ic-black:        #0a0a0a;
  --ic-white:        #ffffff;
  --ic-gray-50:      #fafafa;
  --ic-gray-100:     #f5f5f5;
  --ic-gray-200:     #e8e8e8;
  --ic-gray-300:     #d0d0d0;
  --ic-gray-400:     #999999;
  --ic-gray-600:     #555555;
  --ic-gray-800:     #222222;
  --ic-accent:       #c8a96e; /* warm gold — used sparingly */
  --ic-radius:       2px;
  --ic-radius-card:  6px;
  --ic-transition:   0.2s ease;
  --ic-max-width:    1100px;
  --ic-section-gap:  80px;
}

/* === 2. BASE UTILITIES === */

.ic-page {
  background: var(--ic-white);
  color: var(--ic-black);
  font-family: inherit;
}

.ic-container {
  max-width: var(--ic-max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.ic-section-heading {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 40px;
  color: var(--ic-black);
}

.ic-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ic-accent);
  margin: 0 0 16px;
}

.ic-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ic-accent);
  border: 1px solid var(--ic-accent);
  padding: 4px 10px;
  border-radius: var(--ic-radius);
}

/* Buttons */

.ic-btn {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: var(--ic-radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background var(--ic-transition), color var(--ic-transition), border-color var(--ic-transition);
  white-space: nowrap;
}

.ic-btn--primary {
  background: var(--ic-black);
  color: var(--ic-white);
  border-color: var(--ic-black);
}

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

.ic-btn--secondary {
  background: transparent;
  color: var(--ic-black);
  border-color: var(--ic-black);
}

.ic-btn--secondary:hover {
  background: var(--ic-black);
  color: var(--ic-white);
}

.ic-btn--ghost {
  background: transparent;
  color: var(--ic-gray-600);
  border-color: var(--ic-gray-300);
  font-size: 12px;
  padding: 10px 20px;
}

.ic-btn--ghost:hover {
  border-color: var(--ic-black);
  color: var(--ic-black);
}

/* Links */

.ic-link {
  color: var(--ic-black);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.06em;
  border-bottom: 1px solid var(--ic-gray-300);
  transition: border-color var(--ic-transition);
}

.ic-link:hover {
  border-color: var(--ic-black);
}

.ic-link--all-orders {
  display: inline-block;
  margin-top: 24px;
}

/* Divider */

.ic-divider {
  border: none;
  border-top: 1px solid var(--ic-gray-200);
  margin: var(--ic-section-gap) 0;
}

/* Placeholder states */

.ic-placeholder-value {
  color: var(--ic-gray-400);
  font-style: italic;
}

.ic-placeholder-text {
  color: var(--ic-gray-400);
  font-size: 13px;
  font-style: italic;
}

/* Empty state */

.ic-empty-state {
  color: var(--ic-gray-400);
  font-size: 14px;
  padding: 32px 0;
}

/* Order status labels */

.ic-order-status {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: var(--ic-radius);
  background: var(--ic-gray-100);
  color: var(--ic-gray-600);
}

.ic-order-status--paid,
.ic-order-status--authorized {
  background: #f0f7f0;
  color: #2d6a2d;
}

.ic-order-status--refunded,
.ic-order-status--voided {
  background: #fdf3f0;
  color: #a03020;
}

/* === 3. INNER CIRCLE LANDING PAGE === */

/* Hero */

.ic-hero {
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.ic-hero--logged-out {
  background: var(--ic-black);
  color: var(--ic-white);
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.ic-hero--logged-in {
  background: var(--ic-gray-100);
  min-height: 40vh;
  display: flex;
  align-items: center;
}

.ic-hero__eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ic-accent);
  margin: 0 0 20px;
}

.ic-hero--logged-in .ic-hero__eyebrow {
  color: var(--ic-accent);
}

.ic-hero__heading {
  font-size: clamp(36px, 8vw, 80px);
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 1;
  margin: 0 0 24px;
}

.ic-hero--logged-out .ic-hero__heading {
  color: var(--ic-white);
}

.ic-hero--logged-in .ic-hero__heading {
  color: var(--ic-black);
  font-size: clamp(28px, 5vw, 52px);
}

.ic-hero__subheading {
  font-size: clamp(14px, 2vw, 17px);
  color: var(--ic-gray-400);
  letter-spacing: 0.04em;
  max-width: 480px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.ic-hero--logged-in .ic-hero__subheading {
  color: var(--ic-gray-600);
}

.ic-hero__ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Benefits grid */

.ic-benefits {
  padding: var(--ic-section-gap) 0;
  background: var(--ic-white);
}

.ic-benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--ic-gray-200);
  border: 1px solid var(--ic-gray-200);
}

.ic-benefit-card {
  background: var(--ic-white);
  padding: 40px 32px;
}

.ic-benefit-card__icon {
  font-size: 20px;
  color: var(--ic-accent);
  margin: 0 0 16px;
  line-height: 1;
}

.ic-benefit-card h3 {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 12px;
  color: var(--ic-black);
}

.ic-benefit-card p {
  font-size: 14px;
  color: var(--ic-gray-600);
  line-height: 1.6;
  margin: 0;
}

/* Compact variant (used on dashboard) */

.ic-benefits-grid--compact .ic-benefit-card {
  padding: 24px 20px;
}

.ic-benefits-grid--compact .ic-benefit-card h3 {
  font-size: 12px;
  margin-bottom: 8px;
}

.ic-benefits-grid--compact .ic-benefit-card p {
  font-size: 13px;
}

/* How it works */

.ic-how-it-works {
  padding: 48px 0;
  background: var(--ic-white);
  border-top: 1px solid var(--ic-gray-200);
  border-bottom: 1px solid var(--ic-gray-200);
}

.ic-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ic-step {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--ic-gray-200);
}

.ic-step:last-child {
  border-bottom: none;
}

.ic-step__number {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 200;
  color: var(--ic-gray-300);
  line-height: 1;
  flex-shrink: 0;
  width: 48px;
  text-align: right;
  letter-spacing: -0.02em;
}

.ic-step h3 {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 6px;
  color: var(--ic-black);
}

.ic-step p {
  font-size: 14px;
  color: var(--ic-gray-600);
  line-height: 1.6;
  margin: 0;
}

/* FAQ */

.ic-faq {
  padding: var(--ic-section-gap) 0;
  background: var(--ic-white);
}

.ic-faq__list {
  border-top: 1px solid var(--ic-gray-200);
}

.ic-faq__item {
  border-bottom: 1px solid var(--ic-gray-200);
}

.ic-faq__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--ic-black);
  list-style: none;
  user-select: none;
}

.ic-faq__question::-webkit-details-marker {
  display: none;
}

.ic-faq__question::after {
  content: '+';
  font-size: 20px;
  font-weight: 200;
  color: var(--ic-gray-400);
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform var(--ic-transition);
}

.ic-faq__item[open] .ic-faq__question::after {
  content: '−';
}

.ic-faq__answer {
  padding: 0 0 24px;
}

.ic-faq__answer p {
  font-size: 14px;
  color: var(--ic-gray-600);
  line-height: 1.7;
  margin: 0;
}

/* === 4. MEMBER DASHBOARD === */

/* Dashboard hero */

.ic-dashboard-hero {
  padding: 60px 0;
  background: var(--ic-black);
  color: var(--ic-white);
}

.ic-dashboard-hero__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
}

.ic-dashboard-hero__name {
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 300;
  letter-spacing: 0.04em;
  margin: 16px 0 8px;
  line-height: 1;
}

.ic-dashboard-hero__status {
  font-size: 13px;
  color: var(--ic-gray-400);
  letter-spacing: 0.06em;
  margin: 0;
}

.ic-dashboard-hero__status strong {
  color: var(--ic-white);
  font-weight: 400;
}

.ic-dashboard-hero__meta {
  text-align: right;
}

.ic-dashboard-hero__member-since {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ic-gray-400);
  margin: 0;
}

/* Stats row */

.ic-stats {
  padding: 40px 0;
  background: var(--ic-gray-50);
  border-bottom: 1px solid var(--ic-gray-200);
}

.ic-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--ic-gray-200);
  border: 1px solid var(--ic-gray-200);
  border-radius: var(--ic-radius-card);
  overflow: hidden;
}

.ic-stat-card {
  background: var(--ic-white);
  padding: 28px 24px;
  text-align: center;
}

.ic-stat-card--placeholder {
  opacity: 0.6;
}

.ic-stat-card__label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ic-gray-400);
  margin-bottom: 8px;
}

.ic-stat-card__value {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 300;
  color: var(--ic-black);
  line-height: 1;
  letter-spacing: -0.01em;
}

/* Tier progress */

.ic-tier-progress {
  padding: var(--ic-section-gap) 0 40px;
  background: var(--ic-white);
}

.ic-progress-track {
  height: 3px;
  background: var(--ic-gray-200);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 12px;
}

.ic-progress-bar {
  height: 100%;
  background: var(--ic-accent);
  border-radius: 2px;
  transition: width 0.8s ease;
}

.ic-progress-bar--placeholder {
  background: var(--ic-gray-300);
}

.ic-progress-label {
  font-size: 12px;
  color: var(--ic-gray-400);
  margin: 0;
}

/* Orders table */

.ic-orders {
  padding: 40px 0 var(--ic-section-gap);
  background: var(--ic-white);
  border-top: 1px solid var(--ic-gray-200);
}

.ic-orders-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.ic-orders-table thead th {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ic-gray-400);
  padding: 0 12px 16px 0;
  text-align: left;
  border-bottom: 1px solid var(--ic-gray-200);
}

.ic-orders-table tbody td {
  padding: 16px 12px 16px 0;
  border-bottom: 1px solid var(--ic-gray-100);
  color: var(--ic-gray-800);
  vertical-align: middle;
}

.ic-orders-table tbody tr:last-child td {
  border-bottom: none;
}

/* Rewards placeholder */

.ic-rewards {
  padding: var(--ic-section-gap) 0;
  background: var(--ic-gray-50);
  border-top: 1px solid var(--ic-gray-200);
  border-bottom: 1px solid var(--ic-gray-200);
}

.ic-rewards-placeholder {
  border: 1px dashed var(--ic-gray-300);
  border-radius: var(--ic-radius-card);
  padding: 48px 32px;
  text-align: center;
  color: var(--ic-gray-400);
  font-size: 13px;
}

/* Member benefits summary (dashboard variant) */

.ic-member-benefits {
  padding: var(--ic-section-gap) 0;
  background: var(--ic-white);
}

/* === 5. PRODUCT PAGE MEMBER PRICING TEASER === */

.ic-pricing-teaser {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  padding: 12px 16px;
  background: var(--ic-gray-50);
  border: 1px solid var(--ic-gray-200);
  border-radius: var(--ic-radius);
  flex-wrap: wrap;
}

.ic-pricing-teaser__label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ic-gray-600);
  flex-shrink: 0;
}

.ic-pricing-teaser__lock {
  color: var(--ic-accent);
  font-size: 14px;
  flex-shrink: 0;
}

.ic-pricing-teaser__cta {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ic-black);
  text-decoration: none;
  border-bottom: 1px solid var(--ic-gray-300);
  padding-bottom: 1px;
  transition: border-color var(--ic-transition);
  margin-left: auto;
}

.ic-pricing-teaser__cta:hover {
  border-color: var(--ic-black);
}

/* === 6. RESPONSIVE — MOBILE-FIRST ENHANCEMENTS === */

/* Mobile: compact benefit cards so uneven text lengths don't create extreme height gaps */
@media (max-width: 767px) {
  .ic-benefit-card {
    padding: 28px 20px;
  }

  .ic-benefit-card__icon {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .ic-benefit-card h3 {
    font-size: 12px;
    margin-bottom: 8px;
  }

  .ic-benefit-card p {
    font-size: 13px;
    line-height: 1.55;
  }
}

@media (min-width: 768px) {
  :root {
    --ic-section-gap: 100px;
  }

  .ic-container {
    padding: 0 40px;
  }

  .ic-benefits-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .ic-steps {
    flex-direction: row;
  }

  .ic-step {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 40px 0 0;
    border-bottom: none;
    border-right: 1px solid var(--ic-gray-200);
    flex: 1;
  }

  .ic-step:last-child {
    border-right: none;
    padding-right: 0;
  }

  .ic-step__number {
    width: auto;
    text-align: left;
    margin-bottom: 16px;
  }

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

@media (min-width: 1024px) {
  .ic-container {
    padding: 0 48px;
  }

  .ic-hero--logged-out {
    min-height: 70vh;
  }

  .ic-benefit-card {
    padding: 48px 40px;
  }

  /* Mobile table → normal table at desktop */
  .ic-orders-table thead {
    display: table-header-group;
  }

  .ic-orders-table tbody tr {
    display: table-row;
  }

  .ic-orders-table tbody td {
    display: table-cell;
  }
}

/* Mobile table: stack rows */
@media (max-width: 767px) {
  .ic-orders-table,
  .ic-orders-table tbody,
  .ic-orders-table tr,
  .ic-orders-table td {
    display: block;
    width: 100%;
  }

  .ic-orders-table thead {
    display: none;
  }

  .ic-orders-table tr {
    padding: 16px 0;
    border-bottom: 1px solid var(--ic-gray-200);
  }

  .ic-orders-table tr:last-child {
    border-bottom: none;
  }

  .ic-orders-table td {
    padding: 4px 0;
    border-bottom: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--ic-gray-800);
  }

  .ic-orders-table td::before {
    content: attr(data-label);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ic-gray-400);
    flex-shrink: 0;
    margin-right: 12px;
  }

  .ic-stats-grid {
    grid-template-columns: 1fr;
  }

  .ic-dashboard-hero__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .ic-dashboard-hero__meta {
    text-align: left;
  }
}

/* =============================================================
   7. DASHBOARD — PHASE 2 ADDITIONS
   ============================================================= */

/* ─── Hero additions ──────────────────────────────────────── */

.ic-dashboard-hero__left {
  flex: 1;
  min-width: 0;
}

.ic-dashboard-hero__right {
  text-align: right;
  flex-shrink: 0;
}

.ic-dashboard-hero__tier-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.ic-dashboard-hero__rate {
  font-size: 12px;
  color: var(--ic-gray-400);
  letter-spacing: 0.08em;
}

.ic-dashboard-hero__logout {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding-bottom: 1px;
  margin-top: 10px;
  transition: color var(--ic-transition), border-color var(--ic-transition);
}

.ic-dashboard-hero__logout:hover {
  color: rgba(255, 255, 255, 0.65);
  border-color: rgba(255, 255, 255, 0.35);
}

@media (max-width: 767px) {
  .ic-dashboard-hero__right {
    text-align: left;
  }
}

/* ─── Tier badges ─────────────────────────────────────────── */

.ic-tier-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: var(--ic-radius);
}

.ic-tier-badge--bronze {
  border: 1px solid rgba(200, 169, 110, 0.45);
  color: rgba(200, 169, 110, 0.75);
}

.ic-tier-badge--silver {
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: rgba(255, 255, 255, 0.75);
}

.ic-tier-badge--gold {
  border: 1px solid var(--ic-accent);
  color: var(--ic-accent);
}

.ic-tier-badge--diamond {
  border: 1px solid var(--ic-accent);
  color: var(--ic-accent);
}

/* ─── Quick nav ───────────────────────────────────────────── */

.ic-dash-nav {
  background: var(--ic-gray-50);
  border-bottom: 1px solid var(--ic-gray-200);
  position: sticky;
  top: 0;
  z-index: 10;
}

.ic-dash-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.ic-dash-nav__list::-webkit-scrollbar {
  display: none;
}

.ic-dash-nav__link {
  display: block;
  padding: 13px 20px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ic-gray-400);
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--ic-transition);
}

.ic-dash-nav__link:hover {
  color: var(--ic-black);
}

/* ─── Stats grid 2-col variant ───────────────────────────── */

.ic-stats-grid--2 {
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 767px) {
  /* Keep 2-col stats side by side on mobile — they fit cleanly */
  .ic-stats-grid.ic-stats-grid--2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ─── Tier progress panel ────────────────────────────────── */

.ic-tier-panel__progress-block {
  margin-bottom: 32px;
}

.ic-tier-panel__progress-labels {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ic-gray-400);
}

.ic-tier-panel__progress-meta {
  font-size: 12px;
  color: var(--ic-gray-400);
  margin: 10px 0 0;
  letter-spacing: 0.04em;
}

/* ─── Tier ladder ─────────────────────────────────────────── */

.ic-tier-ladder {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--ic-gray-200);
  border: 1px solid var(--ic-gray-200);
  border-radius: var(--ic-radius-card);
  overflow: hidden;
}

.ic-tier-rung {
  background: var(--ic-white);
  padding: 16px 12px;
  text-align: center;
}

.ic-tier-rung--active {
  background: var(--ic-black);
}

.ic-tier-rung__name {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ic-black);
}

.ic-tier-rung--active .ic-tier-rung__name {
  color: var(--ic-white);
}

.ic-tier-rung__threshold {
  font-size: 10px;
  color: var(--ic-gray-400);
  margin-top: 5px;
  letter-spacing: 0.02em;
}

.ic-tier-rung__rate {
  font-size: 10px;
  font-weight: 600;
  color: var(--ic-accent);
  margin-top: 6px;
  letter-spacing: 0.08em;
}

@media (max-width: 479px) {
  .ic-tier-ladder {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ─── Compact orders (accordion) ─────────────────────────── */

.ic-orders-accordion {
  /* details element — no forced visual chrome */
}

.ic-orders-accordion__summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 0;
  margin-bottom: 20px;
  user-select: none;
}

.ic-orders-accordion__summary::-webkit-details-marker {
  display: none;
}

.ic-orders-accordion__heading {
  margin-bottom: 0;
  display: inline;
}

.ic-orders-accordion__count {
  font-size: 11px;
  color: var(--ic-gray-400);
  letter-spacing: 0.06em;
}

.ic-orders-accordion__icon {
  margin-left: auto;
  flex-shrink: 0;
  font-size: 18px;
  font-weight: 200;
  color: var(--ic-gray-400);
  line-height: 1;
}

.ic-orders-accordion__icon::before {
  content: '−';
}

.ic-orders-accordion:not([open]) .ic-orders-accordion__icon::before {
  content: '+';
}

.ic-orders-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ic-order-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid var(--ic-gray-100);
  font-size: 13px;
  flex-wrap: nowrap;
}

.ic-order-row:last-of-type {
  border-bottom: none;
}

.ic-order-row__name {
  font-weight: 500;
  color: var(--ic-black);
  white-space: nowrap;
  min-width: 68px;
}

.ic-order-row__date {
  font-size: 12px;
  color: var(--ic-gray-400);
  white-space: nowrap;
}

.ic-order-row__total {
  color: var(--ic-black);
  margin-left: auto;
  white-space: nowrap;
}

.ic-order-row__link {
  font-size: 12px;
  white-space: nowrap;
}

@media (max-width: 767px) {
  .ic-order-row {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    row-gap: 4px;
    column-gap: 12px;
    flex-wrap: wrap;
  }

  .ic-order-row__name   { grid-column: 1; grid-row: 1; }
  .ic-order-row__date   { grid-column: 1; grid-row: 2; }
  .ic-order-status      { grid-column: 2; grid-row: 1; }
  .ic-order-row__total  { grid-column: 2; grid-row: 2; margin-left: 0; }
  .ic-order-row__link   { grid-column: 1 / -1; grid-row: 3; padding-top: 4px; }
}

/* =============================================================
   8. PRODUCT PAGE — INNER CIRCLE PRICING (metafield-based)
   ============================================================= */

/*
  Single right-aligned line beneath the main price.
  Rendered as an <a> so the entire line is clickable.
  white-space: nowrap ensures it can never overflow into a multi-word
  wrapping mess that would push the title column out of position.
*/

a.ic-member-pricing {
  display: block;
  text-align: right;
  text-decoration: none;
  white-space: nowrap;
  margin-top: 5px;
  line-height: 1;
  color: var(--ic-gray-500, #999);
  transition: color var(--ic-transition);
}

a.ic-member-pricing:hover {
  color: var(--ic-gray-700, #555);
}

.ic-member-pricing__label {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.ic-member-pricing__price {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.02em;
  margin-left: 3px;
}

/* =============================================================
   9. CART — INNER CIRCLE MESSAGE
   ============================================================= */

.ic-cart-message {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  border-top: 1px solid var(--ic-gray-200);
  margin-bottom: 4px;
}

.ic-cart-message__icon {
  color: var(--ic-accent);
  font-size: 11px;
  flex-shrink: 0;
}

.ic-cart-message__text {
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--ic-gray-600);
  flex: 1;
}

.ic-cart-message__link {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ic-black);
  text-decoration: none;
  border-bottom: 1px solid var(--ic-gray-300);
  padding-bottom: 1px;
  white-space: nowrap;
  transition: border-color var(--ic-transition);
}

.ic-cart-message__link:hover {
  border-color: var(--ic-black);
}



/* =============================================================
   10. DASHBOARD v2 — REFINED LIGHT DESIGN
   Visual direction: premium, clean, minimal, bright — not too
   pale/bland, not too dark/heavy. Slightly stronger contrast
   and warmer tones than the previous version.
   ============================================================= */

/* ─── Page wrapper ──────────────────────────────────────────── */

.ic-v2 {
  background: #fff;
  color: #1a1a1a;
  font-family: inherit;
}

/* ─── Hero: compact image + tier summary ────────────────────── */

.ic-v2-hero {
  /* Warm off-white stone base — more atmosphere than pure white */
  background: #f3f0ec;
}

.ic-v2-hero__img-wrap {
  width: 100%;
  height: 240px; /* slightly taller than before for more presence */
  overflow: hidden;
}

.ic-v2-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ic-v2-hero__img-placeholder {
  width: 100%;
  height: 240px;
  background: #e4e1db;
}

.ic-v2-hero__img-placeholder--suite      { background: #e0ddd6; }
.ic-v2-hero__img-placeholder--residence  { background: #dbd8d1; }
.ic-v2-hero__img-placeholder--penthouse  { background: #d5d2c9; }

.ic-v2-hero__body {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 0 10px;
  flex-wrap: wrap;
}

.ic-v2-hero__info {
  flex: 1;
  min-width: 0;
}

.ic-v2-hero__program {
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #767672; /* up from #999 — clearly readable */
  margin-bottom: 8px;
}

.ic-v2-hero__tier-name {
  font-size: clamp(24px, 3.5vw, 34px); /* slightly larger — more presence */
  font-weight: 300;
  letter-spacing: 0.04em;
  color: #1a1a1a;
  line-height: 1.1;
  margin-bottom: 8px;
}

.ic-v2-hero__since {
  font-size: 12px;
  color: #777; /* up from #999 */
  letter-spacing: 0.06em;
  margin: 0;
}

.ic-v2-hero__points-col {
  text-align: right;
  flex-shrink: 0;
}

.ic-v2-hero__points-value {
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 200;
  letter-spacing: -0.02em;
  color: #1a1a1a;
  line-height: 1;
}

.ic-v2-hero__points-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #888; /* up from #aaa */
  margin-top: 4px;
}

.ic-v2-placeholder {
  color: #b8b8b8; /* up from #ccc — slightly more visible */
}

/* Progress bar */

.ic-v2-progress {
  padding: 16px 0 28px;
}

.ic-v2-progress__labels {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #999; /* up from #bbb */
  margin-bottom: 8px;
}

.ic-v2-progress__track {
  height: 2px;
  background: #dedad4;
  border-radius: 2px;
  overflow: hidden;
}

.ic-v2-progress__fill {
  height: 100%;
  background: #1a1a1a;
  border-radius: 2px;
  transition: width 0.8s ease;
}

.ic-v2-progress__meta {
  font-size: 12px;
  color: #888; /* up from #aaa */
  margin: 10px 0 0;
  letter-spacing: 0.03em;
}

@media (min-width: 768px) {
  .ic-v2-hero__img-wrap,
  .ic-v2-hero__img-placeholder {
    height: 320px; /* taller on desktop for more presence */
  }
}

@media (max-width: 767px) {
  .ic-v2-hero__body {
    flex-direction: column;
    gap: 12px;
  }

  .ic-v2-hero__points-col {
    text-align: left;
  }
}

/* ─── Anchor navigation ─────────────────────────────────────── */

.ic-v2-nav {
  background: #fff;
  border-bottom: 1px solid #e0ddd8; /* warmer border */
  position: sticky;
  top: 0;
  z-index: 20;
}

.ic-v2-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.ic-v2-nav__list::-webkit-scrollbar {
  display: none;
}

.ic-v2-nav__link {
  display: block;
  padding: 14px 18px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #888; /* up from #aaa */
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.ic-v2-nav__link:hover {
  color: #1a1a1a;
}

/* ─── Sections ──────────────────────────────────────────────── */

.ic-v2-section {
  padding: 56px 0;
  background: #fff;
  border-top: 1px solid #e0ddd8; /* warmer than #ebebeb */
}

.ic-v2-section--alt {
  background: #f6f4f0; /* more distinct from white — warm stone */
}

.ic-v2-section-heading {
  font-size: 11px;
  font-weight: 600; /* slightly bolder for clarity */
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #686864; /* up from #aaa — clearly readable label */
  margin: 0 0 32px;
}

/* ─── Overview: stat cards ──────────────────────────────────── */

.ic-v2-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: #e0ddd8; /* warmer grid separator */
  border: 1px solid #e0ddd8;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 40px;
}

.ic-v2-card {
  background: #fff;
  padding: 24px 20px;
  text-align: center;
}

.ic-v2-card--dim {
  opacity: 0.5;
}

.ic-v2-card__label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #888; /* up from #bbb */
  margin-bottom: 10px;
}

.ic-v2-card__value {
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 300;
  color: #1a1a1a;
  line-height: 1.1;
  margin-bottom: 6px;
}

.ic-v2-card__value--tier {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #333; /* up from #555 */
}

.ic-v2-card__value--md {
  font-size: clamp(15px, 2vw, 20px);
}

.ic-v2-card__note {
  font-size: 11px;
  color: #999; /* up from #bbb */
  letter-spacing: 0.04em;
}

@media (max-width: 767px) {
  .ic-v2-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ─── Overview: orders ──────────────────────────────────────── */

.ic-v2-orders-block {
  border-top: 1px solid #e0ddd8;
  padding-top: 32px;
}

.ic-v2-block-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 20px;
}

.ic-v2-block-title {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #888; /* up from #bbb */
  margin: 0;
}

.ic-v2-block-link {
  font-size: 12px;
  color: #888; /* up from #aaa */
  text-decoration: none;
  letter-spacing: 0.04em;
  white-space: nowrap;
  transition: color 0.2s;
}

.ic-v2-block-link:hover {
  color: #1a1a1a;
}

.ic-v2-orders {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ic-v2-order {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid #eceae6; /* slightly warmer */
  font-size: 13px;
}

.ic-v2-order:last-child {
  border-bottom: none;
}

.ic-v2-order__left {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}

.ic-v2-order__name {
  font-weight: 500;
  color: #1a1a1a;
}

.ic-v2-order__date {
  font-size: 11px;
  color: #999; /* up from #bbb */
}

.ic-v2-order__right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.ic-v2-order__total {
  color: #1a1a1a;
  white-space: nowrap;
  font-weight: 400;
}

.ic-v2-order__link {
  font-size: 11px;
  color: #999; /* up from #bbb */
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}

.ic-v2-order__link:hover {
  color: #1a1a1a;
}

.ic-v2-empty {
  font-size: 13px;
  color: #999; /* up from #bbb */
  margin: 0;
  padding: 20px 0;
}

@media (max-width: 599px) {
  .ic-v2-order {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .ic-v2-order__right {
    width: 100%;
    justify-content: space-between;
  }
}

/* ─── Earn points: stacked rows ─────────────────────────────── */

.ic-v2-earn-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid #e4e2de;
}

.ic-v2-earn-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid #e4e2de;
}

.ic-v2-earn-row__body {
  flex: 1;
  min-width: 0;
}

.ic-v2-earn-row__title {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 3px;
  letter-spacing: 0.02em;
}

.ic-v2-earn-row__desc {
  display: block;
  font-size: 12px;
  color: #888; /* up from #aaa */
  line-height: 1.5;
}

.ic-v2-earn-row__value {
  font-size: 16px;
  font-weight: 300;
  color: #444; /* up from #555 */
  flex-shrink: 0;
  letter-spacing: -0.01em;
}

.ic-v2-earn-row__value--done {
  color: #5a9e5a;
  font-size: 14px;
  font-weight: 500;
}

.ic-v2-earn-row__cta {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1a1a1a;
  text-decoration: none;
  border-bottom: 1px solid #ccc;
  padding-bottom: 1px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: border-color 0.2s;
}

.ic-v2-earn-row__cta:hover {
  border-color: #1a1a1a;
}

.ic-v2-earn-row__cta--soon {
  color: #aaa;
  border-color: #e0e0e0;
}

.ic-v2-earn-row__cta--soon:hover {
  color: #777;
  border-color: #aaa;
}

/* ─── Rewards grid ──────────────────────────────────────────── */

.ic-v2-reward-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.ic-v2-reward {
  background: #fff;
  border: 1px solid #e0ddd8; /* warmer border */
  border-radius: 4px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ic-v2-reward--special {
  background: #f6f4f0;
  border-color: #d8d4cc;
}

.ic-v2-reward__type {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #888; /* up from #bbb */
  border: 1px solid #e0ddd8;
  display: inline-block;
  padding: 2px 7px;
  border-radius: 2px;
  align-self: flex-start;
}

.ic-v2-reward__type--special {
  color: #907c55; /* slightly stronger gold-tan */
  border-color: #d4c8a8;
}

.ic-v2-reward__title {
  font-size: 15px;
  font-weight: 400;
  color: #1a1a1a;
  margin: 4px 0 0;
  letter-spacing: 0.01em;
}

.ic-v2-reward__desc {
  font-size: 12px;
  color: #888; /* up from #aaa */
  line-height: 1.5;
  margin: 0;
  flex: 1;
}

.ic-v2-reward__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding-top: 12px;
  border-top: 1px solid #ece9e4;
  margin-top: auto;
}

.ic-v2-reward__cost {
  font-size: 11px;
  color: #888; /* up from #bbb */
  letter-spacing: 0.04em;
}

.ic-v2-reward__cost strong {
  color: #333; /* up from #555 */
  font-weight: 500;
}

.ic-v2-reward__btn {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #bbb;
  background: transparent;
  border: 1px solid #e0e0e0;
  padding: 5px 10px;
  border-radius: 2px;
  cursor: not-allowed;
  white-space: nowrap;
  font-family: inherit;
}

.ic-v2-reward__btn:not([disabled]) {
  color: #1a1a1a;
  border-color: #1a1a1a;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.ic-v2-reward__btn:not([disabled]):hover {
  background: #1a1a1a;
  color: #fff;
}

.ic-v2-rewards-note {
  font-size: 12px;
  color: #999; /* up from #bbb */
  text-align: center;
  margin: 0;
  letter-spacing: 0.04em;
}

@media (max-width: 767px) {
  .ic-v2-reward-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 479px) {
  .ic-v2-reward-grid {
    grid-template-columns: 1fr;
  }
}

/* ─── History ───────────────────────────────────────────────── */

.ic-v2-history {
  border: 1px solid #e0ddd8;
  border-radius: 4px;
  overflow: hidden;
}

.ic-v2-history__head {
  display: grid;
  grid-template-columns: 100px 1fr 80px 80px;
  padding: 10px 16px;
  background: #f6f4f0;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #888; /* up from #bbb */
  border-bottom: 1px solid #e0ddd8;
}

.ic-v2-history__empty {
  padding: 32px 16px;
  text-align: center;
}

@media (max-width: 599px) {
  .ic-v2-history__head {
    display: none;
  }
}

/* ─── Tiers ─────────────────────────────────────────────────── */

.ic-v2-tiers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: #e0ddd8;
  border: 1px solid #e0ddd8;
  border-radius: 4px;
  overflow: hidden;
}

.ic-v2-tier {
  background: #fff;
  display: flex;
  flex-direction: column;
}

.ic-v2-tier--current {
  background: #f5f3ef;
  outline: 2px solid #1a1a1a;
  outline-offset: -2px;
  z-index: 1;
}

.ic-v2-tier__img-wrap {
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
}

.ic-v2-tier__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ic-v2-tier__img-placeholder {
  width: 100%;
  aspect-ratio: 3 / 2;
  background: #e8e4de;
}

.ic-v2-tier__img-placeholder--suite      { background: #e4e0d9; }
.ic-v2-tier__img-placeholder--residence  { background: #dedad2; }
.ic-v2-tier__img-placeholder--penthouse  { background: #d8d4cc; }

.ic-v2-tier__body {
  padding: 20px 16px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.ic-v2-tier__num {
  font-size: 32px;
  font-weight: 200;
  color: #c8c4bc; /* up from #ddd — slightly more present */
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.ic-v2-tier--current .ic-v2-tier__num {
  color: #b0aba2; /* up from #c8c4bc for active tier */
}

.ic-v2-tier__name {
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: #1a1a1a;
  margin: 0 0 6px;
}

.ic-v2-tier__desc {
  font-size: 12px;
  color: #888; /* up from #aaa */
  line-height: 1.55;
  margin: 0 0 14px;
}

.ic-v2-tier__meta {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.ic-v2-tier__meta span {
  font-size: 11px;
  color: #999; /* up from #bbb */
  letter-spacing: 0.04em;
}

.ic-v2-tier__rate {
  font-weight: 500;
  color: #5a5550 !important; /* warmer, more readable */
}

.ic-v2-tier__perks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.ic-v2-tier__perks li {
  font-size: 12px;
  color: #777; /* up from #999 */
  padding-left: 10px;
  position: relative;
  line-height: 1.4;
}

.ic-v2-tier__perks li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: #bbb; /* up from #ddd */
}

.ic-v2-tier__current-tag {
  display: inline-block;
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid #dedad4;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #555; /* up from #888 */
}

@media (max-width: 767px) {
  .ic-v2-tiers {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 479px) {
  .ic-v2-tiers {
    grid-template-columns: 1fr;
  }
}

/* ─── Logout footer ─────────────────────────────────────────── */

.ic-v2-footer {
  padding: 48px 0;
  border-top: 1px solid #e0ddd8;
  text-align: center;
}

.ic-v2-footer__logout {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #999; /* up from #ccc */
  text-decoration: none;
  border-bottom: 1px solid #ddd;
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}

.ic-v2-footer__logout:hover {
  color: #555;
  border-color: #888;
}

/* ─── Mobile section adjustments ───────────────────────────── */

@media (max-width: 767px) {
  .ic-v2-section {
    padding: 40px 0;
  }
}

/* ─── Hero: image overlay mode ──────────────────────────────── */
/* Active when a tier image is set via Theme Editor */

.ic-v2-hero--has-img {
  position: relative;
  overflow: hidden;
  background: #1a1a1a; /* dark fallback while image loads */
}

/* Image fills the full section */
.ic-v2-hero--has-img .ic-v2-hero__img-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Gradient overlay: darkens bottom for text legibility */
.ic-v2-hero--has-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(6, 5, 4, 0.12) 0%,
    rgba(6, 5, 4, 0.44) 55%,
    rgba(6, 5, 4, 0.70) 100%
  );
  z-index: 1;
  pointer-events: none;
}

/* Container sits on top of image + gradient */
.ic-v2-hero--has-img .ic-container {
  position: relative;
  z-index: 2;
}

/* Push body down so image has visual breathing room above text */
.ic-v2-hero--has-img .ic-v2-hero__body {
  padding-top: 160px;
}

@media (min-width: 768px) {
  .ic-v2-hero--has-img .ic-v2-hero__body {
    padding-top: 240px;
  }
}

/* White text on image overlay */
.ic-v2-hero--has-img .ic-v2-hero__program   { color: rgba(255,255,255,0.62); }
.ic-v2-hero--has-img .ic-v2-hero__tier-name { color: #fff; }
.ic-v2-hero--has-img .ic-v2-hero__since     { color: rgba(255,255,255,0.62); }
.ic-v2-hero--has-img .ic-v2-hero__points-value { color: #fff; }
.ic-v2-hero--has-img .ic-v2-hero__points-label { color: rgba(255,255,255,0.55); }
.ic-v2-hero--has-img .ic-v2-placeholder        { color: rgba(255,255,255,0.28); }
.ic-v2-hero--has-img .ic-v2-progress__labels   { color: rgba(255,255,255,0.52); }
.ic-v2-hero--has-img .ic-v2-progress__track    { background: rgba(255,255,255,0.20); }
.ic-v2-hero--has-img .ic-v2-progress__fill     { background: rgba(255,255,255,0.88); }
.ic-v2-hero--has-img .ic-v2-progress__meta     { color: rgba(255,255,255,0.55); }

/* ─── Bestellungen: collapsible section ─────────────────────── */

.ic-v2-orders-details {
  /* native <details> — no extra chrome */
}

.ic-v2-orders-summary {
  display: flex;
  align-items: center;
  gap: 14px;
  list-style: none;
  cursor: pointer;
  user-select: none;
  padding: 0 0 20px;
}

.ic-v2-orders-summary::-webkit-details-marker { display: none; }
.ic-v2-orders-summary::marker { display: none; }

.ic-v2-orders-summary__title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #686864;
  flex: 1;
  margin: 0;
}

.ic-v2-orders-summary__count {
  font-size: 12px;
  color: #999;
  letter-spacing: 0.04em;
}

.ic-v2-orders-summary__all {
  font-size: 12px;
  color: #888;
  text-decoration: none;
  letter-spacing: 0.04em;
  white-space: nowrap;
  transition: color 0.2s;
}

.ic-v2-orders-summary__all:hover { color: #1a1a1a; }

.ic-v2-orders-toggle {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #bbb;
  transition: transform 0.22s ease, color 0.2s;
}

.ic-v2-orders-toggle svg {
  display: block;
}

details[open] .ic-v2-orders-toggle {
  transform: rotate(180deg);
  color: #888;
}

.ic-v2-orders-content {
  padding-top: 4px;
}

/* ─── PDP: reviews + member price row ───────────────────────── */

/* Pull the reviews/member-price block tighter to the price block above */
.product__block:has(.pdp-reviews-member-row) {
  padding-top: 0 !important;
  margin-top: -21px;
}

.pdp-reviews-member-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

/* ─── Inner Circle member pricing (PDP + cart) ───────────────── */

.ic-member-price {
  text-decoration: none;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  flex-shrink: 0;
  line-height: 1.2;
}
.ic-member-price--pdp {
  position: relative;
}

.ic-member-price--pdp .ic-member-price__info {
  position: relative;
  right: auto;
  top: auto;
  margin-right: 2px;
}
.ic-member-price__value {
  font-weight: 500;
  font-size: 1.15em;
  letter-spacing: 0;
  background: linear-gradient(90deg, #b8860b, #daa520, #ffd700, #daa520, #b8860b);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: goldShimmer 3s ease infinite;
}

@keyframes goldShimmer {
  0% { background-position: 0% center; }
  50% { background-position: 100% center; }
  100% { background-position: 0% center; }
}

/* ⓘ + Members inline row */
.ic-member-price__meta {
  display: flex;
  align-items: center;
  gap: 3px;
}

.ic-member-price__info {
  font-size: 13px;
  color: #777777;
  opacity: 1;
  line-height: 1;
  font-weight: 600;
  -webkit-text-stroke: 0.3px #777777;
}

.ic-member-price__label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 1;
  line-height: 1;
  background: linear-gradient(90deg, #c9a84c, #e2c878, #f5e6a3, #e2c878, #c9a84c);
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: goldShimmer 6s ease infinite;
}

/* Cart variant: price stacked above Members label, right-aligned */
.ic-member-price--cart {
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  margin-top: 4px;
}

.ic-member-price--cart .ic-member-price__value {
  font-size: 13px;
}

.ic-member-price--cart .ic-member-price__label {
  font-size: 9px;
}

/* ─── Cart footer: total member price row ────────────────────── */

.ic-cart-member-total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  text-decoration: none;
  padding: 10px 0 20px;
  border-top: 1px solid #e8e6e2;
  margin-top: 4px;
}

.ic-cart-member-total__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: #c0392b;
  opacity: 0.85;
}

.ic-cart-member-total__price {
  font-size: 18px;
  font-weight: 700;
  color: #c0392b;
  letter-spacing: -0.01em;
}

/* ─── Member-Color-System: Rot für Gäste → Grün für Members ─── */
/*
  body.ic-member-active wird per JS gesetzt sobald Member-Status erkannt.
  Alle IC-Preis-Elemente schalten dann von Rot (#c0392b) auf Grün (#1d7048).
*/
body.ic-member-active .ic-red,
body.ic-member-active .ic-member-price__value,
body.ic-member-active .ic-member-price__info,
body.ic-member-active .ic-member-price__label,
body.ic-member-active .ic-cart-member-total__label,
body.ic-member-active .ic-cart-member-total__price {
  color: #1d7048 !important;
}

/* ─── Produkt-Page-Titel: Mobile font-size damit lange Titel passen ── */
@media only screen and (max-width: 749px) {
  html body .template-product .product__title-row .product__title,
  html body .template-product .product__title {
    font-size: clamp(14px, 4.2vw, 17px) !important;
    line-height: 1.2 !important;
  }
}

/* ─── Empty Cart: Empfohlen für dich ─────────────────────────── */

.ic-empty-rec {
  padding: 0;
  width: 100%;
  margin-top: 16px;
}

.ic-empty-rec__heading {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #333;
  margin: 0 0 12px;
  padding: 0 0 0;
}

.ic-empty-rec__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin: 0 -20px;
}

.ic-empty-rec__grid .grid__item {
  margin: 0;
  padding: 0;
}

.ic-empty-rec__grid .grid__item .product-item__image-wrapper,
.ic-empty-rec__grid .grid__item .product-item__image {
  width: 100%;
}

/* Free-Shipping-Bar im leeren Warenkorb */
.ic-empty-shipping-bar {
  margin-bottom: 16px;
}

.ic-empty-shipping-bar .free-shipping {
  border-bottom: 1px solid #f0f0f0;
  padding-bottom: 14px;
}

/* Grüner Anfangs-Dot: kleines grünes Segment immer am Balken-Start */
.ic-empty-shipping-bar .free-shipping__progress-bar::-webkit-progress-bar {
  background: linear-gradient(to right, #3dba6e 0px, #3dba6e 5px, rgba(0,0,0,0.1) 5px);
  border-radius: 4px;
}
@-moz-document url-prefix() {
  .ic-empty-shipping-bar .free-shipping__progress-bar {
    background: linear-gradient(to right, #3dba6e 0px, #3dba6e 5px, rgba(0,0,0,0.1) 5px) !important;
  }
}

/* ─── Produkttitel: 1-zeilig (Grid-Kacheln) ────────────────────── */
.product-item__title {
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

/* flex:1 gibt dem Titel max. verfügbare Breite in der Preis-Zeile */
html body .template-product .product__title-row .product__title,
html body .template-product .product__title {
  flex: 1 1 auto !important;
  min-width: 0 !important;
}

/* ─── Produkt-Bild-Slider: saubere Pfeil-Buttons ─────────────────── */
/* Runder Button, Schatten, sichtbare Größe */
.flickity-prev-next-button {
  border-radius: 50% !important;
  width: 36px !important;
  height: 36px !important;
  background: rgba(255,255,255,0.95) !important;
  box-shadow: 0 2px 10px rgba(0,0,0,0.18), 0 1px 3px rgba(0,0,0,0.10) !important;
  border: 1px solid rgba(0,0,0,0.08) !important;
  overflow: visible !important;
}

/* Mask-Image-Ansatz deaktivieren → reiner CSS-Chevron */
.flickity-prev-next-button:before {
  content: '' !important;
  background: none !important;
  background-image: none !important;
  -webkit-mask-image: none !important;
  mask-image: none !important;
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  width: 9px !important;
  height: 9px !important;
  border-top: 2px solid #0a0a0a !important;
  border-right: 2px solid #0a0a0a !important;
  border-radius: 1px !important;
}
.flickity-prev-next-button.previous:before {
  transform: translate(-25%, -50%) rotate(-135deg) !important;
}
.flickity-prev-next-button.next:before {
  transform: translate(-75%, -50%) rotate(45deg) !important;
}

/* Auf Mobile sichtbar im Produkt-Kontext und Quickview */
@media only screen and (max-width: 749px) {
  .template-product .flickity-prev-next-button,
  .product-quick-add .flickity-prev-next-button {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .template-product .flickity-prev-next-button.previous,
  .product-quick-add .flickity-prev-next-button.previous {
    left: 8px !important;
  }
  .template-product .flickity-prev-next-button.next,
  .product-quick-add .flickity-prev-next-button.next {
    right: 8px !important;
  }
}

/* ─── Cart-Drawer Sicherheit: IC-Modal darf Cart niemals blockieren ── */
/* Cart-Drawer immer über IC-Modal wenn offen */
dialog[open] {
  z-index: 999999 !important;
}
/* IC-Modal-Overlay: pointer-events sperren wenn unsichtbar (Fallback) */
#ic-modal-overlay {
  pointer-events: none;
}
#ic-modal-overlay.ic-modal-visible {
  pointer-events: auto;
}

/* ─── Native Progress-Bar komplett killen, Gold Shimmer Bar übernimmt ── */
progress.free-shipping__progress-bar,
.free-shipping progress,
.drawer__message progress,
.free-shipping .free-shipping__progress-bar {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  overflow: hidden !important;
  position: absolute !important;
  pointer-events: none !important;
}
@media (max-width: 749px) {
  .product__mobile-header {
    padding-top: 5px;
    position: relative;
  }
  .product__mobile-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100vw;
    right: -100vw;
    height: 1px;
    background: #e8e5e0;
  }
}@media (max-width: 749px) {
  .product__images {
    margin-bottom: 20px;
  }
}
@media (max-width: 749px) {
  .product__mobile-header + product-images {
    margin-top: -10px;
  }
}
/* ─── Cart: Zahlungsicons schwarz-weiß ── */
.cart__payment-icons svg,
.cart__payment-icons img,
.cart__payment-icons .payment-icon {
  filter: grayscale(100%) !important;
}
/* ─── Cart: INNER CIRCLE Preis in Gold Shimmer ── */
.ic-cart-member-total__label,
.ic-cart-member-total__price {
  background: linear-gradient(90deg, #b8860b, #daa520, #ffd700, #daa520, #b8860b) !important;
  background-size: 200% auto !important;
  animation: icGoldShimmer 3s ease infinite !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  color: transparent !important;
  opacity: 1 !important;
}
/* ─── Cart: Friction-freie Preisanzeige ── */

/* NICHT angemeldet: IC-Preis komplett verstecken */
body:not(.ic-member-active) .ic-cart-member-total {
  display: none !important;
}
body:not(.ic-member-active) .ic-member-price--cart {
  display: none !important;
}
/* ANGEMELDET: Normalpreise unsichtbar machen */
body.ic-member-active .cart__item__price,
body.ic-member-active .cart__item__price {
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
}
body.ic-member-active p.cart__price {
  color: #333 !important;
  -webkit-text-fill-color: #333 !important;
  text-decoration: line-through !important;
  font-size: 12px !important;
}
body.ic-member-active .cart__total__price,
body.ic-member-active .cart__price__holder,
body.ic-member-active .cart__total {
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
}
body.ic-member-active .ic-cart-member-total {
  display: flex !important;
}
body.ic-member-active .ic-cart-member-total__label,
body.ic-member-active .ic-cart-member-total__price {
  background: linear-gradient(90deg, #b8860b, #daa520, #ffd700, #daa520, #b8860b) !important;
  background-size: 200% auto !important;
  animation: icGoldShimmer 3s ease infinite !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  color: transparent !important;
}
body.ic-member-active .ic-cart-savings-banner {
  display: none !important;
}
/* ─── Gold Shimmer Shipping Bar ──────────────────────────────── */
.ic-shipping-bar__fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(90deg, #b8860b, #daa520, #ffd700, #daa520, #b8860b) !important;
  background-size: 200% auto !important;
  animation: goldShimmer 3s ease infinite;
  transition: width 0.4s ease;
}
.ic-shipping-bar {
  width: 100%;
}
/* ─── Cart Drawer: Produkt-Karten mit Rahmen ──────────────────── */
.cart__item,
.cart__item--no-border,
.drawer .cart__item--no-border {
  border: 1px solid #e0e0e0 !important;
  border-radius: 0;
  padding: 12px;
  margin: 0 12px 8px 12px;
}
/* ─── Shipping Bar: auch bei Gratis-Versand-Success sichtbar ─── */
.free-shipping.is-success .ic-shipping-bar {
  display: block !important;
  visibility: visible !important;
  width: 100%;
}

.free-shipping.is-success .ic-shipping-bar__fill {
  width: 100% !important;
}
/* ─── Cart Drawer: Trust-Stripe (Wasserzeichen-Stil) ─────────── */
.drawer__foot {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 8px 12px;
  margin: 0 12px;
  opacity: 0.3;
}

.drawer__foot_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  text-align: center;
}

.drawer__foot__item svg {
  margin-bottom: 2px;
  width: 16px !important;
  height: 16px !important;
}

.drawer__foot__label {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.drawer__foot__sub {
  font-size: 8px;
  letter-spacing: 0.02em;
}
/* ═══ Cart Cross-Sell ═══ */
.ic-cross-sell {
  padding: 8px 0 0 0 !important;
}
.ic-cross-sell__header {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 0 20px 6px 20px !important;
}
.ic-cross-sell__heading {
  font-size: 10px !important;
  font-weight: 700 !important;
  letter-spacing: 1px !important;
  text-transform: none !important;
  margin: 0 !important;
  color: inherit !important;
}
.ic-cross-sell__arrows {
  display: flex !important;
  gap: 8px !important;
}
.ic-cross-sell__arrow {
  background: none !important;
  border: none !important;
  padding: 0 !important;
  cursor: pointer !important;
  color: inherit !important;
  opacity: .6 !important;
  transition: opacity .2s !important;
  display: flex !important;
  align-items: center !important;
}
.ic-cross-sell__arrow:hover {
  opacity: 1 !important;
}
.ic-cross-sell__track {
  display: flex !important;
  overflow-x: auto !important;
  scroll-snap-type: x mandatory !important;
  -webkit-overflow-scrolling: touch !important;
  scrollbar-width: none !important;
  gap: 0 !important;
}
.ic-cross-sell__track::-webkit-scrollbar {
  display: none !important;
}
.ic-cross-sell__card {
  flex: 0 0 calc(100% / 3) !important;
  scroll-snap-align: start !important;
  text-align: left !important;
  box-sizing: border-box !important;
  position: relative !important;
}
.ic-cross-sell__card + .ic-cross-sell__card .ic-cross-sell__img-wrap::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  bottom: 0 !important;
  width: 1px !important;
  background: rgba(255,255,255,.18) !important;
  z-index: 2 !important;
}
.ic-cross-sell__img-wrap {
  position: relative !important;
  width: 100% !important;
  aspect-ratio: 1 / 1 !important;
  background: #f0f0f0 !important;
  overflow: hidden !important;
  border-radius: 0 !important;
}
.ic-cross-sell__img-wrap img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}
.ic-cross-sell__img-link {
  width: 100% !important;
  height: 100% !important;
  pointer-events: none !important;
}
.ic-cross-sell__img-link img {
  pointer-events: none !important;
}
.ic-cross-sell__img-wrap {
  cursor: pointer !important;
}
.ic-cross-sell__badge {
  position: absolute !important;
  top: 6px !important;
  left: 6px !important;
  background: #6b1c1c !important;
  color: #fff !important;
  font-size: 8px !important;
  font-weight: 700 !important;
  padding: 2px 6px !important;
  line-height: 1 !important;
  z-index: 2 !important;
}
.ic-cross-sell__add {
  position: absolute !important;
  bottom: 6px !important;
  right: 6px !important;
  width: 24px !important;
  height: 24px !important;
  background: none !important;
  border: none !important;
  cursor: pointer !important;
  color: #555 !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  z-index: 3 !important;
  transition: color .2s !important;
  user-select: none !important;
}
.ic-cross-sell__add:hover {
  color: #000 !important;
}
.ic-cross-sell__add.is-loading {
  pointer-events: none !important;
  opacity: .3 !important;
}
.ic-cross-sell__info {
  padding: 3px 5px 4px 5px !important;
  background: #fff !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: baseline !important;
}
.ic-cross-sell__title {
  display: block !important;
  font-size: 9px !important;
  font-weight: 600 !important;
  text-transform: none !important;
  letter-spacing: 0.4px !important;
  color: inherit !important;
  text-decoration: none !important;
  line-height: 1.2 !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  margin-bottom: 1px !important;
}
.ic-cross-sell__price {
  font-size: 9px !important;
  line-height: 1.2 !important;
  text-align: right !important;
  display: block !important;
}

/* ── Cross-Sell Pricing: bombenfest ── */

/* DEFAULT (nicht angemeldet): Guest-Preis sichtbar, Member-Preis versteckt */
.ic-cross-sell__price-guest {
  font-weight: 600 !important;
  color: inherit !important;
  display: inline !important;
}
.ic-cross-sell__price-member {
  display: none !important;
  font-weight: 600 !important;
}

/* MEMBER AKTIV: Guest-Preis weg, Member-Preis in Gold */
body.ic-member-active .ic-cross-sell__price-guest {
  display: none !important;
}
body.ic-member-active .ic-cross-sell__price-member {
  display: inline !important;
  background: linear-gradient(90deg, #b8860b, #daa520, #ffd700, #daa520, #b8860b) !important;
  background-size: 200% auto !important;
  animation: goldShimmer 3s ease infinite !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  font-weight: 600 !important;
}

body:not(.ic-member-active) .ic-cross-sell__price-guest {
  color: #111 !important;
  -webkit-text-fill-color: #111 !important;
}
.ic-cross-sell__info {
  background: #fff !important;
}

/* KEIN METAFIELD: Member-Preis existiert nicht im HTML → Guest-Preis bleibt immer */
/* Das ist automatisch korrekt weil das Liquid den span gar nicht rendert */

/* SICHERHEIT: Falls body-Klasse geflasht wird (kurz da, dann weg) */
/* Doppelte Absicherung: ohne .ic-member-active NIEMALS member-preis zeigen */
body:not(.ic-member-active) .ic-cross-sell__price-member {
  display: none !important;
  visibility: hidden !important;
  width: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
  position: absolute !important;
}
body:not(.ic-member-active) .ic-cross-sell__price-guest {
  display: inline !important;
}

/* PDP: Originalpreis durchgestrichen + grau für Member */
body.ic-member-active .product__price .price-item--regular {
  color: #aaa !important;
  -webkit-text-fill-color: #aaa !important;
  text-decoration: none !important;
  position: relative !important;
}
body.ic-member-active .product__price .price-item--regular::after {
  content: '' !important;
  position: absolute !important;
  left: -4px !important;
  right: -4px !important;
  top: 50% !important;
  height: 1.5px !important;
  background: #aaa !important;
}
/* ============================================================
   304supply – WALLETCHAINS COLLECTION REDESIGN v10
   ============================================================ */

/* 1. BANNER – KOMPLETT AUSBLENDEN */
#shopify-section-template--26578610159997__304-collection {
  display: none !important;
}

/* 2. TRUST HEADER */
.wc-trust-header { text-align: left; padding: 24px 16px 8px; background: #fff; margin-bottom: 14px; }
.wc-trust-header__title { font-size: 20px !important; font-weight: 700 !important; letter-spacing: 1.5px !important; text-transform: uppercase !important; margin: 0 0 6px !important; color: #111 !important; }
.wc-trust-header__stars { display: inline-flex; align-items: center; gap: 2px; }
.wc-trust-header__star { width: 14px; height: 14px; position: relative; display: inline-block; }
.wc-trust-header__star svg { width: 14px; height: 14px; fill: #111; display: block; }
.wc-trust-header__star--partial { overflow: hidden; }
.wc-trust-header__star--partial svg.star-bg { fill: #ddd; position: absolute; top: 0; left: 0; }
.wc-trust-header__star--partial svg.star-fill { fill: #111; position: absolute; top: 0; left: 0; clip-path: inset(0 40% 0 0); }
.wc-trust-header__text { margin-left: 6px; font-size: 12px; color: #777; font-weight: 400; }

/* 3. GRID */
.collection-walletchains .collection__products { gap: 2px !important; }
.collection-walletchains .grid-item { border: none !important; overflow: hidden !important; background: #fff !important; }
.collection-walletchains .product-item__image { position: relative !important; }


/* 5. QUICK-ATC + */
.collection-walletchains .wc-quick-atc { position: absolute !important; bottom: 12px !important; right: 12px !important; width: auto !important; height: auto !important; background: none !important; border: none !important; cursor: pointer !important; z-index: 5 !important; padding: 0 !important; font-size: 24px !important; font-weight: 100 !important; color: #333 !important; line-height: 1 !important; transition: opacity 0.2s ease !important; }
.collection-walletchains .wc-quick-atc:hover { opacity: 0.5 !important; }
.collection-walletchains .quick-add__holder { display: none !important; }

/* 6. PRODUCT INFO */
.collection-walletchains .product-information { padding: 8px 5px 10px !important; background: #fff !important; text-align: left !important; }
.collection-walletchains .product-item__info { padding: 0 !important; text-align: left !important; }
.collection-walletchains .product-information a.product-link { text-decoration: none !important; }

/* HIDE default theme price */
.collection-walletchains .grid-item .product-item__price__holder,
.collection-walletchains .product-item__info a.product-link .product-item__price__holder { display: none !important; visibility: hidden !important; height: 0 !important; overflow: hidden !important; margin: 0 !important; padding: 0 !important; }

/* 7. CUSTOM LAYOUT: 2x2 Grid — Titel oben links, IC oben rechts, Preis unten links */
.collection-walletchains .wc-product-grid {
  display: grid !important;
  grid-template-columns: 1fr auto !important;
  grid-template-rows: auto auto !important;
  gap: 0 8px !important;
  align-items: baseline !important;
  padding-bottom: 16px !important;
}

/* Titel: oben links */
.collection-walletchains .product-item__title {
  grid-column: 1 !important;
  grid-row: 1 !important;
  font-size: 12px !important;
  font-weight: 400 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.3px !important;
  color: #111 !important;
  margin: 0 !important;
  line-height: 1.3 !important;
}

/* Standardpreis: unten links */
.collection-walletchains .wc-price-standard {
  display: none !important;
  grid-column: 1 !important;
  grid-row: 2 !important;
  font-size: 12px !important;
  font-weight: 400 !important;
  color: #888 !important;
  line-height: 1.3 !important;
}

/* IC Preis: oben rechts, gleiche Linie wie Titel */
.collection-walletchains .wc-price-ic {
  grid-column: 2 !important;
  grid-row: 1 !important;
  display: flex !important;
  align-items: baseline !important;
  gap: 3px !important;
  align-self: baseline !important;
  font-size: 12px !important;
  font-weight: 400 !important;
  color:rgb(0, 0, 0) !important;
  white-space: nowrap !important;
}
/* Mobil: Touch-Swipe statt Hover */
@media (max-width: 749px) {
  .collection-walletchains .product-item__bg__under {
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
  }
  .collection-walletchains .product-item__bg__under::-webkit-scrollbar {
    display: none !important;
  }
  .collection-walletchains .product-item__bg__slide {
    scroll-snap-align: start !important;
    min-width: 100% !important;
  }
}
/* Slider-Balken: dynamisch per JS gesteuert */
.collection-walletchains .wc-slide-bar {
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  height: 2px !important;
  background: #ddd !important;
  z-index: 4 !important;
  pointer-events: none !important;
}
.collection-walletchains .wc-slide-fill {
  height: 100% !important;
  background: #111 !important;
  transition: left 0.2s ease, width 0.2s ease !important;
  position: absolute !important;
}
/* Slider-Balken: dynamisch per JS gesteuert */
.collection-walletchains .wc-slide-bar {
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  height: 2px !important;
  background: #ddd !important;
  z-index: 4 !important;
  pointer-events: none !important;
}
.collection-walletchains .wc-slide-fill {
  height: 100% !important;
  background: #111 !important;
  transition: left 0.2s ease !important;
  position: absolute !important;
}
/* ============================================================
   BRACELETS COLLECTION — gleiche Regeln wie Walletchains
   ============================================================ */

/* BANNER */
.collection-bracelets #shopify-section-template--26578610159997__304-collection,
#shopify-section-template--26578610159997__304-collection:has(+ .collection-bracelets) {
  display: none !important;
}

/* GRID */
.collection-bracelets .collection__products { gap: 2px !important; }
.collection-bracelets .grid-item { border: none !important; overflow: hidden !important; background: #fff !important; }
.collection-bracelets .product-item__image { position: relative !important; }


/* QUICK-ATC + */
.collection-bracelets .wc-quick-atc { position: absolute !important; bottom: 12px !important; right: 12px !important; width: auto !important; height: auto !important; background: none !important; border: none !important; cursor: pointer !important; z-index: 5 !important; padding: 0 !important; font-size: 24px !important; font-weight: 100 !important; color: #333 !important; line-height: 1 !important; transition: opacity 0.2s ease !important; }
.collection-bracelets .wc-quick-atc:hover { opacity: 0.5 !important; }
.collection-bracelets .quick-add__holder { display: none !important; }

/* PRODUCT INFO */
.collection-bracelets .product-information { padding: 8px 5px 10px !important; background: #fff !important; text-align: left !important; }
.collection-bracelets .product-item__info { padding: 0 !important; text-align: left !important; }
.collection-bracelets .product-information a.product-link { text-decoration: none !important; }

/* HIDE default theme price */
.collection-bracelets .grid-item .product-item__price__holder,
.collection-bracelets .product-item__info a.product-link .product-item__price__holder { display: none !important; visibility: hidden !important; height: 0 !important; overflow: hidden !important; margin: 0 !important; padding: 0 !important; }

/* CUSTOM LAYOUT */
.collection-bracelets .wc-product-grid {
  display: grid !important;
  grid-template-columns: 1fr auto !important;
  grid-template-rows: auto auto !important;
  gap: 0 8px !important;
  align-items: baseline !important;
  padding-bottom: 16px !important;
}

.collection-bracelets .product-item__title {
  grid-column: 1 !important;
  grid-row: 1 !important;
  font-size: 12px !important;
  font-weight: 400 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.3px !important;
  color: #111 !important;
  margin: 0 !important;
  line-height: 1.3 !important;
}

.collection-bracelets .wc-price-standard {
  display: none !important;
}

.collection-bracelets .wc-price-ic {
  grid-column: 2 !important;
  grid-row: 1 !important;
  display: flex !important;
  align-items: baseline !important;
  gap: 3px !important;
  align-self: baseline !important;
  font-size: 12px !important;
  font-weight: 400 !important;
  color: #111 !important;
  white-space: nowrap !important;
}

/* Mobil: Touch-Swipe */
@media (max-width: 749px) {
  .collection-bracelets .product-item__bg__under {
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
  }
  .collection-bracelets .product-item__bg__under::-webkit-scrollbar {
    display: none !important;
  }
  .collection-bracelets .product-item__bg__slide {
    scroll-snap-align: start !important;
    min-width: 100% !important;
  }
}

/* Slider-Balken */
.collection-bracelets .wc-slide-bar {
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  height: 2px !important;
  background: #ddd !important;
  z-index: 4 !important;
  pointer-events: none !important;
}
.collection-bracelets .wc-slide-fill {
  height: 100% !important;
  background: #111 !important;
  transition: left 0.2s ease !important;
  position: absolute !important;
}
/* ============================================================
   ESSENTIALS COLLECTION — gleiche Regeln wie Walletchains
   ============================================================ */
.collection-essentials .collection__products { gap: 2px !important; }
.collection-essentials .grid-item { border: none !important; overflow: hidden !important; background: #fff !important; }
.collection-essentials .product-item__image { position: relative !important; }
.collection-essentials .product-item__image img { object-fit: cover !important; }
.collection-essentials .wc-quick-atc { position: absolute !important; bottom: 12px !important; right: 12px !important; width: auto !important; height: auto !important; background: none !important; border: none !important; cursor: pointer !important; z-index: 5 !important; padding: 0 !important; font-size: 24px !important; font-weight: 100 !important; color: #333 !important; line-height: 1 !important; transition: opacity 0.2s ease !important; }
.collection-essentials .wc-quick-atc:hover { opacity: 0.5 !important; }
.collection-essentials .quick-add__holder { display: none !important; }
.collection-essentials .product-information { padding: 8px 5px 10px !important; background: #fff !important; text-align: left !important; }
.collection-essentials .product-item__info { padding: 0 !important; text-align: left !important; }
.collection-essentials .product-information a.product-link { text-decoration: none !important; }
.collection-essentials .grid-item .product-item__price__holder,
.collection-essentials .product-item__info a.product-link .product-item__price__holder { display: none !important; visibility: hidden !important; height: 0 !important; overflow: hidden !important; margin: 0 !important; padding: 0 !important; }
.collection-essentials .wc-product-grid { display: grid !important; grid-template-columns: 1fr auto !important; grid-template-rows: auto auto !important; gap: 0 8px !important; align-items: baseline !important; padding-bottom: 16px !important; }
.collection-essentials .product-item__title { grid-column: 1 !important; grid-row: 1 !important; font-size: 12px !important; font-weight: 400 !important; text-transform: uppercase !important; letter-spacing: 0.3px !important; color: #111 !important; margin: 0 !important; line-height: 1.3 !important; }
.collection-essentials .wc-price-standard { grid-column: 2 !important; grid-row: 1 !important; font-size: 12px !important; font-weight: 400 !important; color: #111 !important; white-space: nowrap !important; text-align: right !important; }
.collection-essentials .wc-price-ic { grid-column: 1 / -1 !important; grid-row: 2 !important; display: flex !important; align-items: center !important; gap: 4px !important; margin-top: 2px !important; }
.collection-essentials .wc-price-ic__label { color: #c9a96e !important; font-weight: 500 !important; font-size: 11px !important; }
.collection-essentials .wc-price-ic__value { color: #c9a96e !important; font-weight: 400 !important; font-size: 11px !important; }

/* ============================================================
   BURGER MENU — Trust Badge unter Logo
   ============================================================ */
.menu-trust-badge {
  display: flex !important;
  align-items: center !important;
  gap: 4px !important;
  padding: 0 !important;
  margin: 0 0 0 8px !important;
  border: none !important;
  background: transparent !important;
}
header-drawer .drawer__head .header__logo__link,
mobile-menu .drawer__head .header__logo__link {
  margin-left: 22px !important;
}
.menu-trust-badge__stars {
  display: flex !important;
  gap: 1px !important;
}
.menu-trust-badge__stars svg {
  width: 10px !important;
  height: 10px !important;
  fill: #111 !important;
}
.menu-trust-badge__text {
  font-size: 9px !important;
  color: #888 !important;
  font-weight: 400 !important;
  letter-spacing: 0.2px !important;
  white-space: nowrap !important;
}
/* Menu Links mit Bild */
.menu-link-styled {
  transition: background 0.15s ease !important;
}
.menu-link-styled:hover {
  background: #ededed !important;
}
.menu-link-styled img {
  opacity: 0.85 !important;
}
/* ============================================================
   LEERER CART — Redesign
   ============================================================ */
/* Empfohlen für dich + Upsell Produkte ausblenden */
cart-drawer.is-empty .ic-empty-rec,
cart-drawer.is-empty .drawer__empty__product,
cart-drawer.is-empty recently-viewed {
  display: none !important;
}
/* ============================================================
   LEERER CART — Redesign
   ============================================================ */
/* Empfohlen für dich + Upsell Produkte ausblenden */
cart-drawer.is-empty .ic-empty-rec,
cart-drawer.is-empty .drawer__empty__product,
cart-drawer.is-empty recently-viewed {
  display: none !important;
}

/* Leerer Cart: Layout */
cart-drawer.is-empty .drawer__empty {
  background: inherit !important;
}
cart-drawer.is-empty .drawer__empty__inner {
  display: flex !important;
  flex-direction: column !important;
  min-height: 80vh !important;
  padding-bottom: 20px !important;
}

/* Shipping Bar ganz oben */
cart-drawer.is-empty .ic-empty-shipping-bar {
  order: 1 !important;
}

/* Collection-Buttons darunter */
cart-drawer.is-empty .drawer__empty__buttons {
  order: 2 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  padding: 24px 20px 0 !important;
}
cart-drawer.is-empty .drawer__empty__buttons .btn {
  text-transform: uppercase !important;
  letter-spacing: 1.5px !important;
  font-weight: 600 !important;
  font-size: 13px !important;
}

/* Trust Icons direkt unter Buttons */
cart-drawer.is-empty .drawer__foot{
  order: 3 !important;
  opacity: 0.5 !important;
  padding: 24px 12px !important;
  margin-top: 8px !important;
}
cart-drawer.is-empty .drawer__foot__item svg {
  width: 22px !important;
  height: 22px !important;
}
cart-drawer.is-empty .drawer__foot_label {
  font-size: 10px !important;
}
cart-drawer.is-empty .drawer__foot_sub {
  font-size: 9px !important;
}

/* Restlicher Leerraum nach unten */
cart-drawer.is-empty .drawer__empty__inner::after {
  content: '' !important;
  order: 99 !important;
  flex: 1 !important;
}
/* Leerer Cart: Cross-Sell verstecken */
cart-drawer.is-empty .ic-cross-sell {
  display: none !important;
}

/* Cross-Sell swipebar fix */
.ic-cross-sell__track {
  touch-action: pan-x !important;
  -webkit-overflow-scrolling: touch !important;
  overflow-x: scroll !important;
}
/* /collections/all verstecken */
.template-collection.collection-all {
  display: none !important;
}
/* Katalogseite: Preis komplett ausblenden */
.collection-walletchains .wc-price-ic,
.collection-walletchains .wc-price-standard,
.collection-bracelets .wc-price-ic,
.collection-bracelets .wc-price-standard,
.collection-essentials .wc-price-ic,
.collection-essentials .wc-price-standard {
  display: none !important;
}
/* === Collection: Content höher rücken === */
.template-collection .wc-trust-header {
  padding-top: 7px !important;
  margin-top: 0 !important;
}

.template-collection #MainContent {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

.template-collection .main-content {
  padding-top: 0 !important;
  margin-top: 0 !important;
}
/* === Collection: Produkttitel minimal eng ans Bild === */
.template-collection .product-item__info {
  padding: 6px 8px 7px !important;
  margin: 0 !important;
}

.template-collection .product-item__title {
  margin: 0 !important;
  padding: 0 !important;
  line-height: 1.1 !important;
  font-size: 11px !important;
}

.template-collection .wc-product-grid {
  padding: 0 !important;
  margin: 0 !important;
  gap: 0 !important;
}

.template-collection .product-information {
  padding: 0 !important;
  margin: 0 !important;
}
/* === Menü: Inner Circle Link Gold-Shimmer Schrift === */
.ic-shimmer-text {
  background: linear-gradient(90deg, #b8860b, #daa520, #ffd700, #daa520, #b8860b) !important;
  background-size: 200% auto !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  animation: ic-goldShimmer 3s ease infinite !important;
}
/* === Collection: Quick-ATC Button dunkler + dicker === */
.wc-quick-atc {
  color: #000 !important;
}
.wc-quick-atc svg {
  stroke-width: 1.75 !important;
}
/* Inner Circle Seite: näher an Header ranziehen */
.template-page .main-content {
  margin-top: -50px !important;
}
/* Sticky ATC: Originalpreis durchgestrichen für Members */
body.ic-member-active .cart-bar__standard-price {
  text-decoration: line-through !important;
  opacity: 0.5 !important;
}
.template-product .product__mobile-header::before {
  display: none !important;
}
.product__mobile-header::before {
  display: none !important;
}

.product__mobile-header {
  padding-top: 0px !important;
  margin-top: -7px !important;
}
.product__title,
.product__title * {
  text-transform: uppercase !important;
}
.product__title,
.product__title * {
  text-transform: uppercase !important;
}

.product-item__title {
  text-transform: uppercase !important;
}
p.product-item__title,
.collection__products p.product-item__title,
.grid-item p.product-item__title {
  font-size: 13px !important;
  text-transform: uppercase !important;
}
.wc-trust-header__title {
  text-transform: uppercase !important;
}
.menu-304__primary-link {
  text-transform: uppercase !important;
}
cart-bar, .cart-bar {
  border-radius: 20px 20px 0 0 !important;
  overflow: hidden !important;
  border: 2px solid #e0e0e0 !important;
  border-bottom: none !important;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.06) !important;
  bottom: -30px !important;
  padding-bottom: 30px !important;
}

.cart-bar__form_wrapper,
.cart-bar__row-top,
.cart-bar__row-ic,
.cart-bar__info,
.cart-bar__form,
.cart-bar * {
  border: none !important;
  border-top: none !important;
  border-bottom: none !important;
}

.cart-bar__ic-savings {
  display: none !important;
}
cart-bar .cart-bar__atc-btn {
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 1.56px !important;
  text-transform: uppercase !important;
}
.btn--large.btn--solid.btn--black {
  font-size: 15px !important;
  font-weight: 500 !important;
  letter-spacing: 0.72px !important;
}
@keyframes ic-goldShimmer {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.cart-bar__ic-label {
  background: linear-gradient(90deg, rgb(184, 134, 11), rgb(218, 165, 32), rgb(255, 215, 0), rgb(218, 165, 32), rgb(184, 134, 11)) !important;
  background-size: 200% !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  animation: ic-goldShimmer 3s ease infinite !important;
}
.cart-bar__ic-price {
  background: linear-gradient(90deg, rgb(184, 134, 11), rgb(218, 165, 32), rgb(255, 215, 0), rgb(218, 165, 32), rgb(184, 134, 11)) !important;
  background-size: 200% !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  animation: ic-goldShimmer 3s ease infinite !important;
}
/* ========== CART DRAWER REDESIGN ========== */

/* --- Kästen um Produkt-Items --- */
.cart__item {
  border: 1px solid #e0e0e0 !important;
  border-radius: 12px !important;
  padding: 12px !important;
  margin-bottom: 8px !important;
}
.cart__item--no-border {
  border: 1px solid #e0e0e0 !important;
}

/* --- Kasten um Cross-Sell "Das könnte dir gefallen" --- */
.ic-cross-sell,
.cart-cross-sell,
[data-cross-sell] {
  border: 1px solid #e0e0e0 !important;
  border-radius: 12px !important;
  padding: 12px 10px !important;
  margin: 8px 0 !important;
}

/* --- Kasten um Trust Badges --- */
.drawer__foot{
  border: 1px solid #e0e0e0 !important;
  border-radius: 12px !important;
  padding: 10px 8px !important;
  margin: 8px 0 !important;
}

/* --- Produkt-Kacheln: 1 Produkt = normal --- */
cart-drawer[data-item-count="1"] .cart__item .cart__item__image {
  width: 90px !important;
  min-width: 90px !important;
}

/* --- Produkt-Kacheln: 2 Produkte = mittel --- */
cart-drawer[data-item-count="2"] .cart__item .cart__item__image {
  width: 70px !important;
  min-width: 70px !important;
}
cart-drawer[data-item-count="2"] .cart__item {
  padding: 8px !important;
}
cart-drawer[data-item-count="2"] .cart__item__title {
  font-size: 12px !important;
}
cart-drawer[data-item-count="2"] .cart__item__price,
cart-drawer[data-item-count="2"] .cart__price,
cart-drawer[data-item-count="2"] .ic-member-price--cart {
  font-size: 11px !important;
}

/* --- Produkt-Kacheln: 3+ Produkte = klein --- */
cart-drawer[data-item-count="3"] .cart__item .cart__item__image,
cart-drawer[data-item-count="many"] .cart__item .cart__item__image {
  width: 55px !important;
  min-width: 55px !important;
}
cart-drawer[data-item-count="3"] .cart__item,
cart-drawer[data-item-count="many"] .cart__item {
  padding: 6px !important;
  margin-bottom: 6px !important;
}
cart-drawer[data-item-count="3"] .cart__item__title,
cart-drawer[data-item-count="many"] .cart__item__title {
  font-size: 11px !important;
  line-height: 1.3 !important;
}
cart-drawer[data-item-count="3"] .cart__item__price,
cart-drawer[data-item-count="3"] .cart__price,
cart-drawer[data-item-count="3"] .ic-member-price--cart,
cart-drawer[data-item-count="many"] .cart__item__price,
cart-drawer[data-item-count="many"] .cart__price,
cart-drawer[data-item-count="many"] .ic-member-price--cart {
  font-size: 10px !important;
}
cart-drawer[data-item-count="3"] .cart__quantity-field,
cart-drawer[data-item-count="many"] .cart__quantity-field {
  font-size: 11px !important;
  width: 28px !important;
  height: 28px !important;
}
cart-drawer[data-item-count="3"] .cart__quantity-minus,
cart-drawer[data-item-count="3"] .cart__quantity-plus,
cart-drawer[data-item-count="many"] .cart__quantity-minus,
cart-drawer[data-item-count="many"] .cart__quantity-plus {
  width: 28px !important;
  height: 28px !important;
}
cart-drawer[data-item-count="3"] .cart__item__remove,
cart-drawer[data-item-count="many"] .cart__item__remove {
  font-size: 9px !important;
}

/* --- Miles Cashback Toggle --- */
.ic-miles-cashback {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  margin: 0;
}
.ic-miles-cashback__left {
  display: flex;
  align-items: center;
  gap: 8px;
}
.ic-miles-cashback__icon {
  font-size: 16px;
}
.ic-miles-cashback__text {
  font-size: 13px;
  font-weight: 600;
  background: linear-gradient(90deg, rgb(184, 134, 11), rgb(218, 165, 32), rgb(255, 215, 0), rgb(218, 165, 32), rgb(184, 134, 11));
  background-size: 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: ic-goldShimmer 3s ease infinite;
}
.ic-miles-toggle {
  position: relative;
  width: 44px;
  height: 24px;
  background: #ccc;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.3s;
  border: none;
  padding: 0;
}
.ic-miles-toggle.is-active {
  background: linear-gradient(90deg, rgb(184, 134, 11), rgb(218, 165, 32));
}
.ic-miles-toggle::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.3s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.ic-miles-toggle.is-active::after {
  transform: translateX(20px);
}

/* --- Versandkosten Zeile --- */
.ic-cart-shipping-row {
  display: flex;
  justify-content: space-between;
  align-items: center
  /* Graue Linie zwischen Header und Progressbar weg */
.drawer__head {
  border-bottom: none !important;
  box-shadow: none !important;
}
.drawer__body .cart-block--top {
  border-bottom: none !important;
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

/* Progressbar näher an den Header */
.free-shipping-bar,
.cart-block .free-shipping {
  margin-top: 4px !important;
  padding-top: 0 !important;
}
.menu-link-styled,.menu-link-styled span,.primary-link,a[class*="primary-link"]{text-transform:none !important}



