/* <uniquifier>: Use a unique and descriptive class name
 <weight>: Use a value from 400 to 900 

.bodoni-moda-google {
  font-family: "Bodoni Moda", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}*/

.lato-regular {
    font-family: "Lato", serif;
    font-weight: 400;
    font-style: normal;
}

/* <uniquifier>: Use a unique and descriptive class name
// <weight>: Use a value from 400 to 900 */

.hind-madurai-regular {
    font-family: "Hind Madurai", serif;
    font-weight: 400;
    font-style: normal;
}

/* <uniquifier>: Use a unique and descriptive class name
// <weight>: Use a value from 100 to 900 */

.montserrat-regular {
    font-family: "Montserrat", serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
}

/* Tata Casa font */
.lato-regular {
    font-family: "Lato", serif;
    font-weight: 400;
    font-style: normal;
}

html,
body {
    height: 100%;
    margin: 0;
    /* Ensure there's no default margin */
}


* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

/* Common fade-in effect for all sections */
.image-container,
.main,
.changing-container {
    opacity: 0;
    /* Start hidden */
    transform: translateY(50px);
    /* Start slightly lower */
    transition: opacity 1s ease-out, transform 1s ease-out;
}

/* When section comes into view, make it visible */
.image-container.show,
.main.show,
.changing-container.show {
    opacity: 1;
    transform: translateY(0);
}

/*************        Banner    */
.banner {
    display: flex;
    justify-content: space-between;
    /* Space elements on left & right */
    align-items: center;
    /* Vertically center content */
    background-color: rgb(183, 2, 2);
    /* Light gray background */
    padding: 5px 20px;
    /* Spacing around the content */
    font-family: Arial, sans-serif;
    z-index: 1001;
}

/* Left Side of Banner */
.banner-left {
    display: flex;
    align-items: center;
    gap: 10px;
    /* Space between icon and text */
}

/* Icon Styling */
.warranty-icon {
    width: 24px;
    /* Adjust as needed */
    height: auto;
    display: block;
}

/* Text Styling for "Lifetime Warranty" */
.warranty-text {
    font-size: 1rem;
    color: white;
}

/* Right Side of Banner */
.banner-right {
    font-size: 1rem;
    color: white;
    font-weight: normal;
}

/* Optional: Make phone number clickable (tel link) */
.phone-number a {
    color: inherit;
    /* Inherit text color */
    text-decoration: none;
    /* Remove underline */
}

/* Responsive Example: stack on smaller screens */
@media (max-width: 480px) {
    .banner {
        flex-direction: row;
        /* Keep elements side by side */
        justify-content: space-between;
        align-items: center;
        gap: 10px;
    }

    .warranty-icon {
        width: 20px;
        /* Slightly smaller icon */
    }

    .warranty-text,
    .banner-right {
        font-size: 0.8rem;
        /* Reduce font size for mobile */
    }
}



/****************        Navbar*/
.navbar {
    background-color: white;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    position: absolute;
    top: 40px;
    width: 100%;
    z-index: 999;

}


.navbar__container {
    display: flex;
    justify-content: space-between;
    height: 80px;
    z-index: 1;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

/* #navbar__homelogo {
    height: 50px; /* Adjust the size as needed */
/* margin-right: 20px; Add space between the logos */
/* } */

#navbar__logo {
    /*color: #131313; */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 330px;
    height: 60px;
    font-family: "Lato", serif;
    display: flex;
    text-indent: -9999px;
    overflow: hidden;
    /*align-items: center;*/
    cursor: pointer;
    margin-top: 10px;
    gap: 0px;
    /*text-decoration: none;
    font-size: 2.5rem; */
}

.fa-gem {
    margin-right: 0.5rem;
}

.navbar__menu {
    display: flex;
    align-items: center;
    list-style: none;
    text-align: center;
}

.navbar__item {
    height: 80px;
}

.navbar__links {
    color: #131313;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 0 1rem;
    height: 100%;
}

.navbar__btn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 1rem;
    width: auto;
}

.button {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    padding: 8px 16px;
    height: 100%;
    width: 100%;
    border: none;
    outline: none;
    border-radius: 4px;
    background: #131313;
    color: white;
}

.button:hover {
    background: red;
}

.navbar__links:hover {
    color: red;
    text-underline-position: below;
}

@media screen and (max-width: 960px) {
    .navbar {
        top: 30px;
    }

    .navbar__container {
        display: flex;
        justify-content: space-between;
        height: 80px;
        z-index: 1;
        width: 100%;
        max-width: 1300px;
        padding: 0;
    }

    .navbar__menu {
        display: grid;
        grid-template-columns: auto;
        margin: 0;
        width: 100%;
        position: absolute;
        top: -1000px;
        opacity: 0;
        transition: all 0.5s ease;
        height: 50vh;
        z-index: -1;
    }

    .navbar__menu.active {
        background: white;
        top: 100%;
        opacity: 1;
        transition: all 0.5s ease;
        z-index: 99;
        height: 90vh;
        /*****************      CODE TO FIX NAVBAR DROPDOWN*/
        font-size: 1.6rem;
    }

    #navbar__logo {
        padding-left: 25px;
    }

    .navbar__toggle .bar {
        width: 25px;
        height: 3px;
        margin: 5px auto;
        transition: all 0.3s ease-in-out;
        background: black;
    }

    .navbar__item {
        width: 100%;
    }

    .navbar__links {
        text-align: center;
        padding: 2rem;
        width: 100%;
        display: table;
        color: black;
    }

    #mobile-menu {
        position: absolute;
        top: 20%;
        right: 5%;
        transform: translate(5%, 20%);
    }

    .navbar__btn {
        padding-bottom: 2rem;
    }

    .button {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 80%;
        height: 80px;
        margin: 0;
    }

    .navbar__toggle .bar {
        display: block;
        cursor: pointer;
    }

    #mobile-menu.is-active .bar:nth-child(2) {
        opacity: 0;
    }

    #mobile-menu.is-active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    #mobile-menu.is-active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}


/*-----------------     Dropdown menu styling          */
/* Main dropdown menu */
.dropdown__menu {
    position: absolute;
    top: 100%;
    /* Aligns the menu below "Products" */
    margin-left: 165px;
    /* Adjust this value to position your dropdown properly */
    left: 0;
    background: white;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    display: none;
    /* Hidden by default */
    flex-direction: row;
    /* Align items horizontally */
    flex-wrap: nowrap;
    /* Allow items to wrap if necessary */
    justify-content: center;
    align-items: flex-start;
    /* gap: 5px; */
    /*       Changed this below       */
    padding: 70px;
    margin-bottom: 10px;
    z-index: 1000;
    /* Ensures dropdown stays on top */
    box-sizing: border-box;
    width: 100vw;
    /* Adjust width as needed */
}

/* Show dropdown when hovering over Products */
.navbar__item.dropdown:hover .dropdown__menu {
    display: flex;
}

/* Style for dropdown items */
.dropdown__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    color: #131313;
    font-size: 14px;
    transition: 0.3s;
    padding: 50px;
    width: 110px;
    /* Fixed width for each item */
}

/* Category Title Styling */
.dropdown__category {
    width: 100%;
    text-align: center;
    font-weight: bold;
    font-size: 18px;
    /* Larger Font */
    color: #131313;
    padding: 5px 0;
    /* margin-bottom: 5px; */
    border-bottom: 2px solid #ccc;
    white-space: nowrap;
}

.dropdown__category-container {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    left: 0;
    text-align: start;
    align-items: center;
    width: 100%;
    padding: 0;
    gap: 0;
    max-width: 700px;
}




/* Adjust image size */
.dropdown__item img {
    width: 50px;
    height: 50px;
    margin-bottom: 5px;
    border-radius: 5px;
    transition: transform 0.3s ease;
}

.dropdown__item span {
    min-height: 30px;
    /* Adjust this value as needed */
    display: flex;
    align-items: center;
    /* Vertically centers text */
    justify-content: center;
    text-align: center;
    line-height: 1;
}

/* Hover effect */
.dropdown__item:hover img {
    transform: scale(1.1);
}

.dropdown__item:hover {
    color: red;
}

/* Ensure Menu Links Stay Visible on White Background */
.navbar__links {
    transition: color 0.3s ease;
}

.navbar__item.dropdown:hover .navbar__links {
    color: black;
}



@media (min-width: 768px) {
    .dropdown__menu {
        left: -180px;
        /* Moves menu further left */
    }
}


@media screen and (max-width: 960px) {

    /* Ensure dropdown appears directly under "Products" */
    .dropdown__menu {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 50vw;
        text-align: center;
        padding: 10px 0;
        position: absolute;
        top: 100%;
        /* Aligns the menu right below "Products" */
        left: 50%;
        /* Center horizontally */
        transform: translateX(-50%);
        /* Center horizontally */
        background: white;
        z-index: 10000;
        box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
        border-radius: 10px;
    }

    /* Hide product images on mobile */
    .dropdown__item img {
        display: none;
    }

    /* Style product list */
    .dropdown__item {
        width: 100%;
        padding: 10px;
        font-size: 18px;
        font-weight: bold;
        text-align: center;
    }

    /* Ensure product names are visible */
    .dropdown__item span {
        display: inline-block;
    }

    /* Adjust Products dropdown positioning */
    .navbar__item.dropdown {
        position: relative;
    }

    /* Ensure dropdown stays directly below Products */
    .navbar__item.dropdown .dropdown__menu {
        position: absolute;
        top: 100%;
        left: 50%;
        /* Center horizontally */
        transform: translateX(-50%);
        /* Center horizontally */
        width: 50vw;
        /* Adjust width to match parent dropdown */
        background: white;
        display: none;
        /* Initially hidden */
    }

    /* Show dropdown on click */
    .navbar__item.dropdown:hover .dropdown__menu,
    .navbar__item.dropdown:focus-within .dropdown__menu {
        display: flex;
    }
}



/*-----------------     Video          */
.video-container {
    position: relative;
    width: 100vw;
    /* Full width of the viewport */
    height: 100vh;
    /* Full height of the viewport */
    overflow: hidden;
    /* Ensures no part of the video exceeds the container */
}

.full-screen-video {
    width: 100vw;
    /* Full viewport width */
    height: 100vh;
    /* Full viewport height */
    object-fit: cover;
    /* Ensures the video fills the container while maintaining aspect ratio */
    position: absolute;
    /* Positions the video relative to its container */
    top: 0;
    left: 0;
}

@media (max-width: 768px) {
    .video-container {
        margin-top: -20px;
        height: 50vh;
        /* Reduce the height for smaller screens to avoid taking too much vertical space */
    }

    .full-screen-video {
        height: 50vh;
        /* Match the container's height */
        object-fit: contain;
        /* Ensure the video scales properly while showing the full content */
    }
}

@media (max-width: 480px) {
    .video-container {
        margin-top: -20px;
        height: 50vh;
        /* Further reduce height for very small screens */
    }

    .full-screen-video {
        height: 50vh;
        /* Match the container's height */
    }
}


/* *******    New Section */
.hero-features-section {
    padding: 60px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.hero-header h1 {
    font-size: 2.8rem;
    font-weight: bold;
    color: #111;
    margin-bottom: 10px;
}

.subheadline {
    font-size: 1.2rem;
    color: #666;
    max-width: 900px;
    margin: 0 auto 40px auto;
}

.feature-columns {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.feature-item {
    flex: 1 1 300px;
    max-width: 350px;
    text-align: center;
}

.feature-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    /* Ensures uniform appearance */
    border-radius: 10px;
    margin-bottom: 15px;
}

.feature-item h3 {
    font-size: 1.3rem;
    color: #222;
    margin-bottom: 10px;
}

.feature-item p {
    font-size: 1rem;
    color: #555;
    line-height: 1.5;
}

@media screen and (max-width: 768px) {
    .hero-header h1 {
        font-size: 2rem;
    }

    .subheadline {
        font-size: 1rem;
        padding: 0 15px;
        margin-bottom: 30px;
    }

    .feature-columns {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .feature-item {
        width: 100%;
        max-width: 90%;
    }

    .feature-item img {
        height: auto;
        max-height: 300px;
        width: 60%;
    }

    .feature-item h3 {
        font-size: 1.1rem;
    }

    .feature-item p {
        font-size: 0.95rem;
    }
}

@media screen and (max-width: 480px) {
    .hero-header h1 {
        font-size: 1.6rem;
        padding: 0 10px;
    }

    .subheadline {
        font-size: 0.95rem;
        padding: 0 10px;
        margin-bottom: 25px;
    }

    .feature-columns {
        gap: 20px;
    }

    .feature-item {
        max-width: 100%;
        padding: 0 10px;
    }

    .feature-item img {
        width: 60%;
        max-height: 250px;
        object-fit: cover;
    }

    .feature-item h3 {
        font-size: 1rem;
    }

    .feature-item p {
        font-size: 0.9rem;
    }
}
  



/* Distributor  */
.distributor {
    background-color: #f9f9f9;
}

.distributor-highlight {
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    color: black;
    padding: 60px 40px;
    gap: 40px;
}

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

.distributor-text h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: black;
}

.highlight-message {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: black;
    max-width: 600px;
}

.distributor-benefits {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.distributor-benefits li {
    font-size: 16px;
    margin-bottom: 10px;
    color: black;
}

.cta-distributor-btn {
    display: inline-block;
    background-color: #b00202;
    color: white;
    padding: 14px 30px;
    font-size: 16px;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.cta-distributor-btn:hover {
    background-color: #8a0101;
}

.distributor-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.distributor-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
    object-fit: cover;
}

@media screen and (max-width: 768px) {
    .distributor-highlight {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 40px 20px;
    }

    .distributor-image {
        order: -1;
        /* Moves image to the top */
        text-align: center;
    }

    .distributor-image img {
        max-width: 100%;
        height: auto;
    }

    .distributor-text {
        width: 100%;
        max-width: 600px;
        padding: 0 15px;
    }

    .distributor-text h2 {
        font-size: 28px;
    }

    .highlight-message {
        font-size: 16px;
    }

    .distributor-benefits li {
        font-size: 15px;
    }

    .cta-distributor-btn {
        font-size: 15px;
        padding: 12px 25px;
    }
}

@media screen and (max-width: 480px) {
    .distributor-highlight {
        padding: 30px 15px;
    }

    .distributor-text h2 {
        font-size: 22px;
    }

    .highlight-message {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .distributor-benefits li {
        font-size: 14px;
    }

    .cta-distributor-btn {
        font-size: 14px;
        padding: 10px 20px;
    }

    .distributor-image img {
        max-width: 100%;
        height: auto;
    }
}
  

/*********************** One stop shop  */
.door-parts-section {
    background-color: #f9f9f9;
    padding: 60px 20px;
    text-align: center;
}

.door-parts-content {
    max-width: 1000px;
    margin: 0 auto;
}

.door-parts-content h2 {
    font-size: 32px;
    color: #111;
    margin-bottom: 10px;
}

.door-parts-content>p {
    font-size: 18px;
    color: #555;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.part-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 50px;
    text-align: left;
    flex-direction: row;
    /* Default direction */
}

.part-row.reverse {
    flex-direction: row-reverse;
}

.image-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.image-column img {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #ccc;
}

.part-row img {
    width: 280px;
    height: 280px;
    object-fit: cover;
    flex-shrink: 0;
}

.part-text {
    flex: 1;
    max-width: 500px;
}

.part-text h3 {
    font-size: 22px;
    color: #222;
    margin-bottom: 10px;
}

.part-text p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    padding: 10px;
}

.handle-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 50px;
    text-align: left;
    flex-direction: row;
    /* Default direction */
}

.handle-row img {
    width: 420px;
    height: 320px;
    object-fit: cover;
    flex-shrink: 0;
}

@media screen and (max-width: 768px) {
    .part-row,
    .part-row.reverse,
    .handle-row {
        flex-direction: column !important;
        align-items: center;
        text-align: center;
    }

    .part-text {
        max-width: 100%;
    }

    .part-row img,
    .handle-row img {
        width: 100%;
        max-width: 350px;
        height: auto;
    }

    .image-column img {
        width: 100%;
        max-width: 250px;
        height: auto;
    }
}
  

/******************  Explore section  */
.explore-section {
    padding: 60px 20px;
    background-color: #f8f8f8;
    text-align: center;
}

.explore-title {
    font-size: 2.2rem;
    color: #131313;
    margin-bottom: 40px;
}

.product-cards {
    display: flex;
    gap: 80px;
    justify-content: center;
    flex-wrap: wrap;
}

.product-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    width: 350px;
    transition: transform 0.3s ease;
}

.product-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.5s ease;
}

.product-card:hover img {
    transform: scale(1.05);
}

.product-label {
    margin-top: 15px;
    font-size: 1.2rem;
    font-weight: 600;
    color: #131313;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .explore-section {
        padding: 40px 15px;
    }

    .explore-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .product-cards {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .product-card {
        width: 60%;
    }

    .product-card img {
        height: auto;
        max-height: 300px;
    }

    .product-label {
        font-size: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .explore-title {
        font-size: 1.5rem;
    }

    .product-card {
        width: 70%;
    }

    .product-card img {
        max-height: 250px;
    }

    .product-label {
        font-size: 0.95rem;
    }
}
  


/**********      Contact Section  */
.short-contact {
    background-color: #f5f5f5;
    padding: 40px 20px;
    text-align: center;
}

.short-contact h2 {
    font-size: 2rem;
    color: #131313;
    margin-bottom: 20px;
}

.short-contact p {
    font-size: 1rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto 25px;
}

.short-contact-form {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto;
}

.short-contact-form input {
    padding: 12px 16px;
    font-size: 1rem;
    border: 2px solid #131313;
    border-radius: 8px;
    width: 250px;
}

.short-contact-form button {
    padding: 12px 20px;
    background-color: #131313;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
}

.short-contact-form button:hover {
    background-color: #a9a9a9;
}
  
@media screen and (max-width: 768px) {
    .short-contact h2 {
        font-size: 1.6rem;
    }

    .short-contact p {
        font-size: 0.95rem;
        padding: 0 10px;
    }

    .short-contact-form {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .short-contact-form input,
    .short-contact-form button {
        width: 100%;
        max-width: 350px;
    }
}

@media screen and (max-width: 480px) {
    .short-contact h2 {
        font-size: 1.4rem;
    }

    .short-contact p {
        font-size: 0.9rem;
    }

    .short-contact-form input,
    .short-contact-form button {
        width: 100%;
        max-width: 300px;
    }
}
  


/* ********************       Footer */

.footer {
    background-color: #131313;
    color: #f4f4f4;
    padding: 20px 0;
    width: 100%;
}

/* Grid: 2 columns - Left (Footer Text) and Right (Links + Socials) */
.footer__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 1600px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

/* Left Column: Footer Text */
.footer-text {
    text-align: left;
}

.footer-text img {
    width: 400px;
    /* Adjust logo size as needed */
    height: auto;
    margin-bottom: 10px;
}

.footer-text p {
    font-size: 1rem;
    line-height: 1.5;
}

/* Right Column: Links & Socials */
.footer__right {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

/* Footer Links: Two sub-columns */
.footer__links {
    display: flex;
    gap: 40px;
}

.footer__links-col,
.footer__products-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__link {
    color: #f4f4f4;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.footer__link:hover {
    color: grey;
}

/* Products List */
.footer__products-list {
    list-style: none;
    padding: 0;
    margin: 5px 0 0 0;
    /* Indent list for clarity */
}

.footer__products-list li {
    margin: 5px 0;
}

/* Socials: arranged horizontally to the right of the links */
.footer__socials {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Social Icons */
.footer__face-icon img {
    width: 36px;
    height: auto;
    transition: transform 0.3s ease;
}

.footer__insta-icon img {
    width: 24px;
    height: auto;
    transition: transform 0.3s ease;
}

/* Hover effect for social icons */
.footer__face-icon img:hover,
.footer__insta-icon img:hover {
    transform: scale(1.2);
}

/* Footer Copyright */
.footer__copyright {
    font-size: 0.9rem;
    color: #a9a9a9;
    text-align: center;
    margin-top: 20px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .footer__container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-text {
        text-align: center;
    }

    .footer__right {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .footer__links {
        flex-direction: row;
        justify-content: center;
        gap: 20px;
    }

    .footer__links-col,
    .footer__products-col {
        align-items: center;
    }

    .footer__socials {
        justify-content: center;
    }
}