/*=========================================
  RESPONSIVE CSS - CAMECANICA E-COMMERCE
  Mobile & Tablet adaptations only.
  Desktop styles remain UNTOUCHED.
  
  Breakpoints:
  - 1180px: Large tablets (iPad Pro landscape)
  - 1024px: Tablets landscape
  - 768px: Tablets portrait
  - 480px: Large phones
  - 375px: Standard phones
  - 320px: Small phones
  
  iOS Safe Areas included.
=========================================*/

/* =========================================
   iOS VIEWPORT & SAFE AREAS
   ========================================= */
@supports (padding: env(safe-area-inset-top)) {
    body {
        padding-left: env(safe-area-inset-left);
        padding-right: env(safe-area-inset-right);
    }
}

/* =========================================
   GLOBAL OVERFLOW PREVENTION
   ========================================= */
@media (max-width: 1180px) {
    html, body {
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
    }

    img, video, iframe, embed, object {
        max-width: 100%;
        height: auto;
    }

    table {
        max-width: 100%;
        overflow-x: auto;
        display: block;
    }
}

/* =========================================
   HAMBURGER MENU BUTTON (hidden on desktop)
   ========================================= */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    position: relative;
}

.mobile-menu-toggle span {
    display: block;
    width: 26px;
    height: 3px;
    background: #fff;
    margin: 5px 0;
    border-radius: 3px;
    transition: transform 0.3s, opacity 0.3s;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* =========================================
   FOOTER BASE (moved from inline for responsive control)
   Desktop remains as-is
   ========================================= */
.footer .footer-container {
    width: 100%;
    max-width: none;
    padding: 20px 280px;
    display: flex;
    justify-content: space-between;
}

/* =========================================
   FOOTER RESPONSIVE
   ========================================= */
@media (max-width: 1180px) {
    .footer .footer-container {
        padding: 40px 60px;
        gap: 40px;
    }
}

@media (max-width: 1024px) {
    .footer .footer-container {
        flex-direction: column;
        padding: 40px 30px;
        align-items: center;
        text-align: center;
        gap: 35px;
    }

    .footer .footer-column {
        width: 100%;
        max-width: 500px;
    }

    .footer .footer-column .logo {
        justify-content: center;
    }

    .footer .footer-column .social {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer .footer-container {
        padding: 35px 20px;
        gap: 30px;
    }

    .footer .footer-column h2 {
        font-size: 1.2rem;
    }

    .footer .footer-column h3 {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }

    .footer .footer-column p {
        font-size: 0.9rem;
        line-height: 1.7;
        margin-bottom: 8px;
    }

    .footer .footer-column .social {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        margin-top: 15px;
    }

    .footer .footer-column .social a {
        width: 100%;
        max-width: 220px;
        text-align: center;
        padding: 10px 16px;
        font-size: 14px;
    }

    .footer .footer-bottom {
        font-size: 12px;
        padding: 18px 15px;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .footer .footer-container {
        padding: 30px 16px;
        gap: 25px;
    }

    .footer .footer-column h2 {
        font-size: 1.1rem;
    }

    .footer .footer-column p {
        font-size: 0.85rem;
        word-break: break-word;
    }

    .footer .footer-column .logo img {
        width: 90px !important;
    }

    .footer .footer-bottom {
        font-size: 11px;
        padding: 15px 12px;
    }
}

/* Hide floating cards with negative positions on small screens */
@media (max-width: 768px) {
    .card-1, .card-2, .card-3 {
        display: none !important;
    }
}

/* =========================================
   LARGE TABLETS - 1180px
   iPad Pro, large Android tablets
   ========================================= */
@media (max-width: 1180px) {
    .container {
        width: 94%;
        max-width: 100%;
    }

    /* Header */
    .menu {
        gap: 20px;
    }

    .menu a {
        font-size: 14px;
    }

    .btn-cotizar {
        padding: 10px 18px;
        font-size: 14px;
    }

    .btn-login {
        padding: 10px 18px;
        font-size: 13px;
    }

    .header-actions {
        gap: 12px;
    }

    /* Welcome page grids */
    .services-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }

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

}

/* =========================================
   TABLETS - 1024px
   iPad landscape, tablet landscape
   ========================================= */
@media (max-width: 1024px) {
    /* Header: Show hamburger, hide desktop menu */
    .mobile-menu-toggle {
        display: block;
    }

    .menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        height: 100dvh;
        background: #ff6b00;
        flex-direction: column;
        padding: 100px 30px 40px;
        gap: 0;
        z-index: 1000;
        transition: right 0.3s ease;
        overflow-y: auto;
        box-shadow: -5px 0 20px rgba(0,0,0,0.2);
    }

    .menu.active {
        right: 0;
    }

    .menu a {
        padding: 15px 0;
        font-size: 16px;
        border-bottom: 1px solid rgba(255,255,255,0.15);
        display: block;
    }

    .menu a:last-child {
        border-bottom: none;
    }

    /* Mobile menu overlay */
    .mobile-menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 999;
    }

    .mobile-menu-overlay.active {
        display: block;
    }

    /* Header actions reorganization */
    .header-actions .btn-cotizar,
    .header-actions .btn-login,
    .header-actions .btn-admin-panel {
        display: none;
    }

    /* Show these in mobile menu instead */
    .menu .mobile-auth-links {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-top: 20px;
        padding-top: 20px;
        margin-bottom: 30px;
        border-top: 1px solid rgba(255,255,255,0.2);
    }

    .menu .mobile-auth-links a {
        padding: 10px 14px;
        border-radius: 8px;
        text-align: center;
        border-bottom: none;
        font-size: 13px;
    }

    .menu .mobile-auth-links .btn-register-mobile {
        background: #111;
        color: #fff;
    }

    .menu .mobile-auth-links .btn-login-mobile {
        background: rgba(255,255,255,0.15);
        border: 1.5px solid #fff;
        color: #fff;
    }

    /* Logo sizing */
    .logo img {
        width: 70px !important;
        height: auto !important;
    }

    /* Hero */
    .hero-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }

    .hero h1 {
        font-size: 42px !important;
    }

    .hero-image img {
        max-height: 400px !important;
    }

    /* About section */
    .about-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
        text-align: center;
    }

    .about-logo {
        max-width: 250px;
        margin: 0 auto;
    }

    .about-counters {
        max-width: 400px;
        margin: 0 auto;
    }

    /* Technology */
    .technology-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }

    /* Commitment */
    .commitment-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }

    /* Tracking page */
    .tracking-grid {
        grid-template-columns: 1fr !important;
    }
}

/* =========================================
   TABLETS PORTRAIT - 768px
   iPad portrait, small tablets
   ========================================= */
@media (max-width: 768px) {
    /* General spacing */
    .container {
        width: 92%;
    }

    /* Header */
    .header {
        height: 70px !important;
    }

    .logo img {
        width: 55px !important;
    }

    /* Hero */
    .hero {
        padding: 50px 0 !important;
    }

    .hero h1 {
        font-size: 36px !important;
        line-height: 1.15 !important;
    }

    .hero p {
        font-size: 16px !important;
    }

    .hero-buttons {
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
        margin-bottom: 30px !important;
    }

    .hero-buttons .btn-secondary {
        margin-left: 0 !important;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        text-align: center;
        padding: 14px 28px !important;
        width: 100%;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 20px !important;
    }

    .stat {
        flex: 1 1 calc(50% - 10px);
        min-width: 140px;
    }

    .stat i {
        width: 50px !important;
        height: 50px !important;
        font-size: 20px !important;
    }

    .stat h3 {
        font-size: 20px !important;
    }

    .hero-image img {
        max-height: 300px !important;
    }

    .floating-card {
        padding: 10px 12px !important;
    }

    .floating-card img {
        width: 32px !important;
        height: 32px !important;
    }

    .floating-card span {
        font-size: 11px !important;
    }

    /* Sections padding */
    .about,
    .mission,
    .services,
    .technology,
    .commitment {
        padding: 60px 0 !important;
    }

    .section-title {
        margin-bottom: 40px !important;
    }

    .section-title h2 {
        font-size: 32px !important;
    }

    /* Mission */
    .mission-grid {
        grid-template-columns: 1fr !important;
    }

    .mission-card {
        padding: 30px !important;
    }

    .mission-card h3 {
        font-size: 22px !important;
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr 1fr !important;
    }

    .service-card {
        padding: 25px !important;
    }

    .service-card h3 {
        font-size: 20px !important;
    }

    .service-card i {
        font-size: 34px !important;
    }

    /* Commitment */
    .commitment-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .commitment-grid > div {
        padding: 20px 15px !important;
    }

    .commitment-grid > div h4 {
        font-size: 18px !important;
    }

    .commitment-grid > div i {
        font-size: 28px !important;
    }

    /* CTA */
    .cta {
        padding: 60px 0 !important;
    }

    .cta h2 {
        font-size: 32px !important;
    }

    .cta p {
        font-size: 16px !important;
    }

    /* Products page */
    .products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }

    .product-image {
        height: 160px !important;
    }

    .product-info h3 {
        font-size: 1.1rem !important;
    }

    .alphabet-filter {
        gap: 4px !important;
    }

    .letter-btn {
        padding: 6px 8px !important;
        font-size: 12px !important;
    }

    .filter-container {
        overflow-x: auto;
        flex-wrap: nowrap !important;
        justify-content: flex-start !important;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
    }

    .filter-btn {
        white-space: nowrap;
        flex-shrink: 0;
    }

    /* Cart modal */
    

    

    /* Quote modal */
    .quote-modal {
        padding-top: 15px !important;
    }

    .quote-content {
        width: 95% !important;
        max-height: 92vh !important;
    }

    /* Product detail modal */
    .modal-content {
        width: 96% !important;
        max-width: none !important;
        max-height: 92vh !important;
        padding: 15px !important;
    }

    .modal-actions {
        flex-direction: column !important;
    }

    .modal-actions .btn {
        width: 100% !important;
    }

    /* Order tracking */
    .tracking-page h1 {
        font-size: 1.4rem !important;
    }

    .info-card {
        padding: 18px !important;
    }

    .progress-card {
        padding: 20px !important;
    }

    /* Mis compras */
    .mis-compras-hero h1 {
        font-size: 1.6rem !important;
    }

    .order-card {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 14px !important;
        padding: 18px 20px !important;
    }

    .btn-tracking {
        width: 100%;
        justify-content: center;
    }

    .search-box {
        padding: 20px !important;
    }

    .search-box form {
        flex-direction: column !important;
    }

    /* Footer */
    .footer {
        margin-top: 40px !important;
    }
}

/* =========================================
   LARGE PHONES - 480px
   ========================================= */
@media (max-width: 480px) {
    .container {
        width: 94%;
    }

    /* Header */
    .header {
        height: 60px !important;
    }

    .header-container {
        padding: 0 5px;
    }

    .logo img {
        width: 45px !important;
    }

    .icon-btn svg {
        width: 22px !important;
        height: 22px !important;
    }

    .badge {
        width: 16px !important;
        height: 16px !important;
        font-size: 10px !important;
        top: -4px !important;
        right: -4px !important;
    }

    /* Hero */
    .hero {
        padding: 30px 0 !important;
    }

    .hero h1 {
        font-size: 28px !important;
    }

    .hero p {
        font-size: 14px !important;
        margin-bottom: 20px !important;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        padding: 12px 20px !important;
        font-size: 14px !important;
    }

    .hero-stats {
        flex-direction: column !important;
        gap: 15px !important;
    }

    .stat {
        flex: 1 1 100%;
    }

    .hero-image img {
        max-height: 220px !important;
        border-radius: 20px !important;
    }

    .floating-cards-row {
        margin-top: 12px !important;
    }

    /* Sections */
    .about,
    .mission,
    .services,
    .technology,
    .commitment {
        padding: 40px 0 !important;
    }

    .section-title h2 {
        font-size: 26px !important;
    }

    .section-title p {
        font-size: 14px !important;
    }

    .about-content h2,
    .technology-content h2 {
        font-size: 28px !important;
    }

    .about-content p,
    .technology-content p {
        font-size: 15px !important;
    }

    .about-counters {
        grid-template-columns: 1fr 1fr !important;
        gap: 12px !important;
    }

    .counter-card {
        padding: 20px 12px !important;
    }

    .counter-card h3 {
        font-size: 28px !important;
    }

    /* Mission cards */
    .mission-card {
        padding: 25px 20px !important;
    }

    .mission-card i {
        width: 55px !important;
        height: 55px !important;
        font-size: 24px !important;
    }

    .mission-card h3 {
        font-size: 20px !important;
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr !important;
    }

    .service-card {
        padding: 20px !important;
    }

    .service-card i {
        font-size: 30px !important;
        margin-bottom: 15px !important;
    }

    .service-card h3 {
        font-size: 18px !important;
        margin-bottom: 12px !important;
    }

    /* Commitment */
    .commitment-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 12px !important;
    }

    .commitment-grid > div {
        padding: 18px 12px !important;
    }

    .commitment-grid > div h4 {
        font-size: 15px !important;
    }

    .commitment-grid > div p {
        font-size: 13px !important;
    }

    .commitment-grid > div i {
        font-size: 24px !important;
        margin-bottom: 12px !important;
    }

    /* CTA */
    .cta h2 {
        font-size: 26px !important;
    }

    .cta p {
        font-size: 14px !important;
        margin-bottom: 25px !important;
    }

    /* Products */
    .products-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 10px !important;
    }

    .product-image {
        height: 130px !important;
    }

    .product-info {
        padding: 10px 12px !important;
    }

    .product-info h3 {
        font-size: 0.9rem !important;
    }

    .product-category {
        font-size: 0.75rem !important;
    }

    .product-price {
        font-size: 1rem !important;
    }

    .add-to-cart-btn {
        padding: 8px !important;
        font-size: 13px !important;
    }

    .search-input {
        font-size: 14px !important;
        padding: 10px 15px 10px 40px !important;
    }

    .alphabet-filter {
        gap: 3px !important;
    }

    .letter-btn {
        padding: 5px 6px !important;
        font-size: 11px !important;
    }

    /* Cart modal */
    

    

    .cart-header h3 {
        font-size: 1rem !important;
    }

    .cart-item-img {
        width: 50px !important;
        height: 50px !important;
    }

    .cart-item-details h4 {
        font-size: 12px !important;
    }

    .cart-item-price {
        font-size: 13px !important;
    }

    .quantity-btn {
        width: 22px !important;
        height: 22px !important;
        font-size: 12px !important;
    }

    .cart-footer {
        flex-direction: column !important;
        gap: 10px !important;
    }

    .cart-footer .btn {
        width: 100% !important;
        text-align: center !important;
    }

    /* Client form - delivery options */
    .delivery-option {
        padding: 10px !important;
    }

    .delivery-label strong {
        font-size: 13px !important;
    }

    .delivery-label small {
        font-size: 11px !important;
    }

    /* Quote modal */
    .quote-content {
        width: 100% !important;
        max-height: 100vh !important;
        max-height: 100dvh !important;
        border-radius: 12px 12px 0 0 !important;
    }

    .quote-body {
        padding: 15px 16px 20px !important;
    }

    /* Product detail modal */
    .modal-content {
        width: 100% !important;
        max-height: 100vh !important;
        max-height: 100dvh !important;
        border-radius: 12px 12px 0 0 !important;
        padding: 12px !important;
    }

    .product-info h2 {
        font-size: 1.3rem !important;
    }

    .thumbnail {
        width: 60px !important;
        min-width: 60px !important;
        height: 60px !important;
    }

    .main-image img {
        max-height: 250px !important;
    }

    /* Reviews in product modal */
    #reviewModal > div {
        width: 95% !important;
        padding: 20px !important;
    }

    /* Tracking */
    .tracking-page {
        padding: 30px 0 !important;
    }

    .tracking-page h1 {
        font-size: 1.2rem !important;
    }

    .progress-card {
        padding: 15px !important;
    }

    .progress-steps {
        padding-left: 20px !important;
    }

    .progress-step h4 {
        font-size: 0.85rem !important;
    }

    .info-card {
        padding: 14px !important;
    }

    .info-row {
        font-size: 0.8rem !important;
        flex-direction: column;
        gap: 2px;
    }

    .item-row {
        font-size: 0.8rem !important;
    }

    /* Mis compras */
    .mis-compras {
        padding: 40px 0 !important;
    }

    .mis-compras-hero h1 {
        font-size: 1.4rem !important;
    }

    .mis-compras-hero p {
        font-size: 0.85rem !important;
    }

    .order-info h3 {
        font-size: 0.95rem !important;
    }

    .order-info p {
        font-size: 0.8rem !important;
    }

    /* WhatsApp float */
    .whatsapp-float {
        width: 50px !important;
        height: 50px !important;
        font-size: 26px !important;
        bottom: 20px !important;
        right: 15px !important;
    }

    /* Notifications */
    .notification {
        top: 10px !important;
        right: 10px !important;
        left: 10px !important;
        font-size: 13px !important;
        padding: 12px 15px !important;
    }
}

/* =========================================
   SMALL PHONES - 375px (iPhone SE, standard)
   ========================================= */
@media (max-width: 375px) {
    .hero h1 {
        font-size: 24px !important;
    }

    .hero p {
        font-size: 13px !important;
    }

    .section-title h2 {
        font-size: 22px !important;
    }

    .about-content h2,
    .technology-content h2 {
        font-size: 24px !important;
    }

    .stat h3 {
        font-size: 18px !important;
    }

    .counter-card h3 {
        font-size: 24px !important;
    }

    .counter-card {
        padding: 15px 10px !important;
    }

    .cta h2 {
        font-size: 22px !important;
    }

    .products-grid {
        grid-template-columns: 1fr !important;
    }

    .product-image {
        height: 180px !important;
    }

    .commitment-grid {
        grid-template-columns: 1fr !important;
    }

    /* Cart items */
    .cart-item {
        gap: 8px !important;
    }

    .cart-item-img {
        width: 42px !important;
        height: 42px !important;
    }
}

/* =========================================
   VERY SMALL PHONES - 320px (iPhone SE 1st gen)
   ========================================= */
@media (max-width: 320px) {
    .container {
        width: 96%;
    }

    .hero h1 {
        font-size: 22px !important;
    }

    .section-title h2 {
        font-size: 20px !important;
    }

    .header {
        height: 55px !important;
    }

    .logo img {
        width: 40px !important;
    }

    .about-counters {
        grid-template-columns: 1fr !important;
    }

    .menu {
        width: 85% !important;
        padding: 80px 20px 30px !important;
    }
}

/* =========================================
   iOS SPECIFIC - SAFE AREAS & DYNAMIC VIEWPORT
   ========================================= */
@supports (padding: env(safe-area-inset-bottom)) {
    @media (max-width: 1024px) {
        /* Sticky header respects notch */
        .sticky-header-wrapper {
            padding-top: env(safe-area-inset-top);
        }

        /* Footer respects home indicator */
        .footer-bottom {
            padding-bottom: calc(25px + env(safe-area-inset-bottom));
        }

        /* Fixed elements respect safe areas */
        .whatsapp-float {
            bottom: calc(25px + env(safe-area-inset-bottom)) !important;
            right: calc(15px + env(safe-area-inset-right)) !important;
        }

        /* Cart modal bottom padding for iOS */
        

        /* Mobile menu safe area */
        .menu.active {
            padding-top: calc(100px + env(safe-area-inset-top));
            padding-bottom: env(safe-area-inset-bottom);
        }
    }
}

/* =========================================
   TOUCH OPTIMIZATIONS
   ========================================= */
@media (max-width: 1024px) {
    /* Minimum touch targets */
    .menu a,
    .filter-btn,
    .letter-btn,
    .add-to-cart-btn,
    .nav-button,
    .btn-tracking,
    .btn-primary,
    .btn-secondary,
    .btn-cotizar,
    .btn-login,
    button,
    input[type="submit"],
    a.btn-primary {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    /* Better input sizing for touch */
    input, select, textarea {
        font-size: 16px !important; /* Prevents iOS zoom on focus */
        min-height: 44px;
    }

    /* Prevent text selection on interactive elements */
    .filter-btn,
    .letter-btn,
    .quantity-btn,
    .mobile-menu-toggle {
        -webkit-user-select: none;
        user-select: none;
        -webkit-tap-highlight-color: transparent;
    }
}

/* =========================================
   LANDSCAPE ORIENTATION (phones)
   ========================================= */
@media (max-width: 896px) and (orientation: landscape) {
    .hero {
        padding: 30px 0 !important;
    }

    .hero-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 20px !important;
    }

    .hero h1 {
        font-size: 28px !important;
    }

    .hero-image img {
        max-height: 200px !important;
    }

    .hero-stats {
        flex-direction: row !important;
        flex-wrap: wrap;
        gap: 10px !important;
    }

    .stat {
        flex: unset;
    }

    /* Modals in landscape */
    .cart-modal-content,
    .quote-content,
    .modal-content {
        max-height: 90vh !important;
        max-height: 90dvh !important;
    }

    .menu {
        padding-top: 70px !important;
    }

    .about,
    .mission,
    .services,
    .technology,
    .commitment {
        padding: 30px 0 !important;
    }
}

/* =========================================
   PRINT - Hide interactive elements
   ========================================= */
@media print {
    .mobile-menu-toggle,
    .mobile-menu-overlay,
    .whatsapp-float,
    .cart-modal,
    .quote-modal,
    .notification {
        display: none !important;
    }
}

/* =========================================
   FIX: Cart icon alignment with hamburger
   ========================================= */
@media (max-width: 1024px) {
    .header-actions {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    

    
}

@media (max-width: 480px) {
    .header-actions {
        gap: 10px;
    }

    

    
}
/* Footer bottom text más pequeño en móvil */
@media (max-width: 768px) {
    .footer-bottom {
        font-size: 11px !important;
        padding: 15px 10px !important;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .footer-bottom {
        font-size: 10px !important;
        padding: 12px 8px !important;
    }
}
/* Footer break - solo en móvil */
.footer-break {
    display: none;
}

@media (max-width: 768px) {
    .footer-break {
        display: block;
    }
}
/* Footer logo centrado en móvil */
@media (max-width: 768px) {
    .footer .footer-column .logo {
        display: flex;
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
    }

    .footer .footer-column .logo img {
        display: block;
        margin: 0 auto;
    }
}