/* Base rounding */
.rounded {
    border-radius: 0.375rem !important;
}

/* 6px */
.rounded-0 {
    border-radius: 0 !important;
}

.rounded-1 {
    border-radius: 0.2rem !important;
}

/* 3.2px */
.rounded-2 {
    border-radius: 0.25rem !important;
}

/* 4px */
.rounded-3 {
    border-radius: 0.3rem !important;
}

/* 4.8px */
.rounded-4 {
    border-radius: 0.375rem !important;
}

/* 6px */
.rounded-5 {
    border-radius: 0.5rem !important;
}

/* 8px */
.rounded-6 {
    border-radius: 1.2rem !important;
}

/* Full roundings */
.rounded-circle {
    border-radius: 50% !important;
}

.rounded-pill {
    border-radius: 50rem !important;
}

.rounded-top {
    border-top-left-radius: 0.375rem !important;
    border-top-right-radius: 0.375rem !important;
}

.rounded-top-6 {
    border-top-left-radius: 1.2rem !important;
    border-top-right-radius: 1.2rem !important;
}

.rounded-top-img {
    border-top-left-radius: .7rem !important;
    border-top-right-radius: .7rem !important;
}

.rounded-end {
    border-top-right-radius: 0.375rem !important;
    border-bottom-right-radius: 0.375rem !important;
}

.rounded-bottom {
    border-bottom-left-radius: 0.375rem !important;
    border-bottom-right-radius: 0.375rem !important;
}

.rounded-start {
    border-top-left-radius: 0.375rem !important;
    border-bottom-left-radius: 0.375rem !important;
}

.btn-gold {
    color: #fff;
    background-color: #FE7F00; /* vibrant golden-orange */
    border: 1px solid #FE7F00;
    padding: 0.5rem 1rem;
    font-weight: 500;
    border-radius: 0.25rem;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
}

.btn-gold:hover {
    background-color: #e66f00; /* slightly darker on hover */
    border-color: #e66f00;
    color: #fff;
}

.btn-gold:focus,
.btn-gold.focus {
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(254, 127, 0, 0.5); /* orange outline */
}

.btn-gold:active,
.btn-gold.active {
    background-color: #cc6200; /* even darker when pressed */
    border-color: #cc6200;
    color: #fff;
}

.btn-outline-gold {
    color: #FE7F00;
    background-color: transparent;
    border: 1px solid #FE7F00;
    padding: 0.5rem 1rem;
    font-weight: 500;
    border-radius: 0.25rem;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
}

.btn-outline-gold:hover {
    background-color: #FE7F00;
    color: #fff;
    border-color: #FE7F00;
}

.btn-outline-gold:focus,
.btn-outline-gold.focus {
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(254, 127, 0, 0.5);
}

.btn-outline-gold:active,
.btn-outline-gold.active {
    background-color: #cc6200;
    border-color: #cc6200;
    color: #fff;
}
