/* ---------------------------------------- Footer (laptop & mobile) --------------------------------------------------------- */
.footer-contact-link:hover{
    color:#ffbe00 !important;
  }
  
  /* Footer Section */
  .footer-categories p a{
    color:white;
  }
  .footer-products p a{
    color:white;
  }
  .footer-about-us p a{
    color:white;
  }
  #footer {
    position: relative;
    background-image: url("{{ asset('assets/images/footerbg.webp') }}");
    background-repeat: no-repeat;
    background-size: cover;
    padding: 40px 0;
    color: #fff;
  }
  
  /* Adding the overlay background color */
  #footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.66);  /* This is the overlay color */
    z-index: 1;  /* Ensures the overlay sits on top of the image but below the content */
  }
  
  /* Footer container */
  .footer-container {
    position: relative;
    display: flex;
    justify-content: space-between;
    max-width: 1600px;
    margin: 0 auto;
    z-index: 2;  /* Ensures the content sits above the overlay */
    gap: 15px;
  }
  
  /* Footer Column 1 */
  .footer-column-1 {
    width: 50%; /* Adjusted to 25% for 4 columns now */
    padding: 10px;
  }
  /* a:hover {
      color: #FFBE00 !important;
  } */
  
  .buy-button:hover {
      color: black !important;
  }
  
  .social-icon:hover {
      color: white !important;
  }
  .footer-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color:white;
  }
  
  .footer-categories p,
  .footer-products p,
  .footer-about-us p {
    margin-bottom: 10px;
  }
  
  /* For paragraphs inside footer sections */
  .footer-categories p,
  .footer-products p,
  .footer-about-us p {
    font-size: 16px;
    color: #ffffff80;
    cursor: pointer;
  }
  
  /* Footer Column 2 */
  .footer-column-2 {
    /* width: 50%;  */
    /* padding: 10px; */
  }
  
  /* Footer Column 3 */
  /* .footer-column-3 {
    width: 35%;
    padding: 10px;
  } */
  
  
  
  
  /* ------------------------------------------------------------------ */
  
  
  
  /* Footer Column 4 Styling */
  .footer-column-4 {
    /* width: 100%;  */
    /* padding: 15px; 
    color: white;  */
  }
  
  /* Style for Google Map iframe */
  .footer-info-address {
    display: flex;
    flex-direction: column; /* Stack map vertically */
    align-items: center; /* Center align */
    font-size: 14px;
    color: white !important; /* White text */
    margin-bottom: 10px;
  }
  
  /* Specific styling for the Google Map iframe */
  .footer-map-iframe {
    width: 100%; 
    /* height: 315px;  */
    border: 0; 
    border-radius: 8px;  
    margin-bottom: 0px;  
  }
  
  
  
  /* ------------------------------------------------------------------ */
  
  
  
  
  /* Footer Column 5 */
  
  /* Style for the company image */
  .company-image {
    text-align: left; /* Centering the image */
    margin-bottom: 20px; /* Spacing between the image and the form */
  }
  
  .company-icon {
    width: 110px; /* Set image width */
    height: auto; /* Set image height */
    object-fit: cover; /* Ensure the image maintains aspect ratio while covering the area */
  }
  
  
  
  .footer-column-5 {
    /* width: 59%; */
    /* padding: 10px; */
  }
  
  /* Email Input and Submit Button */
  .footer-input {
    padding: 10px;
    width: 100%;
    margin-bottom: 10px;
    border: none;
    border-radius: 10px;
  }
  
  .footer-column-5 h3 {
    font-size: 20px;
    margin: 0px 0px 20px 0px;
    color:white;
  }
  
  
  /* ----------------------------------------------------------- */
  
  /* Footer Icon Styling */
  .footer-icon {
    width: 25px; /* Set the width of the image */
    height: auto; /* Maintain aspect ratio of the image */
    margin-right: 10px; /* Space between the image and text */
    vertical-align: middle; /* Align image with text vertically */
  }
  
  /* Style for mobile and email with image */
  .footer-column-5 .footer-info-contact {
    display: flex;
    align-items: flex-start;
    font-size: 16px;
    margin-bottom: 20px; /* Space between lines */
  }
  
  /* Add color white to the text within the links */
  .footer-contact-link {
    color: white; /* Light white color for text */
    text-decoration: none; /* Optional: remove underline if you want */
  }
  
  
  /* ----------------------------------------------------------- */
  
  
  .submit-btn {
    background-color: #FFBE00 !important;
    color: #333;
    font-weight: 600;
    padding: 10px 20px;
    border: 2px solid #FFBE00;
    border-radius: 10px;
    cursor: pointer;
    /* width: 30%; */
    width: auto;
    margin-bottom: 35px;
  }
  
  /* .submit-btn:hover {
    background-color: #FFBE00;
  } */
  
  /* Social Media Icons */
  .social-media {
    text-align: left;
    margin-top: 20px;
  }
  .social-icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: #FFBE00;
    color: black;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 5px;
    font-size: 18px;
    transition: background-color 0.3s ease;
  }
  .social-icon:hover {
    color: white;
  }
  /* Copyright Section */
  .copyright {
    position: relative;
    width: 85%;
    text-align: center;
    padding: 15px 0 0 0;
    /* margin: 30px auto 0px; */
    color: white;
    font-weight: 500;
    border-top-width: 1px;
    border-top-style: solid;
    z-index: 1;
  }
  .copyright p {
    font-size: 18px;
    margin: 0;
  }
  
  /* Media Query for laptop View */
  @media (max-width: 1440px) and (min-width: 1024px) {
  
    .footer-container {
      max-width: 1200px;
    }
  
    /* .footer-column-3 {
      width: 60%;
    } */
  
    /* .footer-column-5 {
      width: 85%
    } */
  
    .footer-map-iframe {
      width: 380px;
    }
  
    .copyright {
        margin-top: 20px;
          width: 94%;
          margin-left: 32px;
      }
  
  }
  
  
  
  
  
  /* Media Query for Tablet View (Between 601px and 1024px) */
  @media (min-width: 601px) and (max-width: 1024px) {
  
    /* #footer {
      padding: 25px 0 !important;
      background-position-x: -620px !important;
      background-repeat: no-repeat !important;
      background-size: cover !important;
    } */
  
    .footer-container {
      display: flex !important;
      align-items: flex-start !important;
      gap: 0px;
    }
  
    .footer-column-3 {
      /* width: 45% !important; */
    }
  
    /* .footer-column-4 {
      width: 0%;
    } */
  
    /* .footer-column-5 {
      width: 50% !important;
    } */
  
    .footer-info-address {
      align-items: flex-start !important;
    }
  
    /* .footer-map-iframe {
      width: 330px !important;
    } */
  
  }
  
  
  
  
  
  /* Media Query for Mobile View */
  @media screen and (max-width: 768px) {
  
    /* #footer {
      padding: 25px 0;
      background-position-x: -872px;
      background-repeat:repeat;
      background-size: auto;
    } */
  
    /* .footer-container {
      display: flex;
      flex-direction: row;
      flex-wrap: wrap;
      align-items: center;
      padding: 10px;
    } */
  
    .footer-column {
      width: 100%;
      margin-bottom: 30px;
    }
  
    .footer-column-3 {
      width: 50%;
    }
  
    /* .footer-column-4 {
      width: 65%;
    } */
  
    .footer-column-5 h3 {
      text-align: left;
    }
  
    .footer-buttons {
      flex-direction: row;
      justify-content: space-between;
      gap: 10px;
    }
  
    .footer-button {
      width: 48%;
    }
  
    /* .footer-map-iframe {
      width: 250px;
    } */
  
    /* Footer Column 5 (Mobile) */
    /* .footer-column-5 {
      width: 100%;
    } */
  
    /* .copyright {
      position: relative;
      width: 90%;
    } */
  
    .copyright p {
      font-size: 15px;
    }
  
  }
  
  
      :root {
              --primary: #FFBE00;
              --primary-dark: #FFBE00;
              --secondary: #6c757d;
              --light: #f8f9fa;
              --dark: #212529;
              --success: #2ecc71;
              --cookie-bg: rgba(255, 255, 255, 0.98);
              --cookie-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
              --cookie-border: 1px solid rgba(0, 0, 0, 0.05);
          }
          
      /* Cookie Consent Banner */
      .cookie-consent {
              position: fixed;
              bottom: 0px;
              left: 0;
              right: 0;
              background-color: var(--cookie-bg);
              box-shadow: var(--cookie-shadow);
              border-top: var(--cookie-border);
              padding: 20px;
              z-index: 1050;
              transform: translateY(100%);
              transition: transform 0.4s ease-in-out;
          }
          
          .cookie-consent.show {
              transform: translateY(0);
          }
          
          .cookie-consent-compact {
              display: flex;
              align-items: center;
              justify-content: space-between;
              flex-wrap: wrap;
              gap: 15px;
          }
          
          .cookie-consent-text {
              flex: 1;
              min-width: 280px;
          }
          
          .cookie-consent-text h5 {
              font-weight: 600;
              margin-bottom: 8px;
              display: flex;
              align-items: center;
              gap: 8px;
          }
          
          .cookie-consent-text h5 i {
              color: var(--primary);
          }
          
          .cookie-consent-text p {
              margin-bottom: 0;
              font-size: 0.95rem;
              color: var(--secondary);
          }
          
          .cookie-consent-actions {
              display: flex;
              gap: 10px;
              flex-wrap: wrap;
          }
          
          .cookie-settings-panel {
              background-color: var(--light);
              border-radius: 8px;
              padding: 20px;
              margin-top: 20px;
              display: none;
          }
          
          .cookie-settings-panel.show {
              display: block;
          }
          
          .cookie-type {
              display: flex;
              justify-content: space-between;
              align-items: center;
              padding: 12px 0;
              border-bottom: 1px solid rgba(0, 0, 0, 0.05);
          }
          
          .cookie-type:last-child {
              border-bottom: none;
          }
          
          .cookie-type-info {
              flex: 1;
          }
          
          .cookie-type-title {
              font-weight: 600;
              margin-bottom: 4px;
              font-size: 0.95rem;
          }
          
          .cookie-type-description {
              font-size: 0.85rem;
              color: var(--secondary);
              margin-bottom: 0;
          }
          
          .form-check-input:checked {
              background-color: var(--primary);
              border-color: var(--primary);
          }
          
          .form-switch .form-check-input {
              width: 2.5em;
              height: 1.25em;
          }
          
          .form-switch .form-check-input:focus {
              box-shadow: 0 0 0 0.25rem rgba(67, 97, 238, 0.25);
          }
          
          .cookie-consent-footer {
              display: flex;
              justify-content: flex-end;
              margin-top: 20px;
              gap: 10px;
              flex-wrap: wrap;
          }
          
          .btn-cookie-primary {
              background-color: var(--primary);
              border-color: var(--primary);
              color: black;
              font-weight: 500;
              padding: 8px 16px;
              border-radius: 6px;
              transition: all 0.2s;
          }
          
          .btn-cookie-primary:hover {
              background-color: var(--primary-dark);
              border-color: var(--primary-dark);
              color: white;
              transform: translateY(-1px);
          }
          
          .btn-cookie-outline {
              background-color: transparent;
              border: 1px solid var(--secondary);
              color: var(--secondary);
              font-weight: 500;
              padding: 8px 16px;
              border-radius: 6px;
              transition: all 0.2s;
          }
          
          .btn-cookie-outline:hover {
              background-color: var(--secondary);
              color: white;
              transform: translateY(-1px);
          }
          
          .btn-cookie-link {
              color: var(--secondary);
              text-decoration: none;
              font-weight: 500;
              padding: 8px 16px;
              transition: all 0.2s;
          }
          
          .btn-cookie-link:hover {
              color: var(--dark);
          }
          
          /* Cookie Confirmation Toast */
          .cookie-toast-container {
              position: fixed;
              bottom: 20px;
              right: 20px;
              z-index: 1060;
          }
          
          .cookie-toast {
              background-color: #7dad3d;
              border-radius: 8px;
              box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
              padding: 15px 20px;
              margin-bottom: 10px;
              display: flex;
              align-items: center;
              gap: 12px;
              max-width: 350px;
              transform: translateX(400px);
              opacity: 0;
              transition: all 0.3s ease-in-out;
          }
          
          .cookie-toast.show {
              transform: translateX(0);
              opacity: 1;
          }
          
          .cookie-toast-icon {
              width: 32px;
              height: 32px;
              background-color: rgba(46, 204, 113, 0.1);
              border-radius: 50%;
              display: flex;
              align-items: center;
              justify-content: center;
              flex-shrink: 0;
          }
          
          .cookie-toast-icon i {
              color: var(--success);
              font-size: 16px;
          }
          
          .cookie-toast-content {
              flex: 1;
          }
          
          .cookie-toast-title {
              font-weight: 600;
              font-size: 0.95rem;
              margin-bottom: 2px;
          }
          
          .cookie-toast-message {
              font-size: 0.85rem;
              color: var(--light);
              margin-bottom: 0;
          }
          
          .cookie-toast-close {
              color: var(--secondary);
              background: none;
              border: none;
              padding: 0;
              font-size: 16px;
              cursor: pointer;
              opacity: 0.5;
              transition: opacity 0.2s;
          }
          
          .cookie-toast-close:hover {
              opacity: 1;
          }
          
          /* Floating Cookie Settings Button */
          .cookie-settings-floating {
              position: fixed;
              bottom: 20px;
              left: 20px;
              background-color: white;
              border-radius: 50%;
              width: 50px;
              height: 50px;
              display: flex;
              align-items: center;
              justify-content: center;
              box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
              cursor: pointer;
              z-index: 1040;
              transition: all 0.2s;
              opacity: 0;
              transform: scale(0.8);
              pointer-events: none;
          }
          
          .cookie-settings-floating.show {
              opacity: 1;
              transform: scale(1);
              pointer-events: auto;
          }
          
          .cookie-settings-floating:hover {
              transform: scale(1.05);
              box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
          }
          
          .cookie-settings-floating i {
              color: var(--primary);
              font-size: 24px;
          }
          
          /* Responsive adjustments */
          @media (max-width: 576px) {
              .cookie-consent-compact {
                  flex-direction: column;
                  align-items: flex-start;
              }
              
              .cookie-consent-actions {
                  width: 100%;
                  justify-content: space-between;
              }
              
              .cookie-consent-footer {
                  justify-content: space-between;
              }
              
              .cookie-settings-panel {
                  padding: 15px;
              }
          }
      
  