/* Rev Button Styles */
.rev-button-wrapper {
    position: relative;
    display: inline-block;
}

/* Basic button styling */
.rev-button {
    display: inline-flex;
    padding: 15px 50px;
    background-color: #000000;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    position: relative;
    min-width: 250px;
    height: 50px;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.3s ease;
}

/* Button text and icon styles */
.rev-button .rev-button-text {
    display: inline-block;
}

.rev-button .rev-button-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.rev-button .rev-button-icon-before {
    margin-right: 8px;
}

.rev-button .rev-button-icon-after {
    margin-left: 8px;
}

/* Corner SVG styles */
.corner-svg {
    position: absolute;
    width: 16px;
    height: 16px;
    bottom: -8px;
    right: -8px;
    z-index: 2;
}

/* Normal corner class */
.corner-normal {
    filter: none;
}

/* Inverted corner class */
.corner-inverted {
    filter: invert(100%);
}

.rev-button:hover {
    opacity: 0.9;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .rev-button {
        padding: 12px 40px;
        font-size: 14px;
        min-width: 200px;
        height: 45px;
    }

    .corner-svg {
        width: 12px;
        height: 12px;
        bottom: -6px;
        right: -6px;
    }
}