/* ==========================================================================
   REDESIGN – Vortice Polska
   Global typography + Footer overrides for Storefront theme
   Design System 2026
   ========================================================================== */

/* ---- CSS Custom Properties (Design System Tokens) ---- */
:root {
    --vortice-green: #009640;
    --vortice-dark: #007a33;
    --vortice-text: #333333;
    --vortice-grey: #666666;
    --vortice-light-bg: #f8f9fa;
    --vortice-font: 'Fira Sans', sans-serif;
}

/* ==========================================================================
   TOP HEADER – navbar fix, language switcher, YouTube icon
   ========================================================================== */

/* Kill navbar-fixed-top side effects inside our header */
#masthead .navbar {
    position: relative !important;
    z-index: auto !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    border: 0 !important;
    margin-bottom: 0 !important;
    min-height: 0 !important;
    background: transparent !important;
}

/* ---- Right column: flex row, all items in one line ---- */
.vortice-header-right {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 8px !important;
    position: relative !important;
    z-index: 1031 !important;
}

/* ---- Language chooser – override plugin's green circles ---- */
#masthead .vortice-header-right ul.qtranxs_language_chooser,
#masthead .vortice-header-right ul.language-chooser {
    display: flex !important;
    align-items: center !important;
    gap: 5px !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    float: none !important;
    top: auto !important;
    position: static !important;
    min-width: auto !important;
}

#masthead .vortice-header-right ul.qtranxs_language_chooser li,
#masthead .vortice-header-right ul.language-chooser li {
    display: block !important;
    float: none !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    width: auto !important;
    height: auto !important;
    border-radius: 4px !important;
    border: 1.5px solid rgba(255, 255, 255, 0.4) !important;
    background: transparent !important;
    opacity: 0.7;
    transition: opacity 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

#masthead .vortice-header-right ul.qtranxs_language_chooser li.active,
#masthead .vortice-header-right ul.language-chooser li.active {
    display: block !important;
    opacity: 1;
    border-color: rgba(255, 255, 255, 0.9) !important;
    background: rgba(255, 255, 255, 0.15) !important;
}

#masthead .vortice-header-right ul.qtranxs_language_chooser li:hover,
#masthead .vortice-header-right ul.language-chooser li:hover {
    opacity: 1;
    border-color: #fff !important;
    background: rgba(255, 255, 255, 0.1) !important;
}

#masthead .vortice-header-right ul.qtranxs_language_chooser li a,
#masthead .vortice-header-right ul.language-chooser li a {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 36px !important;
    height: 32px !important;
    padding: 0 8px !important;
    color: #fff !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    letter-spacing: 0.05em;
    text-decoration: none !important;
    line-height: 32px !important;
    background: transparent !important;
    border: none !important;
}

#masthead .vortice-header-right ul.qtranxs_language_chooser li:hover a,
#masthead .vortice-header-right ul.language-chooser li:hover a {
    color: #fff !important;
    text-decoration: none !important;
}

#masthead .vortice-header-right ul.qtranxs_language_chooser li a span,
#masthead .vortice-header-right ul.language-chooser li a span {
    display: inline !important;
    color: inherit !important;
}

/* ---- YouTube icon – same size as language buttons ---- */
#masthead .vortice-header-right a.enlace-youtube {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 36px !important;
    height: 32px !important;
    border: 1.5px solid rgba(255, 255, 255, 0.4) !important;
    border-radius: 4px !important;
    color: #fff !important;
    font-size: 20px !important;
    line-height: 1 !important;
    margin: 0 !important;
    padding: 0 !important;
    float: none !important;
    position: static !important;
    text-decoration: none !important;
    background: transparent !important;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

#masthead .vortice-header-right a.enlace-youtube:hover {
    border-color: #fff !important;
    background: rgba(255, 255, 255, 0.1) !important;
}

#masthead .vortice-header-right a.enlace-youtube i.fa-youtube {
    font-size: 20px !important;
    line-height: 1 !important;
    color: #fff !important;
}

/* ---- LinkedIn icon – same size as language buttons ---- */
#masthead .vortice-header-right a.enlace-linkedin {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 36px !important;
    height: 32px !important;
    border: 1.5px solid rgba(255, 255, 255, 0.4) !important;
    border-radius: 4px !important;
    color: #fff !important;
    font-size: 18px !important;
    line-height: 1 !important;
    margin: 0 !important;
    padding: 0 !important;
    float: none !important;
    position: static !important;
    text-decoration: none !important;
    background: transparent !important;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

#masthead .vortice-header-right a.enlace-linkedin:hover {
    border-color: #fff !important;
    background: rgba(255, 255, 255, 0.1) !important;
}

#masthead .vortice-header-right a.enlace-linkedin i.fa-linkedin-in {
    font-size: 18px !important;
    line-height: 1 !important;
    color: #fff !important;
}

/* ---- SCROLLED STATE: header becomes white – use #masthead.scroll to beat #masthead specificity ---- */
#masthead.scroll .vortice-header-right ul.qtranxs_language_chooser li,
#masthead.scroll .vortice-header-right ul.language-chooser li {
    border-color: rgba(0, 0, 0, 0.25) !important;
    background: transparent !important;
}

#masthead.scroll .vortice-header-right ul.qtranxs_language_chooser li.active,
#masthead.scroll .vortice-header-right ul.language-chooser li.active {
    border-color: rgba(0, 0, 0, 0.6) !important;
    background: rgba(0, 0, 0, 0.05) !important;
}

#masthead.scroll .vortice-header-right ul.qtranxs_language_chooser li:hover,
#masthead.scroll .vortice-header-right ul.language-chooser li:hover {
    border-color: #000 !important;
    background: rgba(0, 0, 0, 0.06) !important;
}

#masthead.scroll .vortice-header-right ul.qtranxs_language_chooser li a,
#masthead.scroll .vortice-header-right ul.language-chooser li a {
    color: #333 !important;
}

#masthead.scroll .vortice-header-right ul.qtranxs_language_chooser li:hover a,
#masthead.scroll .vortice-header-right ul.language-chooser li:hover a {
    color: #000 !important;
}

#masthead.scroll .vortice-header-right a.enlace-youtube {
    border-color: rgba(0, 0, 0, 0.25) !important;
    color: #333 !important;
    background: transparent !important;
}

#masthead.scroll .vortice-header-right a.enlace-youtube:hover {
    border-color: #000 !important;
    background: rgba(0, 0, 0, 0.06) !important;
}

#masthead.scroll .vortice-header-right a.enlace-youtube i.fa-youtube {
    color: #333 !important;
}

#masthead.scroll .vortice-header-right a.enlace-linkedin {
    border-color: rgba(0, 0, 0, 0.25) !important;
    color: #333 !important;
    background: transparent !important;
}

#masthead.scroll .vortice-header-right a.enlace-linkedin:hover {
    border-color: #000 !important;
    background: rgba(0, 0, 0, 0.06) !important;
}

#masthead.scroll .vortice-header-right a.enlace-linkedin i.fa-linkedin-in {
    color: #333 !important;
}

/* ---- Alignment: all columns vertically centered ---- */
#masthead .kotha-menu > .row,
#masthead .kotha-menu > .grid {
    align-items: center !important;
}

/* ---- Scrolled header: logo + menu + icons all vertically centered ---- */
#masthead.scroll {
    display: flex !important;
    align-items: center !important;
}

#masthead.scroll .kotha-menu {
    display: flex !important;
    align-items: center !important;
    width: 100%;
    height: 100%;
    margin-top: 0 !important;
    padding: 0 !important;
}

#masthead.scroll .kotha-menu > .row,
#masthead.scroll .kotha-menu > .grid {
    align-items: center !important;
    width: 100%;
}

#masthead.scroll .logo,
#masthead.scroll a.logo {
    top: 0 !important;
    left: 0 !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
}

/* ---- YouTube icon ---- */
/* Default (dark/transparent header): white icon */
#masthead .vortice-header-right a.enlace-youtube,
#masthead .vortice-header-right a.enlace-youtube i.fa-youtube {
    color: #fff !important;
}

/* Scrolled (white header): red icon */
#masthead.scroll .vortice-header-right a.enlace-youtube,
#masthead.scroll .vortice-header-right a.enlace-youtube i.fa-youtube {
    color: #FF0000 !important;
}

/* ---- LinkedIn icon ---- */
/* Default (dark/transparent header): white icon */
#masthead .vortice-header-right a.enlace-linkedin,
#masthead .vortice-header-right a.enlace-linkedin i.fa-linkedin-in {
    color: #fff !important;
}

/* Scrolled (white header): LinkedIn blue icon */
#masthead.scroll .vortice-header-right a.enlace-linkedin,
#masthead.scroll .vortice-header-right a.enlace-linkedin i.fa-linkedin-in {
    color: #0077B5 !important;
}

/* ==========================================================================
   GLOBAL TYPOGRAPHY – override Storefront defaults
   ========================================================================== */

/* Base font on body */
body.woocommerce-page,
body {
    font-family: var(--vortice-font) !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: var(--vortice-text);
}

/* All headings */
h1,
h2,
h3,
h4,
h5,
h6,
.site-title,
.page-title,
.entry-title,
.widget-title,
.woocommerce-loop-product__title {
    font-family: var(--vortice-font) !important;
    color: var(--vortice-text);
    font-weight: 700;
}

/* White text on dark/green/accent backgrounds */
[data-overlay-dark] h1,
[data-overlay-dark] h2,
[data-overlay-dark] h3,
[data-overlay-dark] h4,
[data-overlay-dark] h5,
[data-overlay-dark] h6,
[data-overlay-dark] span,
[data-overlay-dark] p,
.cs-accent h1,
.cs-accent h2,
.cs-accent h3,
.cs-accent h4,
.cs-accent h5,
.cs-accent h6,
.cs-accent p,
.cs-accent span,
.cs-black h1,
.cs-black h2,
.cs-black h3,
.cs-black h4,
.cs-black h5,
.cs-black h6,
.cs-gray-dark h1,
.cs-gray-dark h2,
.cs-gray-dark h3,
.cs-gray-dark h4,
.cs-gray-dark h5,
.cs-gray-dark h6,
.white-text,
h1.white-text,
h2.white-text,
h3.white-text,
h4.white-text,
h5.white-text,
h6.white-text,
.white-text h1,
.white-text h2,
.white-text h3,
.white-text h4,
.white-text h5,
.white-text h6,
.white-text p,
.white-text span {
    color: #fff !important;
}

/* Blog post titles & links - dark on white background */
.blog-recientes h2,
.blog-recientes h2 a,
.blog-recientes h3,
.blog-recientes h3 a,
.blog-recientes .entry-header a,
.blog-recientes .post-meta,
.blog-recientes .post-meta li,
.blog-recientes .post-meta .author,
.blog-recientes .post-meta .date,
.blog-recientes .entry-content,
.blog-recientes .entry-content p {
    color: #1a1a1a !important;
}

.blog-recientes .post-content h5 a,
.blog-recientes .latest-post-content h2 a {
    color: #00963E !important;
}

.blog-recientes .post-content h5 a:hover,
.blog-recientes .latest-post-content h2 a:hover,
.blog-recientes h2 a:hover {
    color: #31be67 !important;
}

/* Paragraphs & body text */
p,
li,
td,
th,
label,
span,
div,
.entry-content,
.entry-summary {
    font-family: var(--vortice-font) !important;
}

/* Navigation / menu items */
.navbar .nav a,
.navbar-nav a,
.nav a,
.main-navigation a,
.main-navigation ul li a,
.main-navigation ul.menu > li > a,
.main-navigation ul.nav-menu > li > a,
.site-header-cart a,
.kotha-menu a,
.movil-menu a,
#site-navigation a,
#site-navigation ul li a,
.primary-navigation a,
.primary-navigation ul li a,
.secondary-navigation a,
.handheld-navigation a,
.handheld-navigation ul li a {
    font-family: 'Fira Sans', sans-serif !important;
    text-transform: uppercase !important;
    font-weight: 700 !important;
    font-size: 0.875rem;
    letter-spacing: 0.02em;
}

/* Links – accent green */
a {
    color: var(--vortice-green);
    transition: color 0.2s ease;
}

a:hover {
    color: var(--vortice-dark);
}

/* Buttons */
button,
.button,
input[type="submit"],
.woocommerce a.button,
.woocommerce button.button {
    font-family: var(--vortice-font) !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

/* Hero / banner headlines */
.banner-texto h1,
.banner-texto h2,
.hero-title,
.section-title {
    font-family: var(--vortice-font) !important;
    font-weight: 700;
    text-transform: uppercase;
}

/* Subtitles – light weight */
.banner-texto p,
.hero-subtitle,
.section-subtitle {
    font-family: var(--vortice-font) !important;
    font-weight: 300;
    color: var(--vortice-grey);
}

/* Search bar */
.show-search input,
.search-field,
.ajaxsearchlite input {
    font-family: var(--vortice-font) !important;
}

/* Storefront specific overrides */
.storefront-sorting,
.woocommerce-ordering select,
.woocommerce-breadcrumb,
.site-info,
.site-description {
    font-family: var(--vortice-font) !important;
}

/* Widget titles */
.widget h2,
.widget h3,
.widget-title {
    font-family: var(--vortice-font) !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    font-size: 1rem;
}

/* Form inputs & textareas */
input,
textarea,
select {
    font-family: var(--vortice-font) !important;
}

/* ==========================================================================
   FEATURED PRODUCTS – clean modern redesign
   ========================================================================== */

/* Section: light gray bg, constrained width */
.productos-destacados {
    background: #f9fafb !important;
    padding: 3rem 2rem !important;
    text-align: center !important;
}

/* Constrain the inner content */
.productos-destacados>.row {
    max-width: 1400px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Header row – centered */
.productos-destacados .row.text-left {
    text-align: center !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding: 0 !important;
}

/* Make wow animations visible */
.productos-destacados [style*="visibility: hidden"] {
    visibility: visible !important;
}

/* H1 – green, centered, BIG */
.productos-destacados .row.text-left h1 {
    color: var(--vortice-green) !important;
    text-align: center !important;
    font-size: 3rem !important;
    font-weight: 700 !important;
    margin-bottom: 0.5rem !important;
}

/* H2 subtitle – gray, light */
.productos-destacados .row.text-left h2 {
    color: #6b7280 !important;
    text-align: center !important;
    font-size: 1.4rem !important;
    font-weight: 300 !important;
    margin-bottom: 2rem !important;
}

/* Products grid row */
.productos-destacados .row.align-items-center {
    margin-top: 0 !important;
    display: flex !important;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
}

/* Each product column – flex column centered */
.productos-destacados .col-lg-3 {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    margin-bottom: 1.25rem !important;
    width: 25% !important;
    max-width: 25% !important;
    padding: 0 1rem !important;
    float: none !important;
}

/* Image container – rounded square */
.productos-destacados figure.img-prooducto {
    width: 100% !important;
    aspect-ratio: 1 / 1 !important;
    height: auto !important;
    border-radius: 12px !important;
    background: #fff !important;
    border: 1px solid #e5e7eb !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
    margin: 0 auto 1rem !important;
    padding: 1.5rem !important;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    background-image: none !important;
}

.productos-destacados figure.img-prooducto:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12) !important;
    transform: translateY(-3px);
}

/* Image inside circle */
.productos-destacados figure.img-prooducto img {
    max-width: 80% !important;
    max-height: 80% !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    display: block !important;
}

/* Product name – dark, uppercase, bold, BIGGER */
.productos-destacados .item {
    margin-bottom: 0.5rem !important;
    padding: 0 !important;
}

.productos-destacados .item h3.nombre-producto,
.productos-destacados .item h3.nombre-producto span {
    color: #1f2937 !important;
    font-size: 1.6rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    text-align: center !important;
    letter-spacing: 0.02em;
}

/* Description */
.productos-destacados .contenido {
    text-align: center !important;
    margin: 0 !important;
    padding: 0 0.5rem !important;
    width: 100% !important;
}

.productos-destacados .contenido p {
    color: #6b7280 !important;
    font-size: 1.05rem !important;
    margin-bottom: 0.5rem !important;
    text-align: center !important;
}

/* "Więcej informacji" link – green */
.productos-destacados .contenido h5 {
    margin-top: 0.25rem !important;
    text-align: center !important;
}

.productos-destacados .contenido h5 a {
    color: var(--vortice-green) !important;
    font-size: 1.05rem !important;
    font-weight: 600 !important;
    text-decoration: none !important;
}

.productos-destacados .contenido h5 a:hover {
    text-decoration: underline !important;
    color: var(--vortice-dark) !important;
}

/* Mobile responsive */
@media (max-width: 767px) {
    .productos-destacados .col-lg-3 {
        width: 50% !important;
        max-width: 50% !important;
    }
}

@media (max-width: 480px) {
    .productos-destacados .col-lg-3 {
        width: 100% !important;
        max-width: 100% !important;
    }
}

/* ========================================================================
   CONTACT SECTION (above footer)
   ======================================================================== */
.vf-contact-section {
    padding: 2rem 0;
    background: #fff;
}

.vf-contact-section .container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 1rem;
}

.vf-contact-section h1 {
    text-align: center;
    font-family: var(--vortice-font);
    font-size: 2em;
    font-weight: 600;
    color: #333;
    margin-bottom: 1.5rem;
}

/* ========================================================================
   FOOTER – using #colophon.vf-footer for max specificity
   ======================================================================== */
footer#colophon.vf-footer.site-footer {
    background: #ffffff !important;
    padding: 5rem 0 !important;
    border-top: 2px solid #e5e7eb !important;
    font-family: var(--vortice-font) !important;
    font-size: 1.125rem !important;
    color: var(--vortice-grey) !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

footer#colophon.vf-footer *,
footer#colophon.vf-footer *::before,
footer#colophon.vf-footer *::after {
    box-sizing: border-box;
}

/* Reset storefront defaults inside footer */
footer#colophon.vf-footer a {
    text-decoration: none !important;
    color: inherit;
    transition: color 0.2s ease;
}

footer#colophon.vf-footer a:hover {
    text-decoration: none !important;
}

footer#colophon.vf-footer h1,
footer#colophon.vf-footer h2,
footer#colophon.vf-footer h3,
footer#colophon.vf-footer h4,
footer#colophon.vf-footer h5,
footer#colophon.vf-footer h6 {
    color: #374151 !important;
    font-family: var(--vortice-font);
    font-weight: 700;
    margin: 0;
    clear: none;
}

footer#colophon.vf-footer p {
    margin: 0;
}

/* ---- Inner wrapper ---- */
footer#colophon.vf-footer .vf-footer__inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ---- Top info row (3 columns) ---- */
footer#colophon.vf-footer .vf-footer__info-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
}

@media (min-width: 768px) {
    footer#colophon.vf-footer .vf-footer__info-row {
        grid-template-columns: repeat(3, 1fr);
        text-align: left;
    }
}

/* Each info item */
footer#colophon.vf-footer .vf-footer__info-item {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    footer#colophon.vf-footer .vf-footer__info-item {
        justify-content: flex-start;
    }
}

footer#colophon.vf-footer .vf-footer__info-icon {
    font-size: 4rem;
    color: #d1d5db;
    line-height: 1;
    flex-shrink: 0;
    margin-top: 0.15rem;
}

footer#colophon.vf-footer .vf-footer__info-icon--accent {
    color: var(--vortice-green) !important;
}

footer#colophon.vf-footer .vf-footer__info-label {
    font-size: 1.5rem;
    color: #4b5563;
    margin: 0 0 0.5rem;
}

footer#colophon.vf-footer .vf-footer__info-label strong,
footer#colophon.vf-footer .vf-footer__info-title {
    font-size: 2rem;
    font-weight: 700;
    color: #4b5563;
}

footer#colophon.vf-footer .vf-footer__info-link {
    color: var(--vortice-green) !important;
    font-weight: 700;
    font-size: 2rem;
}

footer#colophon.vf-footer .vf-footer__info-link:hover {
    color: var(--vortice-dark) !important;
}

footer#colophon.vf-footer .vf-footer__info-value {
    font-size: 2rem;
    color: #4b5563;
    margin: 0;
}

footer#colophon.vf-footer .vf-footer__info-address {
    font-size: 1.5rem;
    color: #4b5563;
    margin: 0;
    line-height: 1.5;
}

/* ---- CTA Links row (4 columns) ---- */
footer#colophon.vf-footer .vf-footer__cta-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 4rem;
    text-align: center;
}

@media (min-width: 768px) {
    footer#colophon.vf-footer .vf-footer__cta-row {
        grid-template-columns: repeat(4, 1fr);
    }
}

footer#colophon.vf-footer .vf-footer__cta-link {
    font-size: 2rem;
    font-weight: 700;
    color: #374151 !important;
    padding: 1rem;
    display: block;
}

footer#colophon.vf-footer .vf-footer__cta-link:hover {
    color: var(--vortice-green) !important;
}

footer#colophon.vf-footer .vf-footer__cta-link .fa-arrow-right {
    margin-left: 0.5rem;
    color: var(--vortice-green);
    font-size: 1.5rem;
}

/* Borders between CTA links on desktop */
@media (min-width: 768px) {
    footer#colophon.vf-footer .vf-footer__cta-link--bordered {
        border-left: 1px solid var(--vortice-green);
        border-right: 1px solid var(--vortice-green);
    }

    footer#colophon.vf-footer .vf-footer__cta-link--border-right {
        border-right: 1px solid var(--vortice-green);
    }
}

/* ---- Social row ---- */
footer#colophon.vf-footer .vf-footer__social-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 4rem;
    padding-top: 2.5rem;
    border-top: 1px solid #e5e7eb;
}

footer#colophon.vf-footer .vf-footer__social-title {
    font-size: 1.5rem;
    font-weight: 400;
    color: #4b5563;
    margin: 0 auto 1rem auto;
    text-align: center;
    white-space: nowrap;
    line-height: 1.3;
}

footer#colophon.vf-footer .vf-footer__social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

footer#colophon.vf-footer .vf-footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border: 2px solid var(--vortice-green);
    border-radius: 4px;
    color: var(--vortice-green) !important;
    text-decoration: none !important;
    transition: all 0.2s ease;
    background: transparent;
    position: relative;
}

footer#colophon.vf-footer .vf-footer__social-link:hover {
    background: var(--vortice-green);
    color: #fff !important;
    transform: translateY(-2px);
}

footer#colophon.vf-footer .vf-footer__social-link i {
    font-size: 24px;
    line-height: 1;
    font-family: 'Font Awesome 6 Brands' !important;
    font-weight: 400 !important;
    font-style: normal !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
}

/* ---- Brands image ---- */
footer#colophon.vf-footer .vf-footer__brands {
    margin-top: 1.5rem;
    max-width: 100%;
}

footer#colophon.vf-footer .vf-footer__brands img {
    max-width: 600px;
    width: 100%;
    height: auto;
}

/* ---- Worldwide section ---- */
footer#colophon.vf-footer .vf-footer__worldwide {
    margin-top: 4rem;
    border-top: none;
    background: #BCC4C8 !important;
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: -5rem;
    padding: 3rem 0;
}

footer#colophon.vf-footer .vf-footer__worldwide-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

footer#colophon.vf-footer .vf-footer__worldwide-title {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 1.5rem !important;
    color: #374151 !important;
    font-family: var(--vortice-font);
}

footer#colophon.vf-footer .vf-footer__worldwide-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    font-size: 1.5rem;
    color: #6b7280;
    align-items: center;
}

footer#colophon.vf-footer .vf-footer__worldwide-links a {
    color: #6b7280 !important;
}

footer#colophon.vf-footer .vf-footer__worldwide-links a:hover {
    color: var(--vortice-green) !important;
}

footer#colophon.vf-footer .vf-footer__worldwide-links a.active {
    color: var(--vortice-green) !important;
    font-weight: 700;
}

footer#colophon.vf-footer .vf-footer__worldwide-links .separator {
    color: #d1d5db;
    user-select: none;
}

/* ---- Copyright ---- */
footer#colophon.vf-footer .vf-footer__copyright {
    margin-top: 2rem;
    font-size: 1.25rem;
    color: #9ca3af;
}

/* ---- Small screen stacking tweaks ---- */
@media (max-width: 767px) {
    footer#colophon.vf-footer .vf-footer__info-item {
        flex-direction: column;
        align-items: center;
    }

    footer#colophon.vf-footer .vf-footer__worldwide-links {
        justify-content: center;
    }

    footer#colophon.vf-footer .vf-footer__copyright {
        text-align: center;
    }
}

/* ==========================================================================
   BLOG SECTION – modern redesign
   ========================================================================== */
.vf-blog-section {
    padding: 5rem 0;
    background-color: var(--vortice-green);
    /* min-height: 100vh; Removed to fit smoothly */
}

.vf-blog-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.vf-blog-header h2 {
    font-size: 2.5rem !important;
    /* md:text-5xl approx */
    font-weight: 700 !important;
    color: #fff !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    line-height: 1.25;
    margin: 0 !important;
    font-family: var(--vortice-font) !important;
}

@media (min-width: 768px) {
    .vf-blog-header h2 {
        font-size: 3rem !important;
    }
}

.vf-blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .vf-blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (min-width: 992px) {
    .vf-blog-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Article Card */
.vf-blog-card {
    background: #fff;
    border-radius: 1rem;
    /* rounded-2xl */
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    /* shadow-lg */
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none !important;
}

.vf-blog-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    /* shadow-2xl */
    transform: translateY(-0.25rem);
    /* -translate-y-1 */
}

/* Image container */
.vf-blog-card__image-container {
    position: relative;
    overflow: hidden;
    height: 14rem;
    /* h-56 */
    width: 100%;
}

.vf-blog-card__badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 10;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    color: var(--vortice-green);
    font-size: 0.75rem;
    /* text-xs */
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    /* rounded-full */
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    text-transform: uppercase;
}

.vf-blog-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 700ms ease;
    display: block;
}

.vf-blog-card:hover .vf-blog-card__img {
    transform: scale(1.1);
}

/* Content */
.vf-blog-card__content {
    padding: 1.5rem;
    /* p-6 */
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: left;
}

.vf-blog-card__meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    font-size: 0.75rem;
    /* text-xs */
    color: #9ca3af;
    /* text-gray-400 */
    margin-bottom: 0.75rem;
}

.vf-blog-card__meta i {
    margin-right: 0.5rem;
}

.vf-blog-card__meta-divider {
    color: #d1d5db;
    /* text-gray-300 */
    margin: 0 0.5rem;
}

.vf-blog-card__title {
    font-size: 1.25rem !important;
    /* text-xl */
    font-weight: 700 !important;
    color: #111827 !important;
    /* text-gray-900 */
    margin-bottom: 0.75rem !important;
    line-height: 1.25;
    transition: color 0.3s ease;
    text-align: left !important;
    margin-top: 0 !important;
}

.vf-blog-card:hover .vf-blog-card__title {
    color: var(--vortice-green) !important;
}

.vf-blog-card__excerpt {
    color: #4b5563;
    /* text-gray-600 */
    font-size: 0.875rem;
    /* text-sm */
    margin-bottom: 1rem;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: left;
}

.vf-blog-card__link {
    display: inline-flex;
    align-items: center;
    color: var(--vortice-green) !important;
    font-weight: 600;
    font-size: 0.875rem;
    /* text-sm */
    margin-top: auto;
    text-decoration: none !important;
}

.vf-blog-card__link i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.vf-blog-card:hover .vf-blog-card__link i {
    transform: translateX(0.25rem);
}