/* ==========================================================
   PREMIUM LUXURY FOOTER (DARK THEME)
========================================================== */

.site-footer-premium {
    background-color: #0a0a0a; /* Deep luxury black */
    color: #a3a3a3;
    margin-top: 0;
    padding-top: 40px;
    font-family: 'Jost', sans-serif;
    border-top: 1px solid #1a1a1a;
}

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

/* --- 1. NEWSLETTER (Dark Mode Support) --- */
.footer-newsletter {
    border-bottom: 1px solid #222;
    padding: 0 0 60px 0;
}
.newsletter-icon {
    width: 60px;
    height: 60px;
    background: #151515;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a67c52; /* Bronze accent */
    flex-shrink: 0;
}
.newsletter-text h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    color: #fff;
    font-weight: 500;
    margin: 0 0 10px 0;
    line-height: 1.1;
}
.newsletter-text h4 { font-size: 16px; font-weight: 500; color: #ccc; margin: 0 0 5px 0; }
.newsletter-text p { font-size: 14px; color: #888; margin: 0; }
.newsletter-form { display: flex; width: 100%; margin-bottom: 10px; }
.newsletter-form input {
    flex: 1;
    padding: 18px 20px;
    border: 1px solid #333;
    border-right: none;
    border-radius: 4px 0 0 4px;
    font-size: 14px;
    outline: none;
    background: #111;
    color: #fff;
}
.newsletter-form input:focus { border-color: #555; }
.newsletter-form button {
    background: #fff;
    color: #000;
    border: 1px solid #fff;
    border-radius: 0 4px 4px 0;
    padding: 0 35px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.newsletter-form button:hover { background: #a67c52; border-color: #a67c52; color: #fff; }
.spam-notice { font-size: 12px; color: #666; display: flex; align-items: center; gap: 6px; margin: 0; }

/* --- 2. MAIN 4-COLUMN --- */
.footer-main {
    padding: 20px 0 30px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
}

/* Auto-inverts your black logo to white */
.footer-brand-logo { 
    max-height: 60px; 
    width: auto; 
    margin-bottom: 25px; 
    filter: brightness(0) invert(1); 
}
.footer-brand-text { font-family: 'Cormorant Garamond', serif; font-size: 32px; color: #fff; margin: 0 0 15px 0; }

.footer-about {
    font-size: 14px;
    line-height: 1.8;
    color: #a3a3a3;
    margin-bottom: 30px;
    max-width: 90%;
}

.footer-socials {
    display: flex;
    gap: 12px;
}
.footer-socials a {
    width: 38px;
    height: 38px;
    border: 1px solid #555;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
}
.footer-socials a:hover {
    border-color: #a67c52;
    color: #a67c52;
}
.footer-socials a svg { width: 16px; height: 16px; }

.footer-col-title {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: #fff;
    margin: 0 0 25px 0;
    padding-bottom: 12px;
    border-bottom: 1px solid #a67c52; /* Bronze accent line */
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: fit-content;
    padding-right: 20px;
    text-transform: uppercase;
}
.footer-col-title .toggle-icon { display: none; }

.footer-menu-collapse ul { list-style: none; padding: 0; margin: 0; }
.footer-menu-collapse ul li { margin-bottom: 16px; }
.footer-menu-collapse ul li a {
    text-decoration: none;
    color: #a3a3a3;
    font-size: 13px;
    transition: color 0.2s ease;
}
.footer-menu-collapse ul li a:hover { color: #fff; }

/* --- 3. USP WRAPPER (Partitioned Box) --- */
.footer-usps {
    padding: 20px 0 60px;
}

.usp-wrapper {
    background: #111111; /* Slightly lighter than background to create the box */
    border: 1px solid #1e1e1e;
    border-radius: 12px;
    padding: 30px 0;
}

.usp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.usp-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 0 30px;
    border-right: 1px solid #1e1e1e; /* Divider lines */
}
.usp-item:last-child {
    border-right: none;
}

.usp-icon {
    width: 42px;
    height: 42px;
    border: 1px solid #a67c52; /* Bronze outline */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}
.usp-icon svg { width: 18px; height: 18px; }

.usp-text h5 {
    font-size: 11px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 4px 0;
    line-height: 1.4;
}
.usp-text p {
    font-size: 11px;
    color: #888;
    margin: 0;
    line-height: 1.5;
}

/* --- 4. DARK BOTTOM BAR --- */
.footer-bottom-dark {
    background-color: #0a0a0a; /* Merges with footer */
    padding: 25px 0 35px;
    border-top: 1px solid #1a1a1a;
}

.bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bottom-left {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 12px;
    color: #888;
}

.country-flag { color: #fff; font-weight: 500; display: flex; align-items: center; gap: 8px; }
.separator { color: #333; }

.footer-payment-img {
    height: 22px; 
    width: auto;
    display: block;
    filter: none !important; 
    opacity: 0.8 !important; 
}

/* ==========================================================
   RESPONSIVE DESIGN (TABLET & MOBILE)
========================================================== */

@media screen and (max-width: 1024px) {
    .newsletter-inner { flex-direction: column; align-items: stretch; }
    .newsletter-left { flex-direction: column; gap: 15px; text-align: center; align-items: center; }
    .newsletter-right { max-width: 100%; margin: 0 auto; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    
    .usp-wrapper { padding: 30px 0; }
    .usp-grid { grid-template-columns: 1fr 1fr; gap: 30px 0; }
    .usp-item { border-right: none; padding: 0 20px; }
    .usp-item:nth-child(odd) { border-right: 1px solid #1e1e1e; }
    
    .footer-col-title { width: 100%; }
	.site-footer-premium {
    background-color: #0a0a0a; /* Deep luxury black */
    color: #a3a3a3;
    margin-top: 0;
    padding-top: 10px;
    font-family: 'Jost', sans-serif;
    border-top: 1px solid #1a1a1a;
}
}

@media screen and (max-width: 768px) {
    .footer-container { padding: 0 20px; }
    
    .footer-grid { grid-template-columns: 1fr; gap: 0; }
    .brand-col {
        margin-bottom: 30px;
        text-align: left !important;
    }
    .footer-about { max-width: 100%; }
    .footer-socials { justify-content: flex-start; }
    .footer-brand-logo { margin: 0 0 20px 0 !important; }

    /* Mobile Accordion logic */
    .menu-col { border-top: 1px solid #1a1a1a; }
    .footer-col-title { margin: 0; padding: 20px 0; cursor: pointer; padding-right: 0; border-bottom: none; }
    .footer-col-title .toggle-icon { display: block; font-size: 18px; font-weight: 300; transition: transform 0.3s; }
    .footer-menu-collapse { max-height: 0; overflow: hidden; transition: max-height 0.3s ease-in-out; }
    .menu-col.active .footer-menu-collapse { max-height: 300px; }
    .menu-col.active .footer-col-title .toggle-icon { transform: rotate(45deg); color: #a67c52; }
    .footer-menu-collapse ul { padding-bottom: 20px; }

    /* Stacked USP on Mobile */
    .usp-wrapper { padding: 25px 20px; }
    .usp-grid { grid-template-columns: 1fr; gap: 20px; }
    .usp-item { border-right: none !important; border-bottom: 1px solid #1e1e1e; padding: 0 0 20px 0; }
    .usp-item:last-child { border-bottom: none; padding-bottom: 0; }
    
    .bottom-inner { flex-direction: column; gap: 20px; }
    .bottom-left {
        flex-direction: row !important; 
        justify-content: center !important; 
        align-items: center !important;
        gap: 10px !important; 
        flex-wrap: wrap; 
    }
}