.cart-content {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.cart-item {
    display: grid;
    grid-template-columns: 140px minmax(220px, 1fr) auto;
    gap: 20px;
    align-items: start;
    padding: 22px;
    border: 1px solid #eee;
    border-radius: 24px;
    background: #fff;
}

.cart-item img {
    width: 100%;
    max-width: 140px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 18px;
}

.cart-item-info,
.cart-item-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cart-item-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
}

.cart-item-meta {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
}

.cart-item-actions {
    justify-content: flex-start;
    align-items: flex-start;
}

.recommended-section {
    margin-top: 40px;
}

.recommended-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
    width: 100%;
}

.recommended-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 18px;
    padding: 16px;
    text-decoration: none;
    color: inherit;
    overflow: hidden;
}

.recommended-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.recommended-card img {
    width: 100%;
    max-height: 220px;
    object-fit: cover;
    border-radius: 14px;
}

.recommended-title {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
    cursor: pointer;
}

.recommended-price {
    color: #555;
    font-size: 14px;
}

.order-wrapper {
    display: flex;
    justify-content: center;
    padding: 40px 20px;
    min-height: 80vh;
}

.order-container {
    width: 100%;
    max-width: 600px;
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.05);
}

.order-container h1 {
    font-size: 32px;
    margin-bottom: 30px;
    text-align: center;
}

.order-container h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    margin-top: 24px;
}

.order-summary {
    background: #f8f8f8;
    padding: 20px;
    border-radius: 16px;
    margin-bottom: 30px;
}

.order-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    font-size: 15px;
}

.order-item:last-child {
    border-bottom: none;
}

.order-total {
    display: flex;
    justify-content: space-between;
    padding-top: 12px;
    margin-top: 12px;
    border-top: 2px solid #111;
    font-size: 18px;
}

.order-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.g-recaptcha {
    margin: 20px 0;
}

.checkout-section {
    display: flex;
    justify-content: flex-end;
    margin: 40px 0;
}

.checkout-btn,
.submit-btn {
    width: min(320px, 100%);
    background: #111;
    color: #fff;
    padding: 16px 24px;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: background 0.2s ease, transform 0.2s ease;
    text-decoration: none;
}

.checkout-btn:hover,
.submit-btn:hover {
    background: #333;
    transform: translateY(-2px);
}

.order-message {
    text-align: center;
    margin-top: 16px;
    font-size: 14px;
    min-height: 20px;
}

.order-message .success {
    color: #22c55e;
    font-weight: 600;
}

.order-message .error {
    color: #ef4444;
    font-weight: 600;
}

.confirmation-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    padding: 40px 20px;
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
}

.confirmation-container {
    text-align: center;
    background: #fff;
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    width: 100%;
}

.confirmation-icon {
    width: 80px;
    height: 80px;
    background: #22c55e;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 30px;
    animation: scaleIn 0.5s ease;
}

.confirmation-container h1 {
    font-size: 32px;
    color: #111;
    margin: 0 0 10px;
}

.confirmation-message {
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
}

.confirmation-details {
    background: #f8f8f8;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 30px;
    text-align: left;
}

.confirmation-details h3 {
    color: #111;
    font-size: 16px;
    margin-top: 0;
    margin-bottom: 15px;
}

.confirmation-details p {
    margin: 8px 0;
    font-size: 14px;
    color: #333;
}

.confirmation-email {
    background: #fffbeb;
    border-left: 4px solid #f59e0b;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    text-align: left;
}

.confirmation-email h3 {
    color: #111;
    font-size: 16px;
    margin-top: 0;
    margin-bottom: 10px;
}

.confirmation-email p {
    font-size: 14px;
    color: #333;
    margin: 8px 0;
}

.confirmation-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.btn-home {
    background: #111;
    color: #fff;
    padding: 14px 32px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s ease, transform 0.2s ease;
    display: inline-block;
}

.btn-home:hover {
    background: #333;
    transform: translateY(-2px);
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}