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

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

.aspect-34 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.profile-pink-dark {
    --tw-bg-opacity: 1; !important
    background-color: rgb(190 57 142 / var(--tw-bg-opacity)); !important
}

.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;
}



.podcast-player {
        width: 100%;
        max-width: 400px;
        padding: 15px;
        background-color: #1a1a1a;
        border-radius: 12px;
        font-family: Arial, sans-serif;
        color: #ffffff;
    }
.podcast-content {
        display: flex;
        align-items: center;
    }
.podcast-thumbnail {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid grey;
}
.play-pause-btn {
        width: 50px;
        height: 50px;
        background-color: #4a4a4a;
        border: none;
        color: white;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        border-radius: 12px;
        margin: 0 15px;
        transition: background-color 0.3s;
    }
.play-pause-btn:hover {
        background-color: #5a5a5a;
    }
.play-pause-btn svg {
        width: 50px;
        height: 50px;
    }

.podcast-info {
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
	overflow: hidden;
    }
.podcast-title {
        margin: 0 0 0 0;
        font-size: 0.8rem;
        font-weight: normal;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
.time-controls {
        width: 100%;
    }
    #seek-slider {
        width: 100%;
        margin-bottom: 10px;
        -webkit-appearance: none;
        background: #4a4a4a;
        outline: none;
        border-radius: 10px;
        height: 5px;
    }
    #seek-slider::-webkit-slider-thumb {
        -webkit-appearance: none;
        appearance: none;
        width: 15px;
        height: 15px;
        background: #ffffff;
        cursor: pointer;
        border-radius: 50%;
    }
    #seek-slider::-moz-range-thumb {
        width: 15px;
        height: 15px;
        background: #ffffff;
        cursor: pointer;
        border-radius: 50%;
    }
    .time-display {
        font-size: 14px;
        text-align: right;
    }
        .custom-marquee {
            width: 100%;
        }
        .marquee-content {
            display: inline-block;
            white-space: nowrap;
            animation: marquee 30s linear infinite;
        }
         @keyframes marquee {
            30%, 100% { transform: translateX(0); }
            100% { transform: translateX(-100%); }
        }
