


#accessories-breadcrumbs .separator {
  margin: 0 0.5rem;
  color: #ccc;
}



/* === GENERAL LAYOUT === */
#accessories-main-container {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  padding-left: 2rem;
	  padding-right: 2rem;
	  padding-bottom: 2rem;
	padding-top: 5rem; /* adjust for your taste */
  max-width: 1200px;
  margin: 0 auto;
  font-family: 'Inter', sans-serif;
  color: #222;
}

/* === LEFT SIDE CONTENT === */
#accessories-left-container {
  flex: 1;
  min-width: 320px;
}

/* Title */
#accessories-title {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  max-width: 24ch;
  word-break: keep-word;
  hyphens: auto;
}

/* Divider */
#accessories-divider .line {
  height: 2px;
  width: 60px;
  background-color: #ff6a00;
  margin: 1rem 0;
}

/* Description */
#accessories-description p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 38ch;
}

/* Price */
#accessories-price .price {
  font-size: 1.5rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 0.25rem;
}

/* Stock Text */
#accessories-add-to-cart .stock {
  font-size: 1rem;
  color: #28a745;
  margin-bottom: 1.25rem;
}


/* Quantity Pill */
#accessories-main-container .quantity {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0 1rem;
  height: 48px;
  border: 2px solid #eee;
  border-radius: 999px;
  background: #fff;
  box-sizing: border-box;
}
#accessories-main-container .quantity input.qty {
  width: 2.5rem;
  border: none;
  background: transparent;
  text-align: center;
  font-size: 1rem;
  appearance: none;
  outline: none;
}
#accessories-main-container .quantity .action {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: #f6f6f6;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: background 0.2s ease;
}

/* === ADD TO CART BUTTON === */
/* Add to Cart Button */
#accessories-main-container .single_add_to_cart_button {
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 2rem;
  background: linear-gradient(to bottom, #FFA500, #FF4500);
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(255, 69, 0, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

/* === RIGHT SIDE IMAGE === */
#accessories-right-container {
  flex: 1;
  min-width: 320px;
}
/* === THUMBNAIL GALLERY === */
#accessories-main-container .flex-control-nav.flex-control-thumbs {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}
#accessories-main-container .flex-control-nav.flex-control-thumbs li img {
  border: 2px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
  opacity: 0.5;
}

#accessories-main-container .flex-control-nav.flex-control-thumbs li img:hover {
  opacity: 0.9;
  transform: scale(1.03);
}
#accessories-main-container .flex-control-nav.flex-control-thumbs li img.flex-active {
  border-color: #ff6a00;
  box-shadow: 0 0 0 2px rgba(255, 106, 0, 0.2);
  opacity: 1;
}




@media screen and (max-width: 768px) {
	#accessories-main-container   .single_add_to_cart_button {
    width: 100%;
    justify-content: center;
  }

#accessories-main-container   .quantity {
    width: 100%;
    justify-content: center;
  }
}
	/* === Improve breadcrumb spacing and clarity === */
#accessories-breadcrumbs {
  font-size: 0.875rem;
color: #666; /* instead of #888 for breadcrumb base */

  margin-bottom: 2rem;
  padding-top: 4rem; /* increased spacing from header */
	  padding-left: 2rem;
  padding-right: 2rem;
  max-width: 1200px;
  margin: 0 auto;
	
}
}