/* Additional styles specific to the mot (walking stick) product page */

/* Adjust the size of the mot product image if needed */
.main-image img[src*="mot.jpg"] {
  max-width: 60%; /* Make the mot image a bit smaller for better display */
}

/* Style for single thumbnail scenario */
.thumbnail-gallery.single-image {
  justify-content: center;
}

/* Add a specific background color to highlight the mot product */
.product-hero {
  background-color: var(--bg-medium);
}

/* If there's only one thumbnail, center it better */
.thumbnail-gallery:only-child {
  margin: 0 auto;
}

/* Specific styling for the mot features */
.features-list li {
  line-height: 1.8; /* Slightly more spacing for readability */
}

/* Custom styles for the YouTube demo section - enhance visibility */
.youtube-demo {
  margin-top: 2rem;
  padding: 1rem;
  border-radius: var(--radius-md);
  background-color: var(--bg-light);
  border: 1px solid var(--border-color);
}

.youtube-demo .custom-heading h4 {
  font-size: 1.6rem;
  color: var(--primary-dark);
}

/* Make YouTube thumbnail more prominent */
.youtube-thumbnail {
  width: 40%; /* Make it a bit larger than default */
  margin: 0 auto;
  transition: transform var(--transition-fast);
}

.youtube-thumbnail:hover {
  transform: scale(1.05);
}

/* Custom styles for usage scenarios */
.usage-scenarios {
  margin-top: 2rem;
  padding: 1rem;
  background-color: var(--bg-light);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
}

.usage-scenarios h4 {
  color: var(--primary-dark);
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.scenarios-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.scenario-item {
  background-color: white;
  padding: 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.scenario-icon {
  color: var(--primary-color);
  width: 20px;
  height: 20px;
}

/* Custom styles for product variants if needed */
.product-variants {
  margin-top: 2rem;
}

.variants-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}

.variant-item {
  background-color: var(--bg-light);
  padding: 1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  text-align: center;
}

.variant-name {
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.variant-desc {
  font-size: 0.9rem;
  color: var(--text-medium);
}

/* Add a special highlight for snow/ice usage */
.snow-highlight {
  background-color: #e3f2fd; /* Light blue background */
  padding: 1rem;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--primary-color);
  margin: 1.5rem 0;
}

.snow-highlight h4 {
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.snow-highlight p {
  color: var(--text-medium);
  font-size: 0.95rem;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .variants-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .scenarios-list {
    grid-template-columns: 1fr;
  }
  
  .variants-grid {
    grid-template-columns: 1fr;
  }
  
  .youtube-thumbnail {
    width: 60%;
  }
}

@media (max-width: 480px) {
  .youtube-thumbnail {
    width: 90%;
  }
  
  .youtube-demo .custom-heading h4 {
    font-size: 1.4rem;
  }
}