.checkout-container {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.checkout-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

h2 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: #1d1d1f;
}

.order-summary {
    background: #f5f5f7;
    padding: 2rem;
    border-radius: 16px;
}

.cart-item {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1rem;
}

.cart-item img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
}

.item-details h3 {
    font-size: 18px;
    margin-bottom: 0.5rem;
}

.price {
    font-size: 16px;
    color: #515154;
}

.quantity-control {
    margin-top: 1rem;
}

.qty-btn {
    padding: 0.5rem 1rem;
    border: none;
    background: #f5f5f7;
    border-radius: 8px;
    font-size: 16px;
    transition: background 0.2s;
}

.qty-btn:hover {
    background: #e8e8ed;
}

.qty-input {
    width: 60px;
    padding: 0.5rem;
    text-align: center;
    border: none;
    background: transparent;
    font-size: 16px;
}

.price-details {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #d2d2d7;
}

.price-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    color: #515154;
}

.price-row.total {
    font-size: 20px;
    font-weight: 600;
    color: #1d1d1f;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #d2d2d7;
}

.payment-options {
    display: grid;
    gap: 1rem;
}

.payment-option {
    border: 1px solid #d2d2d7;
    padding: 1.5rem;
    border-radius: 12px;
    transition: all 0.2s;
}

.payment-option:hover {
    border-color: #0071e3;
    background: #f5f5f7;
}

.payment-option label {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    cursor: pointer;
}

.payment-option img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.payment-option span {
    font-size: 16px;
    color: #1d1d1f;
}

.checkout-btn {
    background: #0071e3;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 500;
    width: 100%;
    margin-top: 2rem;
    cursor: pointer;
    transition: background 0.2s;
}

.checkout-btn:hover {
    background: #0077ED;
}

/* Form styling */
.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    color: #1d1d1f;
    font-size: 15px;
}

input[type="text"],
input[type="tel"],
textarea,
select {
    width: 100%;
    padding: 1rem;
    border: 1px solid #d2d2d7;
    border-radius: 12px;
    font-size: 16px;
    transition: border-color 0.2s;
}

input[type="text"]:focus,
input[type="tel"]:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: #0071e3;
}

textarea {
    min-height: 100px;
    resize: vertical;
}

/* Responsive design */
@media (max-width: 968px) {
    .checkout-wrapper {
        grid-template-columns: 1fr;
    }
    
    .checkout-container {
        margin: 2rem auto;
        padding: 0 1rem;
    }
} 

/* Tambahkan style untuk map */
.map-container {
    margin-bottom: 1.5rem;
}

#searchAddress {
    width: 100%;
    padding: 12px;
    border: 1px solid #d2d2d7;
    border-radius: 12px;
    margin-bottom: 1rem;
    font-size: 16px;
}

#map {
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

#map:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.leaflet-control-geocoder {
    border: none !important;
    border-radius: 8px !important;
    overflow: hidden;
}

.leaflet-control-geocoder-form input {
    padding: 8px 12px !important;
    font-size: 14px !important;
    width: 300px !important;
}

.hidden {
    display: none;
} 