.product-detail {
  display: flex;
  gap: 2rem;               /* space between the image & info */
  align-items: flex-start;  /* aligns tops of divs */
  flex-wrap: wrap;          /* allows stacking on very narrow screens */
}

.product-images {
  flex: 1 1 58%;           /* each takes ~45% of container, flexible */
  min-width: 250px;        /* ensures they don’t shrink too much */
}

.product-info {
  flex: 1 1 37%;           /* each takes ~45% of container, flexible */
  min-width: 250px;        /* ensures they don’t shrink too much */
}

.product-images img {
  width: 100%;
  height: auto;
  display: block;
}

.product-info h1 {
    font-size: 1.8rem;
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-weight: 300;
    color: #555;
}

.product-info h2 {
    font-size: 1.1rem;
    margin-top: 0;
    margin-bottom: 2rem;
    font-weight: 100;
    color: #555;
}

.product-info h3 {
    font-size: 1.4rem;
    margin-top: 0;
    margin-bottom: 2rem;
    font-weight: 200;
    color: #555;
}

.product-info h4 {
    font-size: 1.2rem;
    font-weight: 100;
    color: #555;
}

.product-info p {
    font-size: 1rem;
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-weight: 200;
    color: #555;
    line-height: 1.6rem;
}

.product-price {
  font-size: 1.4rem;
  font-weight: bold;
  color: #c55a11; /* warm orange accent */
  margin-bottom: 1rem;
}

.product-specs {
  margin: 1rem 0;
  padding-left: 1.2rem;
}

/* Buy area */
.product-buy-single-product {
  display: flex;
  flex-direction: column;
  align-items: center;
    padding-bottom: 0rem;
    padding-top: 2rem;
}

.product-buy-single-product button {
  background-color: #0070ba;
  color: white;
  border: none;
  padding: 0.6rem 1rem;
  cursor: pointer;
  font-size: 1rem;
}
.product-buy button:hover {
  background-color: #005c99;
}
.paypal-logo {
  margin-top: 0.9rem;
    margin-bottom: 0.5rem;
  max-height: 20px;
}

.paypal-btn {
    width: 240px;
    height: auto;
    display: block;
    cursor: pointer;
    transition: transform 0.6s ease;
}

.paypal-btn:hover {
    transform: scale(1.05); /* zooms in slightly on rollover */
}

.buy-button {
  display: inline-block;
  background: #c55a11; /* warm orange */
  color: #fff;
  padding: 0.8rem 1.2rem;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
}

.buy-button:hover {
  background: #a0490d;
}

.etsy-btn-wrapper {
  display: flex;
  justify-content: center; /* only centres this button */
}

.etsy-btn {
  position: relative;
  display: inline-block;
    width: 150px;  /* match your image width */
  height: 60px;  /* match your image height */
}

.etsy-logo {
    width: 100%;
    height: 100%;
    transition: transform 0.9s ease, opacity 0.9s ease;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

.etsy-logo.colour {
  opacity: 0;
}

.etsy-btn:hover .etsy-logo.grey {
  transform: scale(1.05);
  opacity: 0;
}

.etsy-btn:hover .etsy-logo.colour {
  transform: scale(1.05);
  opacity: 1;
}

.contact-link {
  color: #00aaff; /* light blue */
  text-decoration: none; /* remove underline */
    display: inline-block;
  transition: color 0.9s ease, transform 0.9s ease;
}

.contact-link:hover {
  color: #888;
  transform: scale(1.05); /* subtle growth */
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .product-images,
  .product-info {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
