/**
 * Pages Stylesheet - Cart, Checkout, Product
 * Beautiful Modern Design
 */

/* ========== CHECKOUT STEPS ========== */
.checkout-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 3rem 0;
    padding: 0 2rem;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}

.step-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #e5e7eb;
    color: #9ca3af;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: 0.3s;
}

.step.active .step-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(102,126,234,0.4);
}

.step.completed .step-icon {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
}

.step-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: #6b7280;
}

.step.active .step-text {
    color: #667eea;
}

.step.completed .step-text {
    color: #10b981;
}

.step-line {
    width: 100px;
    height: 2px;
    background: #e5e7eb;
    margin: 0 1rem;
}

.step-line.completed {
    background: linear-gradient(90deg, #10b981 0%, #059669 100%);
}

@media (max-width: 768px) {
    .checkout-steps {
        margin: 2rem 0;
        padding: 0 1rem;
    }
    
    .step-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .step-text {
        font-size: 0.75rem;
    }
    
    .step-line {
        width: 50px;
        margin: 0 0.5rem;
    }
}

/* ========== CART PAGE ========== */
.cart-page {
    padding: 3rem 0;
    background: #f9fafb;
    min-height: 70vh;
}

.cart-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 2rem;
    margin-top: 2rem;
}

/* Empty Cart */
.empty-cart-modern {
    text-align: center;
    padding: 5rem 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.empty-cart-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.empty-cart-icon i {
    font-size: 4rem;
    color: #9ca3af;
}

.empty-cart-modern h2 {
    font-size: 1.875rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.empty-cart-modern p {
    color: #6b7280;
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

/* Cart Items Section */
.cart-items-section {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f3f4f6;
}

.section-header h2 {
    font-size: 1.5rem;
    color: #1f2937;
}

.btn-text {
    background: none;
    border: none;
    color: #ef4444;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: 0.3s;
}

.btn-text:hover {
    color: #dc2626;
}

/* Cart Item Modern */
.cart-items-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cart-item-modern {
    display: grid;
    grid-template-columns: 120px 1fr auto auto auto;
    gap: 1.5rem;
    align-items: center;
    padding: 1.5rem;
    background: #f9fafb;
    border-radius: 12px;
    position: relative;
    transition: 0.3s;
}

.cart-item-modern:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.item-image {
    width: 120px;
    height: 120px;
    border-radius: 12px;
    overflow: hidden;
    background: white;
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item-details {
    flex: 1;
}

.item-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.item-price {
    font-size: 1rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.item-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.in-stock {
    color: #10b981;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* Quantity Control */
.item-quantity {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.item-quantity label {
    font-size: 0.75rem;
    color: #6b7280;
    font-weight: 600;
    text-transform: uppercase;
}

.quantity-control {
    display: flex;
    align-items: center;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    background: white;
}

.quantity-control .qty-btn {
    background: white;
    border: none;
    width: 36px;
    height: 40px;
    cursor: pointer;
    transition: 0.3s;
    color: #6b7280;
}

.quantity-control .qty-btn:hover {
    background: #f3f4f6;
    color: #1f2937;
}

.quantity-control input {
    border: none;
    width: 50px;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    color: #1f2937;
}

/* Item Total */
.item-total {
    text-align: right;
}

.total-label {
    font-size: 0.75rem;
    color: #6b7280;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
}

.total-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
}

/* Remove Button */
.item-remove {
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.btn-remove {
    background: #fee2e2;
    color: #ef4444;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-remove:hover {
    background: #fecaca;
    transform: scale(1.1);
}

/* Cart Actions Bottom */
.cart-actions-bottom {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #f3f4f6;
}

/* Order Summary Section */
.order-summary-section {
    position: relative;
}

.summary-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.summary-card.sticky {
    position: sticky;
    top: 100px;
}

.summary-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

.summary-rows {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
}

.summary-row.discount {
    color: #10b981;
}

.summary-row.discount span:first-child {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.summary-row .free {
    color: #10b981;
    font-weight: 600;
}

.summary-row.total {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    padding-top: 1rem;
}

.summary-divider {
    height: 1px;
    background: #e5e7eb;
    margin: 1rem 0;
}

/* Voucher Input */
.voucher-input-section {
    margin: 1.5rem 0;
}

.voucher-input-group {
    display: flex;
    gap: 0.5rem;
}

.voucher-input-group input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 0.875rem;
    text-transform: uppercase;
    transition: 0.3s;
}

.voucher-input-group input:focus {
    outline: none;
    border-color: #667eea;
}

.btn-apply {
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.btn-apply:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102,126,234,0.4);
}

.btn-remove-voucher {
    background: none;
    border: none;
    color: #ef4444;
    cursor: pointer;
    margin-left: 0.5rem;
    padding: 0.25rem;
}

/* Checkout Button */
.btn-checkout {
    width: 100%;
    margin-top: 1.5rem;
    padding: 1rem;
    font-size: 1.125rem;
}

/* Trust Badges */
.trust-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
}

.trust-item i {
    font-size: 1.5rem;
    color: #10b981;
}

.trust-item span {
    font-size: 0.75rem;
    color: #6b7280;
}

/* ========== CHECKOUT PAGE ========== */
.checkout-page {
    padding: 3rem 0;
    background: #f9fafb;
}

.checkout-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 2rem;
    margin-top: 2rem;
}

/* Checkout Form */
.checkout-form-section {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.form-section {
    margin-bottom: 2rem;
}

.form-section .section-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f3f4f6;
}

.form-section .section-header h3 {
    font-size: 1.25rem;
    color: #1f2937;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 0.875rem;
    transition: 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102,126,234,0.1);
}

/* Payment Methods */
.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.payment-option {
    cursor: pointer;
}

.payment-option input[type="radio"] {
    display: none;
}

.payment-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    transition: 0.3s;
}

.payment-option input[type="radio"]:checked + .payment-card {
    border-color: #667eea;
    background: #f5f3ff;
}

.payment-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #6b7280;
}

.payment-option input[type="radio"]:checked + .payment-card .payment-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.payment-info {
    flex: 1;
}

.payment-info strong {
    display: block;
    font-size: 1rem;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.payment-info span {
    font-size: 0.875rem;
    color: #6b7280;
}

.payment-check {
    font-size: 1.5rem;
    color: #e5e7eb;
}

.payment-option input[type="radio"]:checked + .payment-card .payment-check {
    color: #667eea;
}

/* Checkbox Label */
.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.checkbox-label span {
    font-size: 0.875rem;
    color: #6b7280;
}

.checkbox-label a {
    color: #667eea;
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

/* Checkout Summary */
.checkout-summary-section {
    position: relative;
}

.summary-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
    max-height: 300px;
    overflow-y: auto;
}

.summary-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.summary-item img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
}

.summary-item-info {
    flex: 1;
}

.summary-item-info .item-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.summary-item-info .item-qty {
    font-size: 0.75rem;
    color: #6b7280;
}

.summary-item .item-price {
    font-weight: 600;
    color: #1f2937;
}

.btn-text-center {
    display: block;
    text-align: center;
    margin-top: 1rem;
    color: #6b7280;
    text-decoration: none;
    font-size: 0.875rem;
}

.btn-text-center:hover {
    color: #1f2937;
}

/* Success Modal */
.success-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.success-modal-content {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    animation: slideUp 0.4s ease;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.success-icon {
    font-size: 5rem;
    color: #10b981;
    margin-bottom: 1.5rem;
    animation: scaleIn 0.5s ease;
}

.success-modal-content h2 {
    font-size: 2rem;
    color: #1f2937;
    margin-bottom: 1rem;
}

.order-id {
    font-size: 1.125rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.thank-you {
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .cart-layout,
    .checkout-layout {
        grid-template-columns: 1fr;
    }
    
    .summary-card.sticky {
        position: static;
    }
}

@media (max-width: 768px) {
    .cart-page,
    .checkout-page {
        padding: 0.5rem 0;
    }
    
    .container {
        padding: 0 0.75rem;
    }
    
    /* Ultra compact checkout steps */
    .checkout-steps {
        margin: 0.75rem 0;
        padding: 0;
    }
    
    .step {
        gap: 0.25rem;
    }
    
    .step-icon {
        width: 32px;
        height: 32px;
        font-size: 0.875rem;
    }
    
    .step-text {
        font-size: 0.625rem;
        display: none; /* Hide text to save space */
    }
    
    .step-line {
        width: 20px;
        margin: 0 0.25rem;
    }
    
    /* Ultra compact cart items */
    .cart-items-section {
        padding: 0.75rem;
        border-radius: 8px;
    }
    
    .section-header {
        margin-bottom: 0.5rem;
        padding-bottom: 0.5rem;
    }
    
    .section-header h2 {
        font-size: 1rem;
    }
    
    .btn-text {
        font-size: 0.75rem;
    }
    
    .cart-item-modern {
        grid-template-columns: 60px 1fr;
        gap: 0.5rem;
        padding: 0.75rem;
        align-items: start;
    }
    
    .item-image {
        width: 60px;
        height: 60px;
        border-radius: 8px;
    }
    
    .item-details {
        grid-column: 2;
    }
    
    .item-name {
        font-size: 0.8rem;
        margin-bottom: 0.125rem;
        line-height: 1.2;
    }
    
    .item-price {
        font-size: 0.75rem;
        margin-bottom: 0.125rem;
    }
    
    .item-meta {
        font-size: 0.65rem;
    }
    
    .in-stock i {
        font-size: 0.65rem;
    }
    
    .item-quantity {
        grid-column: 1 / -1;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        margin-top: 0.375rem;
    }
    
    .item-quantity label {
        display: none;
    }
    
    .quantity-control {
        flex: 0 0 auto;
        border-width: 1px;
    }
    
    .quantity-control .qty-btn {
        width: 28px;
        height: 32px;
        font-size: 0.75rem;
    }
    
    .quantity-control input {
        width: 36px;
        font-size: 0.85rem;
    }
    
    .item-total {
        grid-column: 1 / -1;
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 0.375rem;
        padding-top: 0.375rem;
        border-top: 1px solid #e5e7eb;
    }
    
    .total-label {
        font-size: 0.65rem;
    }
    
    .total-price {
        font-size: 1rem;
        font-weight: 700;
    }
    
    .item-remove {
        position: absolute;
        top: 0.375rem;
        right: 0.375rem;
    }
    
    .btn-remove {
        width: 24px;
        height: 24px;
        font-size: 0.7rem;
    }
    
    /* Ultra compact summary */
    .order-summary-section {
        margin-top: 0.75rem;
    }
    
    .summary-card {
        padding: 0.875rem;
        border-radius: 8px;
    }
    
    .summary-card h3 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
    
    .summary-rows {
        gap: 0.5rem;
    }
    
    .summary-row {
        font-size: 0.8rem;
    }
    
    .summary-row.total {
        font-size: 1.125rem;
        padding-top: 0.5rem;
    }
    
    .summary-divider {
        margin: 0.5rem 0;
    }
    
    /* Ultra compact voucher input */
    .voucher-input-section {
        margin: 0.75rem 0;
    }
    
    .voucher-input-group {
        gap: 0.375rem;
    }
    
    .voucher-input-group input {
        padding: 0.5rem 0.625rem;
        font-size: 0.75rem;
        border-radius: 6px;
    }
    
    .btn-apply {
        padding: 0.5rem 0.875rem;
        font-size: 0.75rem;
        border-radius: 6px;
        white-space: nowrap;
    }
    
    /* Ultra compact trust badges */
    .trust-badges {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.375rem;
        margin-top: 0.75rem;
        padding-top: 0.75rem;
    }
    
    .trust-item {
        gap: 0.25rem;
    }
    
    .trust-item i {
        font-size: 1.125rem;
    }
    
    .trust-item span {
        font-size: 0.6rem;
        line-height: 1.2;
    }
    
    /* Ultra compact checkout button */
    .btn-checkout {
        margin-top: 0.75rem;
        padding: 0.75rem;
        font-size: 0.9rem;
        border-radius: 8px;
    }
    
    /* Ultra compact checkout form */
    .checkout-form-section {
        padding: 0.875rem;
        border-radius: 8px;
    }
    
    .form-section {
        margin-bottom: 0.875rem;
    }
    
    .form-section .section-header {
        margin-bottom: 0.625rem;
        padding-bottom: 0.5rem;
    }
    
    .form-section .section-header h3 {
        font-size: 0.9rem;
    }
    
    .form-section .section-header h3 i {
        font-size: 0.85rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .form-group {
        gap: 0.25rem;
    }
    
    .form-group label {
        font-size: 0.75rem;
        margin-bottom: 0;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.5rem 0.75rem;
        font-size: 0.75rem;
        border-radius: 6px;
        border-width: 1px;
    }
    
    .form-group textarea {
        rows: 2;
        min-height: 60px;
    }
    
    /* Ultra compact payment methods */
    .payment-methods {
        gap: 0.5rem;
    }
    
    .payment-card {
        padding: 0.75rem;
        gap: 0.625rem;
        border-radius: 8px;
        border-width: 1px;
    }
    
    .payment-icon {
        width: 36px;
        height: 36px;
        font-size: 1.125rem;
    }
    
    .payment-info strong {
        font-size: 0.8rem;
        margin-bottom: 0.125rem;
    }
    
    .payment-info span {
        font-size: 0.65rem;
    }
    
    .payment-check {
        font-size: 1.125rem;
    }
    
    /* Ultra compact summary items */
    .summary-items {
        gap: 0.5rem;
        margin-bottom: 0.75rem;
        max-height: 150px;
    }
    
    .summary-item {
        gap: 0.5rem;
    }
    
    .summary-item img {
        width: 40px;
        height: 40px;
        border-radius: 6px;
    }
    
    .summary-item-info .item-name {
        font-size: 0.75rem;
        line-height: 1.2;
    }
    
    .summary-item-info .item-qty {
        font-size: 0.65rem;
    }
    
    .summary-item .item-price {
        font-size: 0.75rem;
        font-weight: 600;
    }
    
    /* Ultra compact empty cart */
    .empty-cart-modern {
        padding: 2rem 1rem;
    }
    
    .empty-cart-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 1rem;
    }
    
    .empty-cart-icon i {
        font-size: 2.5rem;
    }
    
    .empty-cart-modern h2 {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }
    
    .empty-cart-modern p {
        font-size: 0.85rem;
        margin-bottom: 1.25rem;
    }
    
    /* Ultra compact actions */
    .cart-actions-bottom {
        margin-top: 0.75rem;
        padding-top: 0.75rem;
    }
    
    .cart-actions-bottom .btn {
        padding: 0.625rem 1rem;
        font-size: 0.85rem;
    }
    
    .checkbox-label {
        font-size: 0.75rem;
        gap: 0.5rem;
    }
    
    .checkbox-label input[type="checkbox"] {
        width: 16px;
        height: 16px;
    }
    
    .btn-text-center {
        font-size: 0.75rem;
        margin-top: 0.75rem;
    }
}

/* Extra small mobile - Even more compact */
@media (max-width: 480px) {
    .cart-page,
    .checkout-page {
        padding: 0.375rem 0;
    }
    
    .container {
        padding: 0 0.5rem;
    }
    
    .checkout-steps {
        margin: 0.5rem 0;
    }
    
    .step-icon {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }
    
    .step-line {
        width: 15px;
    }
    
    .cart-items-section,
    .checkout-form-section,
    .summary-card {
        padding: 0.625rem;
    }
    
    .section-header {
        margin-bottom: 0.375rem;
        padding-bottom: 0.375rem;
    }
    
    .section-header h2 {
        font-size: 0.9rem;
    }
    
    .cart-item-modern {
        padding: 0.625rem;
        gap: 0.375rem;
    }
    
    .item-image {
        width: 50px;
        height: 50px;
    }
    
    .item-name {
        font-size: 0.75rem;
    }
    
    .item-price {
        font-size: 0.7rem;
    }
    
    .quantity-control .qty-btn {
        width: 26px;
        height: 30px;
    }
    
    .quantity-control input {
        width: 32px;
        font-size: 0.8rem;
    }
    
    .summary-card h3 {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    .summary-row {
        font-size: 0.75rem;
    }
    
    .summary-row.total {
        font-size: 1rem;
    }
    
    .form-section {
        margin-bottom: 0.625rem;
    }
    
    .form-section .section-header {
        margin-bottom: 0.5rem;
        padding-bottom: 0.375rem;
    }
    
    .form-section .section-header h3 {
        font-size: 0.85rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.45rem 0.625rem;
        font-size: 0.7rem;
    }
    
    .payment-card {
        padding: 0.625rem;
        gap: 0.5rem;
    }
    
    .payment-icon {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }
    
    .payment-info strong {
        font-size: 0.75rem;
    }
    
    .payment-info span {
        font-size: 0.6rem;
    }
    
    .summary-items {
        max-height: 120px;
    }
    
    .summary-item img {
        width: 36px;
        height: 36px;
    }
    
    .btn-checkout {
        padding: 0.625rem;
        font-size: 0.85rem;
    }
}
