/* Reset default margin, padding, and box-sizing */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* General Body and HTML settings */
body, html {
  min-height: 100%;
  font-family: Arial, sans-serif;
  background-color: black;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

/* Navbar styles */
.navbar {
  width: 100%;
  background-color: black;
  padding: 10px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3;
}

.navbar .logo {
  margin-left: 20px;
  display: flex;
  align-items: center;
}

.navbar .logo img {
  height: 40px;
  margin-right: 10px;
}

/* Desktop navigation */
.desktop-nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 20px;
}

.desktop-nav a {
  color: white;
  text-decoration: none;
  font-size: 18px;
}

.desktop-nav a:hover {
  color: #aaa;
}

/* Menu icon styling for mobile */
.menu-icon {
  font-size: 24px;
  color: white;
  cursor: pointer;
  display: none;
  padding: 10px;
}

/* Slide-out menu styling for mobile */
.slide-out-menu {
  position: fixed;
  top: 0;
  left: -250px;
  width: 250px;
  height: 100%;
  background-color: black;
  color: white;
  display: flex;
  flex-direction: column;
  padding-top: 60px;
  transition: left 0.3s ease;
  z-index: 4;
}

.slide-out-menu nav a {
  color: white;
  text-decoration: none;
  font-size: 18px;
  padding: 15px 20px;
  display: block;
}

.slide-out-menu nav a:hover {
  background-color: #333;
}

/* Video container settings */
.video-container {
  width: 100vw;
  height: 40vh;
  overflow: hidden;
  z-index: 1;
  margin-top: 60px; /* Space for the fixed navbar */
  position: relative;
}

.video-container video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
  height: auto;
}

.video-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 70%, rgba(0, 0, 0, 1) 100%);
  pointer-events: none;
}

/* Support Section Styling */
.support-section {
  display: flex;
  flex-direction: column; /* Stack elements vertically */
  align-items: center;
  width: 100%;
  margin-top: 20px; /* Space below the video container */
  padding: 20px;
}

.support-column {
  width: 90%; /* Take up most of the width on smaller screens */
  text-align: center;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px; /* Space between support columns */
  height: auto;
}

.main-flag {
  width: 85px;
  height: 45px;
  margin-bottom: 10px;
}

.support-title {
  font-size: 24px;
  margin: 10px 0;
}

.support-description {
  font-size: 12px;
  margin-bottom: 10px;
  max-width: 100%;
  text-overflow: ellipsis;
  min-height: 40px; /* Adjust this value based on how much space you need */
}

.support-box {
  width: 100%;
  height: 100px;
  background-color: white;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Footer */
.footer {
  margin-top: auto;
  width: 100%;
  padding: 50px 0 20px 0;
  background-color: black;
  color: white;
  text-align: center;
}

/* Footer links container */
.footer-links-container {
  display: flex;
  justify-content: center;
  gap: 100px;
  margin-bottom: 20px;
}

/* Quick Links and Policies Section */
.quick-links, .our-policies {
  text-align: left;
  margin-left: 20px; /* Add left margin of 20px */
}

.quick-links h3, .our-policies h3 {
  font-size: 18px;
  color: white;
  margin-bottom: 10px;
  font-weight: bold;
}

.quick-links nav a, .our-policies nav a {
  color: white;
  text-decoration: none;
  font-size: 18px;
  display: block;
  margin: 5px 0;
}

.quick-links nav a:hover, .our-policies nav a:hover {
  color: #888;
}

.socials {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 10px;
}

.socials a i {
  font-size: 32px;
  color: white;
  transition: color 0.3s;
}

.socials a:hover i {
  color: #888;
}

.footer-text {
  font-size: 14px;
  color: #aaa;
}

/* Mobile-specific styles */
@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }

  .menu-icon {
    display: block;
    margin-left: 20px;
  }

  .footer-links-container {
    flex-direction: column;
    align-items: left;
  }
}

/* Larger screen adjustments */
@media (min-width: 768px) {
  .support-section {
    flex-direction: row; /* Arrange columns in a row for larger screens */
    justify-content: space-around;
  }

  .support-column {
    width: 45%;
  }
}

.product-card {
  display: flex;
  align-items: center;
  padding: 15px; /* Keeping original padding */
  background-color: #1a1a1a;
  border-radius: 10px;
  height: auto;
}

.product-image {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: 15px;
}

.product-image img {
  width: 120px;
  height: 120px;
}

.dimensions {
  font-size: 12px;
  color: #aaa;
  margin-top: 5px;
  text-align: center;
}

.product-info {
  display: flex;
  flex-direction: column;
  justify-content: space-around; /* Distributes items evenly to span full height */
  height: 145px; /* Set to match the height of image + dimensions */
}

.product-info {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  height: 145px; /* Matches the height of image + dimensions */
}

.availability {
  color: #28a745;

  font-size: 16px; /* Set specific font size */
  line-height: 1.4;
}

.stock-status {
  color: #ffcc00;
  font-size: 14px; /* Set specific font size */
  line-height: 1.4;
}

.product-name {
  color: #ffffff;
  font-weight: bold;
  font-size: 16px; /* Set specific font size */
  line-height: 1.4;
}

.price {
  color: green;
  font-weight: bold;
  font-size: 20px; /* Larger font size for the price */
  line-height: 1.4;
}

/* Product card hover effect */
.product-card:hover {
  transform: scale(1.05); /* Slightly enlarges the card */
  transition: transform 0.3s ease; /* Smooth transition */
}

/* Underline all text within the card on hover */
.product-card:hover .product-info p,
.product-card:hover .dimensions {
  text-decoration: underline;
}

