/* Telebilgi public — ClassiPress-inspired classifieds theme */
:root {
  --cp-blue: #1e88c9;
  --cp-blue-dark: #156ea3;
  --cp-green: #7bb128;
  --cp-green-dark: #68961f;
  --cp-ink: #333333;
  --cp-muted: #777777;
  --cp-line: #e0e0e0;
  --cp-bg: #f5f5f5;
  --cp-white: #ffffff;
  --cp-header: #ffffff;
  --cp-footer: #2c3e50;
  --cp-radius: 3px;
  --cp-font: "Source Sans 3", "Segoe UI", sans-serif;
}

html { font-size: 16px; scroll-behavior: smooth; }

body.tb-portal.theme-classipress {
  font-family: var(--cp-font);
  color: var(--cp-ink);
  background: var(--cp-bg);
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.theme-classipress .tb-main { flex: 1; background: var(--cp-bg); }

.theme-classipress .container-tb {
  width: 100%;
  max-width: 1100px;
  margin-inline: auto;
  padding-inline: 1rem;
  box-sizing: border-box;
}

/* Top bar — ClassiPress style */
.theme-classipress .tb-topbar {
  background: #f0f0f0;
  color: var(--cp-muted);
  font-size: 0.8rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--cp-line);
}

.theme-classipress .tb-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.theme-classipress .tb-topbar a {
  color: var(--cp-ink);
  text-decoration: none;
  font-weight: 600;
}

.theme-classipress .tb-topbar a:hover { color: var(--cp-blue); }

.theme-classipress .tb-topbar-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Header */
.theme-classipress .tb-header {
  background: var(--cp-header);
  border-bottom: 3px solid var(--cp-blue);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.theme-classipress .tb-header .navbar {
  padding: 0.85rem 0;
  --bs-navbar-padding-x: 0;
  --bs-navbar-padding-y: 0;
}

.theme-classipress .tb-header .navbar > .container-tb {
  gap: 1rem;
}

.theme-classipress .tb-header .navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.55rem;
  color: var(--cp-blue);
  text-decoration: none;
  letter-spacing: -0.02em;
  margin: 0;
  padding: 0;
  flex-shrink: 0;
}

.theme-classipress .brand-logo {
  height: 46px;
  max-width: min(220px, 48vw);
}

.theme-classipress .tb-header .navbar-collapse {
  flex-grow: 1;
  justify-content: flex-end;
}

@media (min-width: 992px) {
  .theme-classipress .tb-header .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
    align-items: center;
    gap: 0.25rem;
  }

  .theme-classipress .tb-header .navbar-nav {
    margin-left: auto;
    flex-direction: row;
    flex-wrap: nowrap;
  }
}

.theme-classipress .brand-mark {
  display: inline-grid;
  place-items: center;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: var(--cp-radius);
  background: var(--cp-blue);
  color: #fff;
  font-size: 1.05rem;
  font-weight: 800;
}

.theme-classipress .tb-header .nav-link {
  color: var(--cp-ink);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.4rem 0.7rem !important;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.theme-classipress .tb-header .nav-link:hover { color: var(--cp-blue); }

.theme-classipress .tb-cta {
  background: var(--cp-green) !important;
  border-color: var(--cp-green) !important;
  color: #fff !important;
  font-weight: 700 !important;
  border-radius: var(--cp-radius) !important;
  padding: 0.55rem 1.1rem !important;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 0.8rem !important;
}

.theme-classipress .tb-cta:hover {
  background: var(--cp-green-dark) !important;
  border-color: var(--cp-green-dark) !important;
}

.theme-classipress .btn-primary {
  background: var(--cp-blue);
  border-color: var(--cp-blue);
  font-weight: 700;
}

.theme-classipress .btn-primary:hover {
  background: var(--cp-blue-dark);
  border-color: var(--cp-blue-dark);
}

.theme-classipress .navbar-toggler { border: 0; }
.theme-classipress .navbar-toggler:focus { box-shadow: 0 0 0 2px rgba(30, 136, 201, 0.25); }

/* Search strip under header (ClassiPress homepage) */
.cp-search-strip {
  background: linear-gradient(180deg, #eaf4fb 0%, #dceef8 100%);
  border-bottom: 1px solid #c5dde9;
  padding: 1.75rem 0 1.5rem;
}

.cp-search-strip .cp-search-inner {
  width: min(900px, calc(100% - 2rem));
  margin: 0 auto;
  text-align: center;
}

.cp-search-strip h1 {
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  font-weight: 700;
  color: var(--cp-ink);
  margin: 0 0 0.35rem;
}

.cp-search-strip .cp-lead {
  color: var(--cp-muted);
  margin: 0 0 1.1rem;
  font-size: 0.98rem;
}

.cp-search-form {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr auto;
  gap: 0.5rem;
  background: var(--cp-white);
  padding: 0.65rem;
  border: 1px solid #c5dde9;
  border-radius: var(--cp-radius);
  box-shadow: 0 2px 8px rgba(30, 136, 201, 0.08);
  text-align: left;
}

.cp-search-form .field label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--cp-muted);
  margin-bottom: 0.15rem;
}

.cp-search-form .form-control,
.cp-search-form .form-select {
  border: 1px solid var(--cp-line);
  border-radius: var(--cp-radius);
  font-size: 0.92rem;
  padding: 0.45rem 0.55rem;
}

.cp-search-form .btn-search {
  align-self: end;
  background: var(--cp-blue);
  color: #fff;
  border: 0;
  border-radius: var(--cp-radius);
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.55rem 1.25rem;
  letter-spacing: 0.03em;
}

.cp-search-form .btn-search:hover { background: var(--cp-blue-dark); }

/* Sections — same horizontal rail as .container-tb / header */
.cp-section {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 2.25rem 1rem;
  box-sizing: border-box;
}

.cp-section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
  border-bottom: 2px solid var(--cp-blue);
  padding-bottom: 0.55rem;
}

.cp-section-head h2 {
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0;
  color: var(--cp-blue);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.cp-section-head p {
  margin: 0.2rem 0 0;
  color: var(--cp-muted);
  font-size: 0.88rem;
  text-transform: none;
  font-weight: 400;
  letter-spacing: 0;
}

.cp-section-head a {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--cp-blue);
  text-decoration: none;
}

.cp-section-head a:hover { text-decoration: underline; }

/* Featured cards — ClassiPress */
.cp-featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
}

.cp-featured-card {
  background: var(--cp-white);
  border: 1px solid var(--cp-line);
  border-radius: var(--cp-radius);
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}

.cp-featured-card:hover { box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1); }

.cp-featured-card a { color: inherit; text-decoration: none; display: block; }

.cp-featured-thumb {
  aspect-ratio: 16 / 10;
  background: #e8eef3;
  position: relative;
  overflow: hidden;
}

.cp-featured-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cp-featured-thumb .ph {
  display: grid;
  place-items: center;
  height: 100%;
  color: var(--cp-muted);
  font-weight: 700;
  font-size: 0.85rem;
}

.cp-featured-price {
  position: absolute;
  left: 0;
  bottom: 0;
  background: var(--cp-green);
  color: #fff;
  font-weight: 700;
  font-size: 0.82rem;
  padding: 0.25rem 0.55rem;
}

.cp-featured-body { padding: 0.75rem 0.85rem 1rem; }

.cp-featured-body h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.35rem;
  line-height: 1.3;
  color: var(--cp-ink);
}

.cp-featured-meta {
  font-size: 0.8rem;
  color: var(--cp-muted);
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* Categories — boxed icons */
.cp-cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 0.75rem;
}

.cp-cat-tile {
  background: var(--cp-white);
  border: 1px solid var(--cp-line);
  border-radius: var(--cp-radius);
  padding: 1rem 0.75rem;
  text-align: center;
  text-decoration: none;
  color: var(--cp-ink);
  transition: border-color 0.15s ease, color 0.15s ease;
}

.cp-cat-tile:hover {
  border-color: var(--cp-blue);
  color: var(--cp-blue);
}

.cp-cat-icon {
  display: inline-grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  margin: 0 auto 0.55rem;
  border-radius: 50%;
  background: #eaf4fb;
  color: var(--cp-blue);
  font-weight: 800;
  font-size: 0.85rem;
}

.cp-cat-name {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
}

.cp-cat-count {
  display: block;
  font-size: 0.75rem;
  color: var(--cp-muted);
  margin-top: 0.2rem;
}

/* Latest listings — list rows */
.cp-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.cp-list-item {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 1rem;
  align-items: center;
  background: var(--cp-white);
  border: 1px solid var(--cp-line);
  border-radius: var(--cp-radius);
  padding: 0.65rem;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s ease;
}

.cp-list-item:hover { border-color: var(--cp-blue); }

.cp-list-thumb {
  width: 110px;
  height: 80px;
  background: #e8eef3;
  border-radius: var(--cp-radius);
  overflow: hidden;
}

.cp-list-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cp-list-thumb .ph {
  display: grid;
  place-items: center;
  height: 100%;
  font-size: 0.75rem;
  color: var(--cp-muted);
  font-weight: 700;
}

.cp-list-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 0.25rem;
  color: var(--cp-blue);
}

.cp-list-body p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--cp-muted);
}

.cp-list-price {
  font-weight: 800;
  color: var(--cp-green);
  font-size: 1.05rem;
  white-space: nowrap;
}

/* Sellers */
.cp-seller-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.75rem;
}

.cp-seller-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--cp-white);
  border: 1px solid var(--cp-line);
  border-radius: var(--cp-radius);
  padding: 0.75rem;
  text-decoration: none;
  color: inherit;
}

.cp-seller-card:hover { border-color: var(--cp-blue); }

.cp-seller-avatar {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: var(--cp-blue);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  flex-shrink: 0;
}

.cp-seller-info h3 {
  font-size: 0.95rem;
  margin: 0 0 0.15rem;
  font-weight: 700;
}

.cp-seller-info p {
  margin: 0;
  font-size: 0.78rem;
  color: var(--cp-muted);
}

.theme-classipress .tier-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 0.1rem 0.35rem;
  border-radius: 2px;
  background: #eaf4fb;
  color: var(--cp-blue);
  margin-right: 0.25rem;
}

/* Cities */
.cp-city-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cp-city-tile {
  background: var(--cp-white);
  border: 1px solid var(--cp-line);
  border-radius: var(--cp-radius);
  padding: 0.45rem 0.85rem;
  text-decoration: none;
  color: var(--cp-ink);
  font-weight: 600;
  font-size: 0.88rem;
}

.cp-city-tile:hover {
  border-color: var(--cp-blue);
  color: var(--cp-blue);
}

/* CTA */
.cp-cta {
  background: var(--cp-blue);
  color: #fff;
  padding: 2.25rem 0;
}

.cp-cta-inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding-inline: 1rem;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cp-cta h2 {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 0 0.35rem;
}

.cp-cta p { margin: 0; opacity: 0.9; font-size: 0.95rem; }

.cp-cta .btn {
  background: var(--cp-green);
  color: #fff;
  font-weight: 700;
  border: 0;
  border-radius: var(--cp-radius);
  padding: 0.65rem 1.25rem;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.cp-cta .btn:hover { background: var(--cp-green-dark); color: #fff; }

.cp-cta .btn-outline {
  background: transparent;
  border: 2px solid #fff;
  margin-left: 0.5rem;
}

.cp-cta .btn-outline:hover { background: #fff; color: var(--cp-blue); }

/* Footer */
.theme-classipress .tb-footer {
  background: var(--cp-footer);
  color: rgba(255, 255, 255, 0.78);
  padding: 2.5rem 0 1.25rem;
  margin-top: auto;
}

.theme-classipress .footer-brand {
  display: block;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.5rem;
}

.theme-classipress .tb-footer h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 0.75rem;
  letter-spacing: 0.04em;
}

.theme-classipress .footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.theme-classipress .footer-links a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-size: 0.88rem;
  line-height: 1.85;
}

.theme-classipress .footer-links a:hover { color: #fff; }

.theme-classipress .footer-bottom {
  margin-top: 1.75rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
}

/* Generic content pages inside ClassiPress shell */
.theme-classipress .tb-main > .container,
.theme-classipress .tb-main > .container-fluid {
  padding-top: 1.5rem;
  padding-bottom: 2rem;
}

@media (max-width: 768px) {
  .cp-search-form {
    grid-template-columns: 1fr;
  }
  .cp-search-form .btn-search { width: 100%; }
  .cp-list-item {
    grid-template-columns: 80px 1fr;
  }
  .cp-list-price {
    grid-column: 2;
    justify-self: start;
  }
  .cp-list-thumb { width: 80px; height: 64px; }
}

/* Inner pages — ClassiPress */
.theme-classipress .page-hero {
  background: linear-gradient(180deg, #eaf4fb 0%, #dceef8 100%);
  border-bottom: 1px solid #c5dde9;
  color: var(--cp-ink);
  padding: 2.25rem 0 1.85rem;
}

.theme-classipress .page-hero-inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding-inline: 1rem;
  box-sizing: border-box;
}

.theme-classipress .page-eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--cp-blue);
}

.theme-classipress .page-hero h1 {
  margin: 0 0 0.4rem;
  font-size: clamp(1.55rem, 3.5vw, 2rem);
  font-weight: 700;
  color: var(--cp-ink);
}

.theme-classipress .page-lead {
  margin: 0;
  max-width: 36rem;
  color: var(--cp-muted);
  font-size: 0.98rem;
}

.theme-classipress .hub-back a {
  color: var(--cp-blue);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
}
.theme-classipress .hub-back a:hover { text-decoration: underline; }
.theme-classipress .hub-empty {
  padding: 2rem 1.25rem;
  background: var(--cp-white);
  border: 1px dashed var(--cp-line);
  border-radius: var(--cp-radius);
  text-align: center;
  color: var(--cp-muted);
}
.theme-classipress .hub-demand-card {
  background: var(--cp-white);
  border: 1px solid var(--cp-line);
  border-radius: var(--cp-radius);
  padding: 1.15rem 1.25rem;
}

.theme-classipress .tb-cat-dropdown.dropdown-menu {
  border-color: var(--cp-line);
  border-radius: var(--cp-radius);
}
.theme-classipress .tb-cat-menu-all {
  background: #eaf4fb;
  color: var(--cp-blue);
}
.theme-classipress .tb-cat-menu-all:hover { background: #dceef8; color: var(--cp-blue-dark); }
.theme-classipress .tb-cat-link { color: var(--cp-ink); }
.theme-classipress .tb-cat-link:hover { background: #f3f7fa; color: var(--cp-blue); }
.theme-classipress .tb-cat-thumb--ph {
  background: #eaf4fb;
  color: var(--cp-blue);
}
.theme-classipress .tb-header .nav-link.show,
.theme-classipress .tb-header .nav-link:focus {
  color: var(--cp-blue);
}
.theme-classipress .hub-cat-block {
  background: var(--cp-white);
  border: 1px solid var(--cp-line);
  border-radius: var(--cp-radius);
}
.theme-classipress .hub-cat-block-ph {
  background: #eaf4fb;
  color: var(--cp-blue);
}
.theme-classipress .hub-cat-child-link:hover { color: var(--cp-blue); }
.theme-classipress .hub-cat-img {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 8px;
  object-fit: cover;
}

.theme-classipress .page-section {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 2.25rem 1rem;
  box-sizing: border-box;
}

.theme-classipress .page-section-alt {
  width: 100%;
  background: var(--cp-white);
  border-top: 1px solid var(--cp-line);
  border-bottom: 1px solid var(--cp-line);
  padding: 2.25rem 0;
}

.theme-classipress .page-section-alt > .container-tb {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.theme-classipress .page-section-head {
  margin-bottom: 1.25rem;
  border-bottom: 2px solid var(--cp-blue);
  padding-bottom: 0.55rem;
}

.theme-classipress .page-section-head h2 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--cp-blue);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.theme-classipress .page-section-head p {
  margin: 0.2rem 0 0;
  color: var(--cp-muted);
  font-size: 0.88rem;
  text-transform: none;
  font-weight: 400;
}

.theme-classipress .pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.theme-classipress .pricing-card {
  position: relative;
  background: var(--cp-white);
  border: 1px solid var(--cp-line);
  border-radius: var(--cp-radius);
  padding: 1.35rem 1.2rem;
  display: flex;
  flex-direction: column;
}

.theme-classipress .pricing-card-featured {
  border-color: var(--cp-blue);
  border-width: 2px;
  box-shadow: 0 4px 14px rgba(30, 136, 201, 0.12);
}

.theme-classipress .pricing-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: var(--cp-green);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem;
  border-radius: var(--cp-radius);
}

.theme-classipress .pricing-tier {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--cp-blue);
}

.theme-classipress .pricing-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--cp-ink);
  margin: 0.3rem 0 0.15rem;
}

.theme-classipress .pricing-price span {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--cp-muted);
}

.theme-classipress .pricing-note {
  margin: 0 0 0.9rem;
  color: var(--cp-muted);
  font-size: 0.88rem;
}

.theme-classipress .pricing-features {
  list-style: none;
  margin: 0 0 1.1rem;
  padding: 0;
  flex: 1;
}

.theme-classipress .pricing-features li {
  position: relative;
  padding: 0.4rem 0 0.4rem 1.25rem;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--cp-line);
}

.theme-classipress .pricing-features li:last-child { border-bottom: 0; }

.theme-classipress .pricing-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--cp-green);
  font-weight: 800;
}

.theme-classipress .pricing-cta {
  background: var(--cp-green) !important;
  border: 0 !important;
  color: #fff !important;
  font-weight: 700 !important;
  border-radius: var(--cp-radius) !important;
  padding: 0.65rem 1rem !important;
  width: 100%;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.85rem !important;
}

.theme-classipress .pricing-cta:hover {
  background: var(--cp-green-dark) !important;
  color: #fff !important;
}

.theme-classipress .pricing-cta:disabled,
.theme-classipress .pricing-cta[disabled] {
  opacity: 0.5;
  pointer-events: none;
}

.theme-classipress .pricing-cta-ghost {
  background: transparent !important;
  color: var(--cp-blue) !important;
  border: 1px solid var(--cp-blue) !important;
}

.theme-classipress .pricing-cta-ghost:hover {
  background: var(--cp-blue) !important;
  color: #fff !important;
}

.theme-classipress .boost-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.theme-classipress .boost-card {
  background: var(--cp-bg);
  border: 1px solid var(--cp-line);
  border-radius: var(--cp-radius);
  padding: 1.15rem;
}

.theme-classipress .boost-icon {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #eaf4fb;
  color: var(--cp-blue);
  margin-bottom: 0.65rem;
}

.theme-classipress .boost-card h3 {
  margin: 0 0 0.3rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--cp-ink);
}

.theme-classipress .boost-card p {
  margin: 0 0 0.65rem;
  color: var(--cp-muted);
  font-size: 0.88rem;
}

.theme-classipress .boost-card strong {
  font-size: 1.2rem;
  color: var(--cp-green);
  font-weight: 800;
}

.theme-classipress .checkout-bar {
  display: grid;
  grid-template-columns: 1.2fr 1.2fr auto;
  gap: 0.75rem;
  align-items: end;
  background: var(--cp-white);
  border: 1px solid var(--cp-line);
  border-radius: var(--cp-radius);
  padding: 1rem;
}

.theme-classipress .checkout-bar .pricing-cta {
  width: auto;
  min-width: 140px;
}

.theme-classipress .checkout-hint,
.theme-classipress .checkout-empty p {
  color: var(--cp-muted);
  font-size: 0.88rem;
  margin-top: 0.75rem;
}

.theme-classipress .checkout-empty {
  background: var(--cp-white);
  border: 1px dashed var(--cp-line);
  border-radius: var(--cp-radius);
  padding: 1.35rem;
  text-align: center;
}

.theme-classipress .checkout-empty .pricing-cta {
  width: auto;
  display: inline-block;
  margin-top: 0.45rem;
}

.theme-classipress .page-section .section-header h2 { color: var(--cp-blue); }

@media (max-width: 900px) {
  .theme-classipress .pricing-grid,
  .theme-classipress .boost-grid { grid-template-columns: 1fr; }
  .theme-classipress .checkout-bar { grid-template-columns: 1fr; }
  .theme-classipress .checkout-bar .pricing-cta { width: 100%; }
}
