/* Inner pages chrome — VoltCore */
:root {
  --page-hero-bg: linear-gradient(135deg, #FFF7F0 0%, #EEF2FF 55%, #F8FAFC 100%);
}

.page-breadcrumb {
  padding: .85rem 0;
  background: #fff;
  border-bottom: 1px solid rgba(18, 21, 38, .08);
}

.page-breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem .5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: .82rem;
  color: #64748b;
}

.page-breadcrumb li:not(:last-child)::after {
  content: "/";
  margin-left: .5rem;
  color: #cbd5e1;
}

.page-breadcrumb a {
  color: #475569;
  text-decoration: none;
  font-weight: 600;
}

.page-breadcrumb a:hover {
  color: var(--orange, #F58220);
}

.page-breadcrumb [aria-current="page"] span {
  color: #121526;
  font-weight: 700;
}

.page-hero {
  background: var(--page-hero-bg);
  padding: 2rem 0 1.75rem;
  border-bottom: 1px solid rgba(18, 21, 38, .06);
}

.page-hero h1 {
  margin: 0 0 .35rem;
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  font-weight: 800;
  color: #121526;
  letter-spacing: -.02em;
}

.page-hero p {
  margin: 0;
  color: #64748b;
  font-size: .95rem;
  max-width: 42rem;
}

.page-section {
  padding: 2rem 0 3rem;
}

.product-title a {
  color: inherit;
  text-decoration: none;
}

.product-title a:hover {
  color: var(--orange, #F58220);
}

/* Shop / category layout */
.shop-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 1.5rem;
  align-items: start;
}

@media (max-width: 991px) {
  .shop-layout {
    grid-template-columns: 1fr;
  }
}

.shop-filters {
  background: #fff;
  border: 1px solid rgba(18, 21, 38, .08);
  border-radius: 14px;
  padding: 1.1rem;
  position: sticky;
  top: 5.5rem;
}

.shop-filters h3 {
  font-size: .85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin: 0 0 .75rem;
  color: #121526;
}

.filter-group {
  margin-bottom: 1.1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(18, 21, 38, .06);
}

.filter-group:last-child {
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}

.filter-group label {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .88rem;
  color: #334155;
  margin-bottom: .45rem;
  cursor: pointer;
}

.shop-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.25rem;
}

.shop-toolbar select {
  border: 1px solid rgba(18, 21, 38, .12);
  border-radius: 10px;
  padding: .45rem .7rem;
  font-size: .88rem;
  background: #fff;
}

/* Product detail */
.pdp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

@media (max-width: 991px) {
  .pdp-grid {
    grid-template-columns: 1fr;
  }
}

.pdp-gallery {
  background: #fff;
  border: 1px solid rgba(18, 21, 38, .08);
  border-radius: 16px;
  padding: 1rem;
  position: sticky;
  top: 5.5rem;
}

.pdp-gallery img {
  width: 100%;
  border-radius: 12px;
  aspect-ratio: 1;
  object-fit: cover;
  background: #f8fafc;
}

.pdp-meta .brand-tag {
  margin-bottom: .35rem;
}

.pdp-meta h1 {
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  font-weight: 800;
  margin: 0 0 .75rem;
  color: #121526;
}

.pdp-price {
  display: flex;
  align-items: baseline;
  gap: .65rem;
  margin: 1rem 0 .35rem;
}

.pdp-price .price {
  font-size: 1.65rem;
  font-weight: 800;
  color: #121526;
}

.pdp-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin: 1.25rem 0;
}

.qty-box {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(18, 21, 38, .12);
  border-radius: 10px;
  overflow: hidden;
}

.qty-box button {
  width: 2.25rem;
  height: 2.5rem;
  border: 0;
  background: #f8fafc;
  font-weight: 700;
}

.qty-box input {
  width: 2.75rem;
  text-align: center;
  border: 0;
  border-inline: 1px solid rgba(18, 21, 38, .1);
  height: 2.5rem;
}

.btn-primary-shop,
.btn-outline-shop {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  padding: .7rem 1.15rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: .9rem;
  text-decoration: none;
  border: 0;
  cursor: pointer;
}

.btn-primary-shop {
  background: var(--orange, #F58220);
  color: #fff;
}

.btn-primary-shop:hover {
  filter: brightness(1.05);
  color: #fff;
}

.btn-outline-shop {
  background: #fff;
  color: #121526;
  border: 1px solid rgba(18, 21, 38, .15);
}

.pdp-tabs {
  margin-top: 2.5rem;
  background: #fff;
  border: 1px solid rgba(18, 21, 38, .08);
  border-radius: 16px;
  padding: 1.25rem 1.4rem;
}

.pdp-tabs h2 {
  font-size: 1.05rem;
  font-weight: 800;
  margin: 0 0 .75rem;
}

/* Cart / checkout pages */
.cart-page-layout,
.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 1.5rem;
  align-items: start;
}

@media (max-width: 991px) {
  .cart-page-layout,
  .checkout-layout {
    grid-template-columns: 1fr;
  }
}

.cart-table,
.account-panel,
.form-card,
.info-card,
.order-card {
  background: #fff;
  border: 1px solid rgba(18, 21, 38, .08);
  border-radius: 16px;
  padding: 1.25rem;
}

.cart-line {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(18, 21, 38, .06);
}

.cart-line:last-child {
  border-bottom: 0;
}

.cart-line img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 10px;
  background: #f8fafc;
}

.cart-line h3 {
  margin: 0 0 .25rem;
  font-size: .95rem;
  font-weight: 700;
}

.summary-box {
  background: #fff;
  border: 1px solid rgba(18, 21, 38, .08);
  border-radius: 16px;
  padding: 1.25rem;
  position: sticky;
  top: 5.5rem;
}

.summary-box h2 {
  font-size: 1rem;
  font-weight: 800;
  margin: 0 0 1rem;
}

.summary-box .sum-line {
  display: flex;
  justify-content: space-between;
  margin-bottom: .55rem;
  font-size: .9rem;
  color: #475569;
}

.summary-box .sum-line.total {
  margin-top: .75rem;
  padding-top: .75rem;
  border-top: 1px solid rgba(18, 21, 38, .08);
  font-weight: 800;
  color: #121526;
  font-size: 1.05rem;
}

/* Auth forms */
.auth-wrap {
  max-width: 420px;
  margin: 0 auto;
}

.auth-wrap .form-card h1 {
  font-size: 1.35rem;
  font-weight: 800;
  margin: 0 0 .35rem;
}

.form-field {
  margin-bottom: .9rem;
}

.form-field label {
  display: block;
  font-size: .82rem;
  font-weight: 700;
  margin-bottom: .35rem;
  color: #334155;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  border: 1px solid rgba(18, 21, 38, .14);
  border-radius: 10px;
  padding: .65rem .8rem;
  font-size: .92rem;
  font-family: inherit;
  background: #fff;
}

.form-field textarea {
  min-height: 120px;
  resize: vertical;
}

.form-hint {
  font-size: .82rem;
  color: #64748b;
  margin-top: .85rem;
}

.form-hint a {
  color: var(--orange, #F58220);
  font-weight: 700;
  text-decoration: none;
}

/* Account */
.account-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1.5rem;
}

@media (max-width: 767px) {
  .account-grid {
    grid-template-columns: 1fr;
  }
}

.account-nav a {
  display: block;
  padding: .55rem .75rem;
  border-radius: 10px;
  color: #334155;
  text-decoration: none;
  font-weight: 600;
  font-size: .9rem;
  margin-bottom: .25rem;
}

.account-nav a:hover,
.account-nav a.active {
  background: #FFF4EB;
  color: var(--orange, #F58220);
}

/* Compare */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(18, 21, 38, .08);
}

.compare-table th,
.compare-table td {
  padding: .85rem 1rem;
  border-bottom: 1px solid rgba(18, 21, 38, .06);
  text-align: left;
  font-size: .9rem;
  vertical-align: top;
}

.compare-table th {
  background: #f8fafc;
  font-weight: 800;
}

.compare-table img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 10px;
}

/* Info / legal */
.prose {
  max-width: 48rem;
  color: #334155;
  line-height: 1.65;
}

.prose h2 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #121526;
  margin: 1.5rem 0 .6rem;
}

.prose p {
  margin: 0 0 .85rem;
}

/* Blog */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}

.blog-post {
  max-width: 720px;
}

.blog-post .cover {
  aspect-ratio: 16/9;
  border-radius: 16px;
  margin-bottom: 1.25rem;
  display: grid;
  place-items: center;
  font-size: 3rem;
}

.empty-state {
  text-align: center;
  padding: 3rem 1.5rem;
  background: #fff;
  border-radius: 16px;
  border: 1px dashed rgba(18, 21, 38, .15);
}

.empty-state i {
  font-size: 2.5rem;
  color: var(--orange, #F58220);
  margin-bottom: .75rem;
}

.empty-state h2 {
  margin: 0 0 .4rem;
  font-size: 1.2rem;
}

.brand-grid-page {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 1rem;
}

.brand-grid-page .brand-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  padding: 1.25rem .75rem;
  background: #fff;
  border: 1px solid rgba(18, 21, 38, .08);
  border-radius: 14px;
  text-decoration: none;
  color: #121526;
  font-weight: 700;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}

.brand-grid-page .brand-card i {
  font-size: 1.75rem;
  color: var(--orange, #F58220);
}

.brand-grid-page .brand-card:hover {
  transform: translateY(-3px);
  border-color: rgba(245, 130, 32, .35);
  box-shadow: 0 12px 28px rgba(18, 21, 38, .08);
}

.error-page {
  text-align: center;
  padding: 4rem 1rem;
}

.error-page .code {
  font-size: 4rem;
  font-weight: 800;
  color: var(--orange, #F58220);
  line-height: 1;
}

.thankyou-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #ECFDF5;
  color: #059669;
  display: grid;
  place-items: center;
  font-size: 1.75rem;
  margin: 0 auto 1rem;
}

/* Quotation / 3-level packages */
.quote-page .quote-intro {
  margin-bottom: 1.75rem;
}

.quote-page .quote-intro p {
  margin: 0 0 1rem;
  color: #334155;
  line-height: 1.6;
}

.quote-intro-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem 1.25rem;
  font-size: .85rem;
  font-weight: 700;
  color: #475569;
}

.quote-intro-meta i {
  color: var(--orange, #F58220);
  margin-right: .35rem;
}

.tier-cards {
  display: grid;
  gap: 1.5rem;
}

.tier-card {
  background: #fff;
  border: 1px solid rgba(18, 21, 38, .08);
  border-radius: 18px;
  overflow: hidden;
  border-top: 4px solid #94a3b8;
}

.tier-card.tier-basic { border-top-color: #64748b; }
.tier-card.tier-advanced { border-top-color: var(--orange, #F58220); box-shadow: 0 16px 40px rgba(18, 21, 38, .06); }
.tier-card.tier-premium { border-top-color: #121526; }

.tier-card > header {
  padding: 1.35rem 1.4rem 1rem;
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
  border-bottom: 1px solid rgba(18, 21, 38, .06);
}

.tier-badge {
  display: inline-block;
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #64748b;
  margin-bottom: .35rem;
}

.tier-advanced .tier-badge { color: var(--orange, #F58220); }
.tier-premium .tier-badge { color: #121526; }

.tier-card h2 {
  margin: 0 0 .35rem;
  font-size: 1.35rem;
  font-weight: 800;
  color: #121526;
}

.tier-tagline {
  margin: 0 0 .85rem;
  color: #64748b;
  font-size: .92rem;
}

.tier-price {
  font-size: 1.45rem;
  font-weight: 800;
  color: #121526;
  letter-spacing: -.02em;
}

.tier-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1rem;
  margin-top: .5rem;
  font-size: .82rem;
  font-weight: 600;
  color: #475569;
}

.tier-meta i { margin-right: .3rem; color: var(--orange, #F58220); }

.tier-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

@media (max-width: 767px) {
  .tier-cols { grid-template-columns: 1fr; }
}

.tier-cols > div {
  padding: 1.15rem 1.4rem 1.35rem;
}

.tier-cols > div:first-child {
  border-right: 1px solid rgba(18, 21, 38, .06);
}

@media (max-width: 767px) {
  .tier-cols > div:first-child {
    border-right: 0;
    border-bottom: 1px solid rgba(18, 21, 38, .06);
  }
}

.tier-cols h3 {
  font-size: .8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin: 0 0 .75rem;
  color: #121526;
}

.tier-cols h3 i {
  color: var(--orange, #F58220);
  margin-right: .35rem;
}

.tier-cols ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.tier-cols li {
  position: relative;
  padding: .35rem 0 .35rem 1.15rem;
  font-size: .88rem;
  color: #334155;
  line-height: 1.45;
  border-bottom: 1px dashed rgba(18, 21, 38, .05);
}

.tier-cols li:last-child { border-bottom: 0; }

.tier-cols li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .7rem;
  width: .45rem;
  height: .45rem;
  border-radius: 50%;
  background: var(--orange, #F58220);
  opacity: .85;
}

.quote-section-title {
  margin: 2.5rem 0 1rem;
  font-size: 1.2rem;
  font-weight: 800;
  color: #121526;
}

.compare-scroll {
  overflow-x: auto;
  border-radius: 16px;
  border: 1px solid rgba(18, 21, 38, .08);
  background: #fff;
}

.feature-matrix {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-size: .88rem;
}

.feature-matrix th,
.feature-matrix td {
  padding: .75rem 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(18, 21, 38, .06);
  vertical-align: top;
}

.feature-matrix thead th {
  background: #121526;
  color: #fff;
  font-weight: 700;
  font-size: .82rem;
}

.feature-matrix tbody th {
  font-weight: 700;
  color: #121526;
  background: #f8fafc;
  width: 28%;
}

.feature-matrix tbody td {
  color: #475569;
}

.quote-doc-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: .75rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(18, 21, 38, .08);
}

.quote-doc .muted { color: #64748b; font-size: .88rem; }

.quote-money {
  width: 100%;
  border-collapse: collapse;
}

.quote-money td {
  padding: .55rem 0;
  border-bottom: 1px solid rgba(18, 21, 38, .06);
  color: #334155;
}

.quote-money td:last-child {
  text-align: right;
  font-weight: 700;
  white-space: nowrap;
}

.quote-money tr.total td {
  font-weight: 800;
  color: #121526;
  border-top: 1px solid rgba(18, 21, 38, .12);
  padding-top: .85rem;
}

.quote-money tr.grand td {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--orange, #F58220);
  border-bottom: 0;
}

.quote-cta {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin-top: 1.25rem;
}

.addon-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.addon-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .65rem 0;
  border-bottom: 1px solid rgba(18, 21, 38, .06);
  font-size: .92rem;
  color: #334155;
  font-weight: 600;
}

.addon-list li:last-child { border-bottom: 0; }

.addon-list li span:last-child {
  color: #121526;
  font-weight: 800;
  white-space: nowrap;
}

.quote-addons { margin-top: 1.5rem; }

.quote-tech-lead {
  margin: -.35rem 0 1.15rem;
  color: #64748b;
  font-size: .92rem;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
}

.tech-card {
  background: #fff;
  border: 1px solid rgba(18, 21, 38, .08);
  border-radius: 14px;
  padding: 1.15rem 1.2rem 1.25rem;
}

.tech-card-ico {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 10px;
  background: #FFF4EB;
  color: var(--orange, #F58220);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  margin-bottom: .75rem;
}

.tech-card h3 {
  margin: 0 0 .2rem;
  font-size: .98rem;
  font-weight: 800;
  color: #121526;
}

.tech-role {
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--orange, #F58220);
  margin-bottom: .55rem;
}

.tech-card p {
  margin: 0;
  font-size: .85rem;
  line-height: 1.55;
  color: #475569;
}

.tech-flow-list {
  margin: 0;
  padding-left: 1.15rem;
  color: #334155;
  font-size: .9rem;
  line-height: 1.65;
}

.tech-flow-list li {
  margin-bottom: .45rem;
}

.tech-flow-list li:last-child {
  margin-bottom: 0;
}


