/* Florissima — /presentes */

:root {
  --rose: #cf848a;
  --rose-dark: #cf848a;
  --rose-soft: #d99aa9;
  --cream: #ffffff;
  --cream-deep: #ffffff;
  --ink: #cf848a;
  --line: #e7d9d3;
  --maxw: 1200px;
  --hero-bg: #ffffff;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Jost", "Poppins", sans-serif;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { text-decoration: none; color: inherit; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--rose);
  margin: 0 0 6px;
}

.eyebrow.light { color: #fff; opacity: 0.9; }

.script-heading {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 400;
  font-size: 44px;
  color: var(--rose-dark);
  margin: 0 0 16px;
  line-height: 1.1;
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
}

/* Header */

header.site {
  position: relative;
  z-index: 10;
  width: 100%;
  background: var(--cream);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 32px;
  max-width: var(--maxw);
  margin: 0 auto;
}

.logo {
  display: block;
  line-height: 0;
}
.logo img {
  width: 100px;
  height: auto;
  display: block;
  transition: transform 0.25s ease;
}

.logo:hover img {
  transform: scale(1.06);
}

nav.main {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 12.5px;
  letter-spacing: 0.1em;
  color: var(--rose);
}

nav.main a:not(.disabled) {
  position: relative;
  padding-bottom: 4px;
}

nav.main a:not(.disabled)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

nav.main a:not(.disabled):hover::after,
nav.main a.current::after {
  transform: scaleX(1);
  transform-origin: left;
}

nav.main a.disabled {
  color: var(--rose);
  opacity: 0.45;
  cursor: default;
  position: relative;
}


/* Hero */

.presentes-hero {
  position: relative;
  height: 560px;
  overflow: hidden;
}

.presentes-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.presentes-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(60, 30, 34, 0.55) 0%, rgba(60, 30, 34, 0.32) 45%, rgba(60, 30, 34, 0.05) 75%);
}

.presentes-hero-copy {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 0 32px 48px;
  max-width: var(--maxw);
  width: 100%;
  margin: 0 auto;
  right: 0;
}

.presentes-hero-logo {
  margin: 0 0 28px;
}

.presentes-hero-logo img {
  height: 280px;
  width: auto;
}

.presentes-hero-copy .scroll-hint {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.4px solid rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  color: #fff;
  animation: scroll-hint-bounce 2s ease-in-out infinite;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.presentes-hero-copy .scroll-hint:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
}

@keyframes scroll-hint-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* Intro */

.intro {
  text-align: center;
  max-width: 780px;
  margin: 90px auto 0;
  padding: 0 32px;
}

.intro .eyebrow {
  font-size: 12px;
  line-height: 1.1;
  letter-spacing: 0.18em;
  color: var(--rose);
  margin-bottom: 2px;
}

.intro h2 {
  font-family: "Playfair Display", serif;
  font-weight: 400;
  font-size: 38px;
  color: var(--rose-dark);
  margin: 0 0 20px;
}

.intro p {
  font-size: 16.5px;
  line-height: 1.8;
  color: var(--ink);
  margin: 0 0 16px;
}

.scroll-hint {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.4px solid var(--rose-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 34px auto 0;
  color: var(--rose);
  font-size: 16px;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  animation: scroll-hint-bounce 2s ease-in-out infinite;
}

.scroll-hint:hover {
  background: var(--rose);
  border-color: var(--rose);
  color: #fff;
  animation-play-state: paused;
}

@keyframes scroll-hint-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* Product grid */

.products {
  max-width: var(--maxw);
  margin: 56px auto 0;
  padding: 0 32px 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 32px;
}

.product .photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 4px;
  overflow: hidden;
  background: var(--cream-deep);
}

.product .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product .photo.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  background: linear-gradient(160deg, #f4e9df, #efd9c8);
  color: var(--rose);
  text-align: center;
  font-size: 13px;
  padding: 20px;
}

.product h3 {
  font-family: "Jost", "Poppins", sans-serif;
  font-weight: 500;
  font-size: 20px;
  color: var(--ink);
  margin: 18px 0 8px;
}

.product .desc {
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--ink);
  min-height: 0;
}

.product .avail {
  font-size: 13px;
  color: var(--ink);
  margin-top: 10px;
}

.product .price {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin: 14px 0 14px;
}

.product {
  display: flex;
  flex-direction: column;
}

.product .order-btn {
  display: inline-block;
  width: 100%;
  text-align: center;
  padding: 12px 0;
  border: 1.2px solid var(--rose);
  border-radius: 3px;
  color: var(--rose);
  font-size: 12px;
  letter-spacing: 0.14em;
  margin-top: auto;
  transition: background 0.2s ease, color 0.2s ease;
}

.product .order-btn:hover {
  background: var(--rose);
  color: #fff;
}

/* Footer */

footer.site {
  background: var(--cream-deep);
  text-align: center;
  padding: 26px 20px;
  font-size: 12.5px;
  color: var(--ink);
  border-top: 1px solid var(--rose);
}

/* Responsive */

@media (max-width: 860px) {
  .presentes-hero { height: 460px; }
  .presentes-hero-logo img { height: 220px; }
  .products { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .header-inner { flex-direction: column; align-items: center; padding: 16px 20px; gap: 12px; }
  nav.main { justify-content: center; flex-wrap: wrap; gap: 10px 16px; font-size: 10.5px; }
  .presentes-hero { height: 420px; }
  .presentes-hero-logo img { height: 170px; }
  .presentes-hero-copy { padding: 0 20px 32px; }
  .intro { margin-top: 60px; }
  .intro h2 { font-size: 28px; }
  .products { grid-template-columns: 1fr; padding: 0 20px 60px; gap: 40px; }
}
