/* Free Shipping Progress Message */
.free-shipping-progress,
.free-shipping-success {
    background-color: #004855;    /* Dark teal background */
    color: #ffffff;               /* White text */
    font-weight: 700;             /* Bold text */
    font-size: 1.2rem;            /* Slightly larger text */
    padding: 15px 20px;           /* Some padding for breathing room */
    border-radius: 8px;           /* Rounded corners */
    text-align: center;           /* Centered text */
    margin: 15px 0;               /* Space above and below */
}

/* Optional: add a small icon spacing */
.free-shipping-progress p,
.free-shipping-success p {
    margin: 0;
}

/* Optional: subtle shadow to make it pop */
.free-shipping-progress,
.free-shipping-success {
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Container for the tour voucher CTA */
.tour-voucher-cta {
    background-color: #004855;       /* Dark teal background */
    color: #ffffff;                  /* White text */
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    margin: 20px 0;
}

.tour-voucher-cta h2 {
    margin-top: 0;
    color: #fff;
    font-weight: 700;
}

.tour-voucher-cta p {
    font-size: 1rem;
    line-height: 1.5;
}

/* CTA Button */
.tour-voucher-cta-button {
    display: inline-block;
    margin-top: 15px;
    background-color: #a4c8e1;   /* light blue background */
    color: #004855;              /* dark teal text */
    padding: 12px 25px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.tour-voucher-cta-button:hover {
    background-color: #004855;  /* dark teal background */
    color: #ffffff;              /* white text */
    text-decoration: none;
}
