/* ===============================
   FOOTER – WATCH BRAND
================================ */

.watch-footer {
    background: #0b0b0b;
    color: #d9d9d9;
    font-family: inherit;
}

/* ===============================
   NEWSLETTER
================================ */

.footer-newsletter {
    text-align: center;
    padding: 70px 20px;
    background: linear-gradient(135deg, #111, #000);
}

.footer-newsletter h3 {
    font-size: 26px;
    letter-spacing: 1.5px;
    color: #cb9e21;
    margin-bottom: 12px;
}

.footer-newsletter p {
    font-size: 14px;
    color: #aaa;
    margin-bottom: 30px;
}

.newsletter-form {
    max-width: 460px;
    margin: 0 auto;
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 16px;
    border-radius: 30px;
    border: none;
    outline: none;
    font-size: 14px;
}

.newsletter-form button {
    padding: 14px 28px;
    border-radius: 30px;
    border: none;
    background: #cb9e21;
    color: #000;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsletter-form button:hover {
    background: #e0b634;
}

/* ===============================
   FOOTER MAIN
================================ */

.footer-main {
    padding: 60px 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-col h4 {
    font-size: 15px;
    letter-spacing: 1px;
    margin-bottom: 10px;
    color: #fff;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.7;
    color: #aaa;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    font-size: 14px;
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #cb9e21;
}

/* ===============================
   FOOTER BOTTOM
================================ */

.footer-bottom {
    padding: 20px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-bottom p {
    font-size: 13px;
    color: #777;
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form button {
        width: 100%;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }
}

/* ===============================
   FOOTER ACCORDION – MOBILE ONLY
================================ */

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
    .footer-container {
        gap: 0px;
    }

    .footer-main{
        padding: 40px 20px 0px 20px;
    }

    .footer-col h4 {
        margin-bottom: 0px;
    }

    .footer-accordion {
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .footer-accordion .footer-title {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 16px 0;
        cursor: pointer;
        position: relative;
        font-size: 15px;
        color: #ffffff;
    }

    /* Plus / Minus Icon */
    .footer-accordion .footer-title::after {
        content: '+';
        font-size: 20px;
        color: #cb9e21;
        transition: transform 0.3s ease;
    }

    .footer-accordion.active .footer-title::after {
        content: '−';
    }

    /* Accordion Content */
    .footer-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease;
        padding-left: 0;
        margin: 0;
    }

    .footer-accordion.active .footer-content {
        max-height: 300px;
        margin-bottom: 10px;
    }

    .footer-content li {
        margin-bottom: 12px;
    }

    .footer-content li a {
        font-size: 14px;
        color: #aaa;
        text-decoration: none;
    }
}
