/* Product Feature Section */
.product {
  padding: var(--section-padding) 0;
  background: linear-gradient(180deg, var(--white) 0%, rgba(220,232,212,0.3) 100%);
}

.product-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.product-text {
  width: 40%;
}

.product-text p {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 40px;
  line-height: 1.6;
}

.product-visual {
  width: 55%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 600px;
}

.product-can-img {
  width: auto;
  max-width: 80%;
  max-height: 500px;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15));
  animation: productFloat 6s ease-in-out infinite;
}

@keyframes productFloat {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

.callouts {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.callout {
  position: absolute;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(8px);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.callout::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  background: var(--green-400);
  border-radius: 50%;
}

/* Positioning callouts around the can */
.c1 { top: 20%; left: 22%; }
.c2 { top: 30%; right: 22%; }
.c3 { top: 70%; left: 22%; }
.c4 { top: 80%; right: 22%; }

/* Mobile */
@media (max-width: 768px) {
  .product-container {
    flex-direction: column;
  }
  .product-text, .product-visual {
    width: 100%;
  }
  .product-visual {
    min-height: 500px;
  }
  .callouts {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    margin-top: 40px;
    gap: 12px;
  }
  .callout {
    position: relative;
    top: auto; right: auto; left: auto; bottom: auto;
  }
}
