.ezee-audio-equalizer {
    width: 100%;
    max-width: 100%;
    display: inline-block;
    vertical-align: top;
    text-align: center;
    margin: 20px 0;
}

/* HEADER ALANI */
.audio-header {
    margin-bottom: 1rem;
}
.audio-header .header-icon {
    display: inline-block;
    margin-bottom: 10px;
}
.audio-header h3 {
    margin: 0;
    font-weight: 600;
    font-size: 20px;
    color: #111;
}
.audio-header p {
    margin-top: 4px;
    font-size: 14px;
    color: #666;
    opacity: 0.8;
}

/* ANA WRAPPER */
.audio-equalizer-wrapper {
    position: relative;
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
}

/* Elementor gradient bu pseudo-element’e uygulanır */
.audio-equalizer-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    z-index: 0;
}

/* CANVAS */
.audio-equalizer-canvas {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 140px;
    display: block;
    background: transparent !important; /* 🚫 siyah arka planı kaldırdık */
    border-radius: 10px;
}

/* PLAY OVERLAY */
.play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.25s ease;
    z-index: 2;
}
.play-overlay:hover {
    filter: brightness(0.95);
}

/* ICONLAR */
.play-icon-el {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Font ikonlar için */
.play-icon-el i {
    font-size: var(--icon-size, 60px);
    line-height: 1;
}

/* SVG ikonlar için */
.play-icon-el svg {
    width: var(--icon-size, 60px);
    height: var(--icon-size, 60px);
    fill: currentColor;
}
