/* =========================
   Select Print – Theme
   ========================= */

:root {
  /* Core colors */
  --sp-dark: #222222;
  --sp-light: #ffffff;
  --sp-soft: #F7F7F7;
  --sp-primary: #1F3A5F;

  /* Text */
  --sp-text: #222222;
  --sp-muted: #6c757d;

  /* Borders */
  --sp-border: #e0e0e0;
}

/* =========================
   Base
   ========================= */

/*Inter*/

@font-face {
  font-family: 'Inter';
  src: url('/assets/font/Inter-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('/assets/font/Inter-Italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}


@font-face {
  font-family: 'Inter';
  src: url('/assets/font/Inter-Bold.woff2') format('woff2');
  font-weight: 500;
  font-style: bold;
  font-display: swap;
}




/*Playfair Display*/

@font-face {
  font-family: 'Playfair Display';
  src: url('/assets/font/PlayfairDisplay-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}



@font-face {
  font-family: 'Playfair Display';
  src: url('/assets/font/PlayfairDisplaySC-Bold.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}






body {
  color: var(--sp-text);
  background-color: var(--sp-light);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--sp-dark);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}


p {
  color: var(--sp-dark);
  font-family: 'Inter', sans-serif;
}

a {
  color: var(--sp-primary);
  /* text-decoration: none; */
}

a:hover {
  color: #162c49;
  /* по-тъмен нюанс */
  text-decoration: none;
}

/* =========================
   Header / Footer
   ========================= */

header,
footer {
  background-color: var(--sp-dark);
  color: var(--sp-light);
}

header a,
footer a {
  color: var(--sp-light);
}

header a:hover,
footer a:hover {
  opacity: 0.8;
}

/* =========================
   Sections
   ========================= */

.section-soft {
  background-color: var(--sp-soft);
}

/* =========================
   Buttons
   ========================= */
.go-btn {
  border-color: var(--sp-border);
  border-radius: 14px;
}

.btn-primary {
  --bs-btn-bg: var(--sp-primary);
  --bs-btn-border-color: var(--sp-primary);
  --bs-btn-hover-bg: #162c49;
  --bs-btn-hover-border-color: #162c49;
  --bs-btn-color: #ffffff;
}

/* Outline button */
.btn-outline-primary {
  --bs-btn-color: var(--sp-primary);
  --bs-btn-border-color: var(--sp-primary);
  --bs-btn-hover-bg: var(--sp-primary);
  --bs-btn-hover-color: #ffffff;
}

/* =========================
   Cards
   ========================= */

.card {
  border-color: var(--sp-border);
  border-radius: 14px;
}

/* =========================
   Forms
   ========================= */

.form-control:focus {
  border-color: var(--sp-primary);
  box-shadow: 0 0 0 0.2rem rgba(31, 58, 95, 0.15);
}


.upload-box {
  border: 2px dashed var(--sp-border);
  border-radius: 16px;
  background-color: var(--sp-soft);
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.upload-box:hover {
  border-color: var(--sp-primary);
  background-color: #ffffff;
}

.upload-icon {
  font-size: 2.5rem;
}

/*
.hero-cta {
  margin-bottom: 20px;
}*/

@media (max-width: 768px) {
  .hero-cta {
    margin-bottom: 20px;
  }
}



.empty-icon {
  font-size: 2.5rem;
}

.photo-card {
  border: 1px solid var(--sp-border);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  position: relative;
  height: 100%;
}

.photo-thumb {
  aspect-ratio: 4 / 3;
  background: var(--sp-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}

.photo-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.photo-meta {
  padding: 12px;
}

.photo-btn {
  border: 0;
  background: rgba(34, 34, 34, 0.85);
  color: #fff;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}

.photo-btn:hover {
  background: rgba(31, 58, 95, 0.95);
  /* sp-primary нюанс */
}

.photo-qty {
  max-width: 80px;
}



.option-card {
  display: block;
  cursor: pointer;
}

.option-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.option-body {
  display: block;
  border: 1px solid var(--sp-border);
  border-radius: 14px;
  background: #fff;
  padding: 16px;
  height: 100%;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.option-title {
  font-weight: 700;
}

.option-price {
  font-weight: 600;
  color: var(--sp-primary);
}

.option-text {
  display: block;
  color: var(--sp-muted);
  font-size: 0.95rem;
}

.option-card:hover .option-body {
  border-color: var(--sp-primary);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.option-input:checked+.option-body {
  border-color: var(--sp-primary);
  box-shadow: 0 0 0 0.2rem rgba(31, 58, 95, 0.12);
}

.note-box {
  background: #fff;
  border: 1px solid var(--sp-border);
  border-radius: 14px;
  padding: 14px 16px;
  color: var(--sp-text);
}




/* Mini cards (ляво) */
.mini-card {
  border: 1px solid var(--sp-border);
  border-radius: 14px;
  background: #fff;
  padding: 14px 16px;
  height: 100%;
}

.mini-label {
  font-size: 0.85rem;
  color: var(--sp-muted);
  margin-bottom: 6px;
}

.mini-value {
  font-weight: 700;
  color: var(--sp-text);
  font-size: 1.05rem;
}

.mini-link {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.9rem;
  color: var(--sp-primary);
}

.mini-hint {
  display: inline-block;
  margin-top: 6px;
  font-size: 0.9rem;
}

/* Summary card (дясно) */
.summary-card {
  border: 1px solid var(--sp-border);
  border-radius: 16px;
  background: #fff;
  padding: 18px 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.summary-title {
  font-weight: 800;
  font-size: 1.1rem;
}

.summary-sub {
  font-size: 0.95rem;
}

.summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 10px 0;
}

.summary-total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  font-weight: 800;
  font-size: 1.25rem;
}







.accordion-item {
  border: 1px solid var(--sp-border);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
}

.accordion-button {
  font-weight: 600;
}

.accordion-button:not(.collapsed) {
  color: var(--sp-primary);
  background: #fff;
  box-shadow: none;
}

.accordion-button:focus {
  border-color: var(--sp-primary);
  box-shadow: 0 0 0 0.2rem rgba(31, 58, 95, 0.12);
}





#seo-text p {
  color: var(--sp-text);
  line-height: 1.7;
}

#seo-text strong {
  font-weight: 600;
}







/* Navbar brand */
.navbar-brand {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 1.6rem;
}

/* Active nav link */
.navbar .nav-link.active {
  color: #fff !important;
  opacity: 1;
  position: relative;
}

.navbar .nav-link.active::after {
  content: "";
  position: absolute;
  left: 0.5rem;
  right: 0.5rem;
  bottom: 0.25rem;
  height: 2px;
  background: var(--sp-primary);
  border-radius: 2px;
}

/* Dropdown */
.dropdown-menu {
  border-radius: 14px;
  border: 1px solid var(--sp-border);
  overflow: hidden;
}

.dropdown-item:active,
.dropdown-item:focus {
  background: var(--sp-primary);
}

.dropdown-item.active {
  background: var(--sp-primary);
  color: #fff;
}






.site-footer {
  background: var(--sp-dark);
  color: var(--sp-light);
}

.footer-brand {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--sp-light);
  text-decoration: none;
  font-size: 1.6rem;
}

.footer-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.75rem;
  color: var(--sp-light);
}

.footer-text {
  color: rgba(255, 255, 255, 0.75);
  max-width: 42ch;
}

.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 0.5rem;
}

.footer-links a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--sp-light);
  text-decoration: underline;
}

.footer-label {
  display: block;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.1rem;
}

.footer-note {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
}

.footer-hr {
  border-color: rgba(255, 255, 255, 0.12);
  opacity: 1;
}

.footer-muted {
  color: rgba(255, 255, 255, 0.65);
}

.footer-muted-link {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
}

.footer-muted-link:hover {
  color: var(--sp-light);
  text-decoration: underline;
}










.price-card {
  border: 1px solid var(--sp-border);
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.price-head {
  padding: 16px;
  background: #fff;
  border-bottom: 1px solid var(--sp-border);
}

.price-size {
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--sp-text);
}

.price-sub {
  color: var(--sp-muted);
  font-size: 0.95rem;
}

.price-body {
  padding: 16px;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.08);
}

.price-row:last-of-type {
  border-bottom: 0;
}

.price-includes {
  letter-spacing: 0.02em;
}

.price-main {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  padding: 10px 0 2px;
}

.price-amount {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--sp-text);
  line-height: 1;
}

.price-currency {
  font-weight: 700;
  color: var(--sp-primary);
}

.price-per {
  color: var(--sp-muted);
  font-size: 0.95rem;
}









.size-card {
  border: 1px solid var(--sp-border);
  border-radius: 16px;
  background: #fff;
  padding: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.size-title {
  font-weight: 800;
  font-size: 1.3rem;
  margin-bottom: 6px;
  font-family: 'Inter', sans-serif;
}

.size-sub {
  color: var(--sp-muted);
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.size-list {
  padding-left: 18px;
  margin: 0;
}

.size-list li {
  margin-bottom: 6px;
}








.paper-card {
  border: 1px solid var(--sp-border);
  border-radius: 16px;
  background: #fff;
  padding: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.paper-card-featured {
  border-color: rgba(31, 58, 95, 0.45);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.10);
}

.paper-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.paper-title {
  font-weight: 800;
  font-size: 1.2rem;
  margin: 0;
}

.paper-text {
  color: var(--sp-text);
  margin-bottom: 12px;
}

.paper-list {
  padding-left: 18px;
  margin: 0 0 14px 0;
  color: var(--sp-muted);
}

.paper-list li {
  margin-bottom: 6px;
}

.paper-best {
  background: var(--sp-soft);
  border: 1px solid var(--sp-border);
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 0.95rem;
}

.guide-grid {
  display: grid;
  gap: 12px;
}

@media (min-width: 768px) {
  .guide-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.guide-item {
  border: 1px solid var(--sp-border);
  border-radius: 14px;
  padding: 14px 16px;
  background: #fff;
}

.guide-title {
  font-weight: 700;
  margin-bottom: 4px;
}

.guide-text {
  color: var(--sp-muted);
}







.info-card {
  border: 1px solid var(--sp-border);
  border-radius: 16px;
  background: #fff;
  padding: 18px 18px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.info-title {
  color: var(--sp-muted);
  font-size: 0.9rem;
  margin-bottom: 6px;
}

.info-main {
  font-weight: 800;
  font-size: 1.15rem;
  margin-bottom: 6px;
  color: var(--sp-text);
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: start;
}

.timeline-badge {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #fff;
  background: var(--sp-primary);
}

.timeline-title {
  font-weight: 800;
  margin-bottom: 2px;
}

.timeline-text {
  margin: 0;
}







.contact-box {
  border: 1px solid var(--sp-border);
  border-radius: 16px;
  background: #fff;
  padding: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.contact-item {
  margin-bottom: 12px;
}

.contact-label {
  font-size: 0.85rem;
  color: var(--sp-muted);
  margin-bottom: 2px;
}


.contact-list {
  list-style-type: none;
}


.size-test {
  max-width: 400px;
  background: var(--sp-muted);
  padding: 1, 5rem;
  margin: 30px;
}




.frameSizeLabel {
  font-family: 'Inter';
  font-size: 1.2rem;
}

.upsell-img {
  object-fit: cover;
  min-height: 260px;
}

.checkout-card-item {
  font-size: 1rem;
  font-weight: 500;
}


.login-wrap {
  max-width: 420px;
  margin: auto;
}

.login-card {
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .05);
  background: #fff;
}