/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #2d1b69 0%, #1a0d4f 100%);
    color: white;
    padding: 20px 60px;
    position: relative;
    overflow: hidden;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
}

.footer::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 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.footer-container {
    margin: 0 auto;
    padding: 0 5vw;
    position: relative;
    z-index: 2;
}

/* Desktop Layout */
.footer-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 80px;
    align-items: center;
    margin-bottom: 40px;
    width: 100%;
}

/* Left Section */
.footer-left {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 5px;
}

.logo-icon {
    width: 120px;
    height: 50px;
    color: #8b5cf6;
}

.logo-text {
    font-size: 1.4em;
    font-weight: 400;
    color: white;
    letter-spacing: -0.02em;
}

.footer-title {
    font-size: 1.6em;
    font-weight: 300;
    line-height: 1.2;
    color: white;
    letter-spacing: -0.02em;
}

.footer-info-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-info {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1em;
    line-height: 1.5;
}

.footer-info a {
    color: rgba(255, 255, 255, 0.8);
}

.address-icon {
    margin-top: 2px;
    opacity: 1;
}

/* Right Section - Products */
.footer-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    min-width: 200px;
    margin-top: 50px;
}

.products-label {
    font-size: 0.8em;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.product-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    color: white;
    font-size: 0.9em;
    font-weight: 300;
}

.product-name {
    font-size: 1.4em;
    font-weight: 300;
}

.coming-soon {
    background: linear-gradient(90deg, #8647f3, #ddd1fb);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent; /* Fallback */
    margin-left: 15px;
    font-size: 0.9em;
}

/* Bottom Section */
.footer-bottom {
    border-top: 1px solid rgba(233, 231, 231, 0.915);
    padding: 30px 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9em;
}

.footer-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.footer-link {
    color: #8b5cf6;
    text-decoration: none;
    font-size: 0.9em;
    transition: color 0.3s ease;
    position: relative;
}

.footer-link:hover {
    color: rgba(255, 255, 255, 0.7);
}

.footer-link::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.7);
    transition: width 0.3s ease;
}

.footer-link:hover::after {
    width: 100%;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .footer {
        padding: 40px 0 30px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        justify-content: center;
    }

    .footer-left {
        align-items: center;
        text-align: center;
    }

    .footer-title {
        font-size: 2em;
        margin-bottom: 15px;
    }

    .footer-address {
        justify-content: center;
        text-align: center;
    }

    .footer-right {
        display: none;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .footer-links {
        gap: 20px;
        justify-content: center;
    }
}

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

    .footer-title {
        font-size: 1.8em;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }

    .product-item {
        flex-direction: column;
        gap: 5px;
    }
}
