:root {
  /* Light + premium metallic */
  --cc-bg: #f7f8fb;
  --cc-surface: rgba(255, 255, 255, 0.72);
  --cc-surface-strong: rgba(255, 255, 255, 0.86);
  --cc-border: rgba(15, 23, 42, 0.08);

  --cc-text: #0f172a;
  --cc-text-2: rgba(15, 23, 42, 0.72);
  --cc-muted: rgba(15, 23, 42, 0.56);

  --cc-gold: #d7b46a;
  --cc-gold-2: #caa24f;

  --cc-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
  --cc-shadow-soft: 0 10px 30px rgba(15, 23, 42, 0.06);

  --cc-radius: 18px;
  --cc-radius-sm: 14px;

  --cc-blur: 16px;

  --cc-container: 1200px;
  --cc-pad-x: 20px;

    --cc-heading-primary: #0b2545;   /* deep legal navy */
  --cc-heading-secondary: #1f3a5f; /* softer navy */
  --cc-heading-accent: #c9a24d;    /* gold accent */
}

body {
  margin: 0;
  background: radial-gradient(1200px 800px at 20% 0%, rgba(215, 180, 106, 0.14), transparent 55%),
    radial-gradient(1000px 700px at 100% 10%, rgba(15, 23, 42, 0.06), transparent 55%),
    var(--cc-bg);
  color: var(--cc-text);
  font-family: "Manrope", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

body.cc-lock {
  overflow: hidden;
}


.cc-header {
  position: sticky;
  top: 0;
  z-index: 2000;
  background: rgba(255, 255, 255, 0.76);
  border-bottom: 1px solid var(--cc-border);
}

.cc-header .cc-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 15px;;
}

.cc-header .cc-brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.cc-header .cc-logo {
  width: 250px;
  height: auto;
  display: block;
}

.cc-header .cc-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.60);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(var(--cc-blur));
  -webkit-backdrop-filter: blur(var(--cc-blur));
}

.cc-header .cc-nav-link {
  text-decoration: none;
  color: var(--cc-text-2);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 10px 12px;
  border-radius: 999px;
  font-weight: 800;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.cc-header .cc-nav-link:hover {
  background: rgba(15, 23, 42, 0.06);
  color: var(--cc-text);
  transform: translateY(-1px);
}

.cc-header .cc-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.cc-header .cc-ico {
  width: 36px;
  height: 36px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.70);
  border: 1px solid rgba(15, 23, 42, 0.10);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
  flex: 0 0 auto;
}

.cc-header .cc-ico i {
  font-size: 14px;
  opacity: 0.92;
}

.cc-header .cc-btn {
  height: 52px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px 0 8px;
  border-radius: 999px;
  text-decoration: none;
  color: var(--cc-text);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(15, 23, 42, 0.10);
  box-shadow: 0 16px 44px rgba(15, 23, 42, 0.08);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

.cc-header .cc-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.90);
  border-color: rgba(15, 23, 42, 0.14);
}

.cc-header .cc-btn-text {
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
}

.cc-header .cc-btn-consult {
  border-color: rgba(215, 180, 106, 0.30);
  background: linear-gradient(135deg, rgba(215, 180, 106, 0.26), rgba(255, 255, 255, 0.78));
}

.cc-header .cc-btn-inventory {
  border-color: rgba(215, 180, 106, 0.24);
}

.cc-header .cc-btn-quote {
  position: relative;
  padding-right: 12px;
}

.cc-header .cc-count {
  min-width: 20px;
  height: 20px;
  padding: 0 7px;
  border-radius: 999px;
  background: var(--cc-gold);
  color: #111;
  font-size: 11px;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  box-shadow: 0 12px 24px rgba(215, 180, 106, 0.22);
}

.cc-header .cc-toggle {
  height: 52px;
  width: 52px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 44px rgba(15, 23, 42, 0.08);
  cursor: pointer;
  display: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

.cc-header .cc-toggle:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.90);
  border-color: rgba(15, 23, 42, 0.14);
}

/* Full-screen mobile menu overlay */
.cc-header .cc-mobile {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.58);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
  z-index: 99999;
}

/* Full-screen panel that slides from LEFT */
.cc-header .cc-mobile-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: min(520px, 100vw);
  height: 100%;
  background: rgba(255, 255, 255, 0.96);
  border-right: 1px solid rgba(15, 23, 42, 0.10);
  box-shadow: 40px 0 120px rgba(15, 23, 42, 0.28);
  transform: translateX(-102%);
  transition: transform 320ms cubic-bezier(.2, .9, .2, 1);
  display: flex;
  flex-direction: column;
}

/* When open */
.cc-header .cc-mobile.cc-open {
  opacity: 1;
  pointer-events: auto;
}

.cc-header .cc-mobile.cc-open .cc-mobile-panel {
  transform: translateX(0);
}

/* Mobile layout */
.cc-header .cc-mobile-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 16px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.70);
}

.cc-header .cc-mobile-logo {
  width: 160px;
  height: auto;
  display: block;
}

.cc-header .cc-mobile-close {
  height: 52px;
  width: 52px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  background: rgba(255, 255, 255, 0.75);
  cursor: pointer;
  box-shadow: 0 16px 44px rgba(15, 23, 42, 0.10);
}

.cc-header .cc-mobile-body {
  padding: 16px;
  display: grid;
  gap: 16px;
  overflow: auto;
}

.cc-header .cc-mobile-links {
  display: grid;
  gap: 10px;
}

.cc-header .cc-mobile-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  color: var(--cc-text);
  padding: 14px 14px;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  background: rgba(255, 255, 255, 0.72);
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 12px;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.cc-header .cc-mobile-link:hover {
  transform: translateX(2px);
  background: rgba(215, 180, 106, 0.16);
  border-color: rgba(215, 180, 106, 0.22);
}

.cc-header .cc-mobile-drop {
  display: grid;
  gap: 10px;
}

.cc-header .cc-mobile-drop-list {
  display: grid;
  gap: 8px;
  padding-left: 10px;
}

.cc-header .cc-mobile-sublink {
  text-decoration: none;
  color: var(--cc-text-2);
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.62);
  font-weight: 800;
  font-size: 13px;
  transition: background 160ms ease, transform 160ms ease;
}

.cc-header .cc-mobile-sublink:hover {
  background: rgba(15, 23, 42, 0.05);
  transform: translateX(2px);
}

.cc-header .cc-mobile-actions {
  display: grid;
  gap: 10px;
  padding-top: 8px;
}

.cc-header .cc-mobile-cta {
  height: 56px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 14px 0 10px;
  border-radius: 18px;
  text-decoration: none;
  color: var(--cc-text);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(15, 23, 42, 0.10);
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
  font-weight: 900;
}

.cc-header .cc-mobile-cta-primary {
  border-color: rgba(215, 180, 106, 0.32);
  background: linear-gradient(135deg, rgba(215, 180, 106, 0.34), rgba(255, 255, 255, 0.88));
}

.cc-header .cc-mobile-foot {
  margin-top: auto;
  padding: 14px 16px 18px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.70);
}

.cc-header .cc-mobile-foot-note {
  font-size: 13px;
  color: var(--cc-text-2);
  line-height: 1.55;
}

/* Responsive */
@media (max-width: 992px) {
  .cc-header .cc-nav {
    display: none;
  }

  .cc-header .cc-btn-consult {
    display: none;
  }
  .cc-header .cc-btn-inventory {
    display: none;
  }

  .cc-header .cc-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .cc-header .cc-btn-text {
    display: none;
  }

  .cc-header .cc-btn {
    width: 52px;
    padding: 0;
    justify-content: center;
  }

  .cc-header .cc-btn-quote .cc-count {
    position: absolute;
    top: -6px;
    right: -6px;
  }
}

.cc-header .cc-header-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-right: 12px;
  font-size: 13px;
  color: var(--cc-text-2);
  font-weight: 700;
}

.cc-header .cc-header-meta i {
  margin-right: 6px;
  opacity: 0.85;
}




.cc-hero {
  position: relative;
}

.cc-hero .cc-hero-badge {
  background: rgba(255, 255, 255, 0.75);
  color: rgba(15, 23, 42, 0.85);
  border: 1px solid var(--cc-border);
  font-weight: 600;
}

.cc-hero .cc-hero-btn-primary {
  background: linear-gradient(135deg, var(--cc-gold), var(--cc-gold-2));
  border: none;
  color: #111;
  box-shadow: 0 12px 30px rgba(202, 162, 79, 0.25);
}

.cc-hero .cc-hero-btn-outline {
  border-color: var(--cc-border);
}

.cc-hero .cc-hero-mini {
  border: 1px solid var(--cc-border);
  background: rgba(255, 255, 255, 0.7);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.cc-hero .cc-hero-glass {
  background: var(--cc-glass);
  backdrop-filter: blur(var(--cc-blur));
  -webkit-backdrop-filter: blur(var(--cc-blur));
  box-shadow: var(--cc-shadow);
  border-radius: 22px;
  border: 1px solid var(--cc-border);
}

.cc-hero .cc-hero-product {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  color: inherit;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.cc-hero .cc-hero-product:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.cc-hero .cc-hero-product-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.cc-hero .cc-hero-product-text span {
  font-size: 13px;
  color: rgba(15, 23, 42, 0.65);
}

.cc-hero .cc-hero-pill {
  margin-left: auto;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  background: rgba(255, 255, 255, 0.75);
  font-size: 12px;
  font-weight: 700;
}





.cc-shop {}

.cc-shop .cc-shop-head {
 
  margin-bottom: 24px;
}

.cc-shop .cc-shop-kicker {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cc-muted);
  margin-bottom: 8px;
}

.cc-shop .cc-shop-title {
  font-size: 34px;
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--cc-text);
  margin: 0 0 8px 0;
}

.cc-shop .cc-shop-sub {
  color: var(--cc-text-2);
  font-size: 16px;
  margin: 0;
}

.cc-shop .cc-shop-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 24px 0;
}

.cc-shop .cc-shop-filter {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  background: rgba(255, 255, 255, 0.65);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.10em;
  cursor: pointer;
}

.cc-shop .cc-shop-filter.cc-active {
  background: linear-gradient(135deg, var(--cc-gold), var(--cc-gold-2));
  border-color: rgba(215, 180, 106, 0.40);
  color: #111;
}

.cc-shop .cc-product-tile {
  height: 100%;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(15, 23, 42, 0.10);
  border-radius: 22px;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.cc-shop .cc-product-tile:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.12);
}

.cc-shop .cc-product-img {
  height: 180px;
  background: linear-gradient(135deg, rgba(215, 180, 106, 0.35), rgba(255, 255, 255, 0.85));
  display: flex;
  align-items: center;
  justify-content: center;
}

.cc-shop .cc-product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cc-shop .cc-product-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.cc-shop .cc-product-title {
  font-weight: 900;
  letter-spacing: 0.02em;
  color: var(--cc-text);
}

.cc-shop .cc-product-sub {
  font-size: 13px;
  color: var(--cc-text-2);
}

.cc-shop .cc-product-price {
  font-size: 20px;
  font-weight: 900;
  color: var(--cc-text);
  margin-top: 6px;
}

.cc-shop .cc-product-btn {
  margin-top: auto;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.cc-shop .cc-shop-actions {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}


.cc-shop-page {}

.cc-shop-page .cc-shop-head {
  max-width: 720px;
  margin-bottom: 24px;
}

.cc-shop-page .cc-shop-kicker {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cc-muted);
  margin-bottom: 8px;
}

.cc-shop-page .cc-shop-title {
  font-size: 36px;
  line-height: 1.1;
  font-weight: 900;
  color: var(--cc-text);
  margin: 0 0 8px 0;
}

.cc-shop-page .cc-shop-sub {
  font-size: 16px;
  color: var(--cc-text-2);
  margin: 0;
}

.cc-shop-page .cc-shop-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 24px;
}

.cc-shop-page .cc-shop-filters-panel {
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(15, 23, 42, 0.10);
  border-radius: 22px;
  padding: 18px;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.cc-shop-page .cc-filter-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cc-shop-page .cc-filter-title {
  font-weight: 900;
  letter-spacing: 0.08em;
  font-size: 12px;
  text-transform: uppercase;
  color: var(--cc-text);
  margin-bottom: 6px;
}

.cc-shop-page .cc-filter-group label {
  font-size: 14px;
  color: var(--cc-text-2);
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.cc-shop-page .cc-filter-reset {
  margin-top: auto;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.cc-shop-page .cc-shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.cc-shop-page .cc-product-tile {
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(15, 23, 42, 0.10);
  border-radius: 22px;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.cc-shop-page .cc-product-tile:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.12);
}

.cc-shop-page .cc-product-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, rgba(215, 180, 106, 0.35), rgba(255, 255, 255, 0.85));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cc-shop-page .cc-product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cc-shop-page .cc-product-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.cc-shop-page .cc-product-title {
  font-weight: 900;
  letter-spacing: 0.02em;
  color: var(--cc-text);
}

.cc-shop-page .cc-product-sub {
  font-size: 13px;
  color: var(--cc-text-2);
}

.cc-shop-page .cc-product-price {
  font-size: 20px;
  font-weight: 900;
  color: var(--cc-text);
  margin-top: 6px;
}

.cc-shop-page .cc-product-btn {
  margin-top: auto;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.cc-shop-page .cc-product-actions {
  display: flex;
  gap: 10px;
  margin-top: auto;
}

.cc-shop-page .cc-product-detail-btn,
.cc-shop-page .cc-product-btn {
  flex: 1;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.06em;
  font-size: 13px;
}

@media (max-width: 768px) {
  .cc-shop-page .cc-shop-layout {
    grid-template-columns: 1fr;
  }
}




.cc-consult {
  /* Page section spacing and base */
}

.cc-consult .cc-consult-head {
  max-width: 820px;
  margin-bottom: 22px;
}

.cc-consult .cc-consult-kicker {
  /* Small label above headline */
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cc-muted);
  margin-bottom: 8px;
}

.cc-consult .cc-consult-title {
  /* Main page title */
  font-size: 40px;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--cc-text);
  margin: 0 0 10px 0;
}

.cc-consult .cc-consult-sub {
  /* Supporting intro text */
  font-size: 16px;
  color: var(--cc-text-2);
  margin: 0;
  max-width: 70ch;
}

.cc-consult .cc-consult-grid {
  /* Two-column layout: form + side panel */
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 20px;
  align-items: start;
}

.cc-consult .cc-consult-card {
  /* Glass card wrapper for the form */
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(15, 23, 42, 0.10);
  border-radius: 22px;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(var(--cc-blur));
  -webkit-backdrop-filter: blur(var(--cc-blur));
  padding: 18px;
}

.cc-consult .cc-consult-form {
  /* Keeps spacing consistent */
}

.cc-consult .cc-consult-row {
  /* Two fields per row on desktop */
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.cc-consult .cc-consult-field {
  margin-bottom: 12px;
}

.cc-consult .cc-consult-label {
  /* Form label styling */
  display: block;
  font-weight: 900;
  letter-spacing: 0.08em;
  font-size: 12px;
  text-transform: uppercase;
  color: var(--cc-text);
  margin-bottom: 6px;
}

.cc-consult .cc-consult-checks {
  /* Checkbox list grid */
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 6px;
}

.cc-consult .cc-consult-check {
  /* Checkbox pill-like style */
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  background: rgba(255, 255, 255, 0.60);
  cursor: pointer;
  user-select: none;
}

.cc-consult .cc-consult-check input {
  margin-top: 0;
}

.cc-consult .cc-consult-check span {
  font-size: 13px;
  color: var(--cc-text-2);
  font-weight: 700;
}

.cc-consult .cc-consult-help {
  /* Small helper text under services */
  margin-top: 10px;
  font-size: 13px;
  color: var(--cc-text-2);
}

.cc-consult .cc-consult-actions {
  /* Primary button + secondary link */
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.cc-consult .cc-consult-btn {
  /* Gold brand button */
  background: linear-gradient(135deg, var(--cc-gold), var(--cc-gold-2));
  border: none;
  color: #111;
  box-shadow: 0 12px 30px rgba(202, 162, 79, 0.22);
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.cc-consult .cc-consult-alt {
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.cc-consult .cc-consult-note {
  /* Small privacy note */
  margin-top: 12px;
  font-size: 12px;
  color: rgba(15, 23, 42, 0.55);
  line-height: 1.5;
}

.cc-consult .cc-consult-side {
  /* Sticky-like feel without actual sticky */
}

.cc-consult .cc-consult-side-card {
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(15, 23, 42, 0.10);
  border-radius: 22px;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
  padding: 18px;
}

.cc-consult .cc-consult-side-title {
  font-weight: 900;
  color: var(--cc-text);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.cc-consult .cc-consult-steps {
  display: grid;
  gap: 10px;
}

.cc-consult .cc-consult-step {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.60);
}

.cc-consult .cc-consult-step-ico {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(215, 180, 106, 0.28), rgba(255, 255, 255, 0.65));
  border: 1px solid rgba(215, 180, 106, 0.30);
}

.cc-consult .cc-consult-step-ico i {
  font-size: 14px;
  opacity: 0.9;
}

.cc-consult .cc-consult-step-text {
  font-size: 13px;
  color: var(--cc-text-2);
  line-height: 1.5;
  padding-top: 2px;
}

.cc-consult .cc-consult-side-divider {
  height: 1px;
  background: rgba(15, 23, 42, 0.10);
  margin: 16px 0;
}

.cc-consult .cc-consult-mini-title {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cc-muted);
  margin-bottom: 10px;
}

.cc-consult .cc-consult-mini-list {
  margin: 0;
  padding-left: 18px;
  color: var(--cc-text-2);
  font-size: 13px;
  line-height: 1.7;
}

@media (max-width: 992px) {
  .cc-consult .cc-consult-grid {
    grid-template-columns: 1fr;
  }

  .cc-consult .cc-consult-title {
    font-size: 34px;
  }
}

@media (max-width: 576px) {
  .cc-consult .cc-consult-row {
    grid-template-columns: 1fr;
  }

  .cc-consult .cc-consult-checks {
    grid-template-columns: 1fr;
  }
}

.cc-product-box {
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(15, 23, 42, 0.10);
  border-radius: 22px;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.cc-product-box:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.12);
}

/* square image */
.cc-product-box .cc-product-box-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, rgba(215, 180, 106, 0.35), rgba(255, 255, 255, 0.85));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cc-product-box .cc-product-box-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* body */
.cc-product-box .cc-product-box-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.cc-product-box .cc-product-box-title {
  font-weight: 900;
  letter-spacing: 0.02em;
  color: var(--cc-text);
}

.cc-product-box .cc-product-box-title a {
  color: inherit;
  text-decoration: none;
}

.cc-product-box .cc-product-box-sub {
  font-size: 13px;
  color: var(--cc-text-2);
}

.cc-product-box .cc-product-box-price {
  font-size: 20px;
  font-weight: 900;
  color: var(--cc-text);
  margin-top: 6px;
}

.cc-product-box .cc-product-box-quote {
  font-size: 14px;
  font-weight: 800;
  color: var(--cc-text-2);
}

/* buttons */
.cc-product-box .cc-product-box-actions {
  display: flex;
  gap: 10px;
  margin-top: auto;
}

.cc-product-box .cc-product-box-detail,
.cc-product-box .cc-product-box-cart {

  border-radius: 999px;

}


.cc-product-view {}

.cc-product-view .cc-product-breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 13px;
  color: var(--cc-text-2);
  margin-bottom: 14px;
}

.cc-product-view .cc-product-breadcrumb a {
  color: var(--cc-text-2);
  text-decoration: none;
}

.cc-product-view .cc-product-breadcrumb a:hover {
  text-decoration: underline;
}

.cc-product-view .cc-product-gallery {
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(15, 23, 42, 0.10);
  border-radius: 22px;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
  overflow: hidden;
}

.cc-product-view .cc-product-main {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, rgba(215, 180, 106, 0.25), rgba(255, 255, 255, 0.85));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cc-product-view .cc-product-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cc-product-view .cc-product-thumbs {
  display: flex;
  gap: 10px;
  padding: 12px;
  overflow-x: auto;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.60);
}

.cc-product-view .cc-thumb {
  border: 1px solid rgba(15, 23, 42, 0.10);
  background: rgba(255, 255, 255, 0.70);
  border-radius: 14px;
  padding: 0;
  width: 64px;
  height: 64px;
  flex: 0 0 auto;
  overflow: hidden;
  cursor: pointer;
}

.cc-product-view .cc-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cc-product-view .cc-product-panel {
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(15, 23, 42, 0.10);
  border-radius: 22px;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(var(--cc-blur));
  -webkit-backdrop-filter: blur(var(--cc-blur));
  padding: 20px;
}

.cc-product-view .cc-product-kicker {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cc-muted);
  margin-bottom: 8px;
}

.cc-product-view .cc-product-title {
  font-size: 36px;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--cc-text);
  margin: 0 0 10px 0;
}

.cc-product-view .cc-product-sub {
  margin: 0 0 14px 0;
  font-size: 15px;
  color: var(--cc-text-2);
  max-width: 70ch;
}

.cc-product-view .cc-product-pricebox {
  border: 1px solid rgba(15, 23, 42, 0.10);
  background: rgba(255, 255, 255, 0.60);
  border-radius: 18px;
  padding: 14px;
}

.cc-product-view .cc-product-price {
  font-size: 28px;
  font-weight: 900;
  color: var(--cc-text);
}

.cc-product-view .cc-product-pricehint {
  font-size: 12px;
  color: rgba(15, 23, 42, 0.55);
  margin-top: 6px;
}

.cc-product-view .cc-product-cta {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.cc-product-view .cc-qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.70);
}

.cc-product-view .cc-qty-btn {
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  font-weight: 900;
  color: var(--cc-text);
}

.cc-product-view .cc-qty-input {
  width: 64px;
  height: 40px;
  border: 0;
  text-align: center;
  background: transparent;
  font-weight: 900;
  color: var(--cc-text);
  outline: none;
}

.cc-product-view .cc-addcart,
.cc-product-view .cc-consult {
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.cc-product-view .cc-product-specs {
  margin-top: 16px;
  display: grid;
  gap: 10px;
}

.cc-product-view .cc-spec {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.60);
}

.cc-product-view .cc-spec span {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(15, 23, 42, 0.55);
  font-weight: 900;
}

.cc-product-view .cc-spec strong {
  font-size: 13px;
  color: var(--cc-text);
  font-weight: 900;
}

.cc-product-view .cc-product-description {}

.cc-product-view .cc-product-desc-card {
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(15, 23, 42, 0.10);
  border-radius: 22px;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(var(--cc-blur));
  -webkit-backdrop-filter: blur(var(--cc-blur));
  padding: 18px;
}

.cc-product-view .cc-product-desc-title {
  font-size: 18px;
  font-weight: 900;
  color: var(--cc-text);
  margin: 0 0 10px 0;
}

.cc-product-view .cc-product-desc-text {
  font-size: 14px;
  color: var(--cc-text-2);
  line-height: 1.7;
}

@media (max-width: 576px) {
  .cc-product-view .cc-product-title {
    font-size: 30px;
  }
}

.cc-posts {
  /* Global wrapper for Insights pages */
}

.cc-posts .cc-posts-head {
  max-width: 920px;
  margin-bottom: 22px;
}

.cc-posts .cc-posts-kicker {
  /* Small label above the title */
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cc-muted);
  margin-bottom: 8px;
}

.cc-posts .cc-posts-title {
  /* Page title */
  font-size: 40px;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--cc-text);
  margin: 0 0 10px 0;
}

.cc-posts .cc-posts-sub {
  /* Subheading text */
  font-size: 16px;
  color: var(--cc-text-2);
  margin: 0 0 14px 0;
  max-width: 75ch;
}

.cc-posts .cc-posts-search {
  /* Search bar row */
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.cc-posts .cc-posts-search-input {
  /* Search input sizing */
  flex: 1;
  min-width: 220px;
  border-radius: 999px;
}

.cc-posts .cc-posts-search-btn {
  /* Search button style */
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.cc-posts .cc-posts-grid {
  /* Article card grid */
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.cc-posts .cc-posts-grid--tight {
  /* Slightly tighter spacing for category blocks */
  gap: 14px;
}

.cc-posts .cc-posts-item {
  /* Slot wrapper for your existing grid partial */
}

.cc-posts .cc-posts-empty {
  /* Empty state full width */
  grid-column: 1 / -1;
}

/* ===== Detail page ===== */
.cc-posts .cc-posts-breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 13px;
  color: var(--cc-text-2);
  margin-bottom: 14px;
}

.cc-posts .cc-posts-breadcrumb a {
  color: var(--cc-text-2);
  text-decoration: none;
}

.cc-posts .cc-posts-breadcrumb a:hover {
  text-decoration: underline;
}

.cc-posts .cc-post-hero {
  /* Hero block with banner + title overlay */
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(15,23,42,0.10);
  box-shadow: 0 14px 40px rgba(15,23,42,0.08);
  background: rgba(255,255,255,0.65);
}

.cc-posts .cc-post-hero-banner {
  /* Banner image area */
  height: 320px;
  background-size: cover;
  background-position: center;
}

.cc-posts .cc-post-hero-banner--fallback {
  /* Fallback gradient if no banner */
  background: linear-gradient(135deg, rgba(215,180,106,0.28), rgba(255,255,255,0.85));
}

.cc-posts .cc-post-hero-body {
  /* Title overlay area */
  padding: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.00), rgba(255,255,255,0.92));
}

.cc-posts .cc-post-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.cc-posts .cc-post-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cc-posts .cc-post-cat {
  /* Category pill */
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.75);
  border: 1px solid rgba(15,23,42,0.10);
  text-decoration: none;
  color: var(--cc-text);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.cc-posts .cc-post-date {
  font-size: 13px;
  color: var(--cc-text-2);
  white-space: nowrap;
}

.cc-posts .cc-post-title {
  /* Post title */
  font-size: 36px;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--cc-text);
  margin: 0;
}

.cc-posts .cc-post-layout {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.cc-posts .cc-post-card {
  /* Main content card */
  background: rgba(255,255,255,0.68);
  border: 1px solid rgba(15,23,42,0.10);
  border-radius: 22px;
  box-shadow: 0 14px 40px rgba(15,23,42,0.08);
  backdrop-filter: blur(var(--cc-blur));
  -webkit-backdrop-filter: blur(var(--cc-blur));
  padding: 18px;
}

.cc-posts .cc-post-content {
  /* Typography base for post content */
  color: var(--cc-text-2);
  font-size: 15px;
  line-height: 1.8;
}

.cc-posts .cc-post-content h2,
.cc-posts .cc-post-content h3 {
  color: var(--cc-text);
  font-weight: 900;
  letter-spacing: -0.01em;
  margin-top: 18px;
}

.cc-posts .cc-post-content a {
  color: var(--cc-text);
  font-weight: 800;
  text-decoration: underline;
}

.cc-posts .cc-post-divider {
  height: 1px;
  background: rgba(15,23,42,0.10);
  margin: 16px 0;
}

.cc-posts .cc-post-cta {
  /* Call-to-action block inside article */
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(15,23,42,0.10);
  background: linear-gradient(135deg, rgba(215,180,106,0.22), rgba(255,255,255,0.75));
}

.cc-posts .cc-post-cta-title {
  font-weight: 900;
  color: var(--cc-text);
}

.cc-posts .cc-post-cta-sub {
  font-size: 13px;
  color: var(--cc-text-2);
  margin-top: 4px;
}

.cc-posts .cc-post-cta-btn {
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: 0.06em;
}

/* ===== Categories blocks ===== */
.cc-posts .cc-cats-grid {
  display: grid;
  gap: 18px;
}

.cc-posts .cc-cat-card {
  background: rgba(255,255,255,0.65);
  border: 1px solid rgba(15,23,42,0.10);
  border-radius: 22px;
  box-shadow: 0 14px 40px rgba(15,23,42,0.08);
  padding: 16px;
}

.cc-posts .cc-cat-top {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.cc-posts .cc-cat-title {
  font-weight: 900;
  color: var(--cc-text);
  font-size: 18px;
}

.cc-posts .cc-cat-sub {
  font-size: 13px;
  color: var(--cc-text-2);
  margin: 8px 0 14px 0;
}

.cc-posts .cc-cat-btn {
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: 0.06em;
  font-size: 12px;
}

/* ===== Responsive ===== */
@media (max-width: 576px) {
  .cc-posts .cc-posts-title {
    font-size: 32px;
  }
  .cc-posts .cc-post-title {
    font-size: 30px;
  }
  .cc-posts .cc-post-hero-banner {
    height: 240px;
  }
}


.cc-posts .cc-post-card-mini {
  /* Card shell */
  background: rgba(255,255,255,0.65);
  border: 1px solid rgba(15,23,42,0.10);
  border-radius: 22px;
  box-shadow: 0 14px 40px rgba(15,23,42,0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.cc-posts .cc-post-card-mini:hover {
  /* Lift on hover */
  transform: translateY(-2px);
  box-shadow: 0 22px 60px rgba(15,23,42,0.12);
}

.cc-posts .cc-post-card-mini-img {
  /* Image area */
  width: 100%;
  aspect-ratio: 16 / 10;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(215,180,106,0.22), rgba(255,255,255,0.85));
  text-decoration: none;
}

.cc-posts .cc-post-card-mini-img img {
  /* Cropped image fit */
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cc-posts .cc-post-card-mini-fallback {
  /* Fallback when no image */
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(215,180,106,0.18), rgba(15,23,42,0.06));
}

.cc-posts .cc-post-card-mini-body {
  /* Content padding */
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.cc-posts .cc-post-card-mini-title {
  /* Title style */
  font-size: 16px;
  line-height: 1.25;
  font-weight: 900;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--cc-text);
}

.cc-posts .cc-post-card-mini-title a {
  /* Title link */
  color: inherit;
  text-decoration: none;
}

.cc-posts .cc-post-card-mini-title a:hover {
  text-decoration: underline;
}

.cc-posts .cc-post-card-mini-text {
  /* Excerpt */
  font-size: 13px;
  color: var(--cc-text-2);
  line-height: 1.65;
  margin: 0;
}

.cc-posts .cc-post-card-mini-foot {
  /* Footer row */
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cc-posts .cc-post-card-mini-link {
  /* Minimal CTA */
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cc-text);
  text-decoration: none;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(15,23,42,0.10);
  background: rgba(255,255,255,0.55);
  transition: transform 160ms ease, background 160ms ease;
}

.cc-posts .cc-post-card-mini-link:hover {
  transform: translateY(-1px);
  background: rgba(255,255,255,0.75);
}

.cc-posts .cc-posts-related {
  margin-top: 40px;
}

.cc-posts .cc-posts-related-head {
  margin-bottom: 18px;
  text-align: center;
}

.cc-posts .cc-posts-related-title {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--cc-text);
  margin: 0;
}

/* The related grid itself already uses this */
.cc-posts .cc-posts-related .cc-posts-grid {
  margin-top: 14px;
}

/* On small screens give more breathing room */
@media (max-width: 576px) {
  .cc-posts .cc-posts-related-title {
    font-size: 20px;
  }
}



.default-page-wrapper {
  background: linear-gradient(180deg, rgba(255,255,255,0.85), rgba(255,255,255,1));
}

.default-page-wrapper .page-heading {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.default-page-wrapper .page-title {
  font-size: 42px;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--cc-text);
  margin-bottom: 8px;
}

.default-page-wrapper .breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
}

.default-page-wrapper .breadcrumb-item a {
  color: var(--cc-text-2);
  font-weight: 700;
}

.default-page-wrapper .breadcrumb-item.active {
  color: var(--cc-text);
  font-weight: 800;
}

/* Banner image block */
.default-page-wrapper .page-banner {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.default-page-wrapper .page-banner img {
  border-radius: 22px;
  border: 1px solid rgba(15,23,42,0.10);
  box-shadow: 0 18px 50px rgba(15,23,42,0.10);
  background: rgba(255,255,255,0.7);
}

/* Content container */
.default-page-wrapper .page-content {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  background: rgba(255,255,255,0.68);
  border: 1px solid rgba(15,23,42,0.10);
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 14px 40px rgba(15,23,42,0.08);
  backdrop-filter: blur(var(--cc-blur));
  -webkit-backdrop-filter: blur(var(--cc-blur));
}

/* Full width template */
.default-page-wrapper .page-content-full {
  max-width: 100%;
  padding: 28px;
}

/* Typography inside content */
.default-page-wrapper .page-content h1,
.default-page-wrapper .page-content h2,
.default-page-wrapper .page-content h3 {
  color: var(--cc-text);
  font-weight: 900;
  letter-spacing: -0.01em;
  margin-top: 18px;
}


.default-page-wrapper .page-content h2 {
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1.25;
  color: var(--cc-heading-secondary);
  margin: 36px 0 14px 0;
  position: relative;
}

.default-page-wrapper .page-content h2::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 42px;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--cc-heading-accent),
    transparent
  );
}


.default-page-wrapper .page-content h3 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.3;
  color: var(--cc-heading-primary);
  margin: 24px 0 10px 0;
}

.default-page-wrapper .page-content h4 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cc-heading-accent);
  margin: 20px 0 8px 0;
}



.default-page-wrapper .page-content p {
  color: var(--cc-text-2);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 14px;
}

.default-page-wrapper .page-content a {
  color: var(--cc-text);
  font-weight: 800;
  text-decoration: underline;
}

.default-page-wrapper .page-content ul,
.default-page-wrapper .page-content ol {
  padding-left: 20px;
  margin-bottom: 14px;
}

.default-page-wrapper .page-content li {
  margin-bottom: 6px;
}

/* Responsive */
@media (max-width: 576px) {
  .default-page-wrapper .page-title {
    font-size: 32px;
  }

  .default-page-wrapper .page-content {
    padding: 16px;
  }
}


/* ===============================
LOGIN & 2FA PAGES – CC HOLDINGS
Light / Glass / Minimal 2026
=============================== */

/* Page wrapper */
.login-page,
.two-factor-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(1200px 600px at 20% -10%, rgba(215,180,106,0.18), transparent),
    linear-gradient(180deg, #f8fafc, #ffffff);
  padding: 40px 16px;
}

/* Container */
.login-container,
.two-factor-container {
  width: 100%;
  max-width: 420px;
}

/* Main card */
.login-page .right-container,
.two-factor-page .right-container {
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(15,23,42,0.12);
  border-radius: 26px;
  padding: 28px;
  box-shadow: 0 24px 60px rgba(15,23,42,0.10);
  backdrop-filter: blur(var(--cc-blur));
  -webkit-backdrop-filter: blur(var(--cc-blur));
}

/* Headings */
.login-page h1,
.two-factor-page h1 {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--cc-text);
  margin-bottom: 10px;
}

.two-factor-page p {
  font-size: 14px;
  color: var(--cc-text-2);
  margin-bottom: 18px;
}

/* Form labels */
.login-page .form-label,
.two-factor-page .form-label {
  font-weight: 800;
  font-size: 13px;
  color: var(--cc-text);
  letter-spacing: 0.02em;
}

/* Inputs */
.login-page .form-control,
.two-factor-page .form-control {
  border-radius: 14px;
  border: 1px solid rgba(15,23,42,0.15);
  padding: 12px 14px;
  font-size: 14px;
  background: rgba(255,255,255,0.85);
}

.login-page .form-control:focus,
.two-factor-page .form-control:focus {
  box-shadow: 0 0 0 3px rgba(215,180,106,0.25);
  border-color: rgba(215,180,106,0.65);
}

/* Buttons */
.login-page .btn-primary,
.two-factor-page .btn-primary {
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: 0.12em;
  font-size: 13px;
  padding: 12px 22px;
  background: linear-gradient(135deg, #d7b46a, #c9a44d);
  border: none;
  text-transform: uppercase;
}

.login-page .btn-primary:hover,
.two-factor-page .btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(215,180,106,0.35);
}

/* Remember me */
.login-page .form-check-label {
  font-size: 13px;
  color: var(--cc-text-2);
}

/* Links */
.login-page a,
.two-factor-page a {
  font-weight: 800;
  color: var(--cc-text);
  text-decoration: none;
}

.login-page a:hover,
.two-factor-page a:hover {
  text-decoration: underline;
}

/* Alerts spacing */
.login-page .alert,
.two-factor-page .alert {
  margin-bottom: 14px;
  border-radius: 14px;
}

/* Two-factor logo (optional) */
.two-factor-page .logo {
  text-align: center;
  margin-bottom: 14px;
}

.two-factor-page .logo img {
  max-width: 140px;
}

/* Mobile adjustments */
@media (max-width: 576px) {
  .login-page .right-container,
  .two-factor-page .right-container {
    padding: 22px;
  }

  .login-page h1,
  .two-factor-page h1 {
    font-size: 24px;
  }
}


.cc-quote-toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 13px;
  background: rgba(15,23,42,0.9);
  color: #fff;
  opacity: 0;
  transform: translateY(10px);
  transition: all 180ms ease;
  z-index: 9999;
}

.cc-quote-toast.show {
  opacity: 1;
  transform: translateY(0);
}

.cc-quote-toast.error {
  background: #991b1b;
}

.cc-product-box-quote.is-loading {
  opacity: 0.8;
  pointer-events: none;
}

.cc-product-box-quote.is-success {
  background: linear-gradient(135deg, #16a34a, #15803d);
  border-color: transparent;
}

.cc-product-box-quote.is-error {
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  border-color: transparent;
}

.cc-product-box-quote {
  transition: background 180ms ease, transform 160ms ease, opacity 160ms ease;
}

.cc-product-box-quote.is-success,
.cc-product-box-quote.is-error {
  transform: scale(1.03);
}


.cc-quote {
  /* Quote page wrapper */
}

.cc-quote .cc-quote-head {
  max-width: 820px;
  margin-bottom: 22px;
}

.cc-quote .cc-quote-kicker {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cc-muted);
  margin-bottom: 8px;
}

.cc-quote .cc-quote-title {
  font-size: 40px;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--cc-text);
  margin: 0 0 10px 0;
}

.cc-quote .cc-quote-sub {
  font-size: 16px;
  color: var(--cc-text-2);
  margin: 0;
  max-width: 72ch;
}

.cc-quote .cc-quote-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 20px;
  align-items: start;
}

.cc-quote .cc-quote-card {
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(15, 23, 42, 0.10);
  border-radius: 22px;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(var(--cc-blur));
  -webkit-backdrop-filter: blur(var(--cc-blur));
  padding: 18px;
}

.cc-quote .cc-quote-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.cc-quote .cc-quote-card-title {
  font-weight: 900;
  color: var(--cc-text);
  letter-spacing: 0.02em;
}

.cc-quote .cc-quote-clear-btn {
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.cc-quote .cc-quote-list {
  display: grid;
  gap: 12px;
}

.cc-quote .cc-quote-item {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 14px;
  padding: 12px;
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.60);
}

.cc-quote .cc-quote-item-img {
  width: 96px;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(215,180,106,0.22), rgba(255,255,255,0.85));
}

.cc-quote .cc-quote-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cc-quote .cc-quote-item-fallback {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(215,180,106,0.18), rgba(15,23,42,0.06));
}

.cc-quote .cc-quote-item-title {
  font-weight: 900;
  color: var(--cc-text);
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}

.cc-quote .cc-quote-item-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.cc-quote .cc-quote-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(15, 23, 42, 0.10);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  color: var(--cc-text);
}

.cc-quote .cc-quote-item-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.cc-quote .cc-quote-qty {
  display: grid;
  gap: 2px;
}

.cc-quote .cc-quote-qty-label {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cc-muted);
}

.cc-quote .cc-quote-qty-val {
  font-weight: 900;
  color: var(--cc-text);
}

.cc-quote .cc-quote-ref {
  display: grid;
  gap: 2px;
  text-align: right;
}

.cc-quote .cc-quote-ref-label {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cc-muted);
}

.cc-quote .cc-quote-ref-val {
  font-weight: 900;
  color: var(--cc-text);
}

.cc-quote .cc-quote-remove-btn {
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 12px;
  text-decoration: none;
}

.cc-quote .cc-quote-summary {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(15, 23, 42, 0.10);
}

.cc-quote .cc-quote-summary-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.cc-quote .cc-quote-summary-label {
  font-weight: 900;
  color: var(--cc-text);
}

.cc-quote .cc-quote-summary-val {
  font-size: 20px;
  font-weight: 900;
  color: var(--cc-text);
}

.cc-quote .cc-quote-summary-note {
  margin-top: 8px;
  font-size: 12px;
  color: rgba(15, 23, 42, 0.55);
  line-height: 1.5;
}

/* Empty state */
.cc-quote .cc-quote-empty {
  padding: 22px;
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  background: rgba(255, 255, 255, 0.60);
  text-align: center;
}

.cc-quote .cc-quote-empty-ico {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  margin: 0 auto 10px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(215,180,106,0.22), rgba(255,255,255,0.85));
  border: 1px solid rgba(215,180,106,0.30);
}

.cc-quote .cc-quote-empty-title {
  font-weight: 900;
  color: var(--cc-text);
  margin-bottom: 4px;
}

.cc-quote .cc-quote-empty-sub {
  font-size: 13px;
  color: var(--cc-text-2);
  margin-bottom: 12px;
}

.cc-quote .cc-quote-empty-btn {
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: 0.06em;
}

/* Right side */
.cc-quote .cc-quote-side-card {
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(15, 23, 42, 0.10);
  border-radius: 22px;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
  padding: 18px;
}

.cc-quote .cc-quote-side-title {
  font-weight: 900;
  color: var(--cc-text);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.cc-quote .cc-quote-side-sub {
  font-size: 13px;
  color: var(--cc-text-2);
  margin-bottom: 12px;
}

.cc-quote .cc-quote-field {
  margin-bottom: 12px;
}

.cc-quote .cc-quote-label {
  display: block;
  font-weight: 900;
  letter-spacing: 0.08em;
  font-size: 12px;
  text-transform: uppercase;
  color: var(--cc-text);
  margin-bottom: 6px;
}

.cc-quote .cc-quote-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--cc-gold), var(--cc-gold-2));
  border: none;
  color: #111;
  box-shadow: 0 12px 30px rgba(202, 162, 79, 0.22);
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: 0.06em;
  margin-top: 4px;
}

.cc-quote .cc-quote-note {
  margin-top: 10px;
  font-size: 12px;
  color: rgba(15, 23, 42, 0.55);
  line-height: 1.5;
}

.cc-quote .cc-quote-side-divider {
  height: 1px;
  background: rgba(15, 23, 42, 0.10);
  margin: 16px 0;
}

.cc-quote .cc-quote-consult {
  width: 100%;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: 0.06em;
}

/* Responsive */
@media (max-width: 992px) {
  .cc-quote .cc-quote-grid {
    grid-template-columns: 1fr;
  }

  .cc-quote .cc-quote-title {
    font-size: 34px;
  }
}

@media (max-width: 576px) {
  .cc-quote .cc-quote-item {
    grid-template-columns: 80px 1fr;
  }

  .cc-quote .cc-quote-item-img {
    width: 80px;
  }

  .cc-quote .cc-quote-ref {
    text-align: left;
  }
}


.cc-quote .cc-quote-qtyform {
  margin: 0;
}

.cc-quote .cc-quote-qty-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cc-quote .cc-quote-qty-input {
  width: 84px;
  border-radius: 14px;
  text-align: center;
  font-weight: 900;
}

.cc-quote .cc-quote-qty-btn {
  border-radius: 12px;
  font-weight: 900;
  width: 36px;
  height: 36px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cc-quote .cc-quote-qty-save {
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: 0.06em;
  padding: 8px 12px;
}




/* ===========================
   404 Page – CC Holdings style
   =========================== */

.cc-404 {
  min-height: 100vh;
  background:
    radial-gradient(circle at top, rgba(215,180,106,0.18), transparent 60%),
    linear-gradient(180deg, #f8f9fb, #ffffff);
}

.cc-404 .cc-404-card {
  max-width: 520px;
  padding: 42px 32px;
  background: rgba(255,255,255,0.75);
  border-radius: 26px;
  border: 1px solid rgba(15,23,42,0.10);
  box-shadow: 0 24px 60px rgba(15,23,42,0.12);
  backdrop-filter: blur(8px);
}

.cc-404 .cc-404-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(215,180,106,0.35), rgba(255,255,255,0.9));
  border: 1px solid rgba(215,180,106,0.35);
}

.cc-404 .cc-404-icon i {
  font-size: 28px;
  color: #8a6a2f;
}

.cc-404 .cc-404-code {
  font-size: 72px;
  font-weight: 900;
  letter-spacing: -0.04em;
  margin: 0 0 4px 0;
  color: #0f172a;
}

.cc-404 .cc-404-title {
  font-weight: 900;
  font-size: 24px;
  margin: 0 0 10px 0;
  color: #0f172a;
}

.cc-404 .cc-404-text {
  font-size: 15px;
  color: rgba(15,23,42,0.75);
  margin: 0 0 22px 0;
}

.cc-404 .cc-404-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 0 18px 0;
}

.cc-404 .cc-404-btn {
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: 10px 20px;
}

.cc-404 .cc-404-note {
  font-size: 13px;
  color: rgba(15,23,42,0.65);
  line-height: 1.6;
  margin: 0;
}

.cc-404 .cc-404-link {
  font-weight: 800;
  text-decoration: none;
  color: #8a6a2f;
}

.cc-404 .cc-404-link:hover {
  text-decoration: underline;
}

@media (max-width: 576px) {
  .cc-404 .cc-404-card {
    padding: 34px 22px;
  }

  .cc-404 .cc-404-code {
    font-size: 60px;
  }
}

.cc-shop-page .cc-filter-form {
  display: grid;
  gap: 14px;
}

.cc-shop-page .cc-filter-check {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.60);
  cursor: pointer;
  user-select: none;
}

.cc-shop-page .cc-filter-check input {
  margin-top: 0;
}

.cc-shop-page .cc-filter-check span {
  font-size: 13px;
  font-weight: 700;
  color: var(--cc-text-2);
}

.cc-shop-page .cc-filter-muted {
  font-size: 13px;
  color: var(--cc-text-2);
}

.cc-shop-page .cc-filter-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cc-shop-page .cc-filter-apply {
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.cc-shop-page .cc-filter-reset {
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.cc-shop-page .cc-shop-empty {
  grid-column: 1 / -1;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(15, 23, 42, 0.10);
  border-radius: 22px;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
  padding: 18px;
}

.cc-shop-page .cc-shop-empty {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;

  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(15, 23, 42, 0.10);
  border-radius: 26px;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
  padding: 48px 32px;
  backdrop-filter: blur(var(--cc-blur));
}

.cc-shop-page .cc-shop-empty-title {
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--cc-text);
  margin-bottom: 10px;
}

.cc-shop-page .cc-shop-empty-sub {
  font-size: 15px;
  color: var(--cc-text-2);
  max-width: 46ch;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* =========================
   Mobile Filters Toggle
========================= */

.cc-shop-page .cc-filters-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  border-radius: 999px;
  font-weight: 900;
  letter-spacing: 0.06em;
  padding: 10px 16px;

  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(15, 23, 42, 0.12);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

/* =========================
   Filters Panel (Mobile)
========================= */

@media (max-width: 991px) {

  .cc-shop-page .cc-shop-layout {
    grid-template-columns: 1fr;
  }

  .cc-shop-page .cc-shop-filters-panel {
    display: none;
    margin-bottom: 20px;

    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(15, 23, 42, 0.10);
    border-radius: 22px;
    padding: 16px;
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.10);
  }

  .cc-shop-page .cc-shop-filters-panel.is-open {
    display: block;
    animation: ccFilterSlide 220ms ease;
  }
}

/* Subtle slide-down */
@keyframes ccFilterSlide {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



/* =========================
HOMEPAGE ADD-ONS (LegalServices)
Paste into your magster.css (or a new legalservices.css loaded after it)
Uses your existing variables: --cc-bg, --cc-border, --cc-gold, --cc-shadow, --cc-blur, --cc-radius...
========================= */

.cc-home .cc-section-head { max-width: 920px; margin: 0 auto; }
.cc-home .cc-kicker{
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cc-muted);
  margin-bottom: 8px;
}
.cc-home .cc-title{
  margin: 0 0 10px 0;
  font-size: 34px;
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--cc-text);
}
.cc-home .cc-sub{
  margin: 0;
  color: var(--cc-text-2);
  font-size: 16px;
  max-width: 78ch;
  margin-left: auto;
  margin-right: auto;
}

/* Rounded buttons to match your style */
.cc-round-btn{ border-radius: 999px; font-weight: 500; letter-spacing: 0.06em; }
.cc-round-btn.cc-primary{
  background: linear-gradient(135deg, var(--cc-gold), var(--cc-gold-2));
  border: none;
  color: #111;
  box-shadow: 0 12px 30px rgba(202,162,79,0.22);
}

/* ===== Services cards ===== */
.cc-services .cc-service-card{
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
  text-decoration: none;
  color: inherit;
  border-radius: 22px;
  border: 1px solid rgba(15,23,42,0.10);
  background: rgba(255,255,255,0.68);
  box-shadow: 0 14px 40px rgba(15,23,42,0.08);
  backdrop-filter: blur(var(--cc-blur));
  -webkit-backdrop-filter: blur(var(--cc-blur));
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}
.cc-services .cc-service-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 22px 60px rgba(15,23,42,0.12);
  background: rgba(255,255,255,0.82);
  border-color: rgba(215,180,106,0.25);
}
.cc-services .cc-service-top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.cc-services .cc-service-ico{
  width: 48px; height: 48px;
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(215,180,106,0.28), rgba(255,255,255,0.65));
  border: 1px solid rgba(215,180,106,0.30);
}
.cc-services .cc-service-ico i{ font-size: 16px; opacity: .92; }

.cc-services .cc-service-tag{
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(215,180,106,0.22);
  border: 1px solid rgba(215,180,106,0.28);
}
.cc-services .cc-tag-soft{
  background: rgba(15,23,42,0.05);
  border: 1px solid rgba(15,23,42,0.10);
}

.cc-services .cc-service-title{
  font-weight: 900;
  font-size: 16px;
  letter-spacing: -0.01em;
  color: var(--cc-text);
}
.cc-services .cc-service-text{
  font-size: 13px;
  color: var(--cc-text-2);
  line-height: 1.65;
  margin-bottom: 2px;
}
.cc-services .cc-service-meta{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 2px;
}
.cc-services .cc-pill{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(15,23,42,0.10);
  background: rgba(255,255,255,0.60);
  font-size: 12px;
  font-weight: 800;
  color: var(--cc-text);
}
.cc-services .cc-pill i{ opacity: .9; }

.cc-services .cc-service-cta{
  margin-top: auto;
  padding-top: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-weight: 900;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--cc-text);
}
.cc-services .cc-service-cta i{ opacity: .85; }

/* ===== Trust cards + strip ===== */
.cc-why .cc-trust-card{
  height: 100%;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(15,23,42,0.10);
  background: rgba(255,255,255,0.62);
  box-shadow: 0 14px 40px rgba(15,23,42,0.06);
  backdrop-filter: blur(var(--cc-blur));
  -webkit-backdrop-filter: blur(var(--cc-blur));
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}
.cc-why .cc-trust-card:hover{
  transform: translateY(-1px);
  box-shadow: 0 18px 50px rgba(15,23,42,0.10);
  background: rgba(255,255,255,0.78);
}
.cc-why .cc-trust-ico{
  width: 46px; height: 46px;
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(215,180,106,0.22), rgba(255,255,255,0.70));
  border: 1px solid rgba(215,180,106,0.28);
  margin-bottom: 10px;
}
.cc-why .cc-trust-ico i{ font-size: 15px; opacity: .92; }
.cc-why .cc-trust-title{ font-weight: 900; color: var(--cc-text); margin-bottom: 6px; }
.cc-why .cc-trust-text{ margin: 0; font-size: 13px; color: var(--cc-text-2); line-height: 1.6; }

.cc-why .cc-mini-strip{
  display: flex; flex-wrap: wrap;
  gap: 10px;
  padding: 12px;
  border-radius: 18px;
  border: 1px solid rgba(15,23,42,0.08);
  background: rgba(255,255,255,0.60);
  box-shadow: 0 10px 26px rgba(15,23,42,0.06);
}
.cc-why .cc-mini-item{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(15,23,42,0.08);
  background: rgba(255,255,255,0.70);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--cc-text);
}
.cc-why .cc-mini-item i{ opacity: .9; }

/* ===== Pricing wrapper ===== */
.cc-pricing .cc-pricing-wrap{
  border-radius: 26px;
  padding: 18px;
  background: radial-gradient(1000px 600px at 20% 0%, rgba(215,180,106,0.18), transparent 60%),
              radial-gradient(900px 600px at 100% 20%, rgba(15,23,42,0.08), transparent 55%),
              rgba(255,255,255,0.50);
  border: 1px solid rgba(15,23,42,0.10);
  box-shadow: 0 20px 60px rgba(15,23,42,0.10);
  backdrop-filter: blur(var(--cc-blur));
  -webkit-backdrop-filter: blur(var(--cc-blur));
}
.cc-pricing .cc-price-panel{
  height: 100%;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(15,23,42,0.10);
  background: rgba(255,255,255,0.62);
}
.cc-pricing .cc-quotes{ display: grid; gap: 12px; }
.cc-pricing .cc-quote-card{
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(15,23,42,0.10);
  background: rgba(255,255,255,0.60);
}
.cc-pricing .cc-quote-stars{ letter-spacing: .12em; font-weight: 900; color: #8a6a2f; }
.cc-pricing .cc-quote-text{ margin: 8px 0 10px; color: var(--cc-text-2); font-size: 13px; line-height: 1.65; }
.cc-pricing .cc-quote-meta{
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  color: var(--cc-text);
  font-weight: 900;
}
.cc-pricing .cc-quote-muted{ font-weight: 700; color: var(--cc-text-2); }

/* Package card */
.cc-pricing .cc-package{
  height: 100%;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(15,23,42,0.10);
  background: rgba(255,255,255,0.68);
  box-shadow: 0 14px 40px rgba(15,23,42,0.08);
  backdrop-filter: blur(var(--cc-blur));
  -webkit-backdrop-filter: blur(var(--cc-blur));
}
.cc-pricing .cc-package-top{
  display: flex; align-items: flex-start; justify-content: space-between; gap: 12px;
  margin-bottom: 12px;
}
.cc-pricing .cc-package-kicker{
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cc-muted);
  margin-bottom: 8px;
}
.cc-pricing .cc-package-price{
  font-size: 22px;
  font-weight: 900;
  color: var(--cc-text);
}
.cc-pricing .cc-package-price span{ color: #8a6a2f; }
.cc-pricing .cc-package-badge{
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(215,180,106,0.22);
  border: 1px solid rgba(215,180,106,0.28);
  font-weight: 900;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  font-size: 12px;
  color: #111;
}
.cc-pricing .cc-package-list{
  margin: 0;
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.cc-pricing .cc-package-list li{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 16px;
  border: 1px solid rgba(15,23,42,0.08);
  background: rgba(255,255,255,0.60);
  color: var(--cc-text-2);
  font-weight: 800;
  font-size: 13px;
}
.cc-pricing .cc-package-list i{ color: #1f7a3a; opacity: .95; }
.cc-pricing .cc-package-note{
  margin-top: 10px;
  font-size: 12px;
  color: rgba(15,23,42,0.55);
  line-height: 1.5;
}
.cc-pricing .cc-package-actions{
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* ===== Contact section ===== */
.cc-contact .cc-contact-card{
  height: 100%;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(15,23,42,0.10);
  background: rgba(255,255,255,0.68);
  box-shadow: 0 14px 40px rgba(15,23,42,0.08);
  backdrop-filter: blur(var(--cc-blur));
  -webkit-backdrop-filter: blur(var(--cc-blur));
}
.cc-contact .cc-contact-actions{
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.cc-contact .cc-contact-note{
  margin-top: 12px;
  font-size: 12px;
  color: rgba(15,23,42,0.55);
  letter-spacing: 0.04em;
}

.cc-contact .cc-contact-side{
  height: 100%;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(15,23,42,0.10);
  background: rgba(255,255,255,0.62);
  box-shadow: 0 14px 40px rgba(15,23,42,0.06);
}
.cc-contact .cc-contact-line{
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px;
  border-radius: 18px;
  border: 1px solid rgba(15,23,42,0.08);
  background: rgba(255,255,255,0.60);
  margin-bottom: 10px;
}
.cc-contact .cc-contact-ico{
  width: 44px; height: 44px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(215,180,106,0.22), rgba(255,255,255,0.70));
  border: 1px solid rgba(215,180,106,0.28);
  flex: 0 0 auto;
}
.cc-contact .cc-contact-label{
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cc-muted);
  margin-bottom: 4px;
}
.cc-contact .cc-contact-val{ color: var(--cc-text-2); font-weight: 700; font-size: 14px; line-height: 1.55; }
.cc-contact .cc-contact-val a{ color: var(--cc-text); text-decoration: none; font-weight: 900; }
.cc-contact .cc-contact-val a:hover{ text-decoration: underline; }

.cc-contact .cc-contact-cta{
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 18px;
  border: 1px solid rgba(215,180,106,0.30);
  background: linear-gradient(135deg, rgba(215,180,106,0.22), rgba(255,255,255,0.72));
  text-decoration: none;
  color: var(--cc-text);
  box-shadow: 0 18px 50px rgba(15,23,42,0.10);
  transition: transform 160ms ease, box-shadow 160ms ease;
}
.cc-contact .cc-contact-cta:hover{
  transform: translateY(-1px);
  box-shadow: 0 26px 70px rgba(15,23,42,0.14);
}
.cc-contact .cc-contact-cta-ico{
  width: 42px; height: 42px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(15,23,42,0.08);
  background: rgba(255,255,255,0.60);
}
.cc-contact .cc-contact-cta-text{ display: flex; flex-direction: column; line-height: 1.2; }
.cc-contact .cc-contact-cta-text span{ font-size: 12px; color: var(--cc-text-2); margin-top: 4px; }
.cc-contact .cc-contact-cta-arrow{ margin-left: auto; opacity: .85; }

/* Responsive */
@media (max-width: 576px){
  .cc-home .cc-title{ font-size: 28px; }
}


/* =========================
DROPDOWN MENU – PREMIUM LEGAL STYLE
========================= */

.dropdown-menu {
  min-width: 280px;
  padding: 12px;
  margin-top: 14px;
  border-radius: 18px;
  border: 1px solid rgba(15,23,42,0.10);
  background: rgba(255, 255, 255, 0.88);
  box-shadow:
    0 20px 60px rgba(15, 23, 42, 0.18),
    0 6px 20px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.dropdown-menu::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 28px;
  width: 16px;
  height: 16px;
  background: rgba(255, 255, 255, 0.88);
  transform: rotate(45deg);
  border-left: 1px solid rgba(15,23,42,0.10);
  border-top: 1px solid rgba(15,23,42,0.10);
}

/* Remove default Bootstrap arrow */
.dropdown-toggle::after {
  
}

/* =========================
DROPDOWN ITEMS
========================= */

.dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  font-weight: 800;
  font-size: 14px;
  color: var(--cc-text);
  text-decoration: none;
  transition:
    background 160ms ease,
    transform 160ms ease,
    color 160ms ease;
}

.dropdown-menu .dropdown-item i {
  width: 18px;
  text-align: center;
  font-size: 14px;
  opacity: 0.9;
  color: var(--cc-text);
}

/* Hover / focus */
.dropdown-menu .dropdown-item:hover,
.dropdown-menu .dropdown-item:focus {
  background: linear-gradient(
    135deg,
    rgba(215,180,106,0.22),
    rgba(255,255,255,0.75)
  );
  color: var(--cc-text);
  transform: translateX(2px);
}

/* Active state */
.dropdown-menu .dropdown-item.active {
  background: rgba(215,180,106,0.28);
  color: #111;
}

/* =========================
SECTION DIVIDER (optional)
========================= */

.dropdown-divider {
  margin: 10px 0;
  border-top: 1px solid rgba(15,23,42,0.08);
}

/* =========================
SERVICE EMPHASIS (optional)
========================= */

.dropdown-item.is-primary {
  background: rgba(215,180,106,0.18);
  border: 1px solid rgba(215,180,106,0.28);
  font-weight: 900;
}

.dropdown-item.is-primary:hover {
  background: linear-gradient(
    135deg,
    rgba(215,180,106,0.35),
    rgba(255,255,255,0.85)
  );
}

/* =========================
MOBILE TWEAKS
========================= */

@media (max-width: 991px) {
  .dropdown-menu {
    margin-top: 8px;
    min-width: 100%;
    border-radius: 16px;
  }

  .dropdown-menu::before {
    display: none;
  }
}


/* =========================
FOOTER v2 – Premium, clean hierarchy
Paste AFTER your existing footer styles
========================= */

.cc-footer {
  position: relative;
  margin-top: 0px;
  padding: 56px 0 26px 0;
  border-top: 1px solid var(--cc-border);
  background:
    radial-gradient(900px 520px at 20% -10%, rgba(215, 180, 106, 0.18), transparent 58%),
    radial-gradient(900px 520px at 100% 0%, rgba(15, 23, 42, 0.08), transparent 58%),
    rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(var(--cc-blur));
  -webkit-backdrop-filter: blur(var(--cc-blur));
}

/* CTA HERO BAND */
/* CTA HERO BAND – Blue Legal Gradient */
/* CTA HERO BAND – Full Blue Legal */
.cc-footer .cc-footer-hero{
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 18px;
  align-items: center;
  padding: 22px;
  border-radius: 26px;
  border: 1px solid rgba(59,130,246,0.28);
  background: linear-gradient(
    135deg,
    #0b2545 0%,
    #0f2f5a 45%,
    #123b6d 100%
  );
  box-shadow:
    0 30px 90px rgba(11,37,69,0.55),
    inset 0 1px 0 rgba(255,255,255,0.06);
  margin-bottom: 18px;
}
.cc-footer .cc-footer-hero-kicker{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.08);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  backdrop-filter: blur(6px);
}

.cc-footer .cc-footer-hero-title{
  margin-top: 12px;
  font-size: 24px;
  line-height: 1.22;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.cc-footer .cc-footer-hero-sub{
  margin-top: 8px;
  color: rgba(226,232,240,0.92);
  font-size: 14px;
  font-weight: 600;
}

.cc-footer .cc-footer-hero-badges{
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cc-footer .cc-footer-hero-badges .cc-footer-chip{
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.22);
  color: #ffffff;
}

.cc-footer .cc-footer-badge{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(15,23,42,0.10);
  background: rgba(255,255,255,0.70);
  color: var(--cc-text);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.06em;
}

.cc-footer .cc-footer-hero-right{
  display: grid;
  gap: 10px;
}

.cc-footer .cc-footer-hero-btn{
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  font-size: 12px;
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}

.cc-footer .cc-footer-hero-btn-primary{
  color: #111;
  background: linear-gradient(135deg, var(--cc-gold), var(--cc-gold-2));
  box-shadow: 0 16px 44px rgba(202,162,79,0.24);
  border: 0;
}

.cc-footer .cc-footer-hero-btn-ghost{
  color: var(--cc-text);
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(15,23,42,0.12);
  box-shadow: 0 14px 40px rgba(15,23,42,0.08);
}

.cc-footer .cc-footer-hero-btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 24px 70px rgba(15,23,42,0.14);
  filter: brightness(1.01);
}

.cc-footer .cc-footer-hero-note{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 16px;
  border: 1px solid rgba(15,23,42,0.08);
  background: rgba(255,255,255,0.58);
  color: rgba(15,23,42,0.72);
  font-size: 13px;
  font-weight: 800;
}

/* MAIN SHELL (one strong container, not 4 equal cards) */
.cc-footer .cc-footer-shell{
  border-radius: 28px;
  border: 1px solid rgba(15,23,42,0.10);
  background: rgba(255,255,255,0.70);
  box-shadow: 0 22px 70px rgba(15,23,42,0.10);
  backdrop-filter: blur(var(--cc-blur));
  -webkit-backdrop-filter: blur(var(--cc-blur));
  padding: 18px;
}

/* Left big column */
.cc-footer .cc-footer-brandbox{
  padding: 10px;
}

.cc-footer .cc-footer-brand{
  text-decoration: none;
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 10px;
}

.cc-footer .cc-footer-brand-main{
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.10em;
  color: var(--cc-text);
}

.cc-footer .cc-footer-brand-sub{
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--cc-muted);
}

.cc-footer .cc-footer-text{
  margin: 0 0 14px 0;
  color: var(--cc-text-2);
  max-width: 62ch;
  font-size: 14px;
}

/* Services list = strong money-making section */
.cc-footer .cc-footer-services{
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.cc-footer .cc-footer-service{
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 20px;
  border: 1px solid rgba(15,23,42,0.10);
  background: rgba(255,255,255,0.62);
  text-decoration: none;
  color: inherit;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.cc-footer .cc-footer-service:hover{
  transform: translateY(-1px);
  box-shadow: 0 18px 52px rgba(15,23,42,0.12);
  border-color: rgba(215,180,106,0.22);
}

.cc-footer .cc-footer-service-ico{
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(215,180,106,0.32);
  background: linear-gradient(135deg, rgba(215,180,106,0.28), rgba(255,255,255,0.70));
  flex: 0 0 auto;
}

.cc-footer .cc-footer-service-body{
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.cc-footer .cc-footer-service-body strong{
  font-weight: 900;
  color: var(--cc-text);
}

.cc-footer .cc-footer-service-body span{
  margin-top: 4px;
  font-size: 12px;
  color: var(--cc-text-2);
  font-weight: 700;
}

.cc-footer .cc-footer-service-arrow{
  margin-left: auto;
  opacity: 0.75;
}

/* Columns */
.cc-footer .cc-footer-col{
  height: 100%;
  padding: 10px;
}

.cc-footer .cc-footer-title{
  margin: 0 0 12px 0;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 900;
  color: var(--cc-text);
}

.cc-footer .cc-footer-links{
  display: flex;
  flex-direction: column;
  gap: 0px;
}

.cc-footer .cc-footer-links a{
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  color: var(--cc-text-2);
  padding: 5px 12px;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.cc-footer .cc-footer-links a:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,0.82);
  border-color: rgba(215,180,106,0.20);
  color: var(--cc-text);
}

/* Mini section */
.cc-footer .cc-footer-mini{
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(15,23,42,0.08);
}

.cc-footer .cc-footer-mini-title{
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cc-muted);
  margin-bottom: 8px;
}

.cc-footer .cc-footer-mini-link{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 12px;
  text-decoration: none;
  color: var(--cc-text-2);
  font-weight: 900;
}

.cc-footer .cc-footer-mini-link:hover{
  color: var(--cc-text);
  text-decoration: underline;
}

/* Popular box */
.cc-footer .cc-footer-popular{
  margin-top: 14px;
  padding: 14px;
  border-radius: 22px;
  border: 1px solid rgba(215,180,106,0.22);
  background: linear-gradient(135deg, rgba(215,180,106,0.14), rgba(255,255,255,0.70));
}

.cc-footer .cc-footer-popular-top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.cc-footer .cc-footer-popular-pill{
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.75);
  border: 1px solid rgba(15,23,42,0.10);
  font-weight: 900;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cc-footer .cc-footer-popular-note{
  font-size: 12px;
  color: var(--cc-text-2);
  font-weight: 800;
}

.cc-footer .cc-footer-popular-links{
  display: grid;
  gap: 8px;
}

.cc-footer .cc-footer-popular-links a{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(15,23,42,0.08);
  background: rgba(255,255,255,0.60);
  text-decoration: none;
  color: var(--cc-text);
  font-weight: 900;
}

.cc-footer .cc-footer-popular-links a:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,0.80);
}

/* Contact */
.cc-footer .cc-footer-contact{
  display: grid;
  gap: 10px;
  margin-bottom: 12px;
}

.cc-footer .cc-footer-line{
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--cc-text-2);
  
}

.cc-footer .cc-footer-line i{
  width: 18px;
  text-align: center;
  margin-top: 2px;
  opacity: 0.9;
}

.cc-footer .cc-footer-line a{
  color: var(--cc-text-2);
  text-decoration: none;
  font-weight: 900;
}
.cc-footer .cc-footer-line a:hover{
  color: var(--cc-text);
  text-decoration: underline;
}

.cc-footer .cc-footer-action{
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 22px;
  border: 1px solid rgba(15,23,42,0.10);
  background: rgba(255,255,255,0.65);
  text-decoration: none;
  color: var(--cc-text);
  box-shadow: 0 16px 48px rgba(15,23,42,0.10);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.cc-footer .cc-footer-action:hover{
  transform: translateY(-1px);
  box-shadow: 0 24px 70px rgba(15,23,42,0.14);
  border-color: rgba(215,180,106,0.22);
}

.cc-footer .cc-footer-action-ico{
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(15,23,42,0.08);
  background: rgba(255,255,255,0.65);
  flex: 0 0 auto;
}

.cc-footer .cc-footer-action-text{
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.cc-footer .cc-footer-action-text strong{ font-weight: 900; }
.cc-footer .cc-footer-action-text span{
  margin-top: 4px;
  font-size: 12px;
  color: var(--cc-text-2);
  font-weight: 700;
}
.cc-footer .cc-footer-action-arrow{
  margin-left: auto;
  opacity: 0.8;
}

.cc-footer .cc-footer-safe{
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 16px;
  border: 1px solid rgba(15,23,42,0.08);
  background: rgba(255,255,255,0.58);
  color: var(--cc-text-2);
  font-size: 13px;
  font-weight: 800;
}

/* Bottom */
.cc-footer .cc-footer-bottom{
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(15,23,42,0.10);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cc-footer .cc-footer-note{
  color: var(--cc-text-2);
  font-size: 13px;
  max-width: 110ch;
}

.cc-footer .cc-footer-meta{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  color: var(--cc-muted);
  font-size: 13px;
}

.cc-footer .cc-footer-meta a{
  color: var(--cc-muted);
  text-decoration: none;
  font-weight: 800;
}
.cc-footer .cc-footer-meta a:hover{
  color: var(--cc-text);
  text-decoration: underline;
}

.cc-footer .cc-footer-dot{ opacity: 0.6; }

/* Responsive */
@media (max-width: 992px){
  .cc-footer .cc-footer-hero{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px){
  .cc-footer .cc-footer-hero{
    padding: 16px;
    border-radius: 22px;
  }
  .cc-footer .cc-footer-shell{
    padding: 16px;
    border-radius: 22px;
  }
}

.cc-contact-page { position: relative; }

.cc-contact-page .cc-contact-page-head{
  max-width: 920px;
  margin-bottom: 22px;
}

.cc-contact-page .cc-contact-page-kicker{
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cc-muted);
  margin-bottom: 8px;
}

.cc-contact-page .cc-contact-page-title{
  font-size: 40px;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--cc-text);
  margin: 0 0 10px 0;
}

.cc-contact-page .cc-contact-page-sub{
  font-size: 16px;
  color: var(--cc-text-2);
  margin: 0;
  max-width: 75ch;
}

.cc-contact-page .cc-contact-page-grid{
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 20px;
  align-items: start;
}

.cc-contact-page .cc-contact-page-card,
.cc-contact-page .cc-contact-page-side-card{
  background: rgba(255,255,255,0.68);
  border: 1px solid rgba(15,23,42,0.10);
  border-radius: 22px;
  box-shadow: 0 14px 40px rgba(15,23,42,0.08);
  backdrop-filter: blur(var(--cc-blur));
  -webkit-backdrop-filter: blur(var(--cc-blur));
  padding: 18px;
}

.cc-contact-page .cc-contact-page-card-top{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.cc-contact-page .cc-contact-page-card-kicker{
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cc-muted);
  margin-bottom: 6px;
}

.cc-contact-page .cc-contact-page-card-title{
  font-weight: 900;
  color: var(--cc-text);
  font-size: 18px;
}

.cc-contact-page .cc-contact-page-card-badge{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(215,180,106,0.30);
  background: linear-gradient(135deg, rgba(215,180,106,0.18), rgba(255,255,255,0.72));
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: var(--cc-text);
  white-space: nowrap;
}

.cc-contact-page .cc-contact-page-row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.cc-contact-page .cc-contact-page-field{ margin-bottom: 12px; }

.cc-contact-page .cc-contact-page-label{
  display: block;
  font-weight: 900;
  letter-spacing: 0.08em;
  font-size: 12px;
  text-transform: uppercase;
  color: var(--cc-text);
  margin-bottom: 6px;
}

.cc-contact-page .cc-contact-page-form .form-control{
  border-radius: 14px;
  border: 1px solid rgba(15,23,42,0.15);
  background: rgba(255,255,255,0.85);
  padding: 12px 14px;
  font-size: 14px;
}

.cc-contact-page .cc-contact-page-form .form-control:focus{
  box-shadow: 0 0 0 3px rgba(215,180,106,0.22);
  border-color: rgba(215,180,106,0.65);
}

.cc-contact-page .cc-contact-page-captcha{
  margin-top: 10px;
}

.cc-contact-page .cc-contact-page-actions{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.cc-contact-page .cc-contact-page-btn{
  border-radius: 999px;
  font-weight: 500;
  letter-spacing: 0.06em;
  background: linear-gradient(135deg, var(--cc-gold), var(--cc-gold-2));
  border: none;
  color: #111;
  box-shadow: 0 12px 30px rgba(202,162,79,0.22);
}

.cc-contact-page .cc-contact-page-alt{
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.cc-contact-page .cc-contact-page-note{
  margin-top: 12px;
  font-size: 12px;
  color: rgba(15,23,42,0.55);
  line-height: 1.5;
}

.cc-contact-page .cc-contact-page-side-title{
  font-weight: 900;
  color: var(--cc-text);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.cc-contact-page .cc-contact-page-lines{
  display: grid;
  gap: 10px;
  margin-bottom: 14px;
}

.cc-contact-page .cc-contact-page-line{
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid rgba(15,23,42,0.08);
  background: rgba(255,255,255,0.60);
}

.cc-contact-page .cc-contact-page-ico{
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(215,180,106,0.22), rgba(255,255,255,0.75));
  border: 1px solid rgba(215,180,106,0.30);
  flex: 0 0 auto;
}

.cc-contact-page .cc-contact-page-line-text{
  display: flex;
  flex-direction: column;
  line-height: 1.35;
}

.cc-contact-page .cc-contact-page-line-text strong{
  font-weight: 900;
  color: var(--cc-text);
  margin-bottom: 2px;
}

.cc-contact-page .cc-contact-page-line-text span,
.cc-contact-page .cc-contact-page-line-text a{
  color: var(--cc-text-2);
  text-decoration: none;
  font-size: 13px;
}

.cc-contact-page .cc-contact-page-line-text a:hover{
  color: var(--cc-text);
  text-decoration: underline;
}

.cc-contact-page .cc-contact-page-quick{
  display: grid;
  gap: 10px;
  margin-top: 10px;
}

.cc-contact-page .cc-contact-page-quick-btn{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(15,23,42,0.10);
  background: rgba(255,255,255,0.70);
  text-decoration: none;
  color: var(--cc-text);
  font-weight: 900;
  letter-spacing: 0.02em;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.cc-contact-page .cc-contact-page-quick-btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(15,23,42,0.10);
  background: rgba(255,255,255,0.88);
}

.cc-contact-page .cc-contact-page-social{
  margin-top: 16px;
}

.cc-contact-page .cc-contact-page-social-title{
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cc-muted);
  margin-bottom: 10px;
}

.cc-contact-page .cc-contact-page-social-row{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cc-contact-page .cc-contact-page-social-link{
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(15,23,42,0.10);
  background: rgba(255,255,255,0.70);
  color: var(--cc-text);
  text-decoration: none;
  box-shadow: 0 10px 26px rgba(15,23,42,0.06);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.cc-contact-page .cc-contact-page-social-link:hover{
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(15,23,42,0.10);
  background: rgba(255,255,255,0.90);
}

.cc-contact-page .cc-contact-page-map{
  margin-top: 16px;
}

.cc-contact-page .cc-contact-page-map-head{
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 10px;
}

.cc-contact-page .cc-contact-page-map-head strong{
  font-weight: 900;
  color: var(--cc-text);
}

.cc-contact-page .cc-contact-page-map-head span{
  font-size: 13px;
  color: var(--cc-text-2);
}

.cc-contact-page .cc-contact-page-map-wrap{
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(15,23,42,0.10);
  box-shadow: 0 14px 40px rgba(15,23,42,0.08);
  background: rgba(255,255,255,0.65);
}

/* Responsive */
@media (max-width: 992px){
  .cc-contact-page .cc-contact-page-grid{ grid-template-columns: 1fr; }
  .cc-contact-page .cc-contact-page-title{ font-size: 34px; }
}

@media (max-width: 576px){
  .cc-contact-page .cc-contact-page-row{ grid-template-columns: 1fr; }
  .cc-contact-page .cc-contact-page-title{ font-size: 30px; }
}
.intl-tel-input{ width: 100%; }