.btn-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

/* Base Button Styles */
.btn-arrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 2px 2px 2px 28px;
    border-radius: 50px;
    font-size: 14.5px;
    font-weight: 500;
    line-height: 0.5;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    font-family: "Manrope", Arial, Helvetica, sans-serif;
    text-wrap-mode: nowrap;
}

/* Icon Circle */
.btn-arrow-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}
.big-btn .btn-arrow-icon {
    width: 68px;
    height: 68px;
}
.btn-arrow-icon i {
    font-size: 16px;
    transition: transform 0.3s ease;
    transform: rotate(-45deg);
}
.big-btn .btn-arrow-icon i {
    font-size: 35px;
}
/* Hover: Arrow becomes horizontal */
.btn-arrow:hover {
    text-decoration: none;
}
.btn-arrow:hover .btn-arrow-icon i {
    transform: rotate(0deg);
}

.btn-arrow:hover .btn-txt {
    font-weight: 500;
}

@media (max-width: 960px) {
    .big-btn .btn-arrow-icon {
        width: 40px;
        height: 40px;
    }
    .big-btn .btn-arrow-icon i {
        font-size: 18px;
    }
}

@media (max-width: 600px) {
    .btn-arrow {
        width: 100%;
        justify-content: center; /* Center the text horizontally */
        display: flex;
        align-items: center;
        position: relative; /* Required for absolute positioning of the child */
    }
    .btn-arrow::after {
        content: "";
        position: relative;
        top: 50%;
        right: 1px;
        width: 20px;
        height: 40px;
    }

    .btn-arrow .btn-arrow-icon {
        position: absolute;
        right: 2px; /* Adjust as needed for padding from the right edge */
    }
}

/* ===== WITH BACKGROUND VARIANTS ===== */

/* Yellow/Orange Button */
.btn-bg-yellow {
    background-color: var(--gold100);
    border-color: var(--gold100);
}

.btn-bg-yellow .btn-arrow-icon {
    background-color: rgba(255, 255, 255, 0.4);
}

.btn-bg-yellow .btn-arrow-icon i {
    color: var(--gray1000);
}

.btn-bg-yellow:hover {
    background-color: var(--gold300);
    border-color: var(--gold300);
}

/* Coral/Red Button */
.btn-bg-coral {
    background-color: var(--red500);
    border-color: var(--red500);
}

.btn-bg-coral .btn-arrow-icon {
    background-color: rgba(255, 255, 255, 0.4);
}

.btn-bg-coral .btn-arrow-icon i {
    color: var(--red900);
}

.btn-bg-coral:hover {
    background-color: var(--red700);
    border-color: var(--red700);
}

/* Green Button */
.btn-bg-green {
    background-color: var(--green600);
    border-color: var(--green600);
}

.btn-bg-green .btn-arrow-icon {
    background-color: rgba(255, 255, 255, 0.4);
}

.btn-bg-green .btn-arrow-icon i {
    color: var(--green-600);
}

.btn-bg-green:hover {
    background-color: var(--green600);
    border-color: var(--green600);
}

/* ===== OUTLINED (NO BACKGROUND) VARIANTS ===== */

/* Green Outlined */
.btn-outline-green {
    background-color: transparent;
    border-color: var(--green600);
    color: var(--green600);
}

.btn-outline-green .btn-arrow-icon {
    background-color: var(--green600);
}

.btn-outline-green .btn-arrow-icon i {
    color: #ffffff;
}

.btn-outline-green:hover {
    color: #ffffff;
    background-color: var(--green600);
}

.btn-outline-green:hover .btn-arrow-icon {
    background-color: rgba(255, 255, 255, 0.4);
}

/* Coral Outlined */
.btn-outline-coral {
    background-color: transparent;
    border-color: hsl(9, 57%, 87%);
}

.btn-outline-coral .btn-arrow-icon {
    background-color: hsl(9, 57%, 87%);
}

.btn-outline-coral .btn-arrow-icon i {
    color: #ffffff;
}

.btn-outline-coral:hover {
    background-color: hsla(6, 78%, 65%, 0.1);
}

/* ===== CUSTOM TEXT COLOR MODIFIER ===== */
.text-white {
    color: #ffffff !important;
}

.text-dark {
    color: var(--gray1000) !important;
}

.text-green {
    color: var(--green600) !important;
}

/* ===== CUSTOM ICON COLOR MODIFIER ===== */
.icon-white .btn-arrow-icon i {
    color: #ffffff !important;
}

.icon-dark .btn-arrow-icon i {
    color: #333333 !important;
}

.icon-yellow .btn-arrow-icon i {
    color: hsl(38, 100%, 65%) !important;
}
