/* public_html/css/support-content.css - Support pages main content styling */

.support-main {
  flex: 2;
  min-width: 300px;
}

.support-main h1 {
  color: var(--primary-green);
  margin-bottom: 1.2rem;
  font-size: 2.1rem;
  text-align: center;
}

/* ==================== PRODUCT PHOTO GALLERY - FIXED FOR LEFTMOST IMAGE VISIBILITY ==================== */
.product-gallery {
  display: flex;
  gap: 1.2rem;
  margin: 1.8rem 0 2.8rem 0;
  overflow-x: auto;
  padding: 12px 32px 12px 32px;
  scrollbar-width: thin;
  scrollbar-color: var(--primary-green) #e0e0e0;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
}

.product-gallery img {
  flex: 0 0 auto;
  width: 185px;
  min-width: 185px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.12);
  transition: transform 0.3s ease;
}

.product-gallery img:hover {
  transform: scale(1.06);
}

/* ==================== CENTERED PRODUCT PHOTO GALLERY ==================== */
.product-gallery.centered-gallery {
  justify-content: center;
  margin: 2rem 0 2.8rem 0;
}

/* ==================== CENTERED SINGLE PHOTO ==================== */
.centered-photo {
  display: flex;
  justify-content: center;
  margin: 2rem 0 2.8rem 0;
}

.centered-photo img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  max-width: 460px;
}

/* ==================== BULLETS / INSTRUCTIONS ==================== */
#productBullets {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  margin-bottom: 2.5rem;
}

#productBullets h2 { 
  color: var(--primary-green); 
  font-size: 1.65rem; 
  margin-bottom: 1.1rem; 
}

#productBullets h3 { 
  color: var(--primary-green); 
  margin: 1.8rem 0 0.9rem 0; 
  font-size: 1.25rem; 
}

#productBullets ul, #productBullets ol {
  padding-left: 1.5rem;
  margin-bottom: 1.3rem;
}

#productBullets li {
  margin-bottom: 0.65rem;
  line-height: 1.6;
}

/* ==================== DOWNLOAD SECTION - ALWAYS VERTICAL ==================== */
.downloads-section {
  background: white;
  padding: 2rem 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.downloads-section h2 {
  color: var(--primary-green);
  margin-bottom: 1.8rem;
  text-align: center;
}

.download-buttons {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: center;
  max-width: 460px;
  margin: 0 auto;
}

.download-btn {
  width: 100%;
  padding: 1.45rem 1.8rem;
  text-align: center;
  text-decoration: none;
  border-radius: 10px;
  font-size: 1.18rem;
  line-height: 1.42;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.12);
  min-height: 122px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.download-btn.primary {
  background: var(--primary-green);
  color: white;
  border: 3px solid var(--primary-green);
}

.download-btn.primary:hover {
  background: #246e19;
  transform: translateY(-3px);
}

.download-btn.secondary {
  background: white;
  color: var(--dark);
  border: 3px solid var(--accent-orange);
}

.download-btn.secondary:hover {
  background: var(--accent-orange);
  color: white;
  transform: translateY(-3px);
}

.download-btn strong {
  display: block;
  font-size: 1.32rem;
  margin-bottom: 0.4rem;
}

.download-btn small {
  display: block;
  font-size: 0.96rem;
  opacity: 0.95;
}

/* ==================== ORANGE MODEL BUTTONS - BLACK TEXT INACTIVE / GREEN ROLLOVER ==================== */
.model-btn {
  display: block;
  width: 100%;
  padding: 1.2rem 1.5rem;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.08rem;
  background: var(--accent-orange);
  color: var(--dark);                 /* Black text when inactive */
  border: 2px solid var(--accent-orange);
  transition: all 0.3s ease;
  font-weight: 500;
}

.model-btn:hover {
  background: var(--primary-green);
  color: white;                       /* White text on hover */
  border-color: var(--primary-green);
  transform: translateY(-2px);
}

/* ==================== RESPONSIVE TWEAKS ==================== */
@media (max-width: 600px) {
  .support-main h1 {
    font-size: 1.85rem;
  }
  
  .downloads-section {
    padding: 1.8rem 1rem;
  }
  
  .product-gallery {
    padding: 12px 40px 12px 40px;
    gap: 1rem;
  }
  
  .product-gallery img {
    width: 168px;
    min-width: 168px;
  }
  
  .centered-photo img {
    max-width: 100%;
  }
  
  .download-btn {
    min-height: 110px;
    padding: 1.3rem 1.5rem;
  }
}