[data-gradient-border="true"] {
    position: relative;
    border: none !important; /* Elementor default border iptal */
    z-index: 0;
}

[data-gradient-border="true"]::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: var(--gradient-border-width, 2px);
    border-radius: inherit;
    background: linear-gradient(var(--gradient-angle, 90deg), var(--gradient-color-1, red), var(--gradient-color-2, blue));
    -webkit-mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: -1;
}
