/* === BEGIN: compare.css === */
#compare-display {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  /*aspect-ratio: 16 / 9;  optional, helps layout */
}
.compare-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    align-items: center;
    margin: 15px auto;
}

/* Shared panel rules */
.compare-panel {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}
/* Pattern overlays centered vertically */
.compare-panel img.product-overlay {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: 90%;
  height: auto;
  z-index: 11;
}
@media (max-width: 768px) {
  .compare-panel img.product-overlay {
    max-width: 35vw;
  }
}
#left-panel {
  left: 0;
}
#right-panel {
  right: 0;
}

#left-panel img {
  left: 40%;
  transition: max-width 0.3s ease, max-height 0.3s ease, transform 0.3s ease;
}

#right-panel img {
  left: 60%;
  transition: max-width 0.3s ease, max-height 0.3s ease, transform 0.3s ease;
}
#left-panel img,
#right-panel img {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  max-height: 60%;
  width: auto;
  pointer-events: none;
  z-index: 2;
}
.shrink-active #left-panel img,
.shrink-active #right-panel img {
  max-height: 30%; /* smaller version */
}
.compare-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    aspect-ratio: 16 / 9;
    margin: 0 auto;
}

.compare-container img {
    max-width: 100%;
    height: auto;
}

.product-overlay {
    z-index: 10;
}

/* Background image always fills the entire box */
.product-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.fade {
    opacity: 0.2;
    transition: opacity 0.15s ease-in-out;
}

.store-button {
    display: inline-block;
    margin: 6px;
    padding: 8px 14px;
    font-size: 14px;
    border-radius: 4px;
    background-color: #555;
    color: #fff;
    text-decoration: none;
}

.store-button.active {
    background-color: #007800;
    /* green for affiliate */
}

.store-button.inactive {
    background-color: #444;
    opacity: 0.75;
}

@media (max-width: 768px) {
    .compare-container {
        flex-direction: column;
    }
}
/* Shrink mode */
.shrink-active .compare-panel img.product-overlay {
  max-width: 65%;
}

/* === END: compare.css === */

/* === BEGIN: pattern_css_4_0.css === */



/*
.center-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px; /* Adjust spacing between elements 
}*/

#vision-button {
    background-color: orange;
    color: white;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#vision-button.human {
    background-color: green; /* Change to green when in Human Vision mode */
}

#shrink-button {
    background-color: blue;
    color: white;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#shrink-button.enlarge {
    background-color: red; /* Change to red when in Enlarge mode */
}
#swap-button {
  background-color: #607d8b;
  color: white;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
#toast-message {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #28a745; /* green */
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 14px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    z-index: 9999;
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.product-title-row {
    display: flex;
    flex-direction: column; /* Stacks elements vertically */
    align-items: center;
    gap: 10px; /* Adds spacing */
    text-align: center;
}

.product-actions {
    display: flex;
    align-items: center;
    gap: 15px; /* Space between links */
    flex-wrap: wrap; /* Allows wrapping on smaller screens */
    justify-content: center;
}

.product-link {
    color: #007bff; /* Blue link */
    font-size: 14px;
    text-decoration: none;
    font-weight: bold;
}

.product-link:hover {
    text-decoration: underline;
}

.sale-link {
    color: red;
    font-weight: bold;
    font-size: 14px;
    text-decoration: none;
}

.sale-link:hover {
    text-decoration: underline;
}

/* Product Display Styling */
.product-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  aspect-ratio: 3 / 2; /* 1200x800 = 3:2 ratio */
  margin: 0 auto;
}

.product-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; /* use 100%, not auto */
  object-fit: cover;
  z-index: 1;
}

/* Tablet and smaller screens (reduce size proportionally) */
@media (max-width: 1200px) {
    .product-background {
        width: 100% !important; /* Background scales down */
        height: auto !important;
        max-width: 100vw !important; /* Ensures it never exceeds viewport width */
        min-width: unset !important; /* Ensures no minimum width restriction */
        min-height: unset !important; /* Remove any minimum height restriction */
    }

    .product-overlay {
        height: calc(0.6 * 100%); /* Maintain proportion relative to background */
        width: auto;
    }
}

/* Mobile Screens - iPhone SE Example */
@media (max-width: 375px) {
    .product-background {
        width: 100vw !important; /* Ensure it fits the screen width */
        height: auto !important; /* Maintain aspect ratio */
        max-width: 100% !important;
        min-width: unset !important; /* Remove any hidden constraints */
        min-height: unset !important; /* Remove any minimum height restriction */
    }

    .product-overlay {
        height: calc(0.6 * 100%); /* Adjust height accordingly relative to background */
        width: auto;
    }
}



/* Voting Section Styling */
/* Main Voting Container */
.vote-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    background: #222;
    border-radius: 8px;
    max-width: 350px;
    margin: 15px auto;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.2);
}

/* Voting Section Styling */
.vote-heading {
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 8px;
    color: #ffd700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

/* Voting Message */
.vote-message {
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    color: #ffd700;
    margin-top: 10px;
}

/* Voting Form Container */
.vote-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px; /* Reduce spacing */
    padding: 12px;
    background: #333; /* Dark theme */
    border-radius: 8px;
    max-width: 320px; /* Reduce form width */
    margin: 15px auto;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.2);
}

/* Label & Select Group - Keep Together */
.vote-group {
    display: flex;
    align-items: center;
    justify-content: center; /* Center items together */
    gap: 6px;
    width: auto;
}

/* Labels */
.vote-label {
    font-size: 14px;
    font-weight: bold;
    color: #ffffff;
    white-space: nowrap; /* Prevent text from wrapping */
}

/* Select Dropdowns (Smaller & Inline) */
.vote-select {
    width: 50px; /* Smaller size */
    padding: 4px;
    font-size: 14px;
    border-radius: 4px;
    border: 1px solid #ccc;
    background-color: #fff;
    color: #333;
    text-align: center;
    transition: border-color 0.2s ease-in-out;
}

.vote-select:focus {
    border-color: #ffd700;
    outline: none;
}

/* Submit Button */
.vote-submit {
    background-color: #ffd700;
    color: #222;
    padding: 8px 14px;
    font-size: 14px;
    font-weight: bold;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
    margin-top: 8px;
}

.vote-submit:hover {
    background-color: #e6c200;
}

/* Description Below Button */
.vote-description {
    font-size: 12px;
    text-align: center;
    color: #ccc;
    margin-top: 5px;
    line-height: 1.4;
    max-width: 280px;
}

/* "Find out how this helps" link */
.vote-description a {
    color: #ffd700;
    font-weight: bold;
    text-decoration: none;
}

.vote-description a:hover {
    text-decoration: underline;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .vote-form {
        width: 90%;
    }
}
.star-rating {
    display: flex;
    gap: 5px;
    cursor: pointer;
    font-size: 20px;
}

.star {
    color: #bbb; /* Default star color (gray) */
    transition: color 0.2s ease-in-out;
    pointer-events: auto;
    cursor: pointer;
}

.star.selected,
.star:hover {
    color: #ffd700; /* Highlight stars when selected or hovered */
}

.deer-vision img {
  filter: url(#protanopia) blur(1px);
}
@media (max-width: 768px) {
  .deer-vision img {
    filter: url(#protanopia) blur(0.25px);
  }
}

.compare-links-container {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: 30px auto;
  position: relative;
  z-index: 5;
}
.compare-links .brand-link-header {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
}
.compare-links .brand-button,
.compare-links .store-button {
  margin: 5px;
}
/* === END: pattern_css_4_0.css === */

/* === BEGIN: style_v9_0.css === */
/* 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 15px;
  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 {
     width: 100%;
  height: auto;
  display: block;
  z-index: 1;
}
.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;
}
/* === END: style_v9_0.css === */

@media (max-width: 468px) {
  .compare-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin: 10px auto;
  }

  #left-controls,
  #right-controls {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .button-row {
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 8px;
  }

  /* COLOR-MATCHED MOBILE STYLES */
  #swap-button {
    background-color: #607d8b;
    color: white;
    padding: 6px 10px;
    font-size: 11px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  #vision-button {
    background-color: orange;
    color: white;
    padding: 6px 10px;
    font-size: 11px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  #vision-button.human {
    background-color: green;
  }

  #shrink-button {
    background-color: blue;
    color: white;
    padding: 6px 10px;
    font-size: 11px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  #shrink-button.enlarge {
    background-color: red;
  }

  select {
    font-size: 13px;
    padding: 4px;
    max-width: 95%;
  }
}

@media (max-width: 468px) {
  .dropdown select {
    padding: 3px 6px;
    font-size: 13px;
    margin: 4px auto;
  }

  .dropdown {
    margin: 5px 0;
  }
}
 /* widget styling */
/* Applies to all screen sizes */
#sponsor-widget {
  position: fixed;
  top: 80px; /* Moved down to avoid sticky menu */
  left: 0;
  z-index: 999;
  background: rgba(255,255,255,0.95);
  border-radius: 6px;
  padding: 5px;
  max-width: 200px;
  box-shadow: 0 0 6px rgba(0,0,0,0.5);
  transition: transform 0.3s ease;
}
/* Hidden (slid left) */
#sponsor-widget.sponsor-collapsed {
  transform: translateX(-90%);
}

/* Visible */
#sponsor-widget.sponsor-expanded {
  transform: translateX(0);
}

/* Fully removed (X button) */
#sponsor-widget.sponsor-hidden {
  display: none;
}
/* Image inside */
#sponsor-widget img {
  max-width: 200px;
  max-height: 100px;
  border: 1px solid #ccc;
  background: #fff;
  padding: 2px;
  border-radius: 4px;
  transition: opacity 0.2s ease;
}
#sponsor-widget img:hover {
  opacity: 0.85;
}

/* Tab/arrow toggle */
.sponsor-toggle {
  position: absolute;
  top: 35%;
  right: -18px;
  background: #ccc;
  color: #000;
  font-weight: bold;
  padding: 3px 6px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  cursor: pointer;
  font-size: 14px;
}

/* Close X */
.sponsor-close {
  position: absolute;
  top: 2px;
  right: 6px;
  font-size: 14px;
  font-weight: bold;
  color: #000;
  background: none;
  border: none;
  cursor: pointer;
}

/* Mobile widget behavior */
@media (max-width: 468px) {
  #sponsor-widget {
    top: 100px;
    left: 0;
    padding: 4px;
    transform: translateX(0);
    background: rgba(0, 0, 0, 0.7);
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
  }

  .sponsor-toggle {
    display: block;
    position: absolute;
    top: 5px;
    right: -20px;
    background: #607d8b;
    color: white;
    font-size: 14px;
    padding: 4px;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    z-index: 1001;
  }

  .sponsor-close {
    display: block;
    position: absolute;
    top: 5px;
    left: 5px;
    background: rgba(255,255,255,0.6);
    color: black;
    font-size: 12px;
    padding: 2px 5px;
    border-radius: 3px;
    cursor: pointer;
    z-index: 1001;
  }

  .sponsor-collapsed {
    transform: translateX(-140px); /* mostly hidden */
  }

  .sponsor-expanded {
    transform: translateX(0);
  }

  .sponsor-hidden {
    display: none;
  }
}
@media (max-width: 768px) {
  .compare-links .brand-button,
  .compare-links .store-button {
    font-size: 13px;
    padding: 6px 10px;
    margin-top: 6px;
  }

  .compare-links .brand-link-header {
    font-size: 14px;
    margin-bottom: 4px;
  }

  .compare-links {
    padding: 8px;
  }
}
.compare-share-container {
  position: relative;
  display: inline-block;
  margin-left: 10px;
}

#share-button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: opacity 0.2s;
}

#share-button:hover {
  opacity: 0.7;
}

.share-wrapper {
  display: inline-block;
  vertical-align: middle;
  position: relative;
}

.share-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  cursor: pointer;
  padding: 6px;
  color: #ffffff;
}

.share-icon:hover {
  color: #8f1010;
}

.share-menu {
  position: absolute;
  top: 100%;        /* Right below the share icon */
  right: 0;
  margin-top: 6px;
  background: #fff;
  border: 1px solid #ccc;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  padding: 8px 0;
  z-index: 1000;
  width: 160px;
  border-radius: 4px;
}

.share-menu a {
  display: block;
  padding: 6px 12px;
  color: #333;
  text-decoration: none;
  font-size: 14px;
}
.share-menu {
  transition: opacity 0.2s ease;
}
.share-menu a:hover {
  background-color: #f0f0f0;
}

.share-menu.hidden {
  display: none;
}
.copy-toast {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #222;
  color: #fff;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 14px;
  opacity: 0.9;
  z-index: 9999;
}