/**
 * ============================================================
 * TRICERA PRINT — REFERENCE STYLESHEET
 * ============================================================
 *
 * This is a REFERENCE stylesheet showing the structural styles
 * the pricing calculators expect. Your web designer should
 * adapt these to match the site's design system.
 *
 * The class names below are what the HTML partials use.
 * All classes are listed in order of appearance in the HTML.
 *
 * NOTE: Inline styles on paper list items are generated by JS.
 * The developer may want to move those to CSS classes instead.
 *
 * ============================================================
 */

/* ============================================================
   MAIN & WRAPPER
   ============================================================ */
.tricera-calculator__wrapper {
  display: flex;
  min-height: 100vh;
  border: 1px solid #C8C4BB;
  border-radius: 10px;
}
.tricera-calculator__main {
  flex: 1;
  padding: 3.5rem 2.5rem 2.5rem 2.5rem;
}
@media (max-width: 43.75rem) {
  .tricera-calculator__wrapper { 
    flex-direction: column; 
  }
  .tricera-calculator__main { 
    padding: 2.5rem 1.5rem 2.5rem 1.5rem;
  }
}

/* ============================================================
   SECTIONS
   ============================================================ */
.tricera-calculator__section { 
  display: none; 
}
.tricera-calculator__section.active { 
  display: block; 
}
.tricera-calculator__section .section-header {
  display: none;
  margin-bottom: 32px;
}
.tricera-calculator__section .section-title {
  margin-top: -0.25rem;
  font-size: 28px;
  font-weight: 800;
  color: #222;
  margin-bottom: 8px;
}
.tricera-calculator__section .section-subtitle {
  font-size: 16px;
  color: #666;
}


/* ============================================================
   COMMON ELEMENTS
   ============================================================ */

.label {
  font-family: "PP Neue Corp","Times New Roman",Times, serif;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 1%;
  color: #222;
  margin-bottom: 0.75rem;
  display: block;
}
.label + .form-row {
  margin-top: 0;
}
.tp-label--secondary {
  font-size: 12px;
  letter-spacing: 1%;
  color: #222;
  margin-bottom: 0.25rem;
}
.divider {
  height: 1px;
  background: #e0e0e0;
  margin: 32px 0;
}
.hero-blurb {
  font-size: 1.375rem;
  letter-spacing: 0.015rem;
  color: #6E6E6E;
  margin-bottom: 40px;
  margin-top: 0;
}
.tp-helper-text {
  margin-bottom: 16px;
}


/* ============================================================
   SIDEBAR
   ============================================================ */
.tricera-calculator__sidebar {
  position: sticky;
  top: 3.125rem;
  height: 100%;
  width: 23.75rem;
  background: transparent;
  overflow-y: auto;
  padding: 3.5rem 2.5rem 2.5rem 2.5rem;
}
.tricera-calculator__sidebar__item {
  display: block;
  text-decoration: none;
  cursor: pointer;
  color: #C8C4BB;
  opacity: 1;
  font-size: 2.188rem;
  line-height: 1.875rem;
  font-weight: 700;
  margin-bottom: 0.9rem;
  font-family: "PP Neue Corp","Times New Roman",Times, serif;
  text-transform: uppercase;
  transition: all 0.15s ease;
}
.tricera-calculator__sidebar__item:hover {
  opacity: 0.8;
}
.tricera-calculator__sidebar__item.active {
  color: #222;
}
.tricera-calculator__sidebar__item.disabled {
  cursor: not-allowed;
}
@media (max-width: 43.75rem) {
  .tricera-calculator__sidebar { 
    top: 0;
    padding: 2.5rem 1.5rem 0 1.5rem;
    width: 100%; 
    height: auto; 
    position: relative; 
  }
}


/* ============================================================
   UNIT TOGGLE (Inches / Centimeters)
   ============================================================ */

.unit-toggle {
  display: flex;
  gap: 24px;
  margin-bottom: 3rem;
}
.unit-option {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.unit-radio {
  width: 18px;
  height: 18px;
  border: 1px solid #C8C4BB;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.unit-radio.selected::after {
  content: '';
  width: 10px;
  height: 10px;
  background: #222;
  border-radius: 50%;
}
.unit-label {
  font-family: "PP Neue Corp","Times New Roman",Times, serif;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 1%;
  color: #222;
}


/* ============================================================
   FORM INPUTS
   ============================================================ */

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 2.5rem;
  margin-top: 2.5rem;
}
.form-group {
  display: flex;
  flex-direction: column;
}
.form-input,
.form-select {
  padding: 0.875rem 1.25rem;
  border: 1px solid #9B9A96;
  border-radius: 0.188rem;
  font-size: 1.063rem;
  text-transform: uppercase;
  font-family: "PP Neue Corp","Times New Roman",Times, serif;
  font-weight: 500;
  letter-spacing: 1%;
  background: transparent;
  color: #222;
}
.form-input:focus,
.form-select:focus {
  outline: none;
  border-color: #9B9A96;
  background: #fff;
}
/* Hide number spinners */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
}
input[type="number"] {
  -moz-appearance: textfield;
}


/* ============================================================
   OPTION CARDS (radio-style selection grid)
   ============================================================ */

.options-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}
.option-card {
  background: transparent;
  border: 1px solid #9B9A96;
  border-radius: 0.188rem;
  padding: 20px;
  cursor: pointer;
  transition: all 0.15s ease;
}
.option-card:hover {
  border-color: #ccc;
}
.option-card.selected {
  border-color: #222;
  background: #fff;
}
.option-card.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.option-radio {
  width: 20px;
  height: 20px;
  border: 1px solid #6E6E6E;
  border-radius: 50%;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.option-card.selected .option-radio {
  border-color: #222;
  background: transparent;
}
.option-card.selected .option-radio::after {
  content: '';
  width: 10px;
  height: 10px;
  background: #222;
  border-radius: 100px;
}
.option-name {
  font-size: 1.5rem;
  font-weight: 500;
  color: #6E6E6E;
  text-transform: uppercase;
  letter-spacing: 1%;
  font-family: "PP Neue Corp","Times New Roman",Times, serif;
  margin-bottom: 4px;
}
.option-card.selected .option-name {
  color: #222;
}
.option-price {
  font-size: 1.125rem;
  color: #6E6E6E;
  margin-top: 1rem;
  text-transform: uppercase;
  letter-spacing: 3%;
  font-family: "PP Neue Corp","Times New Roman",Times, serif;
}
.option-note {
  font-size: 0.875rem;
  color: #6E6E6E;
  margin-top: 1rem;
  text-transform: uppercase;
  letter-spacing: 3%;
  font-family: "PP Neue Corp","Times New Roman",Times, serif;
}
.option-price + .option-note {
  margin-top: 0;
}


/* ============================================================
   CHECKBOX ITEMS (multi-select add-ons)
   ============================================================ */

.checkbox-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}
.checkbox-item {
  background: transparent;
  border: 1px solid #9B9A96;
  border-radius: 0.188rem;
  padding: 16px 20px;
  cursor: pointer;
  display: flex;
  gap: 16px;
  transition: all 0.15s ease;
}
.checkbox-item:hover {
  border-color: #ccc;
}
.checkbox-item.selected {
  border-color: #222;
  background: #fff;
}
.checkbox-item.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.checkbox-box {
  width: 18px;
  height: 18px;
  border: 1px solid #6E6E6E;
  border-radius: 0.188rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  top: 0.5rem;
}
.checkbox-item.selected .checkbox-box {
  border-color: #222;
  background: #222;
}
.checkbox-item.selected .checkbox-box::after {
  content: '\2713';
  color: white;
  font-size: 14px;
  font-weight: bold;
}
.checkbox-details {
  flex: 1;
}
.checkbox-name {
  font-size: 1.5rem;
  font-weight: 500;
  color: #222;
  text-transform: uppercase;
  letter-spacing: 1%;
  font-family: "PP Neue Corp","Times New Roman",Times, serif;
}
.checkbox-desc {
  font-size: 1.125rem;
  color: #6E6E6E;
  margin-top: 1rem;
  text-transform: uppercase;
  letter-spacing: 3%;
  font-family: "PP Neue Corp","Times New Roman",Times, serif;
}
.checkbox-price {
  font-weight: 400;
  font-size: 1.125rem;
  color: #6E6E6E;
  text-transform: uppercase;
  letter-spacing: 3%;
  font-family: "PP Neue Corp","Times New Roman",Times, serif;
}


/* ============================================================
   PRICE DISPLAY
   ============================================================ */

.price-section {
  background: white;
  border: 1px solid #6E6E6E;
  border-radius: 0.188rem;
  padding: 32px;
  margin-top: 24px;
}
.price-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}
.price-label {
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 3%;
  color: #666;
  margin-bottom: 4px;
  font-family: "PP Neue Corp","Times New Roman",Times, serif;
}
.price-value {
  font-size: 48px;
  font-weight: 900;
  color: #222;
  line-height: 1;
}
.price-value.placeholder {
  color: #ccc;
}
.price-per-unit {
  font-family: "PP Neue Corp","Times New Roman",Times, serif;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 3%;
  color: #9B9A96;
  text-transform: uppercase;
  margin-top: 8px;
}
.price-badge {
  border-radius: 20px;
  color: #51755B;
  text-transform: uppercase;
  font-family: "PP Neue Corp","Times New Roman",Times, serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 3%;
}
.price-breakdown {
  border-top: 1px solid #e5e5e5;
  padding-top: 16px;
}
.price-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-family: "PP Neue Corp","Times New Roman",Times, serif;
  font-weight: 500;
  letter-spacing: 3%;
  color: #9B9A96;
  text-transform: uppercase;
  font-size: 1.125rem;
}
.price-row.total {
  font-weight: 700;
  color: #222;
  font-size: 16px;
  border-top: 1px solid #e5e5e5;
  padding-top: 12px;
  margin-top: 12px;
  letter-spacing: 3%;
  text-transform: uppercase;
  font-size: 1.5rem;
}


/* ============================================================
   QUANTITY / VOLUME TIERS
   ============================================================ */

.quantity-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #e5e5e5;
}
.tier {
  background: #f9f9f9;
  border: 1px solid transparent;
  border-radius: 0.188rem;
  padding: 16px;
  text-align: center;
  cursor: pointer;
}
.tier:hover {
  border-color: #ccc;
}
.tier.selected {
  border-color: #6E6E6E;
  background: #fff;
  color: #222;
}
.tier-range {
  font-family: "PP Neue Corp","Times New Roman",Times, serif;
  font-size: 0.731rem;
  font-weight: 500;
  letter-spacing: 3%;
  color: #9B9A96;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.tier-price {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 3%;
}
.tier-each {
  font-family: "PP Neue Corp","Times New Roman",Times, serif;
  font-size: 0.731rem;
  font-weight: 500;
  letter-spacing: 3%;
  color: #9B9A96;
  text-transform: uppercase;
  margin-top: 2px;
}
.tier-savings {
  color: #51755B;
  margin-top: 4px;
  text-transform: uppercase;
  font-family: "PP Neue Corp","Times New Roman",Times, serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 3%;
}


/* ============================================================
   INFO BOX (callout)
   ============================================================ */

.info-box {
  border-top: 1px solid #9B9A96;
  padding: 1.25rem 0px;
  margin-top: 24px;
}
.info-box {
  align-content: center;
  align-content: center;
  display: flex;
}
.info-box svg {
  margin-right: 1.5rem;
  width: 1.563rem;
  position: relative;
  top: 0.25rem;
}
.info-box p {
  flex: 1;
  margin: 0;
  color: #6E6E6E;
  font-size: 1.375rem;
  line-height: 1.875rem;
}
.info-box p span {
  color: #222;
}
.info-box + .info-box {
  margin-top: 0;
}
@media (max-width: 43.75rem) {
  .info-box p {
    font-size: 1rem;
    line-height: 1.25rem;
  }
}

/* ============================================================
   EXPANDABLE SECTIONS
   ============================================================ */

.expandable {
  border: 1px solid #9B9A96;
  border-radius: 0.188rem;
  overflow: hidden;
  margin-bottom: 24px;
  margin-top: 24px;
}
.expandable-header {
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.expandable-header:hover {
  background: #fafafa;
}
.expandable-title {
  font-family: "PP Neue Corp","Times New Roman",Times, serif;
  font-size: 1.063rem;
  font-weight: 500;
  letter-spacing: 1%;
  text-transform: uppercase;
  color: #222;
}
.expandable-toggle {
  font-weight: 700;
  color: #222;
  font-family: "PP Neue Corp","Times New Roman",Times, serif;
  font-size: 0.875rem;
  letter-spacing: 3%;
  text-transform: uppercase;
}
.expandable-content {
  padding: 0 24px 24px;
  display: none;
}
.expandable-content.open {
  display: block;
}
.expandable-content h4 {
  font-size: 1.375rem;
  letter-spacing: 0.015rem;
  line-height: 1.35;
  margin-top: 2rem;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.expandable-content p {
  margin-top: 0;
}


/* ============================================================
   PRICING CARD (Consulting rate card)
   ============================================================ */

.pricing-card {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 0.188rem;
  padding: 32px;
  margin-bottom: 32px;
}
.pricing-title {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #666;
  margin-bottom: 8px;
}
.pricing-rate {
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
}
.pricing-unit {
  font-size: 18px;
  font-weight: 400;
  color: #666;
}
.pricing-details {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #e5e5e5;
}
.pricing-detail-row {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  color: #555;
  margin-bottom: 12px;
}
.pricing-detail-row:last-child {
  margin-bottom: 0;
}
.pricing-detail-value {
  font-weight: 600;
  color: #222;
}


/* ============================================================
   PAPER COLUMNS (Print calculator)
   ============================================================ */

.tp-paper-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
  margin-top: 0.8rem;
}
.tp-paper-column {
  background: transparent;
  border: 1px solid #9B9A96;
  border-radius: 0.188rem;
  overflow: hidden;
}
.tp-paper-column-header {
  padding: 14px 20px;
  font-family: "PP Neue Corp","Times New Roman",Times, serif;
  font-size: 1.063rem;
  font-weight: 500;
  letter-spacing: 1%;
  text-transform: uppercase;
  color: #222;
  border-bottom: 1px solid #9B9A96;
}
.tp-paper-item__label {
  font-family: "PP Neue Corp","Times New Roman",Times, serif;
  font-size: 1.063rem;
  font-weight: 500;
  letter-spacing: 1%;
  color: #9B9A96;
  text-transform: uppercase;
}
.tp-paper-item.selected .tp-paper-item__label {
  color: #222;
}
.tp-paper-item__cost {
  font-size: 1.125rem !important;
  font-weight: 400 !important;
  color: #6E6E6E;
  text-transform: uppercase;
  letter-spacing: 3%;
  font-family: "PP Neue Corp","Times New Roman",Times, serif;
}
.tp-paper-item.selected .tp-paper-item__cost {
  color: #222;
}

/* ============================================================
   SIZE VALIDATION MESSAGE (Mounting)
   ============================================================ */

.tp-size-msg {
  background: #fef3cd;
  border: 1px solid #ffc107;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14px;
  color: #856404;
  margin-bottom: 16px;
}


/* ============================================================
   SIZE CATEGORY BADGE (Art Reproduction)
   ============================================================ */

.tp-size-category {
  background: white;
  border: 1px solid #222;
  border-radius: 0.188rem;
  padding: 20px 24px;
  margin-bottom: 24px;
}
.tp-size-category__label {
 font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #666;
  margin-bottom: 4px;
}
.tp-size-category__name {
  font-size: 1.5rem;
  font-weight: 500;
  color: #222;
  text-transform: uppercase;
  letter-spacing: 1%;
  font-family: "PP Neue Corp","Times New Roman",Times, serif;
}
.tp-size-category__price {
  font-size: 1.125rem;
  color: #6E6E6E;
  margin-top: 1rem;
  text-transform: uppercase;
  letter-spacing: 3%;
  font-family: "PP Neue Corp","Times New Roman",Times, serif;
}


/* ============================================================
   CONSULTING — INCLUDED LIST & CONSULTING LIST
   ============================================================ */

.tp-included-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.tp-included-list li {
  /*
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 15px;
  color: #333;
  line-height: 1.5;
  */
}
.tp-included-icon {
  /*
  width: 22px;
  height: 22px;
  background: #4a7c4e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  */
  display: none;
}
.tp-included-icon::after {
  content: '\2713';
  color: white;
  font-size: 12px;
  font-weight: bold;
}
.tp-consulting-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.tp-consulting-list li {
  /*
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 15px;
  color: #333;
  line-height: 1.5;
  */
}
.tp-consulting-list li:before {
  top: 1.85rem;
}
.tp-consulting-bullet {
  /* width: 6px;
  height: 6px;
  background: #222;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 8px;
  */
  display: none;
}
.pricing-detail-row--secondary {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #e5e5e5;
}
.pricing-detail-label {
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #666;
  margin-bottom: 4px;
  font-family: "PP Neue Corp","Times New Roman",Times, serif;
}


/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */

@media (max-width: 43.75rem) {
  .form-row {
    grid-template-columns: 1fr;
  }
  .options-grid {
    grid-template-columns: 1fr;
  }
  .quantity-tiers {
    grid-template-columns: 1fr;
  }
  .tp-paper-columns {
    grid-template-columns: 1fr;
  }
  .price-value {
    font-size: 36px;
  }
  .pricing-rate {
    font-size: 36px;
  }
}
