/* Catalogo Showdisplay - Stylesheet (Screen & Print) */

/* ==========================================================================
   1. SCREEN ONLY STYLES (App Layout)
   ========================================================================== */
@media screen {
  body {
    background-color: var(--sd-light);
    color: var(--sd-ink);
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }

  .print-only {
    display: none !important;
  }

  /* App Header */
  .app-header {
    background-color: var(--sd-paper);
    border-bottom: 1px solid var(--sd-line);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--sd-shadow-sm);
  }

  .brand-logo {
    height: 48px;
    object-fit: contain;
  }

  /* Buttons & Badges */
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-family: var(--sd-font-body);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--sd-r-sm);
    border: none;
    cursor: pointer;
    transition: var(--sd-transition);
  }

  .btn-primary {
    background-color: var(--sd-cyan);
    color: var(--sd-paper);
  }

  .btn-primary:hover {
    background-color: var(--sd-cyan-600);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 174, 239, 0.2);
  }

  .btn-primary:active {
    transform: translateY(0);
  }

  .badge {
    background-color: var(--sd-cyan-100);
    color: var(--sd-cyan-600);
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
  }

  /* App Body & Sidebar */
  .app-body {
    display: flex;
    flex: 1;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 2rem;
    gap: 2rem;
    box-sizing: border-box;
  }

  .sidebar {
    width: 300px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  /* Search */
  .search-wrapper {
    position: relative;
    background-color: var(--sd-paper);
    border: 1px solid var(--sd-line);
    border-radius: var(--sd-r-sm);
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    box-shadow: var(--sd-shadow-sm);
    transition: var(--sd-transition);
  }

  .search-wrapper:focus-within {
    border-color: var(--sd-cyan);
    box-shadow: 0 0 0 3px rgba(0, 174, 239, 0.15);
  }

  .search-icon {
    color: var(--sd-ink-400);
    width: 18px;
    height: 18px;
    margin-right: 0.75rem;
  }

  #search-input {
    border: none;
    outline: none;
    font-family: var(--sd-font-body);
    font-size: 0.95rem;
    color: var(--sd-ink);
    width: 100%;
    background: transparent;
  }

  /* Filters */
  .filter-section {
    background-color: var(--sd-paper);
    border: 1px solid var(--sd-line);
    border-radius: var(--sd-r-md);
    padding: 1.5rem;
    box-shadow: var(--sd-shadow-sm);
  }

  .filter-section h3 {
    margin: 0 0 1rem 0;
    font-size: 1.1rem;
    color: var(--sd-ink-600);
  }

  .category-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .category-btn {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: none;
    border: none;
    border-radius: var(--sd-r-sm);
    color: var(--sd-ink-600);
    font-family: var(--sd-font-body);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    text-align: left;
    transition: var(--sd-transition);
  }

  .category-btn:hover {
    background-color: var(--sd-light);
    color: var(--sd-cyan-600);
  }

  .category-btn.active {
    background-color: var(--sd-cyan-100);
    color: var(--sd-cyan-600);
    font-weight: 600;
  }

  .category-btn svg {
    width: 18px;
    height: 18px;
  }

  /* Info Card */
  .instructions-card {
    background-color: var(--sd-paper);
    border: 1px solid var(--sd-line);
    border-radius: var(--sd-r-md);
    padding: 1.5rem;
    box-shadow: var(--sd-shadow-sm);
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--sd-ink-600);
  }

  .instructions-card svg {
    color: var(--sd-cyan);
    margin-bottom: 0.5rem;
  }

  .instructions-card h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1rem;
    color: var(--sd-ink);
  }

  .instructions-card ul {
    margin: 0.5rem 0 0 0;
    padding-left: 1.25rem;
  }

  /* Catalog Grid View */
  .catalog-view {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .view-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--sd-line);
    padding-bottom: 1rem;
  }

  .view-header h2 {
    font-size: 1.75rem;
    color: var(--sd-ink);
    margin: 0;
  }

  /* Products Grid */
  .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
  }

  .product-card {
    background-color: var(--sd-paper);
    border: 1px solid var(--sd-line);
    border-radius: var(--sd-r-md);
    overflow: hidden;
    box-shadow: var(--sd-shadow-sm);
    display: flex;
    flex-direction: column;
    transition: transform 200ms ease, box-shadow 200ms ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
  }

  .product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--sd-shadow-md);
  }

  .product-card-img-wrapper {
    height: 240px;
    background-color: var(--sd-light);
    border-bottom: 1px solid var(--sd-line);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
  }

  .product-card-img {
    max-height: 90%;
    max-width: 90%;
    object-fit: contain;
    transition: transform 300ms ease;
  }

  .product-card:hover .product-card-img {
    transform: scale(1.04);
  }

  .product-card-content {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 0.5rem;
  }

  .product-card-cat {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--sd-cyan-600);
    font-weight: 600;
  }

  .product-card-title {
    font-size: 1.25rem;
    color: var(--sd-ink);
    margin: 0;
  }

  .product-card-tagline {
    font-size: 0.9rem;
    color: var(--sd-ink-400);
    margin: 0;
  }

  .product-card-desc {
    font-size: 0.85rem;
    color: var(--sd-ink-600);
    line-height: 1.4;
    margin: 0.5rem 0 0 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .product-card-link-wrapper {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
  }

  .product-card-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 0.25rem;
  }

  .card-link-icon {
    width: 14px;
    height: 14px;
    color: var(--sd-ink-400);
    opacity: 0.5;
    transition: var(--sd-transition);
  }

  .product-card:hover .card-link-icon {
    opacity: 1;
    color: var(--sd-cyan);
    transform: translate(1px, -1px);
  }

  /* Single Product Print Preview Layout */
  body.single-product-mode {
    background-color: var(--sd-light) !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    min-height: 100vh !important;
    padding: 2rem !important;
    margin: 0 !important;
    box-sizing: border-box !important;
  }
  
  body.single-product-mode #app-container {
    display: none !important;
  }
  
  body.single-product-mode #print-container {
    display: block !important;
  }
  
  body.single-product-mode .print-page {
    box-shadow: 0 10px 30px rgba(0,0,0,0.08) !important;
    border-radius: var(--sd-r-md) !important;
    margin: 0 auto !important;
    background-color: #ffffff !important;
    width: 210mm !important;
    height: 297mm !important;
    box-sizing: border-box !important;
    padding: 15mm 15mm 12mm 15mm !important;
    position: relative !important;
  }

} /* End of @media screen desktop/base styles */

/* Mobile Responsive Screen Styles */
@media screen and (max-width: 768px) {
  .app-body {
    flex-direction: column;
    padding: 1rem;
    gap: 1.5rem;
  }
  .sidebar {
    width: 100%;
  }
  .instructions-card {
    display: none;
  }
  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.25rem;
  }
  .app-header {
    padding: 1rem;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  .btn-print {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
   2. PRINT ONLY STYLES (A4 Page layouts)
   ========================================================================== */
@media print {
  /* Hide interactive screen UI */
  .no-print {
    display: none !important;
  }
  
  .print-only {
    display: block !important;
  }

  html, body {
    background-color: #ffffff !important;
    width: 210mm;
    height: 297mm;
    margin: 0;
    padding: 0;
    font-size: 11pt; /* Appropriate for print */
  }

  @page {
    size: A4 portrait;
    margin: 0;
  }

  /* Print Page Base */
  .print-page {
    width: 210mm;
    height: 297mm;
    page-break-after: always;
    position: relative;
    box-sizing: border-box;
    padding: 15mm 15mm 12mm 15mm;
    background-color: #ffffff !important;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  /* ----------------------------------------------------
     Page 1: Cover Page
     ---------------------------------------------------- */
  .cover-page {
    justify-content: center;
    align-items: center;
    padding: 25mm 20mm;
  }

  .cover-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    width: 100%;
    text-align: center;
    align-items: center;
  }

  .cover-logo {
    height: 25mm;
    object-fit: contain;
    margin-bottom: 5mm;
  }

  .cover-title-group h1 {
    font-size: 32pt;
    font-weight: 800;
    color: var(--sd-ink);
    margin: 0 0 4mm 0;
    letter-spacing: 1px;
  }

  .cover-subtitle {
    font-size: 14pt;
    color: var(--sd-cyan-600);
    font-weight: 500;
    margin: 0;
  }

  .cover-title-group .divider {
    height: 2px;
    width: 40mm;
    background-color: var(--sd-cyan);
    margin: 6mm auto 0 auto;
  }

  .cover-graphic {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-height: 160mm;
    margin: 8mm 0;
  }

  .cover-main-image {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    border-radius: var(--sd-r-md);
  }

  .cover-footer {
    display: flex;
    justify-content: space-between;
    width: 100%;
    border-top: 1px solid var(--sd-line);
    padding-top: 5mm;
    font-size: 10pt;
    color: var(--sd-ink-400);
    font-weight: 500;
  }

  .cover-date {
    font-weight: 600;
    color: var(--sd-cyan-600);
  }

  /* ----------------------------------------------------
     Page 2: Table of Contents (Indice) Page
     ---------------------------------------------------- */
  .index-page {
    padding: 20mm 20mm;
    justify-content: flex-start;
  }

  .index-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
  }

  .index-header {
    text-align: center;
    margin-bottom: 8mm;
  }

  .index-logo {
    height: 16mm;
    object-fit: contain;
    margin-bottom: 4mm;
  }

  .index-header h2 {
    font-size: 18pt;
    font-weight: 800;
    color: var(--sd-cyan-600);
    margin: 0;
    letter-spacing: 0.5px;
  }

  .index-header .divider {
    height: 2px;
    width: 30mm;
    background-color: var(--sd-cyan);
    margin: 4mm auto 0 auto;
  }

  .index-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6mm;
  }

  .index-category-section h3 {
    font-size: 12pt;
    font-weight: 700;
    color: var(--sd-ink);
    margin: 0 0 3mm 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 1px solid var(--sd-cyan);
    padding-bottom: 1.5mm;
  }

  .index-product-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 2mm;
  }

  .index-product-list li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-size: 10.5pt;
    color: var(--sd-ink-600);
  }

  .index-product-list .product-title {
    font-weight: 600;
  }

  .index-product-list .dots {
    flex: 1;
    border-bottom: 1px dotted var(--sd-ink-200);
    margin: 0 3mm;
  }

  .index-product-list .page-num {
    font-weight: 700;
    color: var(--sd-cyan-600);
  }

  .index-footer {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid var(--sd-line);
    padding-top: 4mm;
    font-size: 8.5pt;
    color: var(--sd-ink-400);
  }

  /* ----------------------------------------------------
     Pages 3-20: Product Pages
     ---------------------------------------------------- */
  .product-page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--sd-cyan);
    padding-bottom: 4mm;
    margin-bottom: 6mm;
  }

  .header-logo {
    height: 12mm;
    object-fit: contain;
  }

  .header-category {
    font-size: 9pt;
    font-weight: 700;
    color: var(--sd-cyan-600);
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  /* Stacked Layout */
  .product-page-body-stacked {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 5mm;
    min-height: 0;
  }

  .stacked-image-wrapper {
    height: 95mm;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    background-color: transparent !important;
    padding: 0;
    box-sizing: border-box;
    width: 100%;
  }

  .product-sheet-render-large {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    border-radius: var(--sd-r-md);
  }

  .stacked-details-wrapper {
    display: flex;
    flex-direction: column;
    gap: 4mm;
    flex: 1;
  }

  .product-title-group h2 {
    font-size: 18pt;
    font-weight: 800;
    color: var(--sd-cyan-600);
    margin: 0 0 1.5mm 0;
  }

  .product-tagline {
    font-size: 10.5pt;
    font-weight: 600;
    color: var(--sd-ink-400);
    margin: 0;
  }

  .product-description {
    font-size: 9.5pt;
    line-height: 1.45;
    color: var(--sd-ink-600);
    margin: 0;
    text-align: justify;
  }

  /* Specifications Table */
  .specifications-table-wrapper {
    margin-top: 0;
  }

  .specifications-table-wrapper h3 {
    font-size: 10pt;
    font-weight: 700;
    color: var(--sd-ink);
    margin: 0 0 3mm 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  .specs-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 9pt;
    text-align: left;
  }

  .specs-table th {
    background-color: var(--sd-cyan) !important;
    color: #ffffff !important;
    font-weight: 700;
    padding: 3mm 2.5mm;
    border: 1px solid var(--sd-cyan);
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  .specs-table td {
    padding: 2.5mm;
    border: 1px solid var(--sd-line);
  }

  .specs-table tr:nth-child(even) {
    background-color: var(--sd-light) !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  /* Product Reseller Stamp */
  .reseller-stamp-row {
    display: flex;
    justify-content: flex-end;
    margin-top: auto;
    padding-top: 4mm;
  }

  .reseller-stamp {
    border: 1px dashed var(--sd-ink-200);
    padding: 3mm 4mm;
    border-radius: var(--sd-r-sm);
    width: 50mm;
    text-align: center;
    font-size: 7.5pt;
    color: var(--sd-ink-400);
    font-weight: 500;
  }

  .stamp-line {
    border-top: 1px solid var(--sd-line);
    margin-top: 6mm;
    padding-top: 1mm;
  }

  /* Product Page Footer */
  .product-page-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--sd-line);
    padding-top: 3mm;
    margin-top: 4mm;
    font-size: 8pt;
    color: var(--sd-ink-400);
  }

  .footer-url {
    font-weight: 600;
    color: var(--sd-cyan-600);
  }

  /* ----------------------------------------------------
     Page 24: Back Cover Page
     ---------------------------------------------------- */
  .back-cover-page {
    justify-content: center;
    align-items: center;
    padding: 30mm 20mm;
  }

  .back-cover-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    width: 100%;
    text-align: center;
    align-items: center;
  }

  .back-cover-logo {
    height: 25mm;
    object-fit: contain;
    margin-bottom: 10mm;
  }

  .back-cover-info h2 {
    font-size: 22pt;
    color: var(--sd-cyan-600);
    margin: 0 0 4mm 0;
  }

  .back-cover-info p {
    font-size: 11pt;
    color: var(--sd-ink-600);
    max-width: 120mm;
    line-height: 1.6;
    margin: 0;
  }

  .back-cover-page .reseller-box {
    border: 2px dashed var(--sd-cyan);
    border-radius: var(--sd-r-md);
    padding: 8mm;
    width: 90mm;
    height: 45mm;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: 15mm 0;
    box-sizing: border-box;
  }

  .reseller-title {
    font-size: 10pt;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--sd-cyan-600);
    letter-spacing: 0.05em;
    margin: 0;
  }

  .stamp-area {
    border-top: 1px solid var(--sd-line);
    padding-top: 2mm;
    font-size: 8pt;
    color: var(--sd-ink-200);
  }

  .back-cover-footer {
    position: absolute;
    bottom: 12mm;
    left: 20mm;
    right: 20mm;
    border-top: 1px solid var(--sd-line);
    padding-top: 5mm;
    font-size: 9pt;
    color: var(--sd-ink-400);
  }

  /* ----------------------------------------------------
     Page 2: Presentazione / Chi Siamo
     ---------------------------------------------------- */
  .intro-page {
    padding: 20mm 20mm;
    justify-content: flex-start;
  }
  .intro-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
  }
  .intro-header {
    text-align: center;
    margin-bottom: 8mm;
  }
  .intro-logo {
    height: 16mm;
    object-fit: contain;
    margin-bottom: 4mm;
  }
  .intro-header h2 {
    font-size: 18pt;
    font-weight: 800;
    color: var(--sd-cyan-600);
    margin: 0;
    letter-spacing: 0.5px;
  }
  .intro-header .divider {
    height: 2px;
    width: 30mm;
    background-color: var(--sd-cyan);
    margin: 4mm auto 0 auto;
  }
  .intro-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8mm;
  }
  .intro-section h3 {
    font-size: 13pt;
    color: var(--sd-cyan-600);
    margin: 0 0 3mm 0;
  }
  .intro-section p {
    font-size: 10.5pt;
    line-height: 1.5;
    color: var(--sd-ink-600);
    margin: 0 0 4mm 0;
    text-align: justify;
  }
  .intro-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5mm;
    margin-top: 5mm;
  }
  .feature-item {
    background-color: var(--sd-light);
    padding: 4mm;
    border-radius: var(--sd-r-sm);
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
  .feature-item h4 {
    font-size: 10pt;
    color: var(--sd-cyan-600);
    margin: 0 0 2mm 0;
    font-weight: 700;
  }
  .feature-item p {
    font-size: 8.5pt;
    line-height: 1.4;
    color: var(--sd-ink-600);
    margin: 0;
  }
  .intro-footer {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid var(--sd-line);
    padding-top: 4mm;
    font-size: 8.5pt;
    color: var(--sd-ink-400);
  }

  /* ----------------------------------------------------
     Page 18: Note / Appunti
     ---------------------------------------------------- */
  .notes-page {
    padding: 20mm 20mm;
    justify-content: flex-start;
  }
  .notes-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
  }
  .notes-header {
    text-align: center;
    margin-bottom: 8mm;
  }
  .notes-logo {
    height: 16mm;
    object-fit: contain;
    margin-bottom: 4mm;
  }
  .notes-header h2 {
    font-size: 18pt;
    font-weight: 800;
    color: var(--sd-cyan-600);
    margin: 0;
    letter-spacing: 0.5px;
  }
  .notes-header .divider {
    height: 2px;
    width: 30mm;
    background-color: var(--sd-cyan);
    margin: 4mm auto 0 auto;
  }
  .notes-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-bottom: 8mm;
  }
  .notes-lines {
    display: flex;
    flex-direction: column;
    gap: 8mm;
    margin-top: 5mm;
  }
  .note-line {
    border-bottom: 1px solid var(--sd-line);
    height: 1px;
    width: 100%;
  }
  .notes-footer {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid var(--sd-line);
    padding-top: 4mm;
    font-size: 8.5pt;
    color: var(--sd-ink-400);
  }

  /* ----------------------------------------------------
     Page 19: Condizioni & Contatti
     ---------------------------------------------------- */
  .contacts-page {
    padding: 20mm 20mm;
    justify-content: flex-start;
  }
  .contacts-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
  }
  .contacts-header {
    text-align: center;
    margin-bottom: 8mm;
  }
  .contacts-logo {
    height: 16mm;
    object-fit: contain;
    margin-bottom: 4mm;
  }
  .contacts-header h2 {
    font-size: 18pt;
    font-weight: 800;
    color: var(--sd-cyan-600);
    margin: 0;
    letter-spacing: 0.5px;
  }
  .contacts-header .divider {
    height: 2px;
    width: 30mm;
    background-color: var(--sd-cyan);
    margin: 4mm auto 0 auto;
  }
  .contacts-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8mm;
  }
  .contacts-section h3 {
    font-size: 12pt;
    color: var(--sd-cyan-600);
    margin: 0 0 3mm 0;
    border-bottom: 1px solid var(--sd-cyan);
    padding-bottom: 1.5mm;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }
  .contacts-section p {
    font-size: 9.5pt;
    line-height: 1.5;
    color: var(--sd-ink-600);
    margin: 0 0 3mm 0;
  }
  .contact-details {
    background-color: var(--sd-light);
    padding: 4mm;
    border-radius: var(--sd-r-sm);
    margin-top: 3mm;
    display: flex;
    flex-direction: column;
    gap: 2mm;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
  .contact-details p {
    margin: 0;
    font-size: 9.5pt;
  }
  .contacts-footer {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid var(--sd-line);
    padding-top: 4mm;
    font-size: 8.5pt;
    color: var(--sd-ink-400);
  }
}
