/* Modern E-commerce CSS for T-shirt booking */
:root {
    --primary-color: #f2b263;
    --secondary-color: #d2a98e;
    --success-color:rgb(255, 162, 0);
    --danger-color: #dc3545;
    --dark-color: #333;
    --light-color: #f8f9fa;
    --border-color: #e8e8e8;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.15);
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.ecommerce-container {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    min-height: 100vh;
    padding: 40px 0;
}

.product-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 60px 0;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.product-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="20" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.product-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.product-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.modern-card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    overflow: hidden;
    margin-bottom: 30px;
}

.modern-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.card-header {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    padding: 25px 30px;
    border-bottom: 2px solid var(--border-color);
    position: relative;
}

.card-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.card-header h3 {
    margin: 0;
    color: var(--dark-color);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.card-body {
    padding: 30px;
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 8px;
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-control-modern {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--border-color);
    border-radius: 25px;
    font-size: 16px;
    transition: var(--transition);
    background: white;
}

.form-control-modern:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(242, 178, 99, 0.1);
    transform: translateY(-2px);
}

.form-control-modern::placeholder {
    color: #999;
    opacity: 1;
}

.size-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.size-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 20px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.size-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(242, 178, 99, 0.1), transparent);
    transition: var(--transition);
}

.size-card:hover::before {
    left: 100%;
}

.size-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.size-card.selected {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(242, 178, 99, 0.1), rgba(210, 169, 142, 0.1));
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.size-card.selected::after {
    content: '✓';
    position: absolute;
    top: 10px;
    right: 15px;
    width: 25px;
    height: 25px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
}

.size-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.size-label {
    font-weight: 700;
    font-size: 18px;
    color: var(--dark-color);
}

.size-price {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
}

.quantity-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.quantity-btn {
    width: 45px;
    height: 45px;
    border: 2px solid var(--primary-color);
    background: white;
    color: var(--primary-color);
    border-radius: 50%;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.quantity-btn:active {
    transform: scale(0.95);
}

.quantity-display {
    background: var(--light-color);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 12px 20px;
    font-weight: 700;
    font-size: 18px;
    color: var(--dark-color);
    min-width: 80px;
    text-align: center;
}

.cart-sidebar {
    position: sticky;
    top: 20px;
}

.cart-card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.cart-header {
    background: linear-gradient(135deg, var(--success-color),rgb(230, 215, 6));
    color: white;
    padding: 20px;
    text-align: center;
}

.cart-header h4 {
    margin: 0;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.cart-body {
    padding: 20px;
    max-height: 400px;
    overflow-y: auto;
}

.cart-empty {
    text-align: center;
    padding: 40px 20px;
    color: #999;
}

.cart-empty i {
    font-size: 3rem;
    margin-bottom: 15px;
    opacity: 0.5;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.cart-item:hover {
    background: var(--light-color);
    margin: 0 -15px;
    padding-left: 15px;
    padding-right: 15px;
    border-radius: 8px;
}

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

.item-details {
    flex: 1;
}

.item-size {
    font-weight: 700;
    color: var(--dark-color);
    font-size: 16px;
}

.item-quantity {
    color: #666;
    font-size: 14px;
    margin-top: 2px;
}

.remove-btn {
    background: var(--danger-color);
    color: white;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.remove-btn:hover {
    background: #c82333;
    transform: scale(1.1);
}

.cart-total {
    background: linear-gradient(135deg, var(--dark-color),rgb(255, 115, 0));
    color: white;
    padding: 20px;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    margin: 20px -20px -20px -20px;
}

.btn-modern {
    background: rgb(255, 115, 0);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: var(--transition);
}

.btn-modern:hover::before {
    left: 100%;
}

.btn-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(242, 178, 99, 0.4);
}

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

.btn-modern:disabled {
    background: #999;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn-modern.btn-block {
    width: 100%;
    margin-top: 20px;
}

.payment-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    padding: 20px;
    backdrop-filter: blur(5px);
}

.payment-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

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

.modal-content {
    background: white;
    border-radius: var(--border-radius);
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.3s ease;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

@keyframes slideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.modal-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-close {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.modal-body {
    padding: 30px;
}

/* Payment Section Common Styles */
.payment-section {
    text-align: center;
    margin: 20px 0;
}

.payment-section h6 {
    margin-bottom: 20px;
    font-weight: 600;
    color: var(--dark-color);
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.amount-display {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 15px 25px;
    border-radius: 25px;
    font-size: 24px;
    font-weight: 700;
    margin: 20px auto;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(242, 178, 99, 0.3);
}

.upi-id {
    background: white;
    border: 3px dashed var(--success-color);
    border-radius: 12px;
    padding: 15px 20px;
    margin: 20px auto;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    font-size: 18px;
    color: var(--success-color);
    letter-spacing: 1px;
    max-width: 300px;
    word-break: break-all;
}

.payment-instruction {
    color: #666;
    font-size: 14px;
    margin: 20px auto;
    max-width: 400px;
    line-height: 1.5;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* QR Code Section for Desktop */
.qr-section {
    background: linear-gradient(135deg, #e8f5e8, #f0f8f0);
    border: 2px solid var(--success-color);
    border-radius: var(--border-radius);
    padding: 30px 25px;
    text-align: center;
    margin: 20px 0;
    position: relative;
}

.qr-section::before {
    content: '📱';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.qr-code-container {
    background: white;
    border: 3px solid var(--success-color);
    border-radius: 15px;
    padding: 20px;
    margin: 25px auto;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.qr-code {
    width: 200px;
    height: 200px;
    margin: 0 auto;
    display: block;
    border-radius: 8px;
}

/* UPI Apps Section for Mobile */
.upi-apps-section {
    display: none;
    margin: 20px 0;
    background: linear-gradient(135deg, #e8f5e8, #f0f8f0);
    border: 2px solid var(--success-color);
    border-radius: var(--border-radius);
    padding: 30px 25px;
    position: relative;
}

.upi-apps-section::before {
    content: '💳';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.upi-apps-section h6 {
    color: var(--dark-color);
    margin-bottom: 20px;
    font-size: 18px;
}

.payment-apps {
    display: grid;
    gap: 15px;
    margin: 25px 0;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.upi-app-btn {
    display: flex;
    align-items: center;
    padding: 18px 20px;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    background: white;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.upi-app-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(242, 178, 99, 0.1), transparent);
    transition: var(--transition);
}

.upi-app-btn:hover::before {
    left: 100%;
}

.upi-app-btn:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    text-decoration: none;
    color: inherit;
    box-shadow: 0 4px 15px rgba(242, 178, 99, 0.2);
}

.app-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 18px;
    margin-right: 20px;
    flex-shrink: 0;
}

.upi-app-info {
    flex: 1;
    text-align: left;
}

.upi-app-name {
    font-weight: 600;
    font-size: 16px;
    color: var(--dark-color);
    margin-bottom: 2px;
}

.upi-app-desc {
    color: #666;
    font-size: 13px;
}

.file-upload-area {
    border: 3px dashed var(--border-color);
    border-radius: var(--border-radius);
    padding: 40px 20px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    background: var(--light-color);
    margin: 20px 0;
}

.file-upload-area:hover {
    border-color: var(--primary-color);
    background: rgba(242, 178, 99, 0.05);
}

.file-upload-area.has-file {
    border-color: var(--success-color);
    background: rgba(40, 167, 69, 0.05);
}

.upload-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.success-alert {
    display: none;
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    color: #155724;
    border: 2px solid #c3e6cb;
    border-radius: var(--border-radius);
    padding: 25px;
    text-align: center;
    margin: 20px 0;
    animation: slideDown 0.3s ease;
}

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

.price-badge {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 20px;
    border-radius: var(--border-radius);
    text-align: center;
    margin: 20px 0;
    font-size: 18px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.price-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
    .product-header {
        padding: 40px 20px;
    }
    
    .product-header h1 {
        font-size: 2rem;
    }
    
    .size-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .size-card {
        padding: 15px;
    }
    
    .card-header,
    .card-body {
        padding: 20px;
    }
    
    .cart-sidebar {
        position: static;
        margin-top: 30px;
    }
    
    .modal-content {
        margin: 10px;
        max-height: 95vh;
    }
    
    .modal-header,
    .modal-body {
        padding: 20px;
    }
    
    .quantity-section {
        gap: 10px;
    }
    
    .quantity-btn {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .size-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .payment-apps {
        gap: 10px;
    }
    
    .upi-app-btn {
        padding: 15px;
    }
    
    .app-icon {
        width: 45px;
        height: 45px;
        font-size: 16px;
        margin-right: 15px;
    }

    /* Show UPI apps on mobile, hide QR */
    .qr-section {
        display: none;
    }
    
    .upi-apps-section {
        display: block;
    }
    
    .qr-code {
        width: 150px;
        height: 150px;
    }
}

@media (min-width: 769px) {
    /* Show QR on desktop, hide UPI apps */
    .qr-section {
        display: block;
    }
    
    .upi-apps-section {
        display: none;
    }
}

@media (max-width: 480px) {
    .ecommerce-container {
        padding: 20px 0;
    }
    
    .product-header h1 {
        font-size: 1.8rem;
    }
    
    .product-header p {
        font-size: 1rem;
    }
    
    .form-control-modern {
        padding: 12px 16px;
    }
    
    .btn-modern {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .cart-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .remove-btn {
        align-self: flex-end;
    }
}

/* Loading Animation */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    border: 3px solid var(--border-color);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
.quantity-btn:focus,
.btn-modern:focus,
.upi-app-btn:focus,
.form-control-modern:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}



/* Enhanced Footer Styles */
.footer-area {
    position: relative;
}

.footer-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #f2b263 0%, #d2a98e 50%, #f2b263 100%);
}

.widget-footer {
    height: 100%;
}

.footer-title h6 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title h6::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: #f2b263;
}

/* Contact Info Items */
.contact-info-item {
    display: flex;
    align-items: flex-start;
    line-height: 1.6;
}

.contact-info-item i {
    margin-top: 6px;
    width: 16px;
    flex-shrink: 0;
}

.contact-info-item a {
    transition: color 0.3s ease;
}

.contact-info-item a:hover {
    color: #f2b263 !important;
}

/* Footer Menu */
.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.footer-menu li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: flex;
    align-items: center;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-menu li a:hover {
    color: #f2b263;
    padding-left: 5px;
}

.footer-menu li a i {
    font-size: 10px;
    width: 15px;
}

/* Newsletter */
.newsletter-form {
    position: relative;
    display: flex;
    border-radius: 25px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    background: transparent;
    color: white;
    font-size: 14px;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form input:focus {
    outline: none;
}

.newsletter-submit {
    background: #f2b263;
    border: none;
    padding: 12px 15px;
    color: white;
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsletter-submit:hover {
    background: #d2a98e;
}

/* Social Links */
.footer-social-share {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 0px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.footer-social-share li {
    margin-bottom: 0;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 50%;
    font-size: 18px;
    border: 2px solid transparent;
}

.social-link i {
    width: auto;
    margin: 0;
    font-size: 18px;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border-color: currentColor;
}

.social-link.facebook:hover { 
    background: #3b5998; 
    color: #fff;
}

.social-link.instagram:hover { 
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    color: #fff;
}

.social-link.youtube:hover { 
    background: #ff0000; 
    color: #fff;
}

.social-link.location:hover { 
    background: #f2b263; 
    color: #fff;
}

/* Quick Stats */
.quick-stats {
    display: flex;
    gap: 20px;
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-number {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: #f2b263;
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 5px;
}

/* Donation Banner */
.donation-banner {
    width: 100%;
    max-width: 200px;
    height: auto;
    transition: transform 0.3s ease;
    border-radius: 8px;
}

.donation-link:hover .donation-banner {
    transform: scale(1.05);
}

/* Footer Bottom */
.footer-bottom-area {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #f2b263;
}

.separator {
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive Design */
@media (max-width: 991px) {
    .footer-bottom-links {
        justify-content: center;
        margin-top: 15px;
    }
    
    .quick-stats {
        justify-content: center;
        margin-top: 20px;
    }
}

@media (max-width: 767px) {
    .widget-footer {
        margin-bottom: 30px;
    }
    
    .footer-title h6::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-contents {
        text-align: center;
    }
    
    .contact-info-item {
        justify-content: center;
        text-align: center;
    }
    
    .footer-menu li a {
        justify-content: start;
    }
    
    .footer-social-share {
        justify-content: center;
    }
    
    .quick-stats {
        gap: 30px;
        justify-content: center;
    }
    
    .footer-bottom-links {
        flex-direction: column;
        gap: 5px;
    }
    
    .separator {
        display: none;
    }
}

@media (max-width: 575px) {
    .copy-right-box p {
        font-size: 12px;
    }
    
    .donation-banner {
        max-width: 150px;
    }
}