.bg-header {
    background: #F2A018;
}

.bg-header-light {
    background: #dfdfe3;
}

.header a.nav-link {
    color: #fff;
}

.product-thumb-img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    border-radius: 10px;
    background-color: #fff;
    padding: 5px;
}

.product-thumb {
    height: 200px;
    object-fit: cover;
}

.product-image {
    max-width: 100%;
    height: auto;
}
.price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #d9534f;
}
.btn-buy {
    background-color: #5cb85c;
    color: white;
}
.btn-buy:hover {
    background-color: #4cae4c;
}

#register .step {
    display: none;
}
#register .step.active {
    display: block;
}
#register .step-indicator {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}
#register .step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #e9ecef;
    color: #6c757d;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 10px;
    position: relative;
}
#register .step-circle.active {
    background-color: #F2A018;
    color: white;
}
#register .step-circle.completed {
    background-color: #198754;
    color: white;
}
#register .step-connector {
    height: 2px;
    background-color: #e9ecef;
    flex-grow: 1;
    margin: 0 -10px;
    position: relative;
    top: 20px;
}
#register .step-connector.active {
    background-color: #F2A018;
}
#register .step-connector.completed {
    background-color: #198754;
}

.btn-primary, .bg-header-primary {
    background: #F2A018 !important;
    border-color: #F2A018 !important;
}

.btn-outline-primary {
    border-color: #F2A018 !important;
    color: #F2A018 !important;
}

.btn-outline-primary:hover {
    background: #F2A018 !important;
    border-color: #F2A018 !important;
    color: #ffffff !important;
}

.text-primary {
    color: #F2A018 !important;
}

.page-link {
    color: #F2A018;
}

.active>.page-link, .page-link.active {
    background-color: #F2A018;
    border-color: #F2A018;
}

.bg-footer {
    background-color: #343a40 !important;
}

.bg-dark-banner {
    background-color: #282b32;
    width: 100%;
}

.banner-img {
    max-width: 100%;
    height: auto;
}

.toast-center {
    max-width: 600px;
    width: auto;
    min-width: 300px;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.bg-danger {
    background-color: #dc3545 !important;
}

.bg-success {
    background-color: #28a745 !important;
}

.bg-warning {
    background-color: #ffc107 !important;
    color: #212529 !important;
}

.bg-warning .bi {
    fill: #212529;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.toast.show {
    animation: slideDown 0.5s ease forwards;
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-with-text {
    display: flex;
    align-items: center;
    background: #25D366;
    border-radius: 50px;
    padding: 10px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    color: white;
}

.whatsapp-with-text:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.6);
}

.whatsapp-text {
    font-size: 14px;
    font-weight: 600;
    margin-right: 10px;
    white-space: nowrap;
}

.whatsapp-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
}

.whatsapp-icon i {
    font-size: 24px;
    color: #25D366;
}