.product-image-container {
    width: 100%;
    max-width: 400px; /* Adjust as needed */
    aspect-ratio: 3 / 4;
    overflow: hidden;
}

.product-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.js-hidden {
    display: none !important;
}

#productdescription p {
       margin: 10px 0px 10px 0px;
   }

#productdescription h2 {
       font-size: 1.3em;
       font-weight: bold;
       color:rgb(17 24 39)
   }

#productdescription h3 {
       font-size: 1.0em;
       font-weight: bold;
       color:rgb(17 24 39)
   }

.sortable-drag {
    opacity: 0.8;
    background-color: #f0f0f0;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

@media (min-width: 1024px) {
  .desktop-menu-item:hover .desktop-menu-content {
    display: block !important;
  }
}

#custom-popup {
    z-index: 9999; /* Ensure it's above other elements */
}

@media (min-width: 1024px) { /* Tailwind's 'lg' breakpoint */
    #custom-popup {
        max-width: 300px; /* or any width you prefer */
        left: 50%;
        transform: translateX(-50%) translateY(-100%);
    }

    #custom-popup.show {
        transform: translateX(-50%) translateY(0);
    }
}

/* Add these styles to your assets/css/styles.css file */

.blog-post {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}

.blog-post h1 {
  font-size: 2.5em;
  color: #1a202c;
  margin-bottom: 0.5em;
  line-height: 1.2;
}

.blog-post h2 {
  font-size: 1.8em;
  color: #2d3748;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
}

.blog-post h3 {
  font-size: 1.6em;
  color: #2d3748;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
}

.blog-post h4 {
  font-size: 1.2em;
  color: #2d3748;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
}

.blog-post p {
  margin-bottom: 1em;
}

.blog-post em {
  font-style: italic;
  color: #4a5568;
}

.blog-post strong {
  font-weight: bold;
}

.blog-post .intro {
  font-size: 1.1em;
  color: #4a5568;
  border-left: 5px solid #000000;
  padding-left: 20px;
  margin-bottom: 1.5em;
  margin-top: 2.5em;
  font-style: italic;
}
