.con {
  min-height: auto;
  padding-bottom: 0;
}

#product_card {
  max-width: 1200px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--surface);
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 1.25rem;
  padding: 1.4rem;
  padding: 1.4rem;
}

#left {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
}

#left h1 {
  font-family: 'Cinzel', serif;
  letter-spacing: 0.08em;
  font-size: clamp(1.3rem, 2.6vw, 2rem);
  color: var(--accent);
  text-align: center;
  padding: 1rem;
}

#product_card img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
}

#right {
  background: var(--surface-soft);
  border-radius: 20px;
  border: 1px solid var(--line);
  padding: 1.3rem;
  line-height: 1.7;
  color: var(--muted);
}

#right .sec-title {
  display: inline-block;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

#buttondiv {
  grid-column: 1 / -1;
  display: flex;
  justify-content: flex-end;
  padding: 0.4rem;
}

#button {
  text-decoration: none;
  color: #000;
  background: var(--accent);
  border-radius: 999px;
  padding: 0.75rem 1.35rem;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

#button:hover {
  transform: translateY(-2px);
  background: #000;
  color: #fff;
  border: 1px solid #fff;
}

.floating-icons {
  position: fixed;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  flex-direction: column;
  gap: 0.8rem;
  z-index: 10;
}

.floating-icons img:hover {
  transform: translateX(-6px);
}

@media (max-width: 980px) {
  #product_card {
    grid-template-columns: 1fr;
    padding: 1rem;
  }

  #product_card img {
    height: 250px;
  }

  #buttondiv {
    justify-content: center;
  }

  .floating-icons {
    position: static;
    transform: none;
    margin: 1.5rem auto 0;
    flex-direction: row;
    justify-content: center;
  }

  .floating-icons img:hover {
    transform: translateY(-4px);
  }
}