

/* Hero Section */
.checkout-hero {
    background-image: url('images/aboutus-hero.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    height: 380px; 
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #333;
    margin-top: 0px; 
}

.checkout-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(255, 255, 255, 0.4); 
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}

.checkout-hero-content {
    position: relative;
    z-index: 1;
    margin-top: 50px;
}

.checkout-hero-content h1 {
    font-weight: 300;
    font-size: 3.5rem;
    letter-spacing: 1px;
    color: #111;
}

.checkout-hero-content p {
    font-weight: 400;
    font-size: 1rem;
    color: #333;
    margin-top: 10px;
}

/* Form Styles */
.checkout-section {
    background-color: #fafafa;
}

.checkout-title-box {
    display: inline-block;
    border: 2px solid #e0e0e0;
    padding: 15px 35px;
    font-size: 0.85rem;
    letter-spacing: 2px;
    font-weight: 600;
    color: #444;
    background-color: #f7f9fa;
}

.checkout-input {
    width: 100%;
    border: none;
    border-bottom: 1px solid #9f5b5f; 
    background: transparent;
    padding: 10px 0;
    font-size: 0.9rem;
    color: #555;
    outline: none;
    transition: border-color 0.3s;
}

.checkout-input::placeholder {
    color: #999;
}

.checkout-input:focus {
    border-bottom-color: #6a3034;
}

.checkout-textarea {
    resize: none;
    min-height: 40px;
}

/* Payment Method Box */
.payment-method-box {
    background-color: #1a1a1a;
    color: #fff;
    padding: 15px 20px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 1px;
}

.payment-label {
    margin-right: 15px;
    white-space: nowrap;
}

.payment-divider {
    color: #555;
    margin-right: 15px;
}

.payment-option input[type="radio"] {
    margin-right: 8px;
    vertical-align: middle;
}
.payment-option label {
    cursor: pointer;
    margin: 0;
    vertical-align: middle;
}


.checkout-desc {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    font-weight: 300;
    padding-right: 20px;
}

/* Empty Cart Message */
.empty-cart-msg {
    border-top: 1px solid #f1f1f1;
    padding-top: 20px;
    font-size: 0.95rem;
}

.go-to-shop-link {
    color: #bd795b;
    text-decoration: none;
    font-weight: 300;
}

.go-to-shop-link:hover {
    color: #a0654c;
}



