.main-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 500px;      /* optional max width */
  margin: 0 auto 10px;
  height: fit-content;   /* wrapper adjusts to image height */
  overflow: hidden;      /* hide sliding overflow */
}

.main-image-wrapper img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.gallery-prev,
.gallery-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;          /* remove background */
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease; /* smooth hover grow */
}

.gallery-prev { left: 5px; }
.gallery-next { right: 5px; }

.gallery-prev svg,
.gallery-next svg {
  width: 40px;   /* bigger */
  height: 40px;
  fill: #000000;
  transition: transform 0.3s ease; /* smooth hover grow */
}

/* Hover effect: grow slightly */
.gallery-prev:hover svg,
.gallery-next:hover svg {
  transform: scale(1.3);
}
.thumbnails-wrapper {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.thumbnails-wrapper img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border 0.2s;
}

.thumbnails-wrapper img.active,
.thumbnails-wrapper img:hover {
  border-color: #333;
}


.product-showcase-block{
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  max-width: 1200px;
  align-items: top;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}


.product-showcase-block .content-wrapper-single {
   width: calc(50% - 1.5rem);
  margin: 0;
}

.product-gallery-slider {
  width: calc(50% - 1.5rem);
  flex-shrink: 0;
}

.content-wrapper-single h2{
  margin-top: 0;
  padding-top:0;
}

.content-wrapper-single .p-flex{
  justify-content: flex-start;
}

.product-showcase-block .content-wrapper-single .p-price{
  text-align: start;
  font-size:1.6em;
}

.p-header {
  font-size:16px;
}

.swiper-slide .content-wrapper a{
  text-align:center;
}

ul {    padding-inline-start: 0;}

@media (max-width: 768px) {
  .product-showcase-block {
    flex-direction: column;   /* stack vertically */
    gap: 1.5rem;
    align-items: center;      /* center the stacked blocks */
  }

  .product-showcase-block .content-wrapper-single {
    width: 100%;              /* full width on mobile */
    max-width: 500px;         /* optional to match image width */
  }

  .product-gallery-slider {
    width: 100%;
    max-width: 500px;
  }
}

.scent-profile {
  display: flex;
  gap: 8px;
  align-items: center;
  font-weight: bold;
}

.scent-profile .scent-divider {
  color: #999;
  font-weight: 300;
}

/* ── Product Specs (Burn Time / Size) ── */
.product-specs {
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 1rem 0;
  border-top: 1px solid #e0d8cf;
  border-bottom: 1px solid #e0d8cf;
}

.product-specs .spec-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.product-specs .spec-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #888;
}

.product-specs .spec-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: #333;
}

/* ── Prominent Buy Now Button ── */
.p-link {
  display: block;
  text-align: center;
  padding: 1rem 2rem;
  margin-top: 1.5rem;
  background-color: #3d3029;
  color: #fff !important;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid #3d3029;
  transition: background-color 0.3s ease, color 0.3s ease;
  cursor: pointer;
  box-sizing: border-box;
}


/* ── Content Refinements ── */
.content-wrapper-single .p-price {
  font-size: 1.15rem;
  font-weight: 400;
  color: #333;
  margin-bottom: 1rem;
}

.content-wrapper-single .p-flex .p-price s {
  color: #999;
  font-weight: 300;
}

.product-details-wrapper .fragrance {
  font-size: 0.9rem;
  color: #666;
  margin-top: 0.5rem;
}

.product-details-wrapper .description {
  font-size: 0.95rem;
  line-height: 1.65;
  color: #555;
  margin-top: 0.75rem;
}

@media (max-width: 480px) {
  .product-specs {
    gap: 1rem;
  }
}

