/* ===== CART PAGE STYLES - FOOTOPIA THEME ===== */
:root {
    --primary: #3498DB;
    --primary-dark: #2980B9;
    --primary-light: #5DADE2;
    --secondary: #2C3E50;
    --light: #F8F9FA;
    --dark: #2C3E50;
    --gray: #7F8C8D;
    --bg: #F8F9FA;
    --bg2: #E9ECEF;
    --panel: #ffffff;
    --panel2: #FDFDFE;
    --text: #2C3E50;
    --muted: #7F8C8D;
    --line: rgba(44, 62, 80, 0.1);
    --line2: rgba(127, 140, 141, 0.08);
    --shadow: rgba(44, 62, 80, 0.08);
    --success: #2ECC71;
    --danger: #E74C3C;
    --warning: #F39C12;
    --border: rgba(52, 152, 219, 0.15);
    --shadow-hover: 0 15px 40px rgba(52, 152, 219, 0.15);
    --radius: 12px;
    --radius-sm: 8px;
}

/* ===== PROFESSIONAL CART HEADER REDESIGN ===== */
.cart-header {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 28px;
    padding: 40px;
    margin-bottom: 35px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(52, 152, 219, 0.1);
    box-shadow: 0 20px 40px -10px rgba(44, 62, 80, 0.12);
}

/* Decorative elements */
.cart-header::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(52, 152, 219, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cart-header::after {
    content: '🛒';
    position: absolute;
    bottom: 20px;
    right: 30px;
    font-size: 100px;
    opacity: 0.03;
    transform: rotate(10deg);
    pointer-events: none;
}

/* Breadcrumb styling */
.cart-breadcrumb {
    display: inline-flex;
    align-items: center;
    background: rgba(52, 152, 219, 0.08);
    padding: 8px 18px;
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary, #3498DB);
    margin-bottom: 25px;
    border: 1px solid rgba(52, 152, 219, 0.15);
    letter-spacing: 0.3px;
    position: relative;
    z-index: 2;
}

.cart-breadcrumb::before {
    content: '🏠';
    margin-right: 8px;
    font-size: 14px;
    opacity: 0.8;
}

/* Title styling */
.cart-title {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 15px;
}

.cart-title span {
    background: linear-gradient(135deg, var(--primary, #3498DB), #5DADE2);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cart-title .title-icon {
    background: linear-gradient(135deg, var(--primary, #3498DB), #5DADE2);
    width: 60px;
    height: 60px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
    box-shadow: 0 10px 25px rgba(52, 152, 219, 0.3);
    transform: rotate(-5deg);
    transition: transform 0.3s ease;
}

.cart-header:hover .title-icon {
    transform: rotate(0deg) scale(1.05);
}

/* Subtitle with delivery info */
.cart-subtitle {
    font-size: 1.2rem;
    color: var(--muted, #7F8C8D);
    margin-bottom: 25px;
    
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.7);
    padding: 15px 20px;
    border-radius: 60px;
    border: 1px solid rgba(44, 62, 80, 0.06);
    backdrop-filter: blur(5px);
    max-width: fit-content;
}

.cart-subtitle i {
    color: var(--primary, #3498DB);
    font-size: 1.4rem;
    background: white;
    padding: 10px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.cart-subtitle strong {
    background: linear-gradient(135deg, #2ECC71, #27AE60);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Features grid */
.cart-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
    position: relative;
    z-index: 2;
}

.cart-feature {
    background: white;
    border: 1px solid rgba(44, 62, 80, 0.06);
    border-radius: 20px;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.02);
}

.cart-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary, #3498DB), #5DADE2);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cart-feature:hover {
    transform: translateY(-5px);
    border-color: rgba(52, 152, 219, 0.2);
    box-shadow: 0 20px 30px -10px rgba(52, 152, 219, 0.2);
}

.cart-feature:hover::before {
    opacity: 1;
}

.cart-feature i {
    font-size: 32px;
    color: var(--primary, #3498DB);
    background: rgba(52, 152, 219, 0.08);
    padding: 15px;
    border-radius: 18px;
    transition: all 0.3s ease;
}

.cart-feature:hover i {
    background: var(--primary, #3498DB);
    color: white;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 20px rgba(52, 152, 219, 0.3);
}

.cart-feature span {
    font-weight: 600;
    color: var(--text, #2C3E50);
    font-size: 1.1rem;
    letter-spacing: -0.2px;
}

.cart-feature small {
    display: block;
    color: var(--muted, #7F8C8D);
    font-size: 0.85rem;
    font-weight: normal;
    margin-top: 4px;
}

/* Stats badge */
.cart-stats-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--primary, #3498DB), #5DADE2);
    border-radius: 30px;
    padding: 12px 25px;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 10px 25px rgba(52, 152, 219, 0.3);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 2px solid rgba(255,255,255,0.3);
}

.cart-stats-badge i {
    font-size: 1.3rem;
}

.cart-stats-badge .stats-number {
    font-size: 1.4rem;
    margin-right: 5px;
}

/* Responsive design */
@media (max-width: 992px) {
    .cart-header {
        padding: 30px;
    }
    
    .cart-title {
        font-size: 2.5rem;
    }
    
    .cart-features {
        gap: 15px;
    }
    
    .cart-feature {
        padding: 15px 20px;
    }
    
    .cart-feature i {
        font-size: 26px;
        padding: 12px;
    }
}

@media (max-width: 768px) {
    .cart-header {
        padding: 25px;
    }
    
    .cart-title {
        font-size: 2rem;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cart-title .title-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .cart-subtitle {
        align-items: flex-start;
        max-width: 100%;
    }
    
    .cart-features {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .cart-feature {
        padding: 15px;
    }
    
    .cart-stats-badge {
        position: static;
        margin-top: 20px;
        width: fit-content;
    }
}

@media (max-width: 480px) {
    .cart-header {
        padding: 20px;
    }
    
    .cart-title {
        font-size: 1.8rem;
    }
    
    .cart-breadcrumb {
        font-size: 0.75rem;
        padding: 6px 14px;
    }
    
    .cart-subtitle {
        font-size: 1rem;
    }
    
    .cart-feature i {
        font-size: 22px;
        padding: 10px;
    }
    
    .cart-feature span {
        font-size: 1rem;
    }
}
.cart-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 2rem;
    margin-top: 2rem;
}
.cart-layout {
    display: grid;
    grid-template-columns: 1fr 400px; /* Side by side on desktop */
    gap: 2rem;
    margin-top: 2rem;
}

@media (max-width: 992px) {
    .cart-layout {
        grid-template-columns: 1fr; /* Stacks vertically on tablet/mobile */
    }
}

/* Animation for new items */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cart-header {
    animation: slideIn 0.6s ease forwards;
    margin-top: 10px;
}

.cart-items {
    background: var(--panel, #ffffff);
    border: 1px solid var(--line, rgba(44, 62, 80, 0.1));
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: 0 10px 30px var(--shadow, rgba(44, 62, 80, 0.08));
}

.cart-items-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--line, rgba(44, 62, 80, 0.1));
    margin-bottom: 1.5rem;
}

.cart-items-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text, #2C3E50);
}

.cart-item-count {
    color: var(--muted, #7F8C8D);
    font-size: 0.95rem;
}

.cart-item {
    display: grid;
    grid-template-columns: 100px 1fr auto;
    gap: 1.5rem;
    padding: 1.5rem;
    border: 1px solid var(--line, rgba(44, 62, 80, 0.1));
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
    background: var(--panel2, #FDFDFE);
    transition: all 0.3s ease;
    animation: fadeIn 0.3s ease forwards;
}

.cart-item:hover {
    background: var(--panel, #ffffff);
    border-color: var(--primary, #3498DB);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px var(--shadow, rgba(44, 62, 80, 0.08));
}

.cart-item-image {
    /* width: 100px; */
    height: 100px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid var(--line, rgba(44, 62, 80, 0.1));
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.cart-item:hover .cart-item-image img {
    transform: scale(1.05);
}

.cart-item-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cart-item-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text, #2C3E50);
    margin-bottom: 0.5rem;
}

.cart-item-details {
    color: var(--muted, #7F8C8D);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.cart-item-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary, #3498DB);
}

.cart-item-controls {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
}

.cart-quantity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--panel2, #FDFDFE);
    border: 1px solid var(--line, rgba(44, 62, 80, 0.1));
    border-radius: 6px;
    padding: 0.25rem;
}

.cart-quantity button {
    background: rgba(52, 152, 219, 0.1);
    border: none;
    color: var(--text, #2C3E50);
    width: 28px;
    height: 28px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

.cart-quantity button:hover {
    background: rgba(52, 152, 219, 0.2);
    color: var(--primary, #3498DB);
}

.cart-quantity button:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.cart-quantity span {
    min-width: 30px;
    text-align: center;
    color: var(--text, #2C3E50);
    font-weight: 600;
}

.cart-remove {
    background: rgba(231, 76, 60, 0.05);
    border: 1px solid rgba(231, 76, 60, 0.2);
    color: var(--danger, #E74C3C);
    border-radius: 6px;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cart-remove:hover {
    background: rgba(231, 76, 60, 0.1);
    border-color: var(--danger, #E74C3C);
}

.cart-summary {
    background: var(--panel, #ffffff);
    border: 1px solid var(--line, rgba(44, 62, 80, 0.1));
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: 0 10px 30px var(--shadow, rgba(44, 62, 80, 0.08));
    position: sticky;
    top: 2rem;
    height: fit-content;
}

.cart-summary-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text, #2C3E50);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--line, rgba(44, 62, 80, 0.1));
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.cart-summary-label {
    color: var(--muted, #7F8C8D);
    font-size: 0.95rem;
}

.cart-summary-value {
    color: var(--text, #2C3E50);
    font-weight: 600;
}

.discount-row {
    color: var(--success, #2ECC71);
}

.discount-row .cart-summary-value {
    color: var(--success, #2ECC71);
}

.cart-summary-divider {
    height: 1px;
    background: var(--line, rgba(44, 62, 80, 0.1));
    margin: 1.5rem 0;
}

.cart-summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.cart-total-label {
    color: var(--text, #2C3E50);
    font-size: 1.1rem;
    font-weight: 700;
}

.cart-total-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary, #3498DB);
}

.cart-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn-continue {
    background: var(--panel2, #FDFDFE);
    border: 1px solid var(--line, rgba(44, 62, 80, 0.1));
    color: var(--text, #2C3E50);
    padding: 0.9rem 1.5rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-continue:hover {
    background: var(--panel, #ffffff);
    border-color: var(--primary, #3498DB);
    color: var(--primary, #3498DB);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px var(--shadow, rgba(44, 62, 80, 0.08));
}

.btn-checkout {
    background: linear-gradient(135deg, var(--primary, #3498DB), var(--primary-dark, #2980B9));
    border: none;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 1rem;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-checkout:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(52, 152, 219, 0.3);
}

.cart-tip {
    margin-top: 1.5rem;
    padding: 1rem;
    background: var(--panel2, #FDFDFE);
    border: 1px solid var(--line, rgba(44, 62, 80, 0.1));
    border-radius: var(--radius-sm);
    color: var(--muted, #7F8C8D);
    font-size: 0.85rem;
    line-height: 1.5;
}

.cart-tip strong {
    color: var(--primary, #3498DB);
    font-weight: 600;
}

.empty-cart {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--panel, #ffffff);
    border: 1px solid var(--line, rgba(44, 62, 80, 0.1));
    border-radius: var(--radius);
    box-shadow: 0 10px 30px var(--shadow, rgba(44, 62, 80, 0.08));
}

.empty-cart-icon {
    font-size: 4rem;
    color: var(--muted, #7F8C8D);
    margin-bottom: 1.5rem;
}

.empty-cart-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text, #2C3E50);
    margin-bottom: 1rem;
}

.empty-cart-subtitle {
    color: var(--muted, #7F8C8D);
    margin-bottom: 2rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.empty-cart-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* === NEW FEATURES === */
/* Coupon Section */
.coupon-section {
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.05) 0%, var(--panel2, #FDFDFE) 100%);
    border-radius: 12px;
    padding: 20px;
    margin: 30px 0;
    border: 1px solid var(--line, rgba(44, 62, 80, 0.1));
}

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

.coupon-header i {
    color: var(--warning, #F39C12);
    font-size: 20px;
}

.coupon-form {
    display: flex;
    gap: 10px;
}

.coupon-form input {
    flex: 1;
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid var(--line, rgba(44, 62, 80, 0.1));
    background: var(--panel2, #FDFDFE);
    color: var(--text, #2C3E50);
}

.coupon-form input:focus {
    outline: none;
    border-color: var(--primary, #3498DB);
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.coupon-success {
    color: var(--success, #2ECC71);
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px;
    background: rgba(46, 204, 113, 0.05);
    border-radius: 6px;
    border: 1px solid rgba(46, 204, 113, 0.2);
}

.coupon-error {
    color: var(--danger, #E74C3C);
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px;
    background: rgba(231, 76, 60, 0.05);
    border-radius: 6px;
    border: 1px solid rgba(231, 76, 60, 0.2);
}

/* Shipping Estimator */
.shipping-estimator {
    background: var(--panel2, #FDFDFE);
    border-radius: 12px;
    padding: 20px;
    margin: 30px 0;
    border: 1px solid var(--line, rgba(44, 62, 80, 0.1));
}

.shipping-form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    margin-top: 15px;
}

.shipping-result {
    margin-top: 15px;
    padding: 15px;
    background: rgba(46, 204, 113, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(46, 204, 113, 0.2);
    color: var(--success, #2ECC71);
    display: none;
}

/* Related Products */
.related-products-section {
    margin-top: 60px;
}

.related-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.related-product-card {
    background: var(--panel, #ffffff);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--line, rgba(44, 62, 80, 0.1));
    text-decoration: none;
    color: var(--text, #2C3E50);
    box-shadow: 0 5px 15px var(--shadow, rgba(44, 62, 80, 0.08));
}

.related-product-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary, #3498DB);
    text-decoration: none;
    color: var(--text, #2C3E50);
    box-shadow: 0 15px 30px rgba(52, 152, 219, 0.15);
}

.related-product-image {
    height: 150px;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.05), rgba(52, 152, 219, 0.02));
    display: flex;
    align-items: center;
    justify-content: center;
}

.related-product-info {
    padding: 15px;
}

.related-product-name {
    font-size: 14px;
    margin-bottom: 10px;
    line-height: 1.4;
    color: var(--text, #2C3E50);
}

.related-product-price {
    color: var(--primary, #3498DB);
    font-weight: bold;
    font-size: 16px;
}

/* Save for Later Button */
.save-later-btn {
    background: transparent;
    border: 1px solid var(--line, rgba(44, 62, 80, 0.1));
    color: var(--muted, #7F8C8D);
    padding: 8px 15px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    margin-top: 10px;
}

.save-later-btn:hover {
    background: rgba(52, 152, 219, 0.05);
    border-color: var(--primary, #3498DB);
    color: var(--primary, #3498DB);
}

/* Progress Bar */
.checkout-progress {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin: 30px 0;
    padding: 20px 0;
}

.progress-step {
    text-align: center;
    flex: 1;
    position: relative;
    z-index: 2;
}

.progress-step .step-number {
    width: 40px;
    height: 40px;
    background: var(--panel2, #FDFDFE);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    color: var(--text, #2C3E50);
    font-weight: bold;
    border: 2px solid var(--line, rgba(44, 62, 80, 0.1));
}

.progress-step.active .step-number {
    background: var(--primary, #3498DB);
    color: white;
    border-color: var(--primary, #3498DB);
}

.progress-bar {
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: var(--line, rgba(44, 62, 80, 0.1));
    z-index: 1;
}

.progress-fill {
    height: 100%;
    background: var(--primary, #3498DB);
    width: 33%;
    transition: width 0.3s ease;
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Loading state */
.cart-item.updating {
    opacity: 0.7;
    pointer-events: none;
}

/* Success message */
.cart-message {
    position: fixed;
    top: 100px;
    right: 20px;
    background: var(--success, #2ECC71);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-sm);
    box-shadow: 0 10px 30px rgba(46, 204, 113, 0.3);
    z-index: 1000;
    animation: slideIn 0.3s ease;
    display: none;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .cart-item {
        grid-template-columns: 80px 1fr;
    }
    
    .cart-item-controls {
        grid-column: 1 / -1;
        flex-direction: row;
        justify-content: space-between;
        margin-top: 15px;
    }
    
    .coupon-form,
    .shipping-form {
        flex-direction: column;
    }
    
    .shipping-form {
        grid-template-columns: 1fr;
    }
    
    .related-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .checkout-progress {
        flex-direction: column;
        gap: 20px;
    }
    
    .progress-bar {
        display: none;
    }
}

/* Additional hover effects */
.btn-primary {
    background: linear-gradient(135deg, var(--primary, #3498DB), var(--primary-dark, #2980B9));
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(52, 152, 219, 0.3);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary, #3498DB);
    color: var(--primary, #3498DB);
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-outline:hover {
    background: var(--primary, #3498DB);
    color: white;
    transform: translateY(-2px);
}
