* {
    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: 10px;
    /*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: 20px;
    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;
    
}

/* 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;
    }
}




/* ********************       Image       */
.full-image {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
}

.full-screen-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.full-image-text {
    position: absolute;
    top: 70%;
    left: 10%;
    transform: translateY(-50%);
    color: white;
    font-size: 3rem;
    font-family: Arial, sans-serif;
    font-weight: bold;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .full-image {
        height: 60vh; /* Reduce height to fit smaller screens */
    }

    .full-screen-image {
        object-fit: cover; /* Keep full coverage while preventing distortion */
        object-position: center; /* Center image to avoid cutting off important content */
    }

    .full-image-text {
        top: 50%; /* Adjust text placement */
        left: 5%; /* Keep padding but reduce space */
        font-size: 2rem; /* Reduce font size for readability */
    }
}

@media (max-width: 480px) {
    .full-image {
        height: 50vh; /* Further reduce height for small screens */
    }

    .full-image-text {
        font-size: 1.5rem; /* Further reduce text size */
        left: 5%; /* Keep some padding */
        top: 45%; /* Adjust position for better visibility */
    }
}


/* ******************** Layout Fix: Ensure sidebar and product stay below the image */
.content-section {
    display: flex;
    align-items: flex-start;
    margin-top: 20px; /* Space between image and content */
    text-align: center;
    justify-content: center;
}

/* ******************** Sidebar */
.sidebar {
    flex: 0 0 300px;
    margin-left: 20px;
    background-color: #EFEEEE;
    padding: 10px;
    border-radius: 15px;
    /* border: 1px solid black; Solid border */
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}

.sidebar h6 {
    color: black; /* Make it stand out */
    text-decoration: none; /* Remove underline */
    cursor: pointer; /* Show it's clickable */
    font-size: 1.4rem;
    font-weight: bold;
    margin-left: 5px;
    margin-bottom: 10px;
}

.sidebar a.active {
    color: red; /* Change text color */
}

.sidebar p {
    font-size: 1.2rem;
    font-weight: bold;
    margin-left: 5px;
    margin-bottom: 10px;
}

/* Sidebar Links */
.sidebar ul {
    list-style: none;
    padding: 0;
}

.sidebar ul li {
    margin: 15px 0;
}

.sidebar ul li a {
    color: black;
    text-decoration: none;
    font-size: 17px;
    display: block;
    padding: 8px;
    border-radius: 10px;
    transition: background 0.3s ease, color 0.3s ease;
}

.sidebar ul li a:hover {
    color: white;
    background-color: #7D7B7B;
}




.sidebar ul li a.active {
    text-decoration: underline;
    color: red;
}

.clickable-text {
    color: black; /* Make it stand out */
    text-decoration: none; /* Remove underline */
    cursor: pointer; /* Show it's clickable */
    font-size: 1.3rem;
    font-weight: bold;
    margin-left: 5px;
    margin-bottom: 20px;
}

/* ******************** Recommendation */

.hot-recommendation {
    text-align: center;
    margin-top: 20px;
}

.image-container {
    margin: 15px auto;
    position: relative;
    display: inline-block;
}

.image-container img {
    width: 100%; /* Adjust as needed */
    height: auto;
    display: block;
    border-radius: 10px;
    transition: 0.3s ease-in-out;
}

.overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.5rem;
    color: black; /* Text color */
    background: transparent; /* Transparent background */
    padding: 15px 25px;
    width: 90%; /* Slightly smaller than the image */
    height: 90%;
    text-align: center;
    border: 2px solid black; /* Border to define the rectangle */
    opacity: 0; /* Hidden by default */
    transition: opacity 0.3s ease-in-out;

    /* Center the text */
    display: flex;
    align-items: center; /* Center vertically */
    justify-content: center; /* Center horizontally */
}

/* Show text on hover */
.image-container:hover .overlay-text {
    opacity: 1;
}

/* For Latest Event */
.overlay-text-event {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.5rem;
    color: white; /* Text color */
    background: transparent; /* Transparent background */
    padding: 15px 25px;
    width: 90%; /* Slightly smaller than the image */
    height: 90%;
    text-align: center;
    border: 2px solid black; /* Border to define the rectangle */
    opacity: 0; /* Hidden by default */
    transition: opacity 0.3s ease-in-out;

    /* Center the text */
    display: flex;
    align-items: center; /* Center vertically */
    justify-content: center; /* Center horizontally */
}

/* Show text on hover */
.image-container:hover .overlay-text-event {
    opacity: 1;
}

/* Optional: Slight dark overlay on hover for effect */
.image-container:hover img {
    filter: brightness(70%);
}

/* Mobile Response for all of the sidebar */
@media (max-width: 768px) {
    .content-section {
        flex-direction: column; /* Stack elements vertically */
        align-items: center;
    }

    .sidebar {
        width: 100%; /* Full width at the top */
        margin: 0; /* Remove margin */
        padding: 10px;
        border-radius: 0; /* Remove rounded edges */
        text-align: center; /* Center text */
    }

    .sidebar ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        padding: 10px 0;
    }

    .sidebar ul li {
        margin: 5px;
        display: inline-block;
    }

    .sidebar ul li a {
        font-size: 14px; /* Smaller font */
        padding: 5px 10px;
    }

    .hot-recommendation {
        margin-top: 10px;
    }

    .image-container img {
        width: 30%; /* Slightly smaller for tablets */
        border-radius: 8px; /* Reduce border radius */
        justify-content: center;
        text-align: center;
        display: block;
        margin: 0 auto;
    }

    .overlay-text {
        font-size: 1.2rem; /* Reduce text size */
        width: 20%; /* Smaller overlay box */
        height: 40%;
        padding: 10px 15px; /* Reduce padding */
    }

    .overlay-text-event {
        font-size: 1.2rem; /* Reduce text size */
        width: 20%; /* Smaller overlay box */
        height: 80%;
        padding: 10px 15px; /* Reduce padding */
    }
}

@media (max-width: 480px) {
    .sidebar {
        padding: 5px;
    }

    .sidebar ul {
        flex-direction: column; /* Stack links vertically */
    }

    .sidebar ul li {
        margin: 5px 0;
    }

    .sidebar ul li a {
        font-size: 12px; /* Even smaller font for small screens */
        padding: 4px 8px;
    }

    .image-container img {
        width: 30%; /* Full width on small screens */
        border-radius: 5px; /* Further reduce border radius */
    }

    .overlay-text {
        font-size: 1.2rem; /* Reduce text size */
        width: 20%; /* Smaller overlay box */
        height: 40%;
        padding: 10px 15px; /* Reduce padding */
    }

    .overlay-text-event {
        font-size: 1.2rem; /* Reduce text size */
        width: 20%; /* Smaller overlay box */
        height: 80%;
        padding: 10px 15px; /* Reduce padding */
    }
}

/* ******************** Code to stack products */
.product-section {
    display: flex;
    flex-direction: column;
    gap: 20px; /* vertical space between product sections */
}
  
/* Dividing Line*/
.colors-divider {
    border: none;
    border-top: 2px solid #ccc; /* Adjust thickness and color */
    margin: 10px 0; /* Adds spacing around the line */
    width: 97%; /* Ensures full width */
}

.section-divider {
    border: none;
    border-top: 2px solid #ccc; /* Adjust thickness and color */
    margin: 10px 0; /* Adds spacing around the line */
    margin-left: 15px;
    width: 95%; /* Ensures full width */
}

@media (max-width: 768px) {
    .section-divider {
      margin-left: 0;
      width: 100%;
    }
}



/* ******************** Products */
.pro-container {
    display: flex;
    align-items: flex-start; /* Align items at the top */
    gap: 20px; /* Space between the image and details */
    margin-left: 15px;
  }
  
.pro-image {
    width: 400px;   /* Fixed width for the image container */
    height: 300px;  /* Fixed height for the image container */
    flex-shrink: 0; /* Prevent the image container from shrinking */
    overflow: hidden; /* Hide any part of the image that overflows */
}

.pro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image covers the container while preserving aspect ratio */
    display: block;
}

.pro-details {
    flex: 1; /* Take up the remaining space */
    align-items: flex-start;  /* Aligns items vertically in the center */
    text-align: left;
}
  
.pro-name h5 {
    font-size: 1.4rem;  /* Adjust as needed */
    margin-bottom: 5px;
    margin-right: 1rem; /* Optional space between h5 and p */
}
  
.pro-name p {
    font-size: 0.8rem;    /* Adjust as needed */
    margin: 0;
}



.pro-specs p {
    font-size: 0.9rem;    /* Adjust as needed */
    margin-bottom: 4px;
}

/*    For large screens*/
@media (min-width: 1600px) {
    .pro-image {
      width: 700px;  /* Increased width for large screens */
      height: 550px; /* Increased height for large screens */
      object-fit: cover;
    }
  
    .pro-details {
      max-width: 800px; /* Set a maximum width for the details area */
    }
  }
  


  
/* ********************       Recommended Colors */
/* Layout the two color groups side by side */
.colors {
    display: flex;
    gap: 15px; /* Space between main and other colors columns */
    overflow: hidden;
}

/* ------------------- Main Colors ------------------- */

/* Space between the heading and the images */
.main-colors h6 {
    margin-bottom: 10px;
    font-size: 13px;
}

/* Arrange the main images in a row */
.main-imgs {
    display: flex;
    gap: 2px;
}

/* Each main-item: image above its caption */
.main-imgs .main-item {
    /* Text left alignment is default, so no need for text-align */
    text-align: center;
}

/* Optionally set size for main images */
.main-imgs .main-item img {
    width: 60px;  /* Adjust as needed */
    height: 60px; /* Adjust as needed */
    object-fit: cover;
    display: block;
    /* margin: 0 auto; */
}

.main-imgs .main-item p {
    font-size: 12px;
}
  
/* ------------------ Other Colors ------------------- */


/* Space between the heading and the images */
.oth-colors h6 {
    margin-bottom: 10px;
    font-size: 13px;
}

/* Arrange the other images in a row */
.oth-imgs {
    display: flex;
    gap: 5px;
}

/* Each item in other colors: center the caption text */
.oth-imgs .oth-item { 
    text-align: center;
}

/* Make the other images smaller */
.oth-imgs .oth-item img {
    width: 40px;  /* Smaller than main images */
    height: 40px;
    object-fit: cover;
    display: block;
    margin: 0 auto;
}
  
.oth-imgs .oth-item p {
    font-size: 12px;
    max-width: 70px;
}

.vertical-line {
    border-left: 2px dotted #ccc; /* Creates a dotted line on the left */
    height: 50px;
}

/* ------------------ Door Type ------------------- */
.doors {
    gap: 20px; /* Space between main and other colors columns */
}

.doors h6 {
    display: flex;
    gap: 20px; /* Space between main and other colors columns */
    margin-bottom: 10px;
    font-size: 13px;
}

/* Arrange the main images in a row */
.door-imgs {
    display: flex;
    gap: 10px;
}

/* Each main-item: image above its caption */
.door-imgs .door-item {
    /* Text left alignment is default, so no need for text-align */
    text-align: center;
}

/* Optionally set size for main images */
.door-imgs .door-item img {
    width: 70px;  /* Adjust as needed */
    height: 70px; /* Adjust as needed */
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.door-imgs .door-item p {
    font-size: 12px;
}

/* ------------------ Hardware ------------------- */
.hardw {
    gap: 20px; /* Space between main and other colors columns */
}

.hardw h6 {
    display: flex;
    gap: 20px; /* Space between main and other colors columns */
    margin-bottom: 10px;
    font-size: 13px;
}

/* Arrange the main images in a row */
.hardw-imgs {
    display: flex;
    gap: 10px;
}

/* Each main-item: image above its caption */
.hardw-imgs .hardw-item {
    /* Text left alignment is default, so no need for text-align */
    text-align: center;
}

/* Optionally set size for main images */
.hardw-imgs .hardw-item img {
    width: 70px;  /* Adjust as needed */
    height: 70px; /* Adjust as needed */
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.hardw-imgs .hardw-item p {
    font-size: 12px;
}


/* *****     Mobile response for product sections */
@media (max-width: 1300px) {
    .pro-container {
        flex-direction: column; /* Stack image and details vertically */
        margin: 0;              /* Remove extra margins */
        padding: 0 15px;        /* Add side padding */
        box-sizing: border-box; /* Include padding in width */
        justify-content: center;
        text-align: center;
    }
    
    .pro-image,
    .pro-details {
        width: 100%;  /* Use percentage width to avoid horizontal overflow */
    }
    
    .pro-image {
        height: auto; /* Adjust height automatically for aspect ratio */
    }
    
    /* Stack the recommended colors sections vertically */
    .colors {
        flex-direction: column;
        align-items: center;
    }
    
    /* Optional: make each section take full width */
    .main-colors,
    .oth-colors {
        width: 100%;
    }
    
    /* Center the images within each color group */
    .main-imgs,
    .oth-imgs {
        justify-content: center;
    }
}
  
  
  



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

.footer {
    background-color: #131313;
    margin-top: 50px;
    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;
    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;
    }
  }