.elementor-21160 .elementor-element.elementor-element-52ba74b{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-21160 .elementor-element.elementor-element-347e3a7{margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;}/* Start custom CSS for html, class: .elementor-element-347e3a7 *//* --- Variables --- */
:root {
    --color-dark: #000000;
    --color-text: #FFFFFF;
    --color-link: #cccccc;
    --color-accent: #FFD700; /* Gold */
    --padding-unit: 1.5rem;
}

/* --- Base Footer Setup --- */
.footer {
    background-color: var(--color-dark);
    color: var(--color-text);
    padding: 3rem var(--padding-unit) 1rem;
    font-family: Arial, sans-serif;
}

/* --- 1. Top Bar: Newsletter & Social --- */
.footer__top-bar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1); 
}

/* Newsletter Input */
.footer__newsletter input {
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: transparent;
    color: var(--color-text);
    border-radius: 4px 0 0 4px;
    outline: none;
}

/* Gold Accent Button */
.accent-button {
    background-color: var(--color-accent);
    color: var(--color-dark);
    border: none;
    padding: 0.75rem 1.25rem;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: bold;
    border-radius: 0 4px 4px 0;
    transition: background-color 0.2s;
}

.accent-button:hover {
    background-color: #E6C200;
}

/* Social Icons */
.footer__social a {
    color: var(--color-text);
    font-size: 1.5rem;
    margin: 0 0.5rem;
    transition: color 0.2s;
}

.footer__social a:hover {
    color: var(--color-accent);
}

/* --- 2. Main Links Columns (FIXED SECTION) --- */
.footer__main-links {
    margin-top: 2rem;
}

/* Title Styling - Fixed to be responsive and visible */
.column-title {
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-accent); /* Changed to Gold */
    margin: 0 0 1.2rem 0;      /* Fixed spacing below title */
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1); 
    display: block;            /* Ensures styles apply correctly */
}

/* List Container - Removes "Old" Bullets */
.column-list {
    list-style: none; /* REMOVES BULLETS */
    padding: 0;       /* REMOVES INDENTATION */
    margin: 0;
}

/* List Items - Spacing */
.column-list li {
    margin-bottom: 0.8rem; /* Adds modern spacing between links */
}

/* Links */
.column-list a {
    color: var(--color-link);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    display: inline-block;
}

.column-list a:hover {
    color: var(--color-accent);
    transform: translateX(5px); /* Slide effect */
}

/* --- 3. Bottom Bar --- */
.footer__bottom-bar {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__payment-logos i {
    font-size: 2rem;
    margin: 0 0.5rem;
    color: var(--color-link);
}

.footer__copyright {
    font-size: 0.8rem;
    color: var(--color-link);
    margin-top: 1rem;
}

/* --- Desktop Layout (Min-width 768px) --- */
@media (min-width: 768px) {
    .footer {
        padding: 4rem var(--padding-unit) 1.5rem;
    }

    .footer__main-links {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
    
    .footer__top-bar {
        flex-direction: row;
        justify-content: space-between;
    }
    
    /* Remove border on titles for desktop for cleaner look */
    .column-title {
        border-bottom: none;
    }
}/* End custom CSS */
/* Start custom CSS for container, class: .elementor-element-52ba74b *//* Targets the h3 specifically inside the newsletter section */
.footer__newsletter h3 {
    color: #ffffff; /* or var(--color-text) */
    margin-bottom: 1rem;
}/* End custom CSS */