body {
   font-weight: bold;
    background-color: #FFCFF0;
}

/* review.css - Add this stylesheet to your review pages */

/* Wrapper for each individual fashion purchase */
.review-entry {
  margin-bottom: 70px;
  padding-bottom: 50px;
  border-bottom: 3px double #F279C8; /* Cute dashed divider between purchases */
}

/* Removes the divider line on your very oldest purchase at the bottom */
.review-entry:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

/* Makes the main container snugger and cozier than your default 900px */
.innercontainer {
  width: 780px !important;
  max-width: 95%;
  margin: 0 auto;
}

/* 1. Header Box Styling */
.review-title-box {
  background-image: url("deco/foollovers_pink_plaid_bg.gif");
  border: double #F279C8;
  padding: 15px;
  text-align: center;
  margin-bottom: 20px;
}

.product-title {
  margin: 10px 0 0 0;
  color: #55038C;
  font-size: 24px;
  text-shadow: 1px 1px 0px #ffffff;
}

/* 2. Main Image Override (Inside Box 1) */
.box1 img {
  max-width: 100%;
  height: auto;
  border: 1px dashed #F279C8;
  margin-bottom: 10px;
}

/* 3. Coordinate Gallery (3 horizontal boxes) */
.gallery-box {
  background-image: url("deco/foollovers_pink_plaid_bg.gif");
  border: double #F279C8;
  padding: 15px;
  margin-top: 20px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 boxes horizontal */
  gap: 12px;
  margin-top: 15px;
}

/* Taller height so your vertical/close-up fashion photos look beautiful */
.gallery-grid div {
  background-color: #fcd6ea;
  border: 1px dashed #F279C8;
  height: 350px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.img-resize {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Sweet hover effect matching your site style */
.gallery-grid div:hover {
  box-shadow: 0 0 10px #F279C8;
  transform: scale(1.04);
}

/* Home Button Container */
.home-button-container {
  text-align: center;
  margin-top: 10px;
}

/* Regular Button Styles */
.regular-btn {
  display: inline-block;
  font-size: 12px;
  text-transform: uppercase;
  text-align: center;
  padding: 10px 20px;
  border: 3px double #f279c8;
  background-color: #FFCFF0;
  color: #55038C;
  text-decoration: none;
  cursor: pointer;
}

/* Hover effect for the regular button */
.regular-btn:hover {
  background-color: #f279c8;
  transition: background-color 0.3s ease;
}

a:hover {
  text-decoration: underline dotted;
  box-shadow: 0 0 10px #ffffff;
  color: #F279C8;
  background-color: #ffffff;
  transition: color 0.3s ease, background-color 0.3s ease;
}

.links {
  list-style-type:none;
}

.links li {
  background-color: #F279C8;
  margin-bottom:3px;
}

/* Mobile Responsive Overrides */
@media (max-width: 768px) {
  .innercontainer {
    width: 100% !important;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(1, 1fr); /* Stacks vertically on phones */
  }
  
  .gallery-grid div {
    height: 220px; /* Slightly taller on mobile for better details */
  }
}