.product-page {
  padding: 40px 0;
}


.breadcrumb {
  font-size: 14px;
  margin-bottom: 30px;
}

/* GRID */
.product-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 40px;
}

/* IMAGES */
.product-images {
  grid-column: span 5;
}

.main-image {
  position: relative;
  border: 1px solid #000;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-placeholder {
  font-size: 14px;
}

.nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border: 1px solid #000;
  padding: 20px;
  cursor: pointer;
}

.prev { left: 10px; }
.next { right: 10px; }

.thumb-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: 15px;
}

.thumb {
  height: 70px;
  border: 1px solid #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* INFO */
.product-info {
  grid-column: span 7;
}

.product-info h1 {
  font-size: 28px;
  margin-bottom: 10px;
  margin-top: 0;
}

.product-price, .price {
  display: block;
  margin-bottom: 20px;
  color: #000;
}

.description {
  margin-bottom: 20px;
}

.benefits li {
  margin-bottom: 8px;
}

/* QUANTITY */
.quantity {
  margin: 30px 0;
}

.qty-box {
  display: inline-flex;
  border: 1px solid #000;
}

.qty-box button,
.qty-box span {
  padding: 8px 14px;
  border: none;
  background: #fff;
}

/* CTA */
.cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

.add {
  background: #000;
  color: #fff;
  padding: 14px;
  border: 1px solid transparent;
}

.buy {
  background: #fff;
  border: 1px solid #000;
  padding: 14px;
}

/* ACCORDION */
.accordion .item {
  border-top: 1px solid #000;
}

.accordion .title {
  display: flex;
  justify-content: space-between;
  padding: 16px 0;
  cursor: pointer;
}

.accordion .content {
  display: none;
  padding-bottom: 20px;
}

.accordion .item.open .content {
  display: block;
}
.benefits{
    list-style: disc;
    padding-left: 30px;
}
.qa-answer {
  display: none;
  padding: 12px 0;
}

.qa-question {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  padding: 14px 0;
  font-weight: 600;
  border-bottom: 1px solid #000;
}
.quantity{
    display: flex;
    align-items: center;
    gap: 20px;
}
.qty-btn {
  width: 40px;
  height: 40px;
  cursor: pointer;
}
.qa-answer {
  display: none;
  padding: 12px 0;
}

.qa-question {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  padding: 14px 0;
  font-weight: 600;
  border-bottom: 1px solid #000;
}

.upper-bar{
    padding: 20px 0;
}
.add {
  background-color: #000;
  color: #fff;
  border: 1px solid #000;
  padding: 14px;
  transition: background-color 0.3s ease, color 0.3s ease, border 0.3s ease;
}

.buy {
  background: #fff;
  color: #000;
  border: 1px solid #000;
  padding: 14px;
  transition: background-color 0.3s ease, color 0.3s ease, border 0.3s ease;
}

/* Hover ADD → affect BUY */
.add:hover {
  background-color: #fff;
  color: #000;
}


/* Hover BUY → affect ADD */
.buy:hover {
  background-color: #000;
  color: #fff;
}
.arrow {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-top: 1.5px solid #000;
  border-right: 1.5px solid #000;
}

/* Left arrow */
.previous-arrow {
  transform: rotate(-135deg);
  margin-right: 10px;
}

/* Right arrow */
.next-arrow {
  transform: rotate(45deg);
  margin-left: 10px;
}

/* Hover (optional subtle polish) */
.next-previous button:hover {
  opacity: 0.6;
}
.button-bar{
    height: 15px;
    width: 2px;
    border: 1px solid #000;
}
.next-previous{
    flex-direction: row;
    align-items: baseline;
    gap: 20px
}
.image-slider {
  width: 100%;
  max-width: 500px;
}

.main-image-wrapper {
  position: relative;
  overflow: hidden;
}

.main-image {
    padding: 20px;
  width: 100%;  
  height: 540px;
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.main-image.slide-left {
  transform: translateX(-30px);
  opacity: 0;
}

.main-image.slide-right {
  transform: translateX(30px);
  opacity: 0;
}
.main-image img{
    height: 520px;
}
.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: 1px solid #000;
  background: #fff;
  cursor: pointer;
  font-size: 20px;
}

.prev { left: 10px; }
.next { right: 10px; }

.thumb-strip {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.thumb {
  position:relative;
    width: 60px;
  height: 60px;
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.thumb img{
    height: 60px;
}

.thumb.active::before {
    content: "";
    position: absolute;
    background: red;
    opacity: 0;
    width: 60px;
    height: 60px;
    top: 10px;
    z-index: 999;
}
.list-heading{
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 700;
}
.benefits li{
    font-weight: 500;
}
.description-head{
    margin-bottom: 20px;
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 20px;
}

.social-icons a {
  display: inline-flex;
  width: 25px;
  height: 25px;
}

.social-icons img {
  width: 100%;
  height: 100%;
  display: block;
}
.qa-answer{
    border-bottom: 1px solid;
}
.bread-crumbs{
    display: flex;
    gap: 15px;
}
.main-image video {
  width: 100%;
  height: 520px;
  object-fit: cover;
}
.product-page {
  overflow-x: hidden;
}
.next-previous {
     padding: 0 10px;
  }
  .next-previous a {
    color: #000;
    text-decoration: none;
  }