/*
 Theme Name:   GeneratePress Child
 Theme URI:    https://generatepress.com
 Description:  Default GeneratePress child theme
 Author:       Tom Usborne
 Author URI:   https://tomusborne.com
 Template:     generatepress
 Version:      0.1
*/
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  border-radius: 50%;
  text-align: center;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
}

.whatsapp-float img {
  width: 35px;
  margin-top: 12px;
}

.most-searched-for {
    /*background: #f8f8f8;*/ /* Light background for separation */
    padding:10px;
    border-top: 1px solid #1753cf;
    text-align: left;
    font-size:10px;
    line-height: 1.5;
    width: 100%; /* Ensures it matches the footer's width */
    max-width: 100%; /* Prevents exceeding parent container */
    box-sizing: border-box; /* Includes padding in width calculation */
    overflow: visible; /* Keeps everything visible without clipping */
}

.most-searched-for h3 {
    font-size: 16px;
    margin-bottom: 10px;
    text-transform: uppercase;
    color:#fff;
}

.most-searched-for ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap; /* Allows items to wrap to next line */
    gap: 10px; /* Space between items for better readability */
}

.most-searched-for li {
    flex: 1 0 auto; /* Auto-fits by growing/shrinking as needed */
    margin: 0;
    white-space: normal; /* Allows wrapping within items */
    word-wrap: break-word; /* Breaks long words if necessary */
    max-width: 100%; /* Ensures no single item overflows */
}

.most-searched-for strong {
    color:#cec3c3;
    font-weight: bold;
}

.most-searched-for a {
    color:#cec3c3; /* Flipkart blue for appeal */
    text-decoration: none;
}

.most-searched-for a:hover {
    text-decoration: underline;
}

/* Responsive: Enhance wrapping on smaller screens */
@media (max-width: 768px) {
    .most-searched-for ul {
        flex-direction: column; /* Stack everything vertically on mobile */
    }
    .most-searched-for li {
        width: 100%; /* Full width on small screens */
    }
}