h1.entry-title {
    display: none;
}

nav li a {
    font-size: 1.2em;
    font-weight: bold;
    color: #45287E;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

#tab-plan-selector {
    width: fit-content;
    display: flex;
    gap: 1.8rem;
    background-color: #A585BD;
    text-shadow: 0px 0px 10px rgba(0,0,0,0.3);
    color: #fff;
    border-radius: 15px 15px 15px 15px;
    padding: 0.2rem 0.8rem 0.2rem 0.8rem;
    margin: 20px 0;
}

#tab-plan-selector li {
    cursor: pointer;
    padding: 0.2rem 1rem;
    border-radius: 15px;
    font-family: "Futura PT", Sans-serif;
    font-size: 16px;
    font-weight: 600;
    font-weight: bold;
}

#tab-plan-selector li:hover {
    background-color: #D0C1DE;
    color: #fff;
}

#tab-plan-selector li a.active  {
    color: #fff!important;
}

#tab-plan-selector li.active  {
    background-color: #D2C2DF;
    color: #fff;
}

input#userAddress {
    border: 1px solid #45287E;
    border-radius: 50px;
}

button.active{
    background-color: #D2C2DF !important;
    color: #fff !important;
}


.slider-container { 
    max-width: 1200px; 
    margin: 0 auto; 
}
.product-slider .single-product {
    margin: 15px;
    border: 1px solid black;
    background: linear-gradient(135deg, #ffffff 70%, #e6daf5 70%);
    border-radius: 20px!important;
    border: 2px solid #6b4da3!important;
}
.card-header{
    padding: 15px!important;
    background-color: transparent!important;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1.5px solid #442E7E;
}
.card-header .card-img-top img{
    flex: 1 1 30%;        
    display: flex;
    align-items: center;
    justify-content: center;
}
.card-header .card-img-top{
    flex: 1 1 30%; 
    display: flex;
    align-items: center;
    justify-content: center;
}
.card-header-img{
    width: 30%!important;
}
.card-header-title{
    width: 70%!important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;;
    gap: 0.5rem;
    /* word-wrap: break-word;
    overflow-wrap: break-word; */
}
.card-subtitle{
    /* word-wrap: break-word;
    overflow-wrap: break-word; */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 15px!important;
    border-bottom: 1.5px solid #442E7E;
}
.card-subtitle h6 {
    margin: 0!important;
}
.card-text.name{
    font-size: 1rem!important;
    font-weight: bold;
}
.card-text.price {
    font-size: 3rem!important;
    font-weight: bold;
}
.card-text ul li {
    color: #442E7E;
    content: "\f00c"; /* Font Awesome check icon */
}
.card-footer-actions{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.ui.button.selected{
    background-color: #A284BBff !important;
    color: #fff !important;
}

#filter-products-container {
    display: flex;
    flex-direction: column;
}

button.general.add-to-cart {
    background-color: #442E7E!important;
}

.progress-steps button.general {
    background-color: #442E7E!important;
    margin-bottom: 20px!important;
}

.general-title-step {
    color: #442E7E!important;
}

.progress-steps {
    width: 100%;
    position: relative;
    margin: 0px auto;
}

.general-title-step.ready-to-go{
    color: #fff!important;
}

.step-icon.ready-to-go{
    background-color: #fff!important;
    color: #442E7E!important;
}

.step-label {
    margin-top: 6px;
    font-size: 0.9rem;
    color: #333;
    font-weight: 600;
    color: #442E7E;
}

/* Progress Bar Animations */
.step-line {
    flex-grow: 1;
    height: 2px;
    background-color: #D0C1DE; 
    margin: 20px 0;
    z-index: 1;
    align-self: flex-start;
    position: relative;
    overflow: hidden;
}

.step-line::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0%;
    background-color: #6A1B9A; 
    z-index: 2;
}

.step-line.verified::before {
    animation: fill-line 1s ease-in-out forwards;
}

@keyframes fill-line {
    from {
        width: 0%;
    }
    to {
        width: 100%;
    }
}

.stepBar {
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
}

.step-icon {
    width: 40px;
    height: 40px;
    background-color: #fff;
    border: 3px solid #442E7E;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 1.2rem;
    color: #442E7E;
    position: relative;
    transition: background-color 0.3s ease;
}

/* Number By default */
.step-icon .step-number {
    display: inline;
}

.step-icon::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 1rem;
    position: absolute;
    content: "";
    opacity: 0;
    transition: opacity 0.3s;
}

/* VERIFIED */
.stepBar.verified .step-icon {
    background-color: #442E7E;
    color: white;
}

.stepBar.verified .step-icon::before {
    content: "\f00c"; /* check */
    opacity: 1;
}

.stepBar.verified .step-icon .step-number {
    visibility: hidden;
}

/* ERROR */
.stepBar.error .step-icon {
    background-color: #dc3545;
    color: white;
}

.stepBar.error .step-icon::before {
    content: "\f12a"; /* exclamation-circle */
    opacity: 1;
}

.stepBar.error .step-icon .step-number {
    visibility: hidden;
}

#success-sq-container{
    max-width: 700px!important;
    margin: 0 auto!important;
    padding: 20px;
}

.summary-container{
    background-color: #fff;
    padding: 20px;
    border-radius: 30px;
    width: 50%;
    margin-right: auto;
    margin-left: auto;
    min-width: 660px;
}

.summary-container h2 {
    color: #000;
    font-weight: bold;
    font-size: 1.5rem;
    text-align: center;
}

.summary-container h4 {
    color: #45287E;
    font-weight: bold;
    font-size: 1.2rem;
    text-align: center;
}

.summary-container .total-price {
    color: #000;
    font-size: 2.3rem;
    text-align: center;
}
.summary-container .span {
    color: #000;
    font-size: 1rem;
    text-align: center;
}
.summary-container  button {
    width: 100%;
}