* {
    text-shadow: 0.4px 0.4px 0.6px rgba(0, 0, 0, 0.25);
  }
  
img, svg {
    text-shadow: none !important;
  }

/* Background Styling */
body {
/*    background-color: #f7f7f7 !important;  A soft, neutral background */
    background-image: url('/themes/basic/images/textures/subtle-grunge.png');
 	background-repeat: repeat;
  	background-size: auto;
    padding: 20px !important;
}

.plan .plan-pro {
  background-color: #c3a16c!important;
}

body > section > div > div > div > div > div > div:nth-child(2) > div > form > button:hover {
  background-color: #c3a16c!important;
  border-color: #c3a16c;
  color: white;
}

.request-tip {
  padding-left: -1.6em;
  text-indent: -1.6em;
  color: #d32f2f;
 
}

.plan {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  will-change: transform;
}

.plan:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.2), 0 0 10px #c3a16c;
  z-index: 2;
}

.header-image::before
 {
background-color: rgba(0, 0, 0, 0.1)!important;
}
.logo-emblem-wrapper {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 40px;
}

.logo-emblem {
  width: 120px;
  height: auto;
  margin-bottom: 25px;
}

.header-title {
  font-family: 'Playfair Display', serif !important;
  font-size: 42px !important;
  color: #CCC7C0 !important;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4) !important;
  margin-top: 0 !important;
  margin-bottom: 10px !important;
}

.header-text {
  font-family: 'Open Sans', sans-serif !important;
  font-size: 18px !important;
  color: #f7f7f7 !important;
}

/* === Full Width Navbar Fix === */
.nav-bar {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.nav-bar .nav-bar-container {
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  padding-left: max(10px, env(safe-area-inset-left));
  padding-right: max(10px, env(safe-area-inset-right));
  box-sizing: border-box;
}

/* === Shimmer Only on Scroll Bar === */
.nav-bar.scrolling {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  z-index: 999;
}

/* === Mobile Menu Opaque + Stretch Fix === */
@media (max-width: 1399.98px) {

  .nav-bar .nav-bar-menu.show {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    z-index: 997;
    pointer-events: auto;
  }

  .nav-bar .nav-bar-menu-inner {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 300px;
    overflow-y: auto;
    overflow-x: hidden;
    display: none;
    flex-direction: column;
    padding: 15px 20px;
    z-index: 998;
    transition: 0.3s;
  }

  .nav-bar .nav-bar-menu.show .nav-bar-menu-inner {
    display: flex;
    background-color: #fff !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }

  .nav-bar,
  .nav-bar-menu,
  .nav-bar-menu-inner {
    will-change: auto;
    transform: none !important;
    filter: none !important;
  }
}

/* === Optional: Remove horizontal scrollbars from full-width === */
body {
  overflow-x: hidden;
}

.accordion-custom .accordion-button:hover {
  color: #2979ff; /* Match your hover blue */
  transition: color 0.2s ease-in-out;
  text-decoration: none;
}

.items-tabs-btn {
  transition: color 0.2s ease-in-out;
  cursor: pointer;
}

.items-tabs-btn:hover {
  color: #2979ff; /* Match the album title hover blue */
  text-decoration: none;
}

.item {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px); 
  border-radius: 12px !important;
  overflow: hidden !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3) !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.item::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('/themes/basic/images/textures/scribble-light.png') repeat;
  opacity: 0.01;
 /* mix-blend-mode: multiply; */
  pointer-events: none;
  border-radius: inherit;
}

.item:hover {
  transform: translateY(-4px); /* soft lift */
/*  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);  slightly deeper shadow */
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
}


.item-title a {
  transition: color 0.2s ease, opacity 0.2s ease;
  color: #3b3b3b;
  font-weight: 600;
  text-shadow: 0.2px 0.2px 0 rgba(0,0,0,0.1);
}

.item:hover .item-title a {
  color: #2979ff; /* your primary blue */
  text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.album-cover {
  position: relative;
  width: 220px;        /* or 100%, or any fixed size you want */
  height: 220px;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease;
  will-change: transform;
  display: flex;        /* So you can flex content if needed */
  align-items: center;
  justify-content: center;
}
.audio-item {
    background-color: #ffffff;
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.2s ease-in-out;
}

.audio-item:hover {
    transform: translateY(-4px);
    transform: scale(1.03);
}



.audio-item audio {
    width: 100%;
    margin-bottom: 1rem;
}

.audio-item h3 {
    font-size: 1.125rem;
    color: #333333;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.audio-item p {
    margin-bottom: 0.25rem;
    color: #666666;
    font-size: 0.9rem;
}

.audio-item a {
    display: inline-block;
    margin-top: 0.75rem;
    background-color: #4f46e5;
    color: #ffffff;
    padding: 0.5rem 1.25rem;
    border-radius: 0.375rem;
    text-decoration: none;
    transition: background-color 0.2s;
}



.cover-wrapper {
    height: auto;
    max-height: none;
    overflow: hidden;
    border-radius: 0.75rem;
    position: relative;
}



.cover-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    border-radius: inherit;
    transition: transform 0.3s ease-in-out;
    position: relative;
    z-index: 1;
}


.cover-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.4) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    pointer-events: none;
    z-index: 2;
}

.cover-wrapper:hover::after {
    animation: sheen 0.8s forwards;
}

@keyframes sheen {
    0% { left: -75%; }
    100% { left: 125%; }
}

.audio-item a:hover {
    background-color: #4338ca;
}

.cover-wrapper {
    height: auto;
    max-height: none;
    overflow: hidden;
    border-radius: 0.75rem;
    position: relative;
}



.cover-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    border-radius: inherit;
    transition: transform 0.3s ease-in-out;
    position: relative;
    z-index: 1;
}


.cover-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.4) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    pointer-events: none;
    z-index: 2;
}

.cover-wrapper:hover::after {
    animation: sheen 0.8s forwards;
}

@keyframes sheen {
    0% { left: -75%; }
    100% { left: 125%; }
}
.album-preview {
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 12px;
    transition: box-shadow 0.3s ease;
}

.album-preview:hover {
 /*   box-shadow: 0 0 15px rgba(0,0,0,0.1); */
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.album-preview-cover img {
    width: 240px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.album-preview-cover img:hover {
    transform: scale(1.03)!important;
}

.album-preview-player {
    min-width: 240px;
    flex: 1; /* let the player take remaining space */
}

.album-preview {
    display: flex;
    flex-wrap: nowrap; /* this is the key */
    align-items: center;
    gap: 1.5rem;
}

.album-preview-player .item-single-audio {
    width: 100%;
}
.album-preview .item-single-audio {
    flex-direction: row !important;
    align-items: center;
    gap: 1rem;
}
.album-preview {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    width: 100%;
}

.album-preview-cover {
    width: 200px;
    flex-shrink: 0;
    margin-right: 1rem;
}

.album-preview-player {
    flex-grow: 1;
    width: 100%;
}

/* FIXED: Proper album-preview layout with horizontal player alignment */
.album-preview {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: nowrap;
    width: 100%;
}

.album-preview-cover img {
    max-width: 200px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Ensures the player aligns beside the image */
.album-preview .item-single-audio {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    gap: 1rem;
    flex: 1;
    width: 100%;
    padding: 0;
    border: none;
    box-shadow: none;
}

.item-badge.item-badge-free {
  background-color: #d32f2f !important;
  color: #fff !important;
  font-weight: bold;
  border-radius: 8px;
  padding: 6px 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.75rem;

  /* OUTER DROP SHADOW — soft and natural, light from above */
  box-shadow: 
    0 2px 6px rgba(0, 0, 0, 0.3), 
    inset 0 -2px 3px rgba(0, 0, 0, 0.5), 
    inset 0 1px 0 rgba(255, 255, 255, 0.1); /* top light sheen */

  /* TEXT SHADOW — pressed from above */
  text-shadow: 
    0 1px 2px rgba(0, 0, 0, 0.6); /* shadow drops down */
  
  transform: translateY(-1px);
  transition: all 0.2s ease;
}

.section-body.terms-content {
    font-family: 'Georgia', serif;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #444;
    background-color: #fff;
    padding: 2.5rem 1.5rem;
    max-width: 860px;
    margin: 2rem auto;
    border-radius: 8px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
}

.section-body.privacy-content {
    font-family: 'Georgia', serif;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #444;
    background-color: #fff;
    padding: 2.5rem 1.5rem;
    max-width: 860px;
    margin: 2rem auto;
    border-radius: 8px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
}
.section-body.gdpr-content {
    font-family: 'Georgia', serif;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #444;
    background-color: #fff;
    padding: 2.5rem 1.5rem;
    max-width: 860px;
    margin: 2rem auto;
    border-radius: 8px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
}

/* Player Box */
.player-container {
    background-color: rgba(255, 255, 255, 0.85) !important;
    border-radius: 12px !important;
    padding: 15px !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1) !important;
}

/* Similar items and description box */
.similar-items, .description-box {
    background-color: rgba(255, 255, 255, 0.75) !important;
    border-radius: 12px !important;
    padding: 10px !important;
}

/* Base styling */
body > div.announcement > div > div > a {
    background-color: #2979FF;  /* Primary blue */
    color: #fff;  /* White text */
    font-size: 16px;
    font-weight: bold;
    padding: 12px 24px;  /* Some padding for a more clickable feel */
    border-radius: 8px;  /* Rounded corners */
    text-decoration: none;  /* Remove underline */
    display: inline-block;  /* Ensure it's properly sized */
    text-align: center;
    transition: background-color 0.3s, transform 0.3s; /* Smooth transitions */
}

/* Hover effect */
body > div.announcement > div > div > a:hover {
    background-color: #1a58c1;  /* Darker blue on hover */
    transform: scale(1.05);  /* Slightly enlarge the button */
}

/* Focus effect */
body > div.announcement > div > div > a:focus {
    outline: none;
    box-shadow: 0 0 10px rgba(41, 121, 255, 0.5);  /* Soft glow on focus */
}

/* Targeting the logo image */
body > div.nav-bar > div > div > a > img {
    max-width: 100%; /* Ensures it scales down with screen size */
    height: 40px; /* Keeps the aspect ratio intact */
    border-radius: 8px; /* Optionally add rounded corners */
    transition: transform 0.3s ease-in-out; /* Smooth scale effect on hover */
}

/* Adding hover effect */
body > div.nav-bar > div > div > a > img:hover {
    transform: scale(1.05); /* Slightly increases the size for an interactive effect */
}

body > footer > div.footer-upper > div > div.row.g-5 > div.col-12.col-lg-5 > a > img {height: 70px !important;}

:root{
  --toast-success: {{ themeSettings()->text_green        ?? '#43a047' }};
  --toast-warning: {{ themeSettings()->trending_badge    ?? '#ff6d00' }};
  --toast-error:   {{ themeSettings()->free_item_badge   ?? '#d32f2f' }};
  --toast-info:    {{ themeSettings()->primary_color     ?? '#2979ff' }};
  --toast-premium: {{ themeSettings()->premium_color     ?? '#c3a16c' }};
}

#toast-container > .toast-success { background-color: var(--toast-success) !important; }
#toast-container > .toast-warning { background-color: var(--toast-warning) !important; }
#toast-container > .toast-error   { background-color: var(--toast-error)   !important; }
#toast-container > .toast-info    { background-color: var(--toast-info)    !important; }
* Optional “premium” look */
#toast-container > .toast-premium { background-color: var(--toast-premium) !important; color:#fff; }

/* === Info Page Narrow Layout: Left-aligned, clean prose formatting === */
body > section > div > div > div.section-body:has(> h2:first-child) {
  max-width: 900px !important;
  margin: 0 auto !important;
  padding: 0 20px !important;
  text-align: left !important;
  box-sizing: border-box !important;
  float:left!important;
}

body > section > div > div > div.section-body:has(> h2:first-child) * {
  text-align: left !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  display: revert !important;
}

/* Improve paragraph readability */
body > section > div > div > div.section-body:has(> h2:first-child) p {
  line-height: 1.65;
  font-size: 1.05em;
  margin-bottom: 1.2em;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  body > section > div > div > div.section-body:has(> h2:first-child) {
    max-width: 100% !important;
    padding: 0 15px !important;
  }
}