.life-home a, .life-home ul, .life-home li, .life-home span, .life-home button, .life-home p { color: inherit; text-decoration: inherit; list-style: inherit; font-size: inherit; font-weight: inherit; margin: inherit; padding: inherit; }
/* ============================================================
   SCHOCKFROSTER-FUER-ZUHAUSE.DE – Premium Homepage CSS
   Apple-inspiriertes Design · Coldline LIFE Consumer Shop
   
   EINBINDUNG (2 Optionen):
   
   Option A – Shopware Admin:
   Grundeinstellungen → Verkaufskanäle → Storefront → 
   Theme → Zusätzliches CSS
   
   Option B – KAS / Hoster (besser für Performance):
   Datei hochladen als /theme/custom-homepage.css
   Im Theme-Header einbinden via:
   <link rel="stylesheet" href="/theme/custom-homepage.css">
   ============================================================ */

/* --- Reset & Base Typography --- */
.life-home *,
.life-home *::before,
.life-home *::after {
    box-sizing: border-box;
}

.life-home {
    --life-black: #1d1d1f;
    --life-dark: #2c2c2e;
    --life-grey: #6e6e73;
    --life-light: #f5f5f7;
    --life-white: #ffffff;
    --life-accent: #0071e3;
    --life-accent-hover: #0077ED;
    --life-warm: #fbfaf8;
    --life-border: #d2d2d7;
    --life-radius: 18px;
    --life-radius-sm: 12px;
    --life-transition: 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
    
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: var(--life-black);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.5;
    overflow-x: hidden;
}

/* --- Section Rhythm --- */
.life-section {
    padding: 80px 24px;
    max-width: 100%;
}

.life-section--dark {
    background-color: var(--life-black);
    color: var(--life-white);
}

.life-section--light {
    background-color: var(--life-light);
}

.life-section--warm {
    background-color: var(--life-warm);
}

.life-container {
    max-width: 980px;
    margin: 0 auto;
}

.life-container--wide {
    max-width: 1120px;
    margin: 0 auto;
}

/* --- Typography Scale --- */
.life-eyebrow {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--life-grey);
    margin-bottom: 8px;
    display: block;
}

.life-section--dark .life-eyebrow {
    color: #a1a1a6;
}

.life-h1 {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.08;
    margin: 0 0 24px 0;
}

.life-h2 {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin: 0 0 20px 0;
}

.life-h3 {
    font-size: clamp(20px, 2.5vw, 24px);
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.2;
    margin: 0 0 12px 0;
}

.life-subhead {
    font-size: clamp(17px, 2vw, 21px);
    font-weight: 400;
    line-height: 1.5;
    color: var(--life-grey);
    max-width: 680px;
}

.life-section--dark .life-subhead {
    color: #a1a1a6;
}

.life-body {
    font-size: 17px;
    line-height: 1.65;
    color: var(--life-dark);
}

.life-section--dark .life-body {
    color: #d1d1d6;
}

.life-caption {
    font-size: 14px;
    line-height: 1.5;
    color: var(--life-grey);
}

/* --- Hero Section --- */
.life-hero {
    padding: 0;
    position: relative;
    overflow: hidden;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--life-black);
    color: var(--life-white);
}

.life-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.life-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
}

.life-hero__content {
    position: relative;
    z-index: 2;
    padding: 120px 24px 80px;
    max-width: 820px;
}

.life-hero__content .life-h1 {
    color: var(--life-white);
    margin-bottom: 20px;
}

.life-hero__content .life-subhead {
    color: rgba(255, 255, 255, 0.75);
    margin: 0 auto 40px;
}

/* --- Buttons --- */
.life-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 14px 28px;
    border-radius: 980px;
    font-size: 17px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--life-transition);
    border: none;
    line-height: 1.2;
}

.life-btn--primary {
    background-color: var(--life-accent);
    color: var(--life-white);
}

.life-btn--primary:hover {
    background-color: var(--life-accent-hover);
    transform: scale(1.02);
}

.life-btn--secondary {
    background-color: transparent;
    color: var(--life-accent);
    padding: 14px 8px;
}

.life-btn--secondary:hover {
    text-decoration: underline;
}

.life-btn--white {
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--life-white);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.life-btn--white:hover {
    background-color: rgba(255, 255, 255, 0.25);
}

.life-btn--dark {
    background-color: var(--life-black);
    color: var(--life-white);
}

.life-btn--dark:hover {
    background-color: #333;
}

.life-btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

/* --- Stat Bar / Trust Signals --- */
.life-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background-color: var(--life-border);
    border-radius: var(--life-radius);
    overflow: hidden;
    margin: 48px 0;
}

.life-stat {
    background-color: var(--life-white);
    padding: 32px 20px;
    text-align: center;
}

.life-stat__value {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--life-black);
    display: block;
    margin-bottom: 4px;
}

.life-stat__label {
    font-size: 13px;
    color: var(--life-grey);
    letter-spacing: 0.01em;
}

/* --- Card Grid --- */
.life-grid {
    display: grid;
    gap: 20px;
}

.life-grid--2 {
    grid-template-columns: repeat(2, 1fr);
}

.life-grid--3 {
    grid-template-columns: repeat(3, 1fr);
}

.life-grid--2-1 {
    grid-template-columns: 2fr 1fr;
}

.life-card {
    background-color: var(--life-light);
    border-radius: var(--life-radius);
    padding: 40px 32px;
    transition: transform var(--life-transition), box-shadow var(--life-transition);
    position: relative;
    overflow: hidden;
}

.life-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
}

.life-card--dark {
    background-color: var(--life-dark);
    color: var(--life-white);
}

.life-card--dark .life-subhead,
.life-card--dark .life-caption {
    color: #a1a1a6;
}

.life-card--accent {
    background-color: var(--life-black);
    color: var(--life-white);
}

.life-card--clickable {
    text-decoration: none;
    color: inherit;
    display: block;
    cursor: pointer;
}

.life-card__icon {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background-color: rgba(0, 0, 0, 0.04);
    font-size: 22px;
}

.life-card--dark .life-card__icon {
    background-color: rgba(255, 255, 255, 0.08);
}

.life-card__link {
    font-size: 17px;
    font-weight: 500;
    color: var(--life-accent);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 16px;
    transition: gap var(--life-transition);
}

.life-card__link:hover {
    gap: 8px;
}

.life-card__link::after {
    content: "→";
}

/* --- Function Grid (10 Funktionen) --- */
.life-functions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.life-function {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background-color: var(--life-white);
    border-radius: var(--life-radius-sm);
    border: 1px solid var(--life-border);
    transition: border-color var(--life-transition), box-shadow var(--life-transition);
}

.life-function:hover {
    border-color: transparent;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.life-function__icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background-color: var(--life-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.life-function__name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.life-function__desc {
    font-size: 14px;
    color: var(--life-grey);
    line-height: 1.45;
}

/* --- Comparison / Model Selector --- */
.life-models {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.life-model {
    background-color: var(--life-white);
    border-radius: var(--life-radius);
    padding: 40px 32px;
    border: 2px solid var(--life-border);
    transition: border-color var(--life-transition), box-shadow var(--life-transition);
    text-align: center;
    text-decoration: none;
    color: inherit;
    display: block;
}

.life-model:hover {
    border-color: var(--life-accent);
    box-shadow: 0 8px 40px rgba(0, 113, 227, 0.08);
}

.life-model__badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 980px;
    background-color: var(--life-light);
    color: var(--life-grey);
    margin-bottom: 20px;
}

.life-model__name {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.life-model__price {
    font-size: 22px;
    font-weight: 600;
    color: var(--life-black);
    margin-bottom: 16px;
}

.life-model__specs {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
}

.life-model__specs li {
    padding: 10px 0;
    border-bottom: 1px solid var(--life-border);
    font-size: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.life-model__specs li:last-child {
    border-bottom: none;
}

.life-model__specs li span:last-child {
    font-weight: 600;
}

/* --- Anwenderwelten (Use Cases) --- */
.life-usecases {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.life-usecase {
    background-color: var(--life-white);
    border-radius: var(--life-radius);
    padding: 32px 24px;
    text-decoration: none;
    color: inherit;
    display: block;
    border: 1px solid var(--life-border);
    transition: all var(--life-transition);
}

.life-usecase:hover {
    border-color: transparent;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.life-usecase__tag {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--life-accent);
    margin-bottom: 10px;
    display: block;
}

.life-usecase__title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.3;
}

.life-usecase__desc {
    font-size: 14px;
    color: var(--life-grey);
    line-height: 1.5;
}

/* --- Trust / Service Section --- */
.life-trust {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--life-radius);
    overflow: hidden;
}

.life-trust__item {
    padding: 32px 20px;
    text-align: center;
    background-color: var(--life-dark);
}

.life-trust__icon {
    font-size: 28px;
    margin-bottom: 12px;
    display: block;
}

.life-trust__title {
    font-size: 15px;
    font-weight: 600;
    color: var(--life-white);
    margin-bottom: 4px;
}

.life-trust__desc {
    font-size: 13px;
    color: #a1a1a6;
    line-height: 1.4;
}

/* --- FAQ Section --- */
.life-faq {
    max-width: 720px;
    margin: 0 auto;
}

.life-faq__item {
    border-bottom: 1px solid var(--life-border);
}

.life-faq__question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.35;
    color: var(--life-black);
    background: none;
    border: none;
    width: 100%;
    text-align: left;
}

.life-faq__question::after {
    content: "+";
    font-size: 24px;
    font-weight: 300;
    color: var(--life-grey);
    flex-shrink: 0;
    margin-left: 16px;
    transition: transform 0.3s ease;
}

.life-faq__item.is-open .life-faq__question::after {
    content: "−";
}

.life-faq__answer {
    display: none;
    padding: 0 0 24px 0;
    font-size: 16px;
    line-height: 1.6;
    color: var(--life-grey);
}

.life-faq__item.is-open .life-faq__answer {
    display: block;
}

/* --- CTA / Beratung Section --- */
.life-cta-box {
    background-color: var(--life-light);
    border-radius: var(--life-radius);
    padding: 56px 40px;
    text-align: center;
    max-width: 780px;
    margin: 0 auto;
}

.life-cta-box .life-h3 {
    font-size: 28px;
}

/* --- Divider --- */
.life-divider {
    width: 48px;
    height: 2px;
    background-color: var(--life-border);
    margin: 48px auto;
    border: none;
}

.life-section--dark .life-divider {
    background-color: rgba(255, 255, 255, 0.15);
}

/* --- Text utilities --- */
.life-text-center {
    text-align: center;
}

.life-mx-auto {
    margin-left: auto;
    margin-right: auto;
}

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

@media (max-width: 1024px) {
    .life-grid--3 {
        grid-template-columns: repeat(2, 1fr);
    }
    .life-usecases {
        grid-template-columns: repeat(2, 1fr);
    }
    .life-trust {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .life-section {
        padding: 56px 20px;
    }
    
    .life-hero {
        min-height: 70vh;
    }
    
    .life-hero__content {
        padding: 100px 20px 60px;
    }
    
    .life-grid--2,
    .life-grid--3,
    .life-grid--2-1 {
        grid-template-columns: 1fr;
    }
    
    .life-models {
        grid-template-columns: 1fr;
    }
    
    .life-functions {
        grid-template-columns: 1fr;
    }
    
    .life-usecases {
        grid-template-columns: 1fr;
    }
    
    .life-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .life-trust {
        grid-template-columns: 1fr;
    }
    
    .life-card {
        padding: 32px 24px;
    }
    
    .life-btn-group {
        flex-direction: column;
        align-items: center;
    }
    
    .life-cta-box {
        padding: 40px 24px;
    }
}

@media (max-width: 480px) {
    .life-stats {
        grid-template-columns: 1fr 1fr;
    }
    
    .life-stat {
        padding: 24px 16px;
    }
    
    .life-function {
        padding: 20px;
    }
}

/* --- Minimal FAQ Toggle Script (inline im HTML-Block) --- */
/* Das Script steht am Ende des HTML-Blocks */
/* ============================================================
   FIX: Shopware Theme Override – am Ende der homepage.css 
   anfügen oder als Ersatz der bestehenden Regeln
   ============================================================ */

/* Model Cards – Text sichtbar machen */
.life-home .life-model .life-model__name {
    font-size: 28px !important;
    font-weight: 700 !important;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
    color: #1d1d1f !important;
}

.life-home .life-model .life-model__price {
    font-size: 22px !important;
    font-weight: 600 !important;
    color: #1d1d1f !important;
    margin-bottom: 16px;
}

.life-home .life-model .life-model__badge {
    display: inline-block !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 4px 12px !important;
    border-radius: 980px;
    background-color: #f5f5f7 !important;
    color: #6e6e73 !important;
    margin-bottom: 20px;
}

.life-home .life-model .life-model__specs {
    list-style: none !important;
    padding: 0 !important;
    margin: 20px 0 !important;
    text-align: left;
}

.life-home .life-model .life-model__specs li {
    padding: 10px 0 !important;
    border-bottom: 1px solid #d2d2d7 !important;
    font-size: 15px !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    color: #1d1d1f !important;
    list-style: none !important;
}

.life-home .life-model .life-model__specs li:last-child {
    border-bottom: none !important;
}

.life-home .life-model .life-model__specs li span {
    color: #1d1d1f !important;
    display: inline-block !important;
}

.life-home .life-model .life-model__specs li span:first-child {
    font-weight: 400 !important;
    color: #6e6e73 !important;
}

.life-home .life-model .life-model__specs li span:last-child {
    font-weight: 600 !important;
    color: #1d1d1f !important;
}

/* Fix: Alle Links in .life-home ohne Shopware-Unterdrückung */
.life-home a.life-model {
    text-decoration: none !important;
    color: inherit !important;
    display: block !important;
}

/* Fix: Stat-Werte */
.life-home .life-stat .life-stat__value {
    font-size: clamp(24px, 3vw, 36px) !important;
    font-weight: 700 !important;
    color: #1d1d1f !important;
    display: block !important;
}

.life-home .life-stat .life-stat__label {
    font-size: 13px !important;
    color: #6e6e73 !important;
    display: block !important;
}

/* Fix: Function Grid Text */
.life-home .life-function .life-function__name {
    font-size: 16px !important;
    font-weight: 600 !important;
    color: #1d1d1f !important;
    margin-bottom: 4px;
}

.life-home .life-function .life-function__desc {
    font-size: 14px !important;
    color: #6e6e73 !important;
    line-height: 1.45;
}

/* Fix: Usecase Cards */
.life-home a.life-usecase {
    text-decoration: none !important;
    color: inherit !important;
}

.life-home .life-usecase .life-usecase__tag {
    font-size: 12px !important;
    color: #0071e3 !important;
    display: block !important;
}

.life-home .life-usecase .life-usecase__title {
    font-size: 18px !important;
    font-weight: 600 !important;
    color: #1d1d1f !important;
}

.life-home .life-usecase .life-usecase__desc {
    font-size: 14px !important;
    color: #6e6e73 !important;
}

/* Fix: Trust Items in Dark Section */
.life-home .life-trust__item .life-trust__title {
    font-size: 15px !important;
    font-weight: 600 !important;
    color: #ffffff !important;
}

.life-home .life-trust__item .life-trust__desc {
    font-size: 13px !important;
    color: #a1a1a6 !important;
}

/* Fix: FAQ Buttons */
.life-home .life-faq__question {
    font-size: 18px !important;
    font-weight: 600 !important;
    color: #1d1d1f !important;
    background: none !important;
    border: none !important;
    cursor: pointer;
}

.life-home .life-faq__answer {
    font-size: 16px !important;
    color: #6e6e73 !important;
}

/* Fix: Responsive Grid in Dark Section */
@media (max-width: 768px) {
    .life-home .life-models {
        grid-template-columns: 1fr !important;
    }
    
    .life-home .life-section--warm .life-container > div {
        grid-template-columns: 1fr !important;
    }
}
/* ── FOOTER ELEMENT DIREKT ──────────────────────────────────── */

footer,
.footer-main,
#footerColumns,
.footer-navigation {
    background-color: #111111 !important;
    color: #a0a0a0 !important;
    padding: 60px 0 40px 0 !important;
    border-top: 3px solid #c8a96e !important;
}

/* ── ALLE ÜBERSCHRIFTEN IM FOOTER ──────────────────────────── */

footer h1, footer h2, footer h3, footer h4, footer h5, footer h6,
footer .h1, footer .h2, footer .h3, footer .h4, footer .h5, footer .h6,
footer [class*="headline"],
footer [class*="title"] {
    color: #ffffff !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    letter-spacing: 1.5px !important;
    text-transform: uppercase !important;
    margin-bottom: 20px !important;
    padding-bottom: 12px !important;
    border-bottom: 1px solid rgba(200, 169, 110, 0.3) !important;
}

/* ── SERVICE-HOTLINE GOLDFARBEN ─────────────────────────────── */

footer [class*="column"]:first-child h1,
footer [class*="column"]:first-child h2,
footer [class*="column"]:first-child h3,
footer [class*="column"]:first-child h4,
footer [class*="column"]:first-child h5,
footer [class*="column"]:first-child h6,
footer [class*="column"]:first-child [class*="headline"],
footer [class*="column"]:first-child [class*="title"] {
    color: #c8a96e !important;
}

/* ── ALLE LINKS IM FOOTER ──────────────────────────────────── */

footer a {
    color: #a0a0a0 !important;
    text-decoration: none !important;
    font-size: 14px !important;
    line-height: 2 !important;
    transition: color 0.2s ease !important;
}

footer a:hover {
    color: #c8a96e !important;
    text-decoration: none !important;
}

/* ── TELEFON & E-MAIL HERVORHEBEN ──────────────────────────── */

footer a[href^="tel:"],
footer a[href^="mailto:"] {
    color: #ffffff !important;
    font-weight: 500 !important;
}

footer a[href^="tel:"]:hover,
footer a[href^="mailto:"]:hover {
    color: #c8a96e !important;
}

/* ── FLIESSTEXT ────────────────────────────────────────────── */

footer p,
footer span,
footer div:not([class]) {
    color: #a0a0a0 !important;
    font-size: 14px !important;
    line-height: 1.8 !important;
}

/* ── LISTEN ────────────────────────────────────────────────── */

footer ul {
    list-style: none !important;
    padding-left: 0 !important;
    margin: 0 !important;
}

footer ul li {
    padding: 0 !important;
    margin: 0 !important;
}

/* ── KARTEN & HINTERGRÜNDE TRANSPARENT ─────────────────────── */

footer [class*="card"],
footer [class*="card"] [class*="body"] {
    background-color: transparent !important;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
}

/* ── SPALTEN ABSTAND ───────────────────────────────────────── */

footer [class*="column"],
footer [class*="col-"] {
    padding-left: 20px !important;
    padding-right: 20px !important;
}

/* ── ACCORDION / COLLAPSE AUF MOBILE ───────────────────────── */

footer [class*="toggle"],
footer [class*="collapse"] {
    color: #ffffff !important;
}

/* ── FOOTER BOTTOM (Copyright, MwSt, Shopware) ────────────── */

footer ~ div,
footer + div,
[class*="footer-bottom"],
[class*="footer-vat"],
[class*="footer-minimal"] {
    background-color: #0a0a0a !important;
    color: #555555 !important;
    padding: 20px 0 !important;
    font-size: 12px !important;
    border-top: 1px solid #222222 !important;
}

footer ~ div a,
footer + div a,
[class*="footer-bottom"] a {
    color: #555555 !important;
    font-size: 12px !important;
}

footer ~ div a:hover,
footer + div a:hover {
    color: #c8a96e !important;
}

/* ── SHOPWARE LOGO DEZENT ──────────────────────────────────── */

footer img,
footer svg,
[class*="footer"] img[alt*="Shopware"],
a[href*="shopware.com"] img {
    opacity: 0.3 !important;
    filter: grayscale(100%) brightness(0.5) !important;
    transition: opacity 0.2s ease !important;
}

footer img:hover,
a[href*="shopware.com"] img:hover {
    opacity: 0.5 !important;
}

footer img[alt*="Hoffman"],
footer img[src*="logo"] {
    opacity: 1 !important;
    filter: none !important;
}

/* ── RESPONSIVE ────────────────────────────────────────────── */

@media (max-width: 767px) {
    footer,
    .footer-main,
    #footerColumns,
    .footer-navigation {
        padding: 40px 0 30px 0 !important;
    }

    footer [class*="column"] {
        padding: 0 15px !important;
        margin-bottom: 10px !important;
    }

    footer h1, footer h2, footer h3, footer h4, footer h5, footer h6 {
        font-size: 13px !important;
        margin-bottom: 15px !important;
        padding-bottom: 10px !important;
    }
}