/* Print Styles */
@media print {
  /* Hide unnecessary elements */
  .top-bar,
  .main-nav,
  .search-user-wrapper,
  .user-actions,
  .social-section,
  .footer,
  .menu-toggle,
  .btn-buy-whatsapp,
  .btn-add-to-cart,
  .btn-read-more,
  .social-links,
  .footer-links {
    display: none !important;
  }

  /* Adjust layout for print */
  body {
    font-size: 12pt;
    line-height: 1.4;
    color: black;
    background: white;
  }

  .container {
    max-width: 100%;
    padding: 0;
  }

  .header-main {
    position: static;
    box-shadow: none;
    padding: 0;
    margin-bottom: 1rem;
  }

  .logo {
    font-size: 1.5rem;
    color: black;
  }

  .logo span {
    color: black;
  }

  h1, h2, h3, h4, h5, h6 {
    color: black;
    page-break-after: avoid;
  }

  h1 {
    font-size: 24pt;
  }

  h2 {
    font-size: 20pt;
  }

  h3 {
    font-size: 18pt;
  }

  p {
    margin-bottom: 1rem;
  }

  img {
    max-width: 100%;
    height: auto;
  }

  .product-card {
    page-break-inside: avoid;
    box-shadow: none;
    border: 1px solid #ccc;
  }

  .product-img {
    height: auto;
  }

  .section-title h2:after {
    display: none;
  }

  /* Improve spacing for print */
  section {
    margin-bottom: 2rem;
  }

  /* Footer for print */
  .print-footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    text-align: center;
    font-size: 10pt;
    border-top: 1px solid #ccc;
    padding-top: 0.5rem;
  }
}