/* ============================================================
   SIMPLE FOOTER CSS
   Clean, responsive footer for all devices
   ============================================================ */

.simple-footer {
    background: linear-gradient(145deg, #130d05 0%, #1d1108 100%);
    border-top: 1px solid rgba(200, 149, 42, 0.12);
    padding: 50px 0 20px;
    margin-top: 60px;
}

.simple-footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Footer Grid */
.simple-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

/* Logo Section */
.simple-footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.simple-footer-logo img {
    height: 40px;
}

.simple-footer-logo span {
    font-family: 'Instrument Serif', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
}

.simple-footer-about {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
}

/* Social Links */
.simple-footer-social {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.simple-footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    transition: all 0.2s ease;
}

.simple-footer-social a:hover {
    background: #C8251E;
    color: white;
    transform: translateY(-3px);
}

/* Footer Columns */
.simple-footer-col h4 {
    font-family: 'Instrument Serif', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
}

.simple-footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.simple-footer-col ul li {
    margin-bottom: 12px;
}

.simple-footer-col ul li a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 13px;
    transition: all 0.2s ease;
}

.simple-footer-col ul li a:hover {
    color: #C8251E;
    padding-left: 5px;
}

/* Contact Section */
.simple-footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.simple-footer-contact i {
    width: 28px;
    color: #C8251E;
}

.simple-footer-contact a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
}

.simple-footer-contact a:hover {
    color: #C8251E;
}

/* Newsletter Form */
.simple-footer-form {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.simple-footer-form input {
    flex: 1;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 30px;
    color: white;
    font-size: 13px;
}

.simple-footer-form input:focus {
    outline: none;
    border-color: #C8251E;
}

.simple-footer-form input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.simple-footer-form button {
    width: 44px;
    height: 44px;
    background: #C8251E;
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: all 0.2s ease;
}

.simple-footer-form button:hover {
    background: #A01A14;
    transform: translateX(3px);
}

/* Footer Bottom */
.simple-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.simple-footer-copyright p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}

.simple-footer-payment {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}

.simple-footer-payment i {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
}

/* Toast Notification */
.simple-toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: #059669;
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    z-index: 1000;
    animation: slideUp 0.3s ease;
}

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

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

/* Tablet */
@media (max-width: 768px) {
    .simple-footer {
        padding: 40px 0 20px;
    }
    
    .simple-footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .simple-footer-newsletter {
        grid-column: span 2;
    }
    
    .simple-footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .simple-footer-payment {
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .simple-footer-container {
        padding: 0 16px;
    }
    
    .simple-footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .simple-footer-newsletter {
        grid-column: span 1;
    }
    
    .simple-footer-logo img {
        height: 35px;
    }
    
    .simple-footer-logo span {
        font-size: 1.1rem;
    }
    
    .simple-footer-form input {
        padding: 10px 14px;
    }
    
    .simple-footer-form button {
        width: 40px;
        height: 40px;
    }
    
    .simple-footer-payment span:not(:first-child) {
        display: none;
    }
}