html, body {
  /* Use min-height instead of fixed height */
  min-height: 100%;
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}

body {
  display: flex;
  flex-direction: column;
  /* Allow body to grow taller than the screen, enabling scrolling */
  height: auto;
}


.wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
}

header {
    background-color: #3f3e3e;
    color: white;
    padding: 1rem 0;
    text-align: center;
}

nav {
    display: flex;
    justify-content: center;
    background-color: #444;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li {
    position: relative;
}

nav ul li a {
    display: block;
    padding: 14px 14px;
    text-decoration: none;
    color: white;
}

nav ul li a:hover, .dropdown:hover .dropbtn {
    background-color: #555;
}


/* Main Dropdown */
.dropdown {
  display: inline-block;
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #444;
  min-width: 160px;
  box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
  z-index: 1000;
}

.dropdown-content a {
  color: white;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdown-content a:hover {
  background-color: #555;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* Submenu */
.dropdown-submenu {
  position: relative;
}

.dropdown-submenu > a {
  position: relative;
  padding-right: 20px; /* Space for submenu arrow */
}

.dropdown-submenu > a::after {
  content: ""; /* Right arrow */
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
}

/* Submenu Content */
.dropdown-subcontent {
  display: none;
  position: absolute;
  left: 100%;
  top: 0;
  background-color: #555;
  min-width: 180px;
  box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
  z-index: 1000;
}

.dropdown-subcontent a {
  color: white;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdown-subcontent a:hover {
  background-color: #666;
}

/* Ensure the sub-dropdown appears */
.dropdown-submenu:hover > .dropdown-subcontent {
  display: block;
}


main {
    padding: 1rem;
    flex: 1;
}

.product-category {
    margin: 2rem 0;
    display: none;
}

.product-category h2 {
    text-align: center;
    margin-bottom: 1rem;
}
.category-group{
  text-align: center;
  margin-bottom: 1rem;
}

.category-group h3 {
  font-size: 24px;
  margin-bottom: 20px;
}

.product-row {
  display: flex;
  flex-wrap: wrap;
  gap: 80px;
  justify-content: center; /* Center items horizontally */
  align-items: center; /* Center items vertically */
  margin: 0 auto; /* Center the product-row container */
  max-width: 1200px; /* Optional: Set a max-width to limit container width */
  /*grid-template-columns: repeat(2, 1fr);*/
}

.product-item {
  flex: 1 1 calc(15% - 20px); /* Adjusted width to make items smaller */
  box-sizing: border-box;
  border: 1px solid #ddd;
  padding: 5px; /* Adjusted padding for a smaller content area */
  border-radius: 5px;
  text-align: center;
  transition: transform 0.3s ease;
  max-width: 200px; /* Optional: Set a maximum width for smaller boxes */
}

.product-item img {
  max-width: 100%;
  height: auto;
  margin-bottom: 10px;
}

.product-item h4 {
  margin: 10px 0;
  font-size: 16px; /* Adjusted font size */
}

.product-item p {
  font-size: 18px; /* Adjusted font size */
  color: #555;
}

.product-item:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .product-item {
      flex: 1 1 calc(33.33% - 20px); /* 3 items per row */
  }
}

@media (max-width: 768px) {
  .product-item {
      flex: 1 1 calc(50% - 20px); /* 2 items per row */
  }
}

@media (max-width: 480px) {
  .product-item {
      flex: 1 1 100%; /* 1 item per row */
  }
}
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 1rem 0;
}

/* Show all products by default */
#all-products {
  display: block;
}

body {
    font-family: Arial, sans-serif;
    background-color: #fff;
    margin: 0;
    padding: 0;
}
  
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #e2e2e2cb;
    border-bottom: 1px solid #e6e6e6;
}
  
.logo {
    height: 80px;
    padding-left: 60%;
}
  
.nav a {
    margin: 0 10px;
    text-decoration: none;
    color: #393c41;
    font-weight: bold;
}
  
.main-content {
    display: flex;
    justify-content: space-between;
    padding: 20px;
}
  
.product-details {
    padding-right: 5%;
    max-width: 30%;
}
 
.product-image  {
    max-width: 60%;
    height: auto;
}
  
.lens-stats {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
}
  
.lens-stats div {
    text-align: center;
}
  
.lens-stats div span {
    display: block;
    font-size: 12px;
    color: #5c5e62;
}
  
#otherFieldDiv {
    margin-top: 10px;
    display: none; /* Initially hidden */
}
  
/* Expand the container to take more space */
.software-table {
  max-width: 90%;
  margin: 0 auto;
  background: #fff;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px; /* Soft rounded corners */
}

/* Full width table with spacing between cells */
table {
  width: 100%;
  border-collapse: separate; /* Allows the use of border-spacing */
  border-spacing: 10px 10px; /* 10px space between cells horizontally and vertically */
  margin-bottom: 20px;
}

/* Styling table headers */
th {
  background-color: #f2f2f2;
  text-align: left;
  padding: 12px;
  font-weight: bold;
  border-bottom: 2px solid #ddd;
}

/* Styling table rows and cells */
td {
  padding: 12px;
  background-color: #f9f9f9; /* Optional: light background for cells */
  border: 1px solid #ddd;
  border-radius: 5px; /* Optional: soft rounded corners for cells */
}

/* Style links */
td a {
  color: #0066cc;
  text-decoration: none;
}

td a:hover {
  text-decoration: underline;
}

/* Responsive table: Adjust for smaller screens */
@media (max-width: 768px) {
  .software-table {
      max-width: 100%;
      padding: 10px;
  }
  table, th, td {
      font-size: 14px;
  }
}

a {
    color: #007BFF;
    text-decoration: none;
    white-space: nowrap;
}
a:hover {
    text-decoration: underline;
}

* {box-sizing:border-box}

/* Slideshow container - Dynamically adjusts size */
.slideshow-container {
  max-width: 1000px; /* Set max width */
  width: 100%;
  position: relative;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden; /* Prevents content from overflowing */
}

/* Each Slide - Automatically adjusts height based on content */
.mySlides {
  display: none;
  position: relative;
  width: 100%;
  max-width: 1000px;
  height: auto; /* Ensures it adapts to content */
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Ensure images fit properly without stretching */
.mySlides img {
  max-width: 100%;  /* Limits width to container */
  max-height: 90vh; /* Prevents image from being too large */
  width: auto;      /* Maintains aspect ratio */
  height: auto;
  display: block;
  margin: auto;
  object-fit: contain; /* Ensures full visibility */
}

/* Ensure videos fit properly without stretching */
.mySlides video {
  max-width: 100%;
  max-height: 90vh; /* Prevents video from being too large */
  width: auto;
  height: auto;
  display: block;
  margin: auto;
  object-fit: contain; /* Ensures full visibility */
}

/* Caption text */
.text {
  color: #131010;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
  font-style: italic;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #0c07079a;
  font-size: 15px;
  font-style: italic;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* Navigation buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%; /* Moves button too high, needs correction */
  transform: translateY(-50%); /* Centers button properly */
  width: 40px;
  height: 40px;
  padding: 10px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.5);
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000; /* Ensures buttons are above images */
}

/* Adjust left and right positioning */
.prev {
  left: 10px; /* Moves button from edge */
}

.next {
  right: 10px; /* Moves button from edge */
}

/* Hover effect */
.prev:hover, .next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}



/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

/* Popup container - hidden by default */
.popup-slide {
  display: none; /* All slides hidden by default */
  text-align: center;
  width: 100%;
  height: 100%;
}

/* Ensure media fits correctly */
.popup-slide img, 
.popup-slide video {
  width: 100%;
  height: 100%;
  object-fit: contain; /* Ensures media fills the space without distortion */
}

/* Popup component styles */
.popup-component {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: auto; /* Adjust width dynamically */
  height: auto; /* Adjust height dynamically */
  max-width: 90%;
  max-height: 90%;
  background: white;
  overflow: hidden;
  z-index: 1000;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  padding: 20px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}


/* Navigation buttons */
.popup-prev,
.popup-next {
position: absolute;
top: 50%;
font-size: 30px;
color: white;
padding: 16px;
cursor: pointer;
background-color: rgba(0, 0, 0, 0.5);
border-radius: 50%;
user-select: none;
transform: translateY(-50%);
}

.popup-prev {
left: 20px;
}

.popup-next {
right: 20px;
}

/* Close button */
.popup-close {
position: absolute;
top: 10px;
right: 10px;
font-size: 30px;
cursor: pointer;
background: rgba(0, 0, 0, 0.5);
color: white;
padding: 5px 10px;
border-radius: 50%;
}


.variant-options {
  display: flex; /* Changed from position: flex; */
  top: 20px; /* Adjust the top margin if needed */
  background-color: white; /* Set a background color to avoid overlap */
  padding: 10px; /* Add some padding for aesthetics */
  z-index: 1000; /* Make sure it's on top of other elements */
  width: 100%; /* Span across the width */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Optional: Add a shadow for separation */
}

/* Hide the sections, but maintain their space */
.hidden-sectionlamp100 {
  visibility: hidden; /* Make it invisible but still take up space */
  height: 0; /* Collapse height */
  overflow: hidden; /* Hide overflow */
  transition: visibility 0.2s, height 0.2s; /* Smooth transition */
}

/* When active, show the section */
.hidden-sectionlamp100.active {
  visibility: visible;
  height: auto; /* Restore height */
  overflow: visible; /* Ensure contents are visible */
  background-color: transparent; /* Keep the background transparent */
}

/* Styling the radio buttons */
.options {
  margin-bottom: 10px; /* Add some spacing between options */
}

.hidden-sectionlamp75 {
  visibility: visible; /* Default: visible */
  height: auto; /* Default: height auto */
  overflow: visible; /* Ensure contents are visible */
  background-color: transparent; /* No background color */
}

.lamp-options {
  display: flex; /* Changed from position: flex; */
  top: 20px; /* Adjust the top margin if needed */
  background-color: white; /* Set a background color to avoid overlap */
  padding: 10px; /* Add some padding for aesthetics */
  z-index: 1000; /* Make sure it's on top of other elements */
  width: 100%; /* Span across the width */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Optional: Add a shadow for separation */
}
.hidden-sectionlamp24 {
  visibility: hidden; /* Make it invisible but still take up space */
  height: 0; /* Collapse height */
  overflow: hidden; /* Hide overflow */
  transition: visibility 0.2s, height 0.2s; /* Smooth transition */
}

.hidden-sectionlamp24.active {
  visibility: visible;
  height: auto; /* Restore height */
  overflow: visible; /* Ensure contents are visible */
  background-color: transparent; /* Keep the background transparent */
}

/* Container to hold the language switcher and align it to the right */
.language-switcher {
  display: flex;             /* Flexbox layout */
  justify-content: flex-end; /* Align items to the right */
  list-style-type: none;     /* Remove list style (bullets) */
  padding: 0;
  margin: 0;
}

/* Spacing between buttons */
.language-switcher li {
  margin-left: 10px;
}

/* Button styles */
.lang-button {
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 5px;
  background-color: #d1a411b0;
  color: white;
  font-size: 16px;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.lang-button:hover {
  background-color: #baca27;
  transform: translateY(-3px);
}

.lang-button:active {
  background-color: #3e8e41;
  transform: translateY(1px);
}

.lang-button:focus {
  outline: none;
  box-shadow: 0 0 5px #bcc909;
}

/* Color variations for the first button */
.language-switcher li:first-child .lang-button {
  background-color: #2196F3;
}

.language-switcher li:first-child .lang-button:hover {
  background-color: #0b7dda;
}

.language-switcher li:first-child .lang-button:active {
  background-color: #065a9e;
}

.productname-display {
  display: flex;             /* Flexbox layout */
  justify-content: center;   /* Align items to center */
  list-style-type: none;     /* Remove list style (bullets) */
  padding: 0;
  margin: 0;
}

/* Basic styles for the modal */
/* Modal Background */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1000; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgba(0,0,0,0.5); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
  background-color: #fefefe;
  margin: 10% auto; /* 10% from the top and centered */
  padding: 20px;
  border: 1px solid #888;
  width: 80%; /* Could be more or less, depending on screen size */
  max-width: 500px;
  border-radius: 5px;
}

/* Close Button */
.modal-content button {
  margin-top: 10px;
}

.basket {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.basket h2 {
  display: flex; /* Changed from position: flex; */
}
.basket-item {
  padding: 50px;
  background-color: #ffffff;
  border: 1px solid #ddd;
  border-radius: 5px;
  margin-bottom: 20px;
  text-align: left;
}

.basket-item h2 {
  display: flex; /* Changed from position: flex; */
}
.basket-item h3 {
  margin-bottom: 10px;
}

.basket-item ul {
  padding-left: 8px;
}

.basket-item ul li {
  margin-bottom: 5px;
}

.btn {
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
}

.btn-success {
  background-color: #28a745;
  color: white;
  border: none;
}

.btn-success:hover {
  background-color: #218838;
}

.btn-danger {
  background-color: #dc3545;
  color: white;
  border: none;
}

.btn-danger:hover {
  background-color: #c82333;
}

/* Modal Styles */
.modal {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto; /* Enable scroll if needed */
  background-color: rgba(0, 0, 0, 0.4); /* Black background with opacity */
  padding-top: 60px;
}

/* Modal Content */
.modal-content {
  background-color: #fefefe;
  margin: 5% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%; /* Adjust the size of the modal */
}

/* Close Button */
.close {
  color: #aaa;
  font-size: 28px;
  font-weight: bold;
  position: absolute;
  top: 0;
  right: 25px;
  padding: 0;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4); /* Black background with transparency */
}

/* Modal Content */
.modal-content {
  background-color: #fff;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 40%;
  border-radius: 8px;
}

/* Close Button */
.modal-close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.modal-close:hover {
  color: #000;
}

/* General Table Styles */
.custom-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 18px;
  text-align: left;
}

.custom-table th, .custom-table td {
  padding: 12px 15px;
  border: 1px solid #ddd;
}

.custom-table th {
  background-color: #f4f4f4;
  font-weight: bold;
}

.custom-table tbody tr:nth-child(even) {
  background-color: #f9f9f9;
}

/* Button Styles */
.custom-btn {
  display: inline-block;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin: 10px 5px;
}

.primary-btn {
  background-color: #007bff;
  color: #fff;
}

.success-btn {
  background-color: #28a745;
  color: #fff;
}

.danger-btn {
  background-color: #dc3545;
  color: #fff;
}

.custom-btn:hover {
  opacity: 0.9;
}

/* Modal Styles */
.custom-modal {
  display: none;
  position: fixed;
  z-index: 1050;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 90%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
}

.custom-modal-content {
  background-color: #615b5bbd;
  margin: auto;
  padding: 20px;
  border-radius: 10px;
  width: 50%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.custom-modal-close {
  color: #333;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.custom-modal-close:hover {
  color: #000;
}

.modal-header {
  text-align: center;
  margin-bottom: 20px;
  font-size: 22px;
  font-weight: bold;
}

/* Form Styles */
.custom-form .form-group {
  margin-bottom: 15px;
}

.custom-form label {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
}

.custom-form input,
.custom-form textarea {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.custom-form textarea {
  resize: none;
}

.form-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.empty-basket-message {
  text-align: center;
  font-size: 18px;
  color: #000000;
  margin-top: 20px;
  font-weight: bold;
}



/* ---------- Custom Overrides: custom-overrides.css ---------- */

/* Ensure the entire page background is white */
html, body {
  background-color: #fff !important;
  margin: 0;
  padding: 0;
  font-family: 'Open Sans', sans-serif;
}
/* Use a high-specificity container to override inherited backgrounds */
#white-bg-wrapper {
  background-color: #fff !important; /* Force white background */
  color: #111;  /* Dark text for readability */
  width: 100%;
  padding: 0;
}

/* Optional: Adjust your content container if needed */
.content-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
  background-color: transparent; /* Remove any additional box styling */
}

/* ------ Your Existing Tabbed Navigation and Content Styles ------ */

/* Navigation Tabs */
.tab-menu {
  border-bottom: 1px solid #ccc;
  margin-bottom: 20px;
}

.tab-menu ul {
  list-style: none;
  display: flex;
  align-items: center;
  padding: 10px 0;
}

.tab-menu ul li {
  margin-right: 30px;
  font-size: 20px;
  color: #fffcfd;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  padding: 10px 20px;
  background-color: transparent;
  border: 2px solid #fffcfd;
  border-radius: 5px;
}

.tab-menu ul li:hover {
  background-color: #fffcfd;
  color: #333;
}

.tab-menu ul li.active {
  background-color: #fffcfd;
  color: #333;
  font-weight: bold;
}


/* Content Sections */
.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
}

/* Headings & Paragraphs */
.section-title {
  font-size: 25px;
  margin-top: 60px;
  margin-bottom: 25px;
  color: #111;
}

.section-subtitle {
  font-size: 25px;
  margin-top: 60px;
  margin-bottom: 25px;
  color: #111;
}

.section-text {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #333;
  text-align: left; /* Changed from justify to left */
  font-family: 'Open Sans', sans-serif;
}

.section-text {
  font-size: 16px;
  margin-bottom: 20px;
  color: #080808;
  text-align: justify;
}

/* Lists */
.styled-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
 
}

.styled-list li {
  font-size: 20px;
  margin-bottom: 6px;
  color: #333;
  
}

.styled-list1 li {
  font-size: 16px;
  margin-bottom: 6px;
  color: #0f0f0f;
}


 
/* Additional Responsive Overrides */
@media (max-width: 1024px) {
  /* Adjust header and logo so they center correctly */
  .header {
    flex-direction: column;
    align-items: center;
  }
  .logo {
    padding-left: 0;  /* Remove the 60% padding */
    margin: 0 auto;
  }
  /* Allow the nav items to wrap if needed */
  nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }
  /* Make the main content stack vertically */
  .main-content {
    flex-direction: column;
    padding: 10px;
  }
}

@media (max-width: 768px) {
  /* Stack navigation vertically */
  nav ul {
    flex-direction: column;
    align-items: center;
  }
  /* Reduce padding in header and main content */
  .header,
  .main-content {
    padding: 10px;
  }
  /* Adjust product details to use full width */
  .product-details,
  .product-image {
    max-width: 100%;
    padding: 0;
  }
  /* Reduce gap for product grid */
  .product-row {
    gap: 10px;
  }
  /* Display 2 products per row */
  .product-item {
    flex: 1 1 calc(50% - 10px);
  }
}

@media (max-width: 480px) {
  /* For very small screens, stack nav links and adjust padding */
  nav ul {
    flex-direction: column;
  }
  nav ul li a {
    padding: 8px 10px;
  }
  /* Display one product per row */
  .product-item {
    flex: 1 1 100%;
  }
}

/* --- Responsive Adjustments for Larger Screens --- */

@media (max-height: 720px) {
  .header {
    flex-direction: column;
    align-items: center;
  }
  .logo {
    padding-left: 0;
    margin: 0 auto;
  }
  nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* --- Pinned Footer Patch (append at the end) --- */
footer {
  position: fixed !important;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 9999; /* Ensures the footer is above other elements */
  /* Keep your existing background-color, padding, etc. */
}

/* Reserve space at the bottom so content isn't hidden behind the fixed footer.
   Match this padding to your footer's approximate height. */
body {
  padding-bottom: 60px; /* Adjust to your footer’s height (in px) */
}
