/* Footer Styles */
.site-footer {
    background-color: #0a0a0a;
    color: #a0a0a0;
    padding: 60px 0 0;
    /* margin-top: 80px; */
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Footer Top */
.footer-top {
    padding-bottom: 40px;
    border-bottom: 1px solid #1a1a1a;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 40px;
}

/* Brand Column */
.footer-brand {
    max-width: 320px;
}

.footer-logo {
    margin-bottom: 16px;
}

.footer-logo img {
    height: 32px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-description {
    font-size: 14px;
    line-height: 1.6;
    color: #6b6b6b;
    margin-bottom: 24px;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.social-link {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background-color: #1a1a1a;
    color: #a0a0a0;
    transition: all 0.2s ease;
    text-decoration: none;
}

.social-link:hover {
    background-color: #2a2a2a;
    color: #ffffff;
    transform: translateY(-2px);
}

.social-link svg {
    width: 18px;
    height: 18px;
}

/* Status Indicator */
.status-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background-color: #22c55e;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.status-text {
    color: #6b6b6b;
}

/* Newsletter Form */
.footer-newsletter-text {
    font-size: 14px;
    color: #a0a0a0;
    margin-bottom: 16px;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
}

.newsletter-input {
    flex: 1;
    padding: 10px 14px;
    background-color: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 6px;
    color: #e0e0e0;
    font-size: 14px;
    transition: all 0.3s ease;
}

.newsletter-input::placeholder {
    color: #666;
}

.newsletter-input:focus {
    outline: none;
    border-color: #e5aa03;
    background-color: #222;
}

.newsletter-btn {
    padding: 10px 20px;
    background: #e5aa03;
    border: none;
    border-radius: 6px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(229, 170, 3, 0.4);
}

#newsletterMessage {
    font-size: 0.85rem;
    padding: 10px 12px;
    border-radius: 4px;
    margin-top: 10px;
    animation: slideDown 0.3s ease-out;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#newsletterMessage.alert-success {
    background-color: #d1fae5;
    border: 1px solid #22c55e;
    color: #065f46;
}

#newsletterMessage.alert-warning {
    background-color: #fef3c7;
    border: 1px solid #fbbf24;
    color: #92400e;
}

#newsletterMessage.alert-danger {
    background-color: #fee2e2;
    border: 1px solid #ef4444;
    color: #991b1b;
}

#newsletterMessage svg {
    flex-shrink: 0;
}

/* Newsletter button loading state */
.newsletter-btn:disabled {
    cursor: not-allowed;
    opacity: 0.8;
}

.newsletter-btn .spinner-border {
    width: 14px;
    height: 14px;
    border-width: 2px;
}

/* Payment Methods */
.payment-methods {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 12px;
    align-items: center;
}

.payment-icon {
    width: 60px;
    height: auto;
    /* border-radius: 6px;
    padding: 4px 6px;
    background-color: #f5f5f5;
    border: 1px solid #2a2a2a; */
    object-fit: contain;
    transition: all 0.3s ease;
}

.payment-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-color: #e5aa03;
}

.payment-icon svg {
    display: block;
}

/* Footer Columns */
.footer-column {
    display: flex;
    flex-direction: column;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    flex-direction: column;
}

.footer-heading.mt-4 {
    margin-top: 32px;
}

.footer-heading {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 16px;
    text-transform: capitalize;
}

.footer-heading.mt-4 {
    margin-top: 32px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #a0a0a0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-links a:hover {
    color: #ffffff;
}

/* New Badge */
.badge-new {
    background: #e5aa03;
    color: #ffffff;
    font-size: 10px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Footer Bottom */
.footer-bottom {
    padding: 24px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    font-size: 13px;
    color: #6b6b6b;
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: #a0a0a0;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s ease;
}

.footer-legal a:hover {
    color: #ffffff;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
        gap: 30px;
    }
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 40px;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding: 40px 0 0;
        /* margin-top: 60px; */
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
    }

    .scroll-to-top {
        width: 40px;
        height: 40px;
        bottom: 20px;
        left: 20px;
        right: auto;
    }

    .scroll-to-top svg {
        width: 16px;
        height: 16px;
    }

    .cookie-popup {
        width: 92%;
        padding: 1.5rem 1.2rem 1.2rem;
    }

    .cookie-title {
        font-size: 1.1rem;
    }

    .cookie-text {
        font-size: 0.8rem;
    }

    .cookie-buttons {
        padding: 0 0.5rem;
    }
}

@media (max-width: 480px) {
    .site-footer {
        padding: 32px 0 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    
    .footer-brand {
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .status-indicator {
        justify-content: center;
    }
    
    .footer-heading {
        font-size: 13px;
    }
    
    .footer-links a {
        font-size: 13px;
    }
    
    .footer-legal {
        gap: 16px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-btn {
        width: 100%;
    }
    
    .payment-methods {
        justify-content: center;
    }

    .scroll-to-top {
        width: 36px;
        height: 36px;
        bottom: 15px;
        left: 15px;
        right: auto;
    }

    .scroll-to-top svg {
        width: 14px;
        height: 14px;
    }

    .cookie-popup {
        width: 95%;
        padding: 1.2rem 1rem 1rem;
    }

    .cookie-title {
        font-size: 1rem;
        letter-spacing: 1px;
    }

    .cookie-text {
        font-size: 0.75rem;
        padding: 0;
    }

    .cookie-buttons {
        padding: 0;
    }

    .cookie-btn {
        padding: 10px 16px;
        font-size: 0.8rem;
    }

    .cookie-continue {
        font-size: 0.65rem;
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    right: auto;
    width: 45px;
    height: 45px;
    background-color: #e5aa03;
    color: #fff;
    border: 2px solid #e5aa03;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 9999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background-color: #e5aa03;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

/* Cookie Consent Popup */
.cookie-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}

.cookie-popup {
    background: #fff9e7;
    max-width: 420px;
    width: 90%;
    padding: 2rem 2rem 1.5rem;
    position: relative;
    text-align: center;
    border-radius: 2px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.cookie-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #e5aa03;
    cursor: pointer;
    line-height: 1;
    padding: 0;
}

.cookie-close:hover {
    color: #000;
}

.cookie-title {
    font-family: 'Georgia', serif;
    font-size: 1.3rem;
    color: #e5aa03;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    font-weight: 400;
}

.cookie-text {
    font-size: 0.85rem;
    color: #e5aa03;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    padding: 0 0.5rem;
}

.cookie-link {
    color: #e5aa03;
    text-decoration: underline;
    font-weight: 600;
}

.cookie-link:hover {
    color: #000;
}

.cookie-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 1.2rem;
    padding: 0 1.5rem;
}

.cookie-btn {
    padding: 12px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-accept {
    background: #e5aa03;
    color: #fff;
}

.cookie-accept:hover {
    background: #e5aa03;
}

.cookie-reject {
    background: #e5aa03;
    color: #fff;
}

.cookie-reject:hover {
    background: #e5aa03;
}

.cookie-continue {
    background: none;
    border: none;
    color: #e5aa03;
    font-size: 0.7rem;
    letter-spacing: 1px;
    text-decoration: underline;
    cursor: pointer;
    font-weight: 600;
    padding: 0;
}

.cookie-continue:hover {
    color: #000;
}
