/*
Theme Name: Algio Custom
Theme URI: https://algiogenerator.com
Author: Algio Generator
Description: Custom-built theme for Algio Generator - power systems catalog
Version: 1.0
Text Domain: algio-custom
*/

:root {
    --color-black: #0d0d0d;
    --color-dark: #1a1a1a;
    --color-yellow: #f5a623;
    --color-yellow-hover: #e0951a;
    --color-white: #ffffff;
    --color-gray: #888888;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    color: var(--color-black);
}

a {
    text-decoration: none;
    color: inherit;
}

/* HEADER */
.site-header {
    background: var(--color-black);
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.header-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
}

.site-logo img {
    height: 55px;
    width: auto;
}

.main-nav .primary-menu {
    list-style: none;
    display: flex;
    gap: 28px;
    margin: 0;
    padding: 0;
}

.main-nav .primary-menu > li > a {
    color: var(--color-white);
    font-weight: 600;
    font-size: 15px;
    transition: color 0.2s ease;
    padding: 8px 0;
    display: block;
}

.main-nav .primary-menu > li > a:hover {
    color: var(--color-yellow);
}

/* Dropdown submenu */
.main-nav .primary-menu li {
    position: relative;
}

.main-nav .primary-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--color-dark);
    min-width: 200px;
    display: none;
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
    border-top: 2px solid var(--color-yellow);
}

.main-nav .primary-menu li:hover > ul {
    display: block;
}

.main-nav .primary-menu ul li a {
    padding: 12px 18px;
    color: var(--color-white);
}

.main-nav .primary-menu ul li a:hover {
    background: var(--color-yellow);
    color: var(--color-black);
}

/* Header contact */
.header-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-white);
}

.header-contact a {
    color: var(--color-yellow);
    font-weight: 700;
}

.contact-label {
    font-size: 12px;
    color: var(--color-gray);
}

.phone-icon {
    font-size: 24px;
}

/* Mobile menu toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 26px;
    height: 3px;
    background: var(--color-white);
    border-radius: 2px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .header-contact {
        display: none;
    }

    .main-nav {
        display: none;
        width: 100%;
        order: 3;
    }

    .main-nav.active {
        display: block;
    }

    .main-nav .primary-menu {
        flex-direction: column;
        gap: 0;
    }

    .main-nav .primary-menu > li > a {
        padding: 14px 10px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .main-nav .primary-menu ul {
        position: static;
        box-shadow: none;
        display: none;
        background: rgba(255,255,255,0.05);
    }

    .main-nav .primary-menu li.menu-item-has-children:hover > ul {
        display: block;
    }

    .header-container {
        flex-wrap: wrap;
    }
}

/* HERO SECTION */
.hero {
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 60%, #2b2200 100%);
    color: #fff;
    padding: 60px 20px 0;
}

.hero-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.hero-text {
    flex: 1;
    min-width: 300px;
}

.hero-text h1 {
    font-size: 44px;
    line-height: 1.2;
    margin: 0 0 20px;
}

.hero-text .highlight {
    color: var(--color-yellow);
}

.hero-text p {
    font-size: 17px;
    color: #ccc;
    max-width: 480px;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.2s ease;
}

.btn-primary {
    background: var(--color-yellow);
    color: var(--color-black);
}

.btn-primary:hover {
    background: var(--color-yellow-hover);
}

.btn-outline {
    border: 2px solid #fff;
    color: #fff;
}

.btn-outline:hover {
    background: #fff;
    color: var(--color-black);
}

.hero-visual {
    flex: 0 0 260px;
    display: flex;
    justify-content: center;
}

.hero-icon {
    font-size: 160px;
    opacity: 0.9;
    filter: drop-shadow(0 0 40px rgba(245,166,35,0.4));
}

/* HERO FEATURES BAR */
.hero-features {
    max-width: 1300px;
    margin: 50px auto 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 25px 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
}

.feature-icon {
    color: var(--color-yellow);
    font-size: 22px;
}

/* CATEGORIES SECTION */
.categories-section {
    max-width: 1300px;
    margin: 0 auto;
    padding: 70px 20px;
    text-align: center;
}

.categories-section h2 {
    font-size: 32px;
    margin-bottom: 40px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.category-card {
    background: #f9f9f9;
    border-radius: 10px;
    padding: 35px 20px;
    transition: all 0.25s ease;
    border: 2px solid transparent;
}

.category-card:hover {
    border-color: var(--color-yellow);
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.category-icon {
    font-size: 44px;
    margin-bottom: 15px;
}

.category-card h3 {
    margin: 0 0 10px;
    font-size: 19px;
}

.category-card p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

@media (max-width: 900px) {
    .hero-text h1 {
        font-size: 32px;
    }
    .hero-visual {
        order: -1;
        flex: 0 0 auto;
    }
    .hero-icon {
        font-size: 100px;
    }
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero-features {
        justify-content: center;
    }
}

/* FOOTER */
.site-footer {
    background: #0d0d0d;
    color: #ccc;
    padding: 60px 20px 0;
}

.footer-main {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-logo {
    height: 45px;
    margin-bottom: 15px;
}

.footer-about p {
    font-size: 14px;
    line-height: 1.6;
    color: #999;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: sans-serif;
    font-size: 14px;
    transition: background 0.2s ease;
}

.footer-social a:hover {
    background: var(--color-yellow);
    color: #000;
}

.footer-column h4 {
    color: #fff;
    font-size: 16px;
    margin: 0 0 18px;
}

.footer-column ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #aaa;
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-column ul li a:hover {
    color: var(--color-yellow);
}

.footer-contact-list li {
    font-size: 14px;
    color: #aaa;
}

.footer-contact-list a {
    color: #aaa;
}

.footer-contact-list a:hover {
    color: var(--color-yellow);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    padding: 20px 0;
    font-size: 13px;
    color: #777;
}

@media (max-width: 900px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-main {
        grid-template-columns: 1fr;
    }
}

.footer-social a svg {
    display: block;
}

/* SHOP / ARCHIVE PAGE */
.shop-page {
    max-width: 1300px;
    margin: 0 auto;
    padding: 50px 20px 80px;
}

.shop-header {
    text-align: center;
    margin-bottom: 40px;
}

.shop-header h1 {
    font-size: 34px;
    margin-bottom: 10px;
}

.shop-description {
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.product-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.25s ease;
    display: block;
    color: var(--color-black);
}

.product-card:hover {
    border-color: var(--color-yellow);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transform: translateY(-4px);
}

.product-image {
    aspect-ratio: 1 / 1;
    background: #f7f7f7;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.no-image {
    font-size: 50px;
    color: #ccc;
}

.product-info {
    padding: 16px;
}

.product-info h3 {
    font-size: 16px;
    margin: 0 0 10px;
}

.product-price {
    font-weight: 700;
    color: var(--color-black);
    font-size: 17px;
}

.product-price-contact {
    color: var(--color-yellow);
    font-size: 14px;
}

.shop-pagination {
    text-align: center;
    margin-top: 50px;
}

.shop-pagination .page-numbers {
    display: inline-block;
    padding: 8px 14px;
    margin: 0 4px;
    border: 1px solid #ddd;
    border-radius: 6px;
    color: var(--color-black);
}

.shop-pagination .page-numbers.current {
    background: var(--color-yellow);
    border-color: var(--color-yellow);
}

.no-products {
    text-align: center;
    color: #888;
    padding: 60px 0;
}

@media (max-width: 900px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}

/* SINGLE PRODUCT PAGE */
.single-product-page {
    max-width: 1300px;
    margin: 0 auto;
    padding: 40px 20px 80px;
}

.breadcrumb {
    font-size: 13px;
    color: #888;
    margin-bottom: 30px;
}

.breadcrumb a {
    color: #888;
}

.breadcrumb a:hover {
    color: var(--color-yellow);
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.product-detail-image {
    background: #f7f7f7;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.no-image-large {
    font-size: 100px;
    color: #ddd;
}

.product-detail-info h1 {
    font-size: 30px;
    margin: 0 0 10px;
}

.product-detail-category {
    color: #888;
    font-size: 14px;
    margin-bottom: 20px;
}

.product-detail-category a {
    color: var(--color-yellow);
}

.product-detail-price {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 25px;
}

.product-detail-description {
    color: #444;
    line-height: 1.7;
    margin-bottom: 30px;
}

.product-specs {
    margin-bottom: 30px;
}

.product-specs h3 {
    font-size: 18px;
    margin-bottom: 15px;
}

.product-specs table {
    width: 100%;
    border-collapse: collapse;
}

.product-specs td {
    padding: 10px 14px;
    border-bottom: 1px solid #eee;
    font-size: 14px;
}

.product-specs td:first-child {
    font-weight: 600;
    color: #555;
    width: 40%;
}

.btn-large {
    font-size: 16px;
    padding: 16px 32px;
}

@media (max-width: 900px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
    }
}

/* GENERIC STATIC PAGE */
.static-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px 90px;
}

.page-title {
    font-size: 34px;
    margin-bottom: 30px;
}

.page-content {
    line-height: 1.8;
    color: #333;
}

/* ABOUT US PAGE */
.about-hero {
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 70%);
    color: #fff;
    text-align: center;
    padding: 80px 20px;
}

.about-hero h1 {
    font-size: 38px;
    margin-bottom: 15px;
}

.about-hero p {
    color: #ccc;
    font-size: 17px;
}

.about-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 70px 20px;
}

.about-text h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.about-text p {
    color: #444;
    line-height: 1.8;
    margin-bottom: 18px;
    font-size: 16px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 50px 0;
    padding: 40px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 40px;
    font-weight: 800;
    color: var(--color-yellow);
}

.stat-label {
    color: #666;
    font-size: 14px;
    margin-top: 8px;
}

.about-values h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 40px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.value-card {
    text-align: center;
    padding: 30px 20px;
    background: #f9f9f9;
    border-radius: 10px;
}

.value-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.value-card h3 {
    margin: 0 0 10px;
    font-size: 18px;
}

.value-card p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

@media (max-width: 900px) {
    .about-stats,
    .values-grid {
        grid-template-columns: 1fr;
    }
}

/* CONTACT PAGE */
.contact-hero {
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 70%);
    color: #fff;
    text-align: center;
    padding: 70px 20px;
}

.contact-hero h1 {
    font-size: 36px;
    margin-bottom: 12px;
}

.contact-hero p {
    color: #ccc;
}

.contact-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 70px 20px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
}

.contact-info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 35px;
}

.contact-info-icon {
    font-size: 26px;
    color: var(--color-yellow);
    flex-shrink: 0;
}

.contact-info-item h4 {
    margin: 0 0 6px;
    font-size: 16px;
}

.contact-info-item a,
.contact-info-item p {
    color: #555;
    margin: 0;
}

.form-row {
    margin-bottom: 20px;
}

.form-row label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 14px;
}

.form-row input,
.form-row textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: inherit;
    font-size: 14px;
}

.form-row input:focus,
.form-row textarea:focus {
    outline: none;
    border-color: var(--color-yellow);
}

.contact-form button {
    border: none;
    cursor: pointer;
}

.form-message {
    padding: 14px 18px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 14px;
}

.form-success {
    background: #e8f7e8;
    color: #2a7a2a;
    border: 1px solid #b8e6b8;
}

.form-error {
    background: #fdeaea;
    color: #b02a2a;
    border: 1px solid #f5c2c2;
}

@media (max-width: 900px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
}

/* SERVICES PAGE */
.services-hero {
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 70%);
    color: #fff;
    text-align: center;
    padding: 80px 20px;
}

.services-hero h1 {
    font-size: 38px;
    margin-bottom: 15px;
}

.services-hero p {
    color: #ccc;
    max-width: 600px;
    margin: 0 auto;
}

.services-list-container {
    max-width: 950px;
    margin: 0 auto;
    padding: 70px 20px 40px;
}

.service-block {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    padding: 35px 0;
    border-bottom: 1px solid #eee;
}

.service-block:last-child {
    border-bottom: none;
}

.service-block-icon {
    font-size: 42px;
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: #f9f9f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-block-text h2 {
    font-size: 22px;
    margin: 0 0 12px;
}

.service-block-text p {
    color: #555;
    line-height: 1.7;
    margin: 0;
}

.services-cta {
    text-align: center;
    background: #f9f9f9;
    padding: 60px 20px;
}

.services-cta h3 {
    font-size: 24px;
    margin-bottom: 25px;
}

@media (max-width: 700px) {
    .service-block {
        flex-direction: column;
        text-align: center;
    }
    .service-block-icon {
        margin: 0 auto;
    }
}

/* PROJECTS PAGE */
.projects-header {
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 70%);
    color: #fff;
    text-align: center;
    padding: 80px 20px;
}

.projects-header h1 {
    font-size: 38px;
    margin-bottom: 15px;
}

.projects-header p {
    color: #ccc;
}

.projects-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 60px 20px 90px;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.project-card {
    display: block;
    color: var(--color-black);
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #eee;
    transition: all 0.25s ease;
}

.project-card:hover {
    border-color: var(--color-yellow);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.project-card-image {
    aspect-ratio: 4 / 3;
    background: #f7f7f7;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.project-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-card-info {
    padding: 18px;
}

.project-card-info h3 {
    font-size: 17px;
    margin: 0 0 10px;
}

.project-card-meta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    font-size: 13px;
    color: #777;
}

.no-projects {
    text-align: center;
    color: #888;
    padding: 60px 0;
}

/* SINGLE PROJECT PAGE */
.single-project-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 50px 20px 90px;
}

.single-project-image {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
    aspect-ratio: 16 / 9;
}

.single-project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.single-project-page h1 {
    font-size: 32px;
    margin-bottom: 15px;
}

.single-project-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    color: #666;
    font-size: 14px;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid #eee;
}

.single-project-content {
    line-height: 1.8;
    color: #333;
}

@media (max-width: 900px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 550px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }
}

/* BLOG PAGE */
.blog-header {
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 70%);
    color: #fff;
    text-align: center;
    padding: 80px 20px;
}

.blog-header h1 {
    font-size: 38px;
    margin-bottom: 15px;
}

.blog-header p {
    color: #ccc;
}

.blog-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 60px 20px 90px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.blog-card {
    display: block;
    color: var(--color-black);
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #eee;
    transition: all 0.25s ease;
}

.blog-card:hover {
    border-color: var(--color-yellow);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.blog-card-image {
    aspect-ratio: 16 / 10;
    background: #f7f7f7;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-card-info {
    padding: 20px;
}

.blog-card-date {
    font-size: 12px;
    color: var(--color-yellow);
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.blog-card-info h3 {
    font-size: 18px;
    margin: 0 0 10px;
}

.blog-card-info p {
    color: #666;
    font-size: 14px;
    margin: 0;
    line-height: 1.6;
}

/* SINGLE BLOG POST */
.single-post-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 50px 20px 90px;
}

.single-post-date {
    color: var(--color-yellow);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.single-post-page h1 {
    font-size: 32px;
    margin-bottom: 25px;
}

.single-post-image {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
}

.single-post-image img {
    width: 100%;
    height: auto;
}

.single-post-content {
    line-height: 1.8;
    color: #333;
    font-size: 16px;
}

.single-post-content p {
    margin-bottom: 20px;
}

@media (max-width: 900px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 550px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

/* Footer language switcher (replaces floating widget) */
.footer-lang-switcher {
    margin-top: 12px;
}

.footer-lang-switcher select,
.footer-lang-switcher .trp-language-switcher-container {
    background: #1a1a1a;
    color: #fff;
    border: 1px solid #333;
    border-radius: 6px;
    padding: 6px 10px;
    font-size: 13px;
}

/* Force-hide TranslatePress floating language switcher everywhere */
.trp-language-switcher-container,
.trp-floater-ls,
#trp-floater-ls,
#trp-floating-language-selector,
[id*="trp-floater"],
[class*="trp-floater"],
[class*="floating-language-selector"] {
    display: none !important;
}

/* Force-hide TranslatePress floating switcher (exact class found via inspect) */
nav.trp-language-switcher.trp-floating-switcher,
.trp-language-switcher.trp-floating-switcher {
    display: none !important;
}

/* Fix oversized footer logo on mobile (explicit constraints) */
.footer-logo,
.footer-about .footer-logo {
    height: 45px !important;
    width: auto !important;
    max-width: 160px !important;
    max-height: 45px !important;
    display: block;
    object-fit: contain;
}
