/* ===================================== */
/* PROFESSIONAL FOOTER - CRUSTHOOD      */
/* ===================================== */



:root {
    --gold-primary: #d4af37;
    --gold-light: #f4e4c1;
    --gold-dark: #b8941e;
    --dark-bg: #0a0a0a;
    --dark-secondary: #1a1a1a;
    --dark-tertiary: #2a2a2a;
    --text-primary: #f5f5f5;
    --text-secondary: #c0c0c0;
    --text-muted: #808080;
    --border-color: rgba(212, 175, 55, 0.15);
}

/* ===================================== */
/* MAIN FOOTER                           */
/* ===================================== */

.professional-footer {
    background: linear-gradient(180deg, var(--dark-secondary) 0%, var(--dark-bg) 100%);
    color: var(--text-secondary);
    position: relative;
    margin-top: 5rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Main Footer Content */
.footer-main {
    padding: 4rem 0 3rem;
    border-bottom: 1px solid var(--border-color);
}

.footer-main .footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1.3fr;
    gap: 3rem;
}

/* Footer Column */
.footer-column {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-column.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.footer-column:nth-child(2) {
    transition-delay: 0.1s;
}

.footer-column:nth-child(3) {
    transition-delay: 0.2s;
}

.footer-column:nth-child(4) {
    transition-delay: 0.3s;
}

.footer-column:nth-child(5) {
    transition-delay: 0.4s;
}

/* Brand Column */
.footer-brand {
    padding-right: 2rem;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo-text {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 3px;
    line-height: 1.2;
    margin-bottom: 0.3rem;
}

.footer-logo-subtitle {
    display: block;
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.footer-description {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

/* Social Links */
.footer-social {
    display: flex;
    gap: 0.75rem;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: rgba(30, 30, 30, 0.6);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: var(--gold-primary);
    color: var(--gold-primary);
    transform: translateY(-4px);
}

.social-btn .material-symbols-outlined {
    font-size: 20px;
}

/* Footer Heading */
.footer-heading {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: var(--gold-primary);
}

/* Footer Links */
.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    padding: 0.3rem 0;
}

.footer-links a .material-symbols-outlined {
    font-size: 18px;
    color: var(--gold-primary);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--text-primary);
    padding-left: 0.5rem;
}

.footer-links a:hover .material-symbols-outlined {
    opacity: 1;
    transform: translateX(3px);
}

/* Newsletter Section */
.footer-newsletter {
    padding-left: 1rem;
}

.newsletter-text {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.newsletter-form {
    margin-bottom: 1.5rem;
}

.input-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(30, 30, 30, 0.6);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0 1rem;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
}

.input-wrapper:focus-within {
    border-color: var(--gold-primary);
    background: rgba(30, 30, 30, 0.8);
}

.input-wrapper .material-symbols-outlined {
    font-size: 20px;
    color: var(--gold-primary);
}

.newsletter-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-primary);
    font-size: 0.9rem;
    padding: 1rem 0;
    font-family: inherit;
}

.newsletter-input::placeholder {
    color: var(--text-muted);
}

.newsletter-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.9rem 1.5rem;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    border: none;
    border-radius: 8px;
    color: var(--dark-bg);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.newsletter-btn .material-symbols-outlined {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.newsletter-btn:hover .material-symbols-outlined {
    transform: translateX(4px);
}

/* Contact Info */
.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.875rem;
}

.contact-item .material-symbols-outlined {
    font-size: 18px;
    color: var(--gold-primary);
}

.contact-item a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--gold-primary);
}

/* ===================================== */
/* TRUST BADGES & PAYMENT               */
/* ===================================== */

.footer-trust {
    padding: 2.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.footer-trust .footer-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

.trust-badges {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--text-muted);
    font-size: 0.875rem;
    font-weight: 500;
}

.trust-item .material-symbols-outlined {
    font-size: 24px;
    color: var(--gold-primary);
}

.payment-methods {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.payment-label {
    color: var(--text-muted);
    font-size: 0.875rem;
    font-weight: 500;
}

.payment-icons {
    display: flex;
    gap: 0.75rem;
}

.payment-icons .material-symbols-outlined {
    font-size: 28px;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.payment-icons .material-symbols-outlined:hover {
    color: var(--gold-primary);
    transform: scale(1.1);
}

/* ===================================== */
/* FOOTER BOTTOM                         */
/* ===================================== */

.footer-bottom {
    padding: 2rem 0;
    background: rgba(5, 5, 5, 0.5);
}

.footer-bottom-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.copyright {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.copyright strong {
    color: var(--gold-primary);
    font-weight: 600;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-legal a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--gold-primary);
}

.separator {
    color: var(--border-color);
    font-size: 0.85rem;
}

.footer-credits {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-credits .heart {
    font-size: 16px;
    color: #e74c3c;
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    25% {
        transform: scale(1.1);
    }
    50% {
        transform: scale(1);
    }
}

/* ===================================== */
/* BACK TO TOP BUTTON                    */
/* ===================================== */

.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    border: none;
    border-radius: 50%;
    color: var(--dark-bg);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
}

.back-to-top .material-symbols-outlined {
    font-size: 24px;
}

/* ===================================== */
/* RESPONSIVE DESIGN                     */
/* ===================================== */

@media (max-width: 1200px) {
    .footer-main .footer-container {
        grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
        gap: 2.5rem;
    }

    .footer-column:nth-child(4) {
        grid-column: 1 / -1;
    }
}

@media (max-width: 992px) {
    .footer-main .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }

    .footer-brand {
        grid-column: 1 / -1;
        padding-right: 0;
        max-width: 600px;
    }

    .footer-newsletter {
        grid-column: 1 / -1;
        padding-left: 0;
        max-width: 600px;
    }

    .footer-trust .footer-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .trust-badges {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .footer-container {
        padding: 0 1.5rem;
    }

    .footer-main {
        padding: 3rem 0 2.5rem;
    }

    .footer-main .footer-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-brand,
    .footer-newsletter {
        max-width: 100%;
    }

    .footer-logo-text {
        font-size: 1.5rem;
    }

    .footer-heading {
        font-size: 1rem;
        margin-bottom: 1.25rem;
    }

    .footer-trust {
        padding: 2rem 0;
    }

    .trust-badges {
        width: 100%;
        justify-content: space-between;
        gap: 1rem;
    }

    .trust-item {
        flex-direction: column;
        text-align: center;
        gap: 0.4rem;
        font-size: 0.8rem;
    }

    .payment-methods {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .footer-bottom-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .footer-legal {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .separator {
        display: none;
    }

    .back-to-top {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .footer-container {
        padding: 0 1.25rem;
    }

    .footer-main {
        padding: 2.5rem 0 2rem;
    }

    .footer-main .footer-container {
        gap: 2rem;
    }

    .footer-logo-text {
        font-size: 1.3rem;
        letter-spacing: 2px;
    }

    .footer-description {
        font-size: 0.85rem;
    }

    .footer-social {
        gap: 0.6rem;
    }

    .social-btn {
        width: 38px;
        height: 38px;
    }

    .footer-links a {
        font-size: 0.85rem;
    }

    .newsletter-input {
        font-size: 0.85rem;
    }

    .newsletter-btn {
        padding: 0.8rem 1.25rem;
        font-size: 0.9rem;
    }

    .trust-badges {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .footer-bottom {
        padding: 1.5rem 0;
    }

    .copyright,
    .footer-legal a,
    .footer-credits {
        font-size: 0.8rem;
    }

    .back-to-top {
        bottom: 1.25rem;
        right: 1.25rem;
        width: 42px;
        height: 42px;
    }
}


/* Toast Notification */
.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: rgba(20, 20, 20, 0.95);
    border: 1px solid var(--gold-primary);
    color: var(--text-primary);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.6);
    opacity: 0;
    transform: translateY(40px);
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 5000;
    font-size: 0.95rem;
}

.toast.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.toast .material-symbols-outlined {
    color: var(--gold-primary);
    font-size: 24px;
}


/* ===================================== */
/* PRINT STYLES                          */
/*