/* ===================================
   CSS VARIABLES - REFINED PALETTE
   =================================== */
   :root {
    --primary-color: #996633;
    --primary-dark: #7a5229;
    --secondary-color: #AFBD77;
    --color-grey: #848688;
    --color-grey-light: #F3F4F6;
    --primary-light: rgba(153, 102, 51, 0.06);
    --secondary-light: rgba(175, 189, 119, 0.08);
    --success-color: #10B981;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --color-info: #3B82F6;
    --text-primary: #1F2937;
    --text-secondary: #6B7280;
    --border-color: #E5E7EB;
    --card-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    --card-shadow-hover: 0 4px 12px rgba(0, 0, 0, 0.08);
    --transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 12px;
}

/* ===================================
   GLOBAL IMPROVEMENTS - COMPACT
   =================================== */
body {
    font-size: 14px;
    color: var(--text-primary);
    line-height: 1.5;
}

.section-content {
    padding: 20px 0;
    background: #FAFAFA;
}

@media (min-width: 992px) {
    .section-content {
        padding: 24px 0;
    }
}

/* Container adjustments for better width usage */
.container-fluid {
    max-width: 1400px;
    margin: 0 auto;
}

/* ===================================
   STICKY SUMMARY BAR (Mobile)
   =================================== */
.sticky-summary {
    display: none;
    position: sticky;
    top: 0;
    z-index: 999;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    padding: 10px 16px;
    margin: -20px -15px 16px -15px;
}

.sticky-summary-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.sticky-summary-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.sticky-summary-badge {
    background: var(--primary-color);
    color: white;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
}

.sticky-summary-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
}

.sticky-summary-arrow {
    transition: transform 0.3s ease;
    color: var(--color-grey);
    font-size: 12px;
}

.sticky-summary.expanded .sticky-summary-arrow {
    transform: rotate(180deg);
}

@media (max-width: 991px) {
    .sticky-summary {
        display: block;
    }
}

/* ===================================
   COMPACT SECTION HEADERS - INLINE LAYOUT
   =================================== */
.section-header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 1px solid #E5E7EB;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.section-header-icon {
    width: 24px;
    height: 24px;
    background: #F3F4F6;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}

.section-header h4 {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

/* ===================================
   COMPACT ADDRESS CARDS
   =================================== */
.address-card-wrapper {
    margin-bottom: 12px;
}

.address-card {
    border: 1px solid #E5E7EB;
    border-radius: var(--radius-md);
    padding: 14px;
    position: relative;
    transition: var(--transition);
    cursor: pointer;
    background: white;
}

.address-card:hover {
    border-color: #D1D5DB;
    box-shadow: var(--card-shadow);
}

.address-card.selected {
    border-color: #9CA3AF;
    background: #F9FAFB;
    box-shadow: var(--card-shadow);
}

.address-card-header {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.address-radio {
    margin-top: 2px;
}

.address-radio input[type="radio"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.address-details {
    flex: 1;
}

.address-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}

.address-text {
    font-size: 13px;
    line-height: 1.5;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.address-contact {
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin-top: 8px;
}

.address-contact-item {
    font-size: 12px;
    color: var(--text-secondary);
}

.address-contact-item strong {
    color: var(--text-primary);
    font-weight: 600;
}



.add-address-btn {
    padding: 8px 14px;
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    white-space: nowrap;
}

.add-address-btn:hover {
    background: #9aa968;
    transform: translateY(-1px);
    box-shadow: var(--card-shadow-hover);
}

@media (max-width: 768px) {
    .section-header-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .add-address-btn {
        width: 100%;
    }
}



/* ===================================
   COMPACT ADDRESS TYPE BADGE & ACTIONS
   =================================== */
.address-type-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6px;
}

.address-type-badge {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.address-type-badge.Home {
    background: #F3F4F6;
    color: #6B7280;
}

.address-type-badge.Work {
    background: #F3F4F6;
    color: #6B7280;
}

.address-inline-actions {
    display: flex;
    gap: 8px;
}

.address-icon-btn {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 13px;
    background: #F9FAFB;
    color: #6B7280;
    border: 1px solid #E5E7EB;
}

.address-icon-btn:hover {
    background: #F3F4F6;
    border-color: #D1D5DB;
    transform: translateY(-1px);
}

.address-icon-btn.edit:hover {
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.address-icon-btn.remove:hover {
    color: var(--danger-color);
    border-color: var(--danger-color);
}

/* ===================================
   COMPACT ORDER NOTES
   =================================== */
.order-notes-card {
    border: 1px solid #E5E7EB;
    border-radius: var(--radius-md);
    padding: 14px;
    margin-bottom: 16px;
    background: white;
}

.order-notes-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.order-notes-textarea {
    width: 100%;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 10px;
    font-size: 13px;
    resize: vertical;
    transition: var(--transition);
    font-family: inherit;
    min-height: 70px;
}

.order-notes-textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px var(--secondary-light);
}

/* ===================================
   COMPACT COUPON SECTION
   =================================== */
.coupon-section {
    background: #FAFAFA;
    border: 1px solid #E5E7EB;
    border-radius: var(--radius-md);
    padding: 14px;
    margin-bottom: 16px;
}

.coupon-header {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
}

.coupon-icon {
    width: 24px;
    height: 24px;
    background: #F3F4F6;
    color: #6B7280;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}

.coupon-header h5 {
    margin: 0;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-primary);
}

.coupon-input-wrapper {
    display: flex;
    gap: 8px;
    align-items: stretch;
}

.coupon-input-container {
    flex: 1;
    position: relative;
}

.coupon-input {
    width: 100%;
    padding: 10px 38px 10px 12px;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 13px;
    transition: var(--transition);
    text-transform: uppercase;
    font-weight: 600;
}

.coupon-input:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px var(--secondary-light);
}

.coupon-input-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    opacity: 0.5;
}

.coupon-apply-btn {
    padding: 10px 18px;
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    min-height: 40px;
}

.coupon-apply-btn:hover:not(:disabled) {
    background: #9aa968;
    transform: translateY(-1px);
    box-shadow: var(--card-shadow);
}

.coupon-apply-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.coupon-error {
    color: var(--danger-color);
    font-size: 11px;
    margin-top: 6px;
    display: block;
    font-weight: 500;
}

@media (max-width: 576px) {
    .coupon-input-wrapper {
        flex-direction: column;
    }
    
    .coupon-apply-btn {
        width: 100%;
    }
}

/* ===================================
   COMPACT PRODUCT CARDS
   =================================== */
.cart-items-section {
    margin-bottom: 16px;
}

.product-card {
    background: white;
    border: 1px solid #E5E7EB;
    border-radius: var(--radius-md);
    padding: 12px;
    margin-bottom: 10px;
    transition: var(--transition);
}

.product-card:last-child {
    margin-bottom: 0;
}

.product-card:hover {
    box-shadow: var(--card-shadow);
}

.product-card-content {
    display: flex;
    gap: 12px;
}

.product-image-wrapper {
    position: relative;
    flex-shrink: 0;
    width: 75px;
    height: 75px;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    display: block;
}

.product-quantity-badge {
    position: absolute;
    bottom: -4px;
    right: -4px;
    background: var(--primary-color);
    color: white;
    min-width: 22px;
    height: 22px;
    padding: 0 5px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    border: 2px solid white;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.product-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.product-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.3;
    margin: 0;
    letter-spacing: -0.01em;
}

.product-name a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.2s;
}

.product-name a:hover {
    color: var(--primary-color);
}

.product-variant {
    font-size: 11px;
    color: var(--text-secondary);
    background: var(--primary-light);
    padding: 3px 8px;
    border-radius: 4px;
    display: inline-block;
    align-self: flex-start;
}

.product-pricing {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-top: auto;
}

.product-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
}

.product-unit-price {
    font-size: 11px;
    color: var(--text-secondary);
}

@media (max-width: 576px) {
    .product-image-wrapper {
        width: 65px;
        height: 65px;
    }
    
    .product-name {
        font-size: 13px;
    }
    
    .product-price {
        font-size: 15px;
    }
}

/* ===================================
   COMPACT ORDER SUMMARY
   =================================== */
.order-summary {
    background: white;
    border: 1px solid #E5E7EB;
    border-radius: var(--radius-md);
    padding: 14px;
    margin-bottom: 16px;
}

.order-summary.expanded {
    display: block !important;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 13px;
}

.summary-row:not(:last-child) {
    border-bottom: 1px solid var(--border-color);
}

.summary-label {
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.5px;
}

.summary-value {
    font-weight: 700;
    color: var(--text-primary);
    font-size: 14px;
}

.summary-row.grand-total {
    padding: 12px 0 0 0;
    border-top: 2px solid #E5E7EB;
    margin-top: 4px;
}

.summary-row.grand-total .summary-label {
    font-size: 13px;
    color: var(--text-primary);
}

.summary-row.grand-total .summary-value {
    font-size: 20px;
    color: var(--primary-color);
}

.summary-row.cod-charge {
    color: var(--danger-color);
}

.summary-row.cod-charge .summary-label {
    color: var(--danger-color);
}

.summary-row.cod-charge .summary-value {
    color: var(--danger-color);
}

.summary-row.discount .summary-value {
    color: var(--success-color);
}

.summary-free-tag {
    background: var(--success-color);
    color: white;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
}

@media (max-width: 991px) {
    .order-summary {
        display: none;
    }
}

/* ===================================
   COMPACT PAYMENT METHODS
   =================================== */
.payment-methods-section {
    margin-bottom: 16px;
}

.payment-option {
    border: 1px solid #E5E7EB;
    border-radius: var(--radius-md);
    padding: 14px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    background: white;
}

.payment-option:hover:not(.disabled) {
    border-color: #D1D5DB;
    box-shadow: var(--card-shadow);
}

.payment-option.selected {
    border-color: #9CA3AF;
    background: #F9FAFB;
    box-shadow: var(--card-shadow);
}

.payment-option.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #f8f9fa;
}

.payment-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.payment-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.payment-radio {
    width: 20px;
    height: 20px;
    border: 2px solid #E5E7EB;
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
    transition: var(--transition);
}

.payment-option.selected .payment-radio {
    border-color: #9CA3AF;
}

.payment-option.selected .payment-radio::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: #6B7280;
    border-radius: 50%;
}

.payment-icon {
    width: 40px;
    height: 40px;
    background: #F3F4F6;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.payment-option.selected .payment-icon {
    background: #E5E7EB;
    color: #374151;
}

.payment-details {
    flex: 1;
}

.payment-title {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 4px;
}

.payment-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.payment-badge {
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.payment-badge.instant {
    background: var(--success-color);
    color: white;
}

.payment-badge.cod {
    background: var(--primary-color);
    color: white;
}

.payment-description {
    font-size: 12px;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.4;
}

.cod-info-box {
    background: #FEF3C7;
    border-left: 3px solid var(--warning-color);
    border-radius: var(--radius-sm);
    padding: 10px 12px;
    margin-top: 10px;
    font-size: 12px;
    display: none;
    animation: slideDown 0.3s ease;
}

.cod-info-box.show {
    display: block;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cod-unavailable-alert {
    background: #FEF3C7;
    border: 1.5px solid var(--warning-color);
    border-radius: var(--radius-sm);
    padding: 10px;
    margin-top: 10px;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ===================================
   COMPACT ACTION BUTTONS - SIDE BY SIDE
   =================================== */
.action-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 14px;
}

.place-order-btn {
    flex: 2;
    padding: 12px;
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    min-height: 44px;
}

.place-order-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.place-order-btn:hover::before {
    width: 300px;
    height: 300px;
}

.place-order-btn:hover {
    background: #9aa968;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(175, 189, 119, 0.3);
}

.place-order-btn:active {
    transform: translateY(0);
}

.continue-shopping-btn {
    flex: 1;
    padding: 12px;
    background: white;
    color: var(--text-secondary);
    border: 1.5px solid #E5E7EB;
    border-radius: var(--radius-md);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.continue-shopping-btn:hover {
    border-color: #D1D5DB;
    color: var(--text-primary);
    background: #F9FAFB;
}

@media (max-width: 768px) {
    .action-buttons {
        flex-direction: column;
    }
    
    .place-order-btn,
    .continue-shopping-btn {
        flex: 1;
    }
}

/* ===================================
   SECURED BY SECTION
   =================================== */
.secured-by {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px;
    background: var(--primary-light);
    border-radius: var(--radius-sm);
    font-size: 12px;
    color: var(--text-secondary);
}

.secured-by img {
    height: 20px;
    opacity: 0.8;
}

/* ===================================
   ERROR MESSAGES
   =================================== */
.error-message {
    color: var(--danger-color);
    font-size: 12px;
    font-weight: 600;
    padding: 8px 12px;
    background: rgba(220, 53, 69, 0.08);
    border-left: 3px solid var(--danger-color);
    border-radius: var(--radius-sm);
    margin: 10px 0;
    display: none;
}

.error-message.show {
    display: block;
    animation: slideDown 0.3s ease;
}

/* ===================================
   RESPONSIVE CARD IMPROVEMENTS
   =================================== */
.card {
    border: none;
    box-shadow: none;
    background: transparent;
}

.card-body {
    padding: 0;
}

@media (min-width: 992px) {
    .checkout-block {
        position: sticky;
        top: 20px;
    }
    
    .card {
        background: white;
        border: 1px solid var(--border-color);
        border-radius: var(--radius-lg);
        box-shadow: var(--card-shadow);
    }
    
    .card-body {
        padding: 20px;
    }
}

@media (max-width: 991px) {
    .section-content {
        background: #FAFAFA;
        padding: 16px 0;
    }
    
    .col-lg-6 {
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* ===================================
   EMPTY STATE IMPROVEMENTS
   =================================== */
.empty-state {
    text-align: center;
    padding: 32px 20px;
    background: #F9FAFB;
    border-radius: var(--radius-md);
    border: 1px dashed #D1D5DB;
}

.empty-state-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 12px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.empty-state-icon i {
    font-size: 28px;
    color: #9CA3AF;
}

.empty-state h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.empty-state p {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

/* ===================================
   UTILITY CLASSES
   =================================== */
.text-fade-in {
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(175, 189, 119, 0.7);
    }
    70% {
        box-shadow: 0 0 0 8px rgba(175, 189, 119, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(175, 189, 119, 0);
    }
}

/* ===================================
   SCROLLBAR STYLING
   =================================== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--color-grey-light);
}

::-webkit-scrollbar-thumb {
    background: var(--color-grey);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

/* ===================================
   GUEST CHECKOUT STYLES
   =================================== */
   .guest-checkout-section {
    margin-bottom: 20px;
}

.guest-info-card {
    background: white;
    border: 1px solid #E5E7EB;
    border-radius: var(--radius-md);
    padding: 20px;
}

.guest-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #F3F4F6;
}

.guest-icon {
    width: 45px;
    height: 45px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.guest-title {
    margin: 0;
    font-size: 17px;
    font-weight: 700;
    color: var(--text-primary);
}

.guest-subtitle {
    margin: 2px 0 0 0;
    font-size: 13px;
    color: var(--text-secondary);
}

.guest-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.required {
    color: var(--danger-color);
}

.form-input {
    padding: 10px 12px;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 14px;
    transition: var(--transition);
    font-family: inherit;
}

.form-input:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px var(--secondary-light);
}

.form-input::placeholder {
    color: #9CA3AF;
}

.guest-address-section {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #E5E7EB;
}

.section-subtitle {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.login-prompt {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #E5E7EB;
    text-align: center;
    font-size: 13px;
    color: var(--text-secondary);
}

.login-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    margin-left: 5px;
}

.login-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .guest-form-grid {
        grid-template-columns: 1fr;
    }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.available-coupon-card {
    cursor: pointer;
    transition: all 0.2s ease;
}

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

.available-coupon-card:active {
    transform: translateY(0);
}
