/*
Theme Name: Modave Child
Theme URI: https://modave.presslayouts.com/landing
Author: PressLayouts Team
Description: This is a child theme for Modave
Version: 1.0
Author URI: https://www.presslayouts.com/
Template: modave
Text Domain: modave-child
*/
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.6;
            color: #333;
            background: #f8f9fa;
            padding: 20px;
        }

        .product-description-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            background: #fff;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
        }

        .row {
            display: flex;
            flex-wrap: wrap;
            margin: -15px;
        }

        .col-12 {
            width: 100%;
            padding: 15px;
        }

        .col-md-6 {
            width: 100%;
            padding: 15px;
        }

        @media (min-width: 768px) {
            .col-md-6 {
                width: 50%;
            }
        }

        .section-title {
            font-size: 16px;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 15px;
            padding-bottom: 8px;
            border-bottom: 2px solid #27ae60;
            display: inline-block;
        }

        .content-list {
            list-style: none;
            padding-left: 0;
            margin-bottom: 20px;
        }

        .content-list li {
            position: relative;
            padding-left: 25px;
            margin-bottom: 12px;
            line-height: 1.6;
            color: #555;
        }

        .content-list li:before {
            content: "●";
            position: absolute;
            left: 0;
            color: #27ae60;
            font-size: 14px;
            top: 0;
        }

        .content-list li strong {
            color: #2c3e50;
            font-weight: 600;
        }

        .dosage-section {
            background: #f8f9fa;
            padding: 20px;
            border-radius: 6px;
            border-left: 4px solid #27ae60;
        }

        .dosage-section .content-list li {
            margin-bottom: 10px;
        }

        /* Hover effects */
        .content-list li {
            transition: transform 0.2s ease;
        }

        .content-list li:hover {
            transform: translateX(5px);
        }

        /* Mobile responsiveness */
        @media (max-width: 767px) {
            .product-description-wrapper {
                padding: 20px;
            }
            
            .section-title {
                font-size: 14px;
            }
            
            .content-list li {
                font-size: 14px;
                padding-left: 20px;
            }
        }

        /* Print styles */
        @media print {
            .product-description-wrapper {
                box-shadow: none;
            }
        }
        /* ✅ Make breadcrumb text wrap properly on mobile */
.pls-sp-breadcrumb-navigation,
.entry-breadcrumb,
.pls-breadcrumb {
  white-space: normal !important;
  overflow: visible !important;
  text-overflow: unset !important;
  display: block !important;
  line-height: 1.4;
  word-wrap: break-word;
}

/* ✅ Adjust spacing and font for mobile */
@media (max-width: 768px) {
  .pls-sp-breadcrumb-navigation {
    padding: 0 10px;
    margin-bottom: 8px;
  }

  .pls-breadcrumb {
    font-size: 12px;
    line-height: 1.5;
  }

  /* optional: hide long category links with ellipsis */
  .pls-breadcrumb a {
    display: inline-block;
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: middle;
  }
}
