/* General Styles */
body {
  font-family: Arial, sans-serif;
  background-color: #2b2b2b;
  color: #fff;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* Sticky Main Menu */
.main-menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #3e3e3e;
  padding: 10px 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  height: 40px;
  max-width: 100%;
}

.menu-links a {
  color: white;
  text-decoration: none;
  margin: 0 10px;
  font-weight: bold;
  transition: color 0.3s ease;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.menu-links a:hover {
  color: #d9534f;
}

/* Brand Section */
.brand-page {
  text-align: center;
  padding: 10px;
}

/* Flexbox for aligning brand logo and title */
.brand-header {
  display: flex;
  align-items: center;  /* Aligns logo and text in the middle */
  gap: 15px;  /* Space between logo and text */
  justify-content: center; /* Keeps everything centered */
}

/* Default brand logo size */
.brand-logo {
  width: 200px;
  height: 100px;
}
/* Responsive: Stack elements & shrink image on smaller screens */
@media (max-width: 768px) {
  .brand-header {
      flex-direction: column;  /* Stack image and title on mobile */
      text-align: center;
  }
  
  .brand-logo {
      width: 100px;  /* Reduce to 50% width */
      height: 50px;  /* Reduce to 50% height */
  }
  .brand-header h1 {
    margin: 5px 0;  /* Reduce top and bottom spacing */
    font-size: 20px; /* Slightly smaller font if needed */
}
}
/*
.brand-description {
  font-size: 16px;
  line-height: 1.5;
  width: 65%; /* Default for wide screens 
  margin: 0 auto; /* Centering 
}
*/
/* Brand Sale Row */
.brand-sale {
  text-align: center;
  background-color: #d9534f;
  padding: 10px;
  margin: 20px;
  border-radius: 5px;
  font-weight: bold;
}

.shop-button {
  display: inline-block;
  background-color: #fff;
  color: #d9534f;
  padding: 5px 15px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.shop-button:hover {
  background-color: #d9534f;
  color: white;
}

/* Product Listings */
.product-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  padding: 20px;
}

.product {
  text-align: center;
  background-color: #ffffff;
  padding: 10px;
  border-radius: 5px;
  width: 100%;
  max-width: 300px;
  transition: transform 0.3s ease;
}

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

.product img {
  display: block;
  margin: 0 auto;
  border-radius: 5px;
  max-width: 100%;
}

.product a {
  text-decoration: none;
  color: white;
  display: block;
  margin-top: 5px;
  font-size: 14px;
}
.product a span {
  display: inline-block; /* Allows padding and border styling */
  background-color: #333; /* Dark background for contrast */
  color: white; /* White text */
  font-weight: bold; /* Make text stand out */
  padding: 10px 15px; /* Button-like padding */
  margin-top: 10px; /* Space between the image and text */
  text-align: center; /* Center the text */
  border-radius: 5px; /* Rounded button corners */
  text-decoration: none; /* Remove default underline */
  transition: background-color 0.3s ease-in-out; /* Smooth hover effect */
}

.product a span:hover {
  background-color: #555; /* Slightly lighter on hover */
  cursor: pointer; /* Show hand cursor to indicate clickability */
}


/* Highlighted Sale Product */
.highlight {
  border: 3px solid red;
  position: relative;
}

.sale-tag {
  position: relative;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background-color: red;
  color: white;
  padding: 3px 10px;
  font-size: 12px;
  font-weight: bold;
  border-radius: 3px;
  display: inline-block;
}

/* Footer */
footer {
  text-align: center;
  background-color: #3e3e3e;
  padding: 15px 0;
  margin-top: 20px;
}

.social-icons img {
  width: 30px;
  margin: 0 10px;
}

.footer-links a {
  color: white;
  text-decoration: none;
  margin: 0 10px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #d9534f;
}

/* Responsive Design */
@media (max-width: 768px) {
  .menu-links {
    flex-direction: column;
    align-items: center;
    margin-top: 10px;
  }

  .brand-page {
    padding: 10px;
  }

  .brand-description {
    font-size: 14px;
    width: 95%;
  }

  .product-list {
    flex-direction: column;
    align-items: center;
  }

  .product {
    width: 90%;
    max-width: 100%;
  }

  .logo {
    height: 30px;
  }

  .menu-links a {
    margin: 10px 0;
  }
}

@media (max-width: 480px) {
  .brand-description {
    font-size: 12px;
    width: 95%;
  }

  .product {
    max-width: 100%;
  }

  .product img {
    max-width: 90%;
  }

  .social-icons img {
    width: 25px;
  }
}

/* Shopping Buttons Row */
.brand-shopping {
text-align: center;
margin: 20px 0;
}

.brand-shopping .shop-button {
display: inline-block;
margin: 10px;
padding: 10px 20px;
font-size: 16px;
font-weight: bold;
border-radius: 5px;
text-decoration: none;
}

.brand-site {
background-color: #007bff;
color: white;
transition: background-color 0.3s ease;
}

.brand-site:hover {
background-color: #0056b3;
}

.amazon-site {
background-color: #ff9900;
color: white;
transition: background-color 0.3s ease;
}

.amazon-site:hover {
background-color: #cc7a00;
}
/* Brand Social Links */
.brand-social {
text-align: center;
margin: 30px 0;
padding: 20px;
background-color: #3e3e3e;
border-radius: 5px;
}

.brand-social p {
font-size: 18px;
font-weight: bold;
margin-bottom: 10px;
}

.brand-social a {
display: inline-block;
margin: 0 10px;
}

.brand-social img {
width: 40px;
transition: transform 0.3s ease;
}

.brand-social img:hover {
transform: scale(1.1);
}
.youtube-site {
background-color: #ff0000;
color: white;
transition: background-color 0.3s ease;
}

.youtube-site:hover {
background-color: #cc0000;
}
/* Promo Codes Section */
.promo-codes {
text-align: center;
background-color: #444;
color: white;
padding: 15px;
margin: 20px auto;
border-radius: 5px;
max-width: 600px;
}

.promo-codes h2 {
font-size: 20px;
margin-bottom: 10px;
color: #ffd700;
}

/* Promo Codes Grid */
.promo-list {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 15px;
}

.promo-item {
background-color: #555;
padding: 10px;
border-radius: 5px;
flex: 1 1 250px;
max-width: 250px;
text-align: center;
}

.promo-description {
font-size: 16px;
font-weight: bold;
margin-bottom: 5px;
}

.promo-expiration {
font-size: 14px;
font-style: italic;
}

/* Adjust product-display for responsiveness */
@media (max-width: 768px) {
.product-display {
  width: 90%;
  padding: 10px;
  background-color: #a9a9a9;
  margin: 20px auto;
  box-sizing: border-box;
}

.product-display img {
  width: 100%;
  max-width: 400px;
  height: auto;
}
}

@media (max-width: 480px) {
  .product-display {
      width: 90% !important;
      padding: 10px !important;
      margin: 20px auto !important;
  }
  .product-display img {
      width: 40% !important;
      margin: auto !important;
  }
}
.brands-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 20px;
}
.brand-row {
  text-align: center;
  background-color: #444;
  padding: 20px;
  border-radius: 5px;
  margin-bottom: 20px; /* More space */
}

.brand-row:not(:last-child)::after {
  content: "";
  display: block;
  height: 2px;
  width: 80%;
  background-color: #b1953b;
  margin: 30px auto; /* More space */
}
.product-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 10px;
}
.product-item {
  text-align: center;
  background-color: white;
  padding: 10px;
  border-radius: 5px;
}
.product-item img {
  display: block;
  margin: 0 auto;
  border-radius: 5px;
  max-width: 100%;
  cursor: pointer;
}
.product-name a {
  color: black;
  text-decoration: none;
  font-weight: bold;
}
.product-name a:hover {
  text-decoration: underline;
  color: #444;
}
.brand-row h2 a {
  color: white;
  font-weight: bold;
  text-decoration: none;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 8px 15px;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
  transition: background-color 0.3s, transform 0.2s;
}
.brand-row h2 a:hover {
  text-decoration: underline;
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.9);
  transform: scale(1.05);
}
.brand-selector {
  text-align: center;
  position: sticky;
  top: 50px;
  background-color: #3e3e3e;
  padding: 10px;
  z-index: 1000;
}
.menu-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}
.menu-toggle span {
  background: white;
  height: 3px;
  margin: 4px;
  width: 25px;
}
.menu-links a {
  margin: 0 10px;
  text-decoration: none;
  color: white;
  font-weight: bold;
}
@media (max-width: 768px) {
  .menu-links {
      display: none;
      flex-direction: column;
      width: 100%;
      background: #3e3e3e;
      text-align: center;
      padding: 10px 0;
  }
  .menu-links.active {
      display: flex;
  }
  .menu-toggle {
      display: flex;
  }
}
.brand-sale {
  text-align: center;
  background-color: #d9534f;
  color: white;
  padding: 10px;
  margin: 20px auto;
  border-radius: 5px;
}
.sale-text {
color: red;
font-weight: bold;
margin-left: 5px;
}
/* Brand Social Links */
.brand-social {
  text-align: center;
  margin: 30px 0;
  padding: 20px;
  background-color: #3e3e3e;
  border-radius: 5px;
}

.brand-social p {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}

.brand-social a {
  display: inline-block;
  margin: 0 10px;
}

.youtube-site {
  background-color: #ff0000;
  color: white;
  transition: background-color 0.3s ease;
}

.youtube-site:hover {
  background-color: #cc0000;
}

/* Promo Codes Section */
.promo-codes {
  text-align: center;
  background-color: #444;
  color: white;
  padding: 15px;
  margin: 20px auto;
  border-radius: 5px;
  max-width: 600px;
}

.promo-codes h2 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #ffd700;
}

/* Promo Codes Grid */
.promo-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.promo-item {
  background-color: #555;
  padding: 10px;
  border-radius: 5px;
  flex: 1 1 250px;
  max-width: 250px;
  text-align: center;
}

.promo-description {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 5px;
}

.promo-expiration {
  font-size: 14px;
  font-style: italic;
}
.filters-button {
  color: white;
  font-weight: bold;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
  border: none;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s;
  display: inline-block;
  margin-top: 20px;
  text-align: center;
}

.filters-button:hover {
  text-decoration: underline;
  transform: scale(1.05);
}

/* Red button */
.filters-button.red {
  background-color: red;
}

.filters-button.red:hover {
  background-color: rgba(255, 0, 0, 0.8);
}

/* Blue button */
.filters-button.blue {
  background-color: blue;
}

.filters-button.blue:hover {
  background-color: rgba(0, 0, 255, 0.8);
}

/* Green button */
.filters-button.green {
  background-color: green;
}

.filters-button.green:hover {
  background-color: rgba(0, 128, 0, 0.8);
}
/*
        .menu-links {
            display: flex;
            justify-content: center;
            gap: 20px;
        }
            */
.back-to-camo {
 text-align: center;
 margin: 10px 0;
font-size: 14px;
}
.back-to-camo a {
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
}
.back-to-camo a:hover {
 text-decoration: underline;
}
          
.dropdown {
  text-align: center;
  margin: 10px 0;
}
.dropdown select {
  padding: 5px;
  font-size: 14px;
  border-radius: 5px;
  border: 1px solid #ccc;
}
.footer-copyright {
  font-size: 14px;
  text-align: center;
  margin-bottom: 10px;
  color: white; /* Adjust color as needed */
}              
/* Brand Links Section 
.brand-links {
  text-align: center;
  margin: 20px auto;
  padding: 15px;
  background-color: #444;
  border-radius: 5px;
  max-width: 600px;
}

.brand-links p {
  font-size: 16px;
  margin: 10px 0;
}

.brand-links a {
  color: #ffd700;  Gold color for contrast 
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s ease;
}

.brand-links a:hover {
  color: #ffa500;  Slightly darker gold/orange on hover 
  text-decoration: underline;
}*/
/* Store Sales Section */
.store-sales {
  text-align: center;
  margin: 20px auto;
  padding: 15px;
  background-color: #444;
  border-radius: 5px;
  max-width: 600px;
}

.store-sales p {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
  color: white;
}

/* Store Buttons */
.store-button {
  display: inline-block;
  padding: 10px 20px;
  margin: 5px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
  color: white;
  background-color: #007bff;
  transition: background-color 0.3s ease-in-out, transform 0.2s;
}

.store-button:hover {
  background-color: #0056b3;
  transform: scale(1.05);
}

/* Responsive Layout */
@media (max-width: 768px) {
  .store-sales {
      max-width: 90%;
  }
  .store-button {
      padding: 8px 16px;
      font-size: 14px;
  }
}

/* Additional Styles - Merged from Snippet */
.menu-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    padding: 10px;
    position: relative;
}
.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    margin: 4px;
    background-color: #000;
}
@media (max-width: 768px) {
    .menu-links {
        display: none;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    .hamburger {
        display: flex;
    }
    .menu-links.active {
        display: flex;
    }
    .product-display {
        justify-content: center;
        align-items: center;
        margin: 20px auto;
        width: 100%;
        background-image: url('background1.jpg');
        background-size: cover;
        background-position: center;
        height: auto;
        max-height: none;
    }
    .sale-container .sale-button, .sale-container .shop-button, .sale-container .amazon-button {
        font-size: 11px;
        padding: 2.5px 6.65px;
    }
}
.center-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px 0;
    gap: 15px;
}
.back-to-camo a {
    color: white;
    font-weight: bold;
    text-decoration: none;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 8px 15px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    transition: background-color 0.3s, transform 0.2s;
}
.back-to-camo a:hover {
    background-color: rgba(255, 255, 255, 0.9);
    color: black;
    transform: scale(1.05);
}
.back-to-brand a {
  color: white;
  font-weight: bold;
  text-decoration: none;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 8px 15px;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
  transition: background-color 0.3s, transform 0.2s;
}
.back-to-brand a:hover {
  background-color: rgba(255, 255, 255, 0.9);
  color: black;
  transform: scale(1.05);
}
.product-display {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 900px;
    height: auto;
}
.product-background {
    flex-grow: 1;
    width: 100%;
    height: auto;
    max-height: 90vh;
    min-width: 600px;
    min-height: 400px;
}
.product-image {
    position: relative;
    width: 20%;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 80%;
}
.product-title {
    font-size: 24px;
    font-weight: bold;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    text-align: center;
}
.simulation-instruction {
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  margin: 5px auto; /* Reduced from 20px */
  padding: 5px; /* Reduced from 10px */
  color: white;
  background-color: #444;
  border-radius: 5px;
  max-width: 600px;
}
/* Feature Container - Groups brands under each feature */
.feature-container {
  background-color: #3e3e3e; /* Matches other section backgrounds */
  padding: 20px;
  margin: 30px auto;
  border-radius: 5px;
  max-width: 90%;
}

/* Feature Title - Header for each feature grouping */
.feature-title {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  color: #ffd700; /* Gold color for contrast */
  text-transform: uppercase;
  margin-bottom: 20px;
  border-bottom: 2px solid #d9534f; /* Red underline for emphasis */
  padding-bottom: 5px;
}
.ad_zone {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  text-align: center;
  margin: 10px 0;
}
.ad_zone img {
  max-width: 100%;
  height: auto;
}
.brand-links a {
  color: inherit; /* Ensures that links inside brand-links do not override button styling */
}

.brand-button {
  display: inline-block;
  background-color: #ffcc00; /* Bright yellow */
  color: #000000 !important; /* Force black text for better contrast */
  font-weight: bold;
  padding: 10px 15px;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
  border: 2px solid #000;
}

.brand-button:hover {
  background-color: #ff9900; /* Darker yellow on hover */
  color: #ffffff !important; /* Force white text on hover for contrast */
}
.brand-nonactivelink {
  font-size: 14px;
  color: #777; /* Lighter gray for subtlety */
}

.brand-nonactivelink a {
  text-decoration: underline;
  color: #555;
}

.brand-nonactivelink a:hover {
  color: #333;
}
.navigation-links {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.pattern-actions {
    margin-top: 4px;
    text-align: center;
}

.compare-link {
    display: inline-block;
    padding: 4px 8px;
    font-size: 0.85em;
    background: #333;   /* dark background */
    border-radius: 4px;
    text-decoration: none;
    color: #fff;        /* white text */
    font-weight: 500;
}

.compare-link:hover {
    background: #111;   /* darker hover */
}