body {
  background: #fff;
  font-family: Arial, sans-serif;
}

/* MAIN PRODUCT LAYOUT */
.product-main {
  width: 100%;              /* Full width */
  max-width: 1300px;
  margin: 40px auto 60px;
  display: flex;
  gap: 40px;                /* Reduced gap */
  align-items: flex-start;
  flex-wrap: wrap;
  padding: 0;               /* Remove extra padding */
}

/* LEFT IMAGE - FULL WIDTH CAROUSEL FIX */
.product-image-box {
  flex: 1 1 100%;           /* Takes full width */
  max-width: 700px;         /* Adjustable */
  margin: 0 ;           /* Centered */
}

.product-image-box img {
  width: 100%;
  height: auto;
  border-radius: 0;
  object-fit: cover;       
}

/* RIGHT DETAILS */
.product-details {
  flex: 1;
  min-width: 320px;
}

.p-title {
  font-size: 32px;
  font-weight: 600;
}
.p-price {
  font-size: 24px;
  font-weight: bold;
  margin: 10px 0;
}
.p-shipping {
  color: #777;
  font-size: 14px;
  margin-bottom: 25px;
}

/* SECTIONS (Size, Color, Category) */
.p-section {
  margin-bottom: 25px;
}
.label {
  font-weight: 600;
  margin-bottom: 8px;
}
.options {
  display: flex;
  gap: 10px;
}
.opt-btn {
  padding: 8px 20px;
  border-radius: 25px;
  border: 1px solid#a174a9;
  background: #fff;
  cursor: pointer;
}
.opt-btn.active,
.opt-btn:hover {
  background: #a174a9;
  color: #fff;
}

/* QUANTITY */
.quantity-box {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-bottom: 25px;
}
.qty-btn {
  width: 40px;
  height: 40px;
  font-size: 22px;
  border: 1px solid #000;
  background: #fff;
  cursor: pointer;
}
.qty-number {
  font-size: 18px;
}

/* BUTTONS */
.btn-full {
  display: block;
  width: 100%;
  padding: 14px 0;
  margin: 8px 0;
  text-align: center;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  border: 1px solid #000;
}

.add-cart-btn {
  background: #fff;
  color:#a174a9;
}
.add-cart-btn:hover {
  background:#a174a9;
  color: #fff;
}



.wishlist-btn {
  background:#a174a9;
}
.wishlist-btn:hover {
  background:#a174a9;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .product-main {
    flex-direction: column;
    gap: 20px;
    width: 95%;
  }

  .product-image-box {
    max-width: 100%;
  }
}


.carousel-item {
  transition: transform 0.6s ease-in-out;
}

/* PRODUCT STATUS */
.product-status {
  display: inline-block;
  margin: 10px 0 15px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 20px;
}

/* STATUS COLORS */
.status-in {
  background: #e6f7ec;
  color: #1e7e34;
}

.status-out {
  background: #fdecea;
  color: #c82333;
}

.status-limited {
  background: #fff3cd;
  color: #856404;
}
/* CATEGORY BUTTON COLOR ONLY */
.p-section .options .opt-btn.active:not(.size-btn):not(.fabric-btn) {
  background: #a174a9;
  color: #fff;
  border-color: #a174a9;
}
.recommended-section {
  margin: 60px auto;
  max-width: 1200px;
  padding: 0 15px;
}

.section-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
}

.recommended-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
}

.recommended-card {
  background: #fff;
  border-radius: 10px;
  padding: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.2s ease;
}

.recommended-card:hover {
  transform: translateY(-4px);
}

.recommended-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 8px;
}

.recommended-card h4 {
  font-size: 14px;
  margin: 10px 0 4px;
  font-weight: 500;
}

.recommended-card p {
  font-size: 14px;
  font-weight: 600;
  color: #a174a9;
}
