/* ================================
   PRODUCT SLIDE REVEAL GRID
================================ */

.product-row {
  position: relative;
  display: flex;
  align-items: stretch;
  height: 290px;
  margin-bottom: 40px;
  overflow: hidden;
  cursor: pointer;
  border-bottom: 1px solid #e5e5e5;
}

/* IMAGE COLUMN */
.product-image {
  width: 40%;
  overflow: hidden;
  position: relative;
  z-index: 5; /* image always above reveal */
}


.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* VIEW MORE COLUMN */
.product-label {
  width: 60%;
  display: flex;
  align-items: center;
  padding-left: 60px;
}

.product-label h2 {
  font-size: 64px;
  letter-spacing: 4px;
  opacity: 0.08;
  margin: 0;
  transition: opacity 0.3s ease;
  user-select: none;
}

/* Hover polish */
.product-row:hover .product-label h2 {
  opacity: 0.15;
}

/* SLIDE REVEAL PANEL (HIDDEN BY DEFAULT) */
.product-reveal {
  position: absolute;
  top: 0;
  left: 40%;            
  width: 0;            
  height: 100%;
  background: #ffffff;
  overflow: hidden;
  transition: width 0.25s cubic-bezier(0.77, 0, 0.175, 1);
  z-index: 4;
  border-left: 1px solid #e5e5e5;
}

/* ACTIVE STATE – SLIDES RIGHT */
.product-row.active .product-reveal {
  width: 60%;           /* reveals into label area */
}

/* CONTENT INSIDE */
.product-reveal-content {
  opacity: 0;
  padding: 40px 60px;
  transition: opacity 0.3s ease 0.25s;
}

.product-row.active .product-reveal-content {
  opacity: 1;
}


/* ================================
   RESPONSIVE (MOBILE)
================================ */

@media (max-width: 768px) {

  .product-row {
    flex-direction: column;
    height: auto;
  }

  .product-image,
  .product-label {
    width: 100%;
  }

  .product-label {
    padding: 20px;
  }

  .product-label h2 {
    font-size: 36px;
  }

  .product-reveal {
    position: relative;
    left: 0;
    width: 100%;
    transform: translateY(-100%);
  }

  .product-row.active .product-reveal {
    transform: translateY(0);
  }

  .product-reveal-content {
    padding: 30px 20px;
  }
}
