body {
    margin: 0;
    font-family: Arial, sans-serif;
}

nav {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

/* header nav .logo {
    width: 5rem;
} */

.logos {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: space-between;
  }
  .logos img {
    max-height: 40px;
    width: 10rem;
    margin: 1rem;
  }

  /* search bar  */
.search-bar-wrapper {
    width: 25rem; /* Or the max width you want */
    /* margin: 0 auto; */
    padding: 1rem;
    background: #ffffff;
    display: flex;
    align-items: center;
  }
  
  .search-bar-wrapper form {
    display: flex;
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .search-bar-wrapper input[type="text"] {
    flex-grow: 1;
    border: none;
    border-radius: 30px 0 0 30px;
    padding: 10px 20px;
    font-size: 13px;
    background: rgb(247, 242, 242);
    color: #333;
  }
  
  .search-bar-wrapper button {
    border: none;
    background: #3c3b3b; /* Color of the button */
    border-radius: 0 30px 30px 0;
    padding: 10px;
    cursor: pointer;
  }
  
  .search-bar-wrapper button img {
    width: 20px; /* Size of the search icon image */
    height: 20px;
    display: block;
  }

  /* Adjust for focus states */
.search-bar-wrapper input[type="text"]:focus {
    outline: none;
  }
  
  /* Hide the default browser styles for the button */
  .search-bar-wrapper button:focus {
    outline: none;
  }
  
  /* Add a little transition effect for button on hover */
  .search-bar-wrapper button:hover {
    background-color: #555;
  }

  header nav a {
    color: #333;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    padding: 0.5rem 1rem;
    border-radius: 5px;
  }

  /* hero section */

  .hero {
    /* padding: 20px; */
    background: url('./assets_super_ocasiones_licores/hero-desktop.png') no-repeat center center;
    background-size: cover;
    height: 280px;
    color: #000000; /* Adjust the text color to match the design */
    position: relative;
}


.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Horizontally aligns items to the start (left) */
    justify-content: center;
    margin: 0 4rem;
    /* width: 50%;
    margin: 0 auto;
    text-align: center; */
}

.hero-content p {
    font-size: 1rem; /* Adjust the size as necessary */
    line-height: 1.3rem;
    margin: 1rem 3rem;
    text-align: center;

}

.hero-content img {
    width: 20%;
    /* margin: 1rem; */
}

.cta-button {
    /* display: inline-block; */
    padding: 15px 30px;
    background-color: #E74C3C; /* Adjust button color to match the design */
    color: white;
    text-decoration: none;
    font-weight: bold;
    margin-top: 20px;
    margin-left: 1.5rem;
    border-radius: 25px; /* Optional: if you want rounded corners on the button */
}

/* ///////////////////////// */
/* productos destacados */

.featured-products-title {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
  }

.featured-products {
    text-align: center;
    margin: 15px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
  
  
  .product {
    min-height: 531px;
    background-color: #f2f2f2;
    width: 17rem; /* Adjust based on the number of products you want per row */
    text-align: left;
    /* vertical-align: top; */
    padding: 20px;
    border-radius: 8px;
    margin: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  .product img {
    display: block;
    width: auto;
    height: auto;
    border-radius: 4px;
    margin: 0 auto;
    max-height: 230px;
  }
  
  .product .code {
    font-weight: lighter;
  }
  
  .product h3 {
    font-size: 18px;
    color: #333;
  }
  
  .product .price {
    color: #333;
    font-weight: bold;
    font-size: 25px;
    margin: 0;
    margin-bottom: 2px;
  }
  
  .product .price span {
    font-weight: lighter !important;
    font-size: 15px;
  }
  .product span .locales {
    font-weight: bold;
  }
  .product span {
    font-size: 15px;
  }
  
  .product .original-price {
    font-weight: lighter;
    font-size: 15px;
    margin: 0;
    margin-bottom: 1.5rem;
  }
  
  .product button, .product .tipti {
    display: table;
    background-color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
    margin: 10px auto;
    color: black;
  }
  
  .product button:hover, .product .tipti:hover {
    background-color: #e7e7e7;
  }
  
  /* You may also want to add media queries to ensure responsiveness on smaller screens */
  @media (max-width: 768px) {
    .product {
      width: 45%;
      margin: 10px auto;
    }
  }
@media (max-width: 480px) {
  .product {
    width: 95%;
    margin: 10px auto;
  }
  .back_prev_screen {
    position: relative !important;
    margin: 20px;
    margin-top: 0;
  }
  .wrapper_licores_so header nav{
    display: inline-block;
    padding: 15px 0;
    padding-top: 0;
    width: 100%;
  }
  .search-bar-wrapper {
    width: 90%;
    padding: 0;
    margin: 15px;
  }
  .so-menu{
    margin: 5px;
  }
  .logos img {
    width: 9rem;
    margin: 15px 0;
    margin-bottom: 0;
  }
}
.back_prev_screen{
  display: block;
  float: left;
  margin-left: 5%;
  position: absolute;
  color: #808080;
}
.back_prev_screen img{
  max-width: 30px;
}
.filtro{
  position: relative;
}
  .product .location-icon {
    display: inline-block;
    width: 15px; /* Or the size of your preference */
    margin: 0;
    margin-bottom: 5px;
    margin-right: 5px;
    /* margin-right: 8px; Adds space between the icon and the text */
    vertical-align: middle; /* Aligns the icon vertically with the text */
  }
  
  .product button .button-icon, .product .tipti .button-icon {
    display: inline-block;
    height: 20px; /* or your desired size */
    width: auto;
    margin-right: 5px;
    vertical-align: middle;
  }

  /* header section */

.section-header {
    margin: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 20px; /* Adjust the gap between icon and text */
  }
  
  .section-header .section-icon {
    display: block; /* to apply dimensions if it's an inline element like img */
    height: auto;
    width: 50px; /* or the width that fits your design */
  }
  
  .section-header h2 {
    font-size: 24px; /* Adjust the size as needed */
    margin: 0;
    padding: 0;
    /* If you need to adjust the font-weight, font-family etc., do it here */
  }

  /* grid licores */

.grid-container {
    display: grid;
    grid-template-columns: repeat(7, 1fr); /* Three columns */
    gap: 10px; /* Adjust the gap between items */
    padding: 0 2rem;
  }
  
  .grid-item {
    position: relative;
    border-radius: 25px;
    overflow: hidden; /* Ensure that the image does not overflow the item's box */
  }
  
  .grid-item img {
    width: 100%;
    display: block; /* Removes any space below the image */
    transition: transform 0.5s ease; /* Optional: for a zoom effect on hover */
  }
  
  .grid-item:hover img {
    transform: scale(1.1); /* Optional: zoom effect on hover */
  }
  
  .caption {
    position: absolute;
    inset: 0;
    margin: auto;
    color: white;
    width: 100%;
    text-align: center;
    top: 45%;
    font-size: 1.2em; /* Adjust font size as needed */
    font-weight: bold;
  }
  
  .add-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3em; /* Large plus icon size */
    background: #f0f0f0; /* Background color for the add icon cell */
    color: #cccccc; /* Color of the plus icon */
    height: 100%; /* Full height of the parent */
  }
  
  /* Responsive adjustments */
  @media (max-width: 600px) {
    .grid-container {
      grid-template-columns: repeat(2, 1fr); /* Two columns for smaller screens */
    }
  }

  /* image section */

.image-section {
    text-align: center; /* Center align the content */
    margin: 20px; /* Adjust the margin as needed */
  }
  
  .image-section img {
    max-width: 100%; /* Ensure the image is responsive and does not overflow its container */
    height: auto; /* Maintain the aspect ratio of the image */
    /* Additional styling to ensure the image is centered can be applied if necessary */
  }
  
  /* cta section */
  
  .cta-section {
    text-align: center;
    padding: 20px;
    background-color: #f2f2f2;
  }
  
  .cta-section h3 {
    font-size: 16px;
    font-weight: lighter;
    line-height: 1.4rem;
    color: #333;
    margin-bottom: 20px;
  }
  
  .cta-section .cta-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }
  
  .cta-section .cta-logo {
    width: 150px;
    height: auto;
  }
  
  .cta-section .cta-button {
    border-radius: 25px;
    margin: 2rem;
    padding: 1rem 2rem;
    font-size: 16px;
    color: #fff;
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }
#masthead{
  display: none;
}
.filtro{
  text-align: center;
}
.filtro select{
  -webkit-appearance: none;
  -moz-appearance: none;
  width: auto;
  background: #F2F2F2;
  background-image: url("/wp-content/themes/supermaxi-2019/assets_super_ocasiones_licores/arrow_select.png");
  background-repeat: no-repeat;
  background-position: 90% center;
  background-size: 20px;
  border-radius: 20px;
  padding: 15px 60px;
  display: inline-block;
  color: #808080;
  text-align: center;
  border: none;
}
.page-numbers{
  margin: 0 15px;
  color: black;
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 30px;
}
.page-numbers.current{
  font-weight: bolder;
  color: white;
  border-radius: 50%;
  background: #ED1C24;
}
.paginador{
  margin: 25px auto;
  text-align: center;
  width: 100%;
  display: inline-block;
}