
/* Global Reset & Safe Viewport Setup */
html, body {
  margin: 0;
  padding: 0;
  width: 100% !important;
  overflow-x: hidden !important;
  font-family: 'Urbanist', sans-serif;
  -webkit-text-size-adjust: 100%;
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
  box-sizing: border-box;
}

*, *::before, *::after {
  box-sizing: inherit;
}

img {
  max-width: 100% !important;
  height: auto !important;
  display: block;
}

input, textarea, select {
  font-size: 16px;
}

/* Safe container wrapper */
.ankush-haz-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 12px;
  overflow-x: hidden;
  box-sizing: border-box;
}


/* Reset and base */
body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
    font-family: 'Urbanist', sans-serif;
    padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);

  }
  
  img {
    max-width: 100%;
    height: auto;
    display: block;
  }
  
  input, textarea, select {
    font-size: 16px; /* Prevents iOS zoom */
  }
  
  /* Scoped container */
  .ankush-haz-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
  overflow-x: hidden;
    padding: 0 10px;
  }
  
  /* Header */
  .ankush-haz-header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
    background: white;
    width: 100%;
  }
  
  .ankush-haz-header .ankush-haz-logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
  
  .ankush-haz-header img {
    height: 180px;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .ankush-haz-header {
      flex-direction: column;
      text-align: center;
    }
  
    .ankush-haz-header img {
      height: 100px;
    }
  }

  /* Product Section */
.ankush-haz-product {
    text-align: center;
    padding: 20px;
  }
  
  /* Image display container */
  .ankush-haz-product-main {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 250px;
    outline: none;
    margin-bottom: 15px;
    width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
  padding: 0 10px;
  flex-wrap: wrap;
  
  
  }
  
  /* Product images */
  .ankush-haz-image {
    width: 50%;
    max-width: 500px;
    height: 50%;
    border: none;
    border-radius: 5px;
    display: none;
    outline: none;
  }
  
  /* Show image when selected */
  #ankush-haz-swatch1:checked ~ .ankush-haz-product-main .image1,
  #ankush-haz-swatch2:checked ~ .ankush-haz-product-main .image2,
  #ankush-haz-swatch3:checked ~ .ankush-haz-product-main .image3,
  #ankush-haz-swatch4:checked ~ .ankush-haz-product-main .image4 {
    display: block;
  }
  
  /* Swatch container */
  .ankush-haz-swatch-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 10px;
  }
  
  /* Hide radio buttons */
  input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    display: none;
  }
  
  /* Swatch images */
  .ankush-haz-swatch-container label {
    cursor: pointer;
  }
  
  .ankush-haz-swatch-container label img {
    width: 80px;
    border: 2px solid transparent;
    border-radius: 5px;
  }
  
  /* Highlight selected swatch */
  #ankush-haz-swatch1:checked ~ .ankush-haz-swatch-container label[for="ankush-haz-swatch1"] img,
  #ankush-haz-swatch2:checked ~ .ankush-haz-swatch-container label[for="ankush-haz-swatch2"] img,
  #ankush-haz-swatch3:checked ~ .ankush-haz-swatch-container label[for="ankush-haz-swatch3"] img,
  #ankush-haz-swatch4:checked ~ .ankush-haz-swatch-container label[for="ankush-haz-swatch4"] img {
    border-color: #f0aa2e;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .ankush-haz-swatch-container label img {
      width: 60px;
    }
  }

  
  /* Description Section */
.ankush-haz-description {
    text-align: center;
    padding: 20px;
    background: #f4f4f4;
    border-radius: 5px;
    margin-top: 20px;
  }
  
  .ankush-haz-description-title {
    font-size: 16px;
    font-weight: bold;
    color: #2d9250;
    margin-bottom: 10px;
  }
  
  .ankush-haz-description-text {
    font-size: 14px;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    text-align: center;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .ankush-haz-description-title {
      font-size: 18px;
    }
  
    .ankush-haz-description-text {
      font-size: 14px;
    }
  }

  
  /* Disclaimer Section */
.ankush-haz-disclaimer {
    text-align: center;
    padding: 20px;
    background: #ffcccc;
    border-radius: 5px;
    margin-top: 20px;
  }
  
  .ankush-haz-disclaimer-title {
    font-size: 16px;
    font-weight: bold;
    color: #2d9250;
    margin-bottom: 10px;
  }
  
  .ankush-haz-disclaimer-text {
    font-size: 14px;
    color: #2d9250;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .ankush-haz-disclaimer-title {
      font-size: 18px;
    }
  
    .ankush-haz-disclaimer-text {
      font-size: 14px;
    }
  }

  

  /* Stock Level Section */
.ankush-haz-stock-level {
    text-align: center;
    padding: 20px;
    background: #f4f4f4;
    border-radius: 5px;
    margin-top: 20px;
  }
  
  .ankush-haz-stock-level-title {
    font-size: 16px;
    font-weight: bold;
    color: #2d9250;
    margin-bottom: 10px;
  }
  
  .ankush-haz-stock-level-text {
    font-size: 14px;
    color: #333;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    text-align: center;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .ankush-haz-stock-level-title {
      font-size: 18px;
    }
  
    .ankush-haz-stock-level-text {
      font-size: 14px;
    }
  }

  



  /* Item Specifics + References */
.ankush-haz-item-specifics-container {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    background: #e6e6e6;
    border-radius: 5px;
    margin-top: 20px;
    flex-wrap: wrap;
    font-size: 20px;
  }
  
  .ankush-haz-column {
    width: 48%;
    padding: 15px;
    background: white;
    border-radius: 5px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
  }

  .ankush-haz-columnitem {
    width: 48%;
    padding: 15px;
    background: #e6e6e6;
    border-radius: 5px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
  }
  
  .ankush-haz-column h3 {
    font-size: 20px;
    font-weight: bold;
    color: #2d9250;
    margin-bottom: 10px;
  }
  
  .ankush-haz-column p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
  }
  
  .ankush-haz-oe-numbers-container {
    
    padding: 10px;
    border-radius: 5px;
  }
  
  .ankush-haz-oe-numbers-container p {
    background: #e6e6e6;
    padding: 8px;
    border-radius: 5px;
    margin: 5px 0;
  }
  
  .ankush-haz-reference-highlight {
    background: #eb313c;
    color: white;
    padding: 8px;
    border-radius: 5px;
    font-weight: bold;
    display: inline-block;
  }
  
  .ankush-haz-highlight-box {
    display: inline-block;
    margin: 3px 0;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .ankush-haz-item-specifics-container {
      flex-direction: column;
      align-items: center;
    }
  
    .ankush-haz-column {
      width: 100%;
      margin-bottom: 15px;
    }
  }

  /* Marquee Section */
.ankush-haz-marquee-container {
    background-color: #eb313c;
    padding: 10px;
    overflow: hidden;
    position: relative;
    height: 40px;
    display: flex;
    align-items: center;
    white-space: nowrap;
  }
  
  .ankush-haz-marquee-wrapper {
    display: flex;
    color: white;
    align-items: center;
    font-weight: bold;
    font-size: 20px;
    min-width: 100%;
    white-space: nowrap;
  }
  
  .ankush-haz-desktop-view {
    animation: ankush-haz-marquee 15s linear infinite;
  }
  
  @keyframes ankush-haz-marquee {
    from { transform: translateX(100%); }
    to { transform: translateX(-100%); }
  }
  
  /* Mobile-specific styles */
  @media (max-width: 768px) {
    .ankush-haz-desktop-view {
      display: none;
    }
  
    .ankush-haz-mobile-view {
      display: flex;
      animation: ankush-haz-marquee-mobile 8s linear infinite;
    }
  
    .ankush-haz-marquee-container {
      height: 40px;
      display: flex;
      align-items: center;
      overflow: hidden;
    }
  
    .ankush-haz-marquee-container p {
      font-size: 16px;
      white-space: nowrap;
      margin-right: 30px;
    }
  
    @keyframes ankush-haz-marquee-mobile {
      from { transform: translateX(100%); }
      to { transform: translateX(-100%); }
    }
  }

  
/* Tabs Wrapper */
.ankush-haz-tabs-wrapper {
  max-width: 1200px;
  margin: 20px auto;
  padding: 20px;
  background: #f4f4f4;
  border-radius: 5px;
  font-family: 'Urbanist', sans-serif;
  box-sizing: border-box;
}

/* Hide Radio Inputs */
.ankush-haz-tabs-wrapper input[type="radio"] {
  display: none;
}

/* Tab Labels */
.ankush-haz-tab-labels {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px; /* Space between labels and content */
}

.ankush-haz-tab-labels label {
  background: #eb313c;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  text-align: center;
  position: relative;
  transition: background 0.3s;
  box-sizing: border-box;
  min-width: 120px;
  text-align: center;
}

.ankush-haz-tab-labels label:hover {
  background: #2d9250;
}

.ankush-haz-tab-labels label::after {
  content: "\2807";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  color: white;
}

/* Tab Content */
.ankush-haz-tab-content {
  display: none;
  background: white;
  padding: 5px;
  border-radius: 5px;
  color: #333;
  font-size: 14px;
  line-height: 1.6;
  box-sizing: border-box;
  margin: 0 auto; /* Center alignment */
  width: 100%;
  text-align: center;
}

/* Show selected tab content */
#ankush-haz-tab1:checked ~ .ankush-haz-tab1-content,
#ankush-haz-tab2:checked ~ .ankush-haz-tab2-content,
#ankush-haz-tab3:checked ~ .ankush-haz-tab3-content,
#ankush-haz-tab4:checked ~ .ankush-haz-tab4-content {
  display: block;
}

/* Consistent spacing between each tab section */
.ankush-haz-tab1-content,
.ankush-haz-tab2-content,
.ankush-haz-tab3-content,
.ankush-haz-tab4-content {
  margin-top: 0; /* Remove any uneven spacing */
}

/* Responsive styles */
@media (max-width: 768px) {
  .ankush-haz-tab-labels {
    flex-direction: column;
    align-items: center;
  }

  .ankush-haz-tab-labels label {
    width: 100%;
    text-align: center;
  }

  .ankush-haz-tab-content {
    font-size: 13px;
    padding: 15px;
  }
}

  

  /* Footer */
.ankush-haz-footer {
    background-color: #eb313c;
    text-align: center;
    padding: 5px;
    color: white;
    font-size: 10px;
    border-radius: 0 0 5px 5px;
  }
  
  @media (max-width: 768px) {
    .ankush-haz-footer {
      font-size: 13px;
      padding: 8px;
    }
  }
  