/** Shopify CDN: Minification failed

Line 70:0 Unexpected "}"

**/
/* 🌿 Cozy Cottage Bold Audio Player 🌿 */
.cute-audio-player {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #FFFFFF; /* soft warm background */
  border: 3px solid #305B9E; /* thicker border with a pop of color */
  border-radius: 25px;
  padding: 18px 24px;
  max-width: 420px;
  margin: 25px auto;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
  font-family: "Georgia", serif;
  transition: all 0.3s ease-in-out;
}

/* Hover effect for a cozy pop */
.cute-audio-player:hover {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
  transform: scale(1.04);
  background-color: #FFFFFF;
  border-color: #305B9E; /* warmer accent on hover */
}

/* 🎵 Style the default audio player controls */
.cute-audio-player audio {
  width: 100%;
  height: 55px; /* makes it thicker */
  outline: none;
  border-radius: 14px;
  background-color: #FFFFFF;
  accent-color: #e27d5f; /* stronger pop color for the play button + progress bar */
}

/* Extra: make the whole section feel cozy */
.cute-audio-player audio::-webkit-media-controls-panel {
  background-color: #FFFFFF !important;
  border-radius: 14px;
}

/* Logo container styling */
.cjro-logo-container {
    display: flex;
    justify-content: center;  /* Center horizontally */
    align-items: center;
    margin-top: 10px;
    margin-bottom: 10px;
    text-align: center;
}

/* Logo image styling */
.cjro-logo {
    max-width: 140px;   /* Adjust logo size */
    height: auto;
    border-radius: 12px; /* Slightly rounded edges for a softer look */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15); /* Subtle shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Cute hover effect */
.cjro-logo:hover {
    transform: scale(1.08);  /* Slight zoom */
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}
}
