@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800&family=Rubik:wght@400;500;700&display=swap");

:root {
  --fresh-bg: #fff5f8;
  --fresh-white: #ffffff;
  --fresh-pink: #ff4d85;
  --fresh-pink-hover: #e6396e;
  --fresh-light-pink: #ffe0e9;
  --fresh-text: #2d3436;
  --fresh-text-muted: #636e72;
  --fresh-border: #ffd1df;
}

* {
  outline: none;
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
  font-family: "Nunito", sans-serif;
  background-color: var(--fresh-bg);
  background-image:
    radial-gradient(
      circle at 15% 50%,
      rgba(255, 77, 133, 0.05),
      transparent 25%
    ),
    radial-gradient(
      circle at 85% 30%,
      rgba(255, 77, 133, 0.05),
      transparent 25%
    );
  color: var(--fresh-text);
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: none;
  line-height: 1.7;
}

header {
  background-color: var(--fresh-white);
  border-bottom: 2px solid var(--fresh-border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 20px rgba(255, 77, 133, 0.08);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 20px;
}

.logo {
  height: 58px;
}

.logo img {
  height: 58px;
}

.header-actions {
  display: flex;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ff6b9d 0%, var(--fresh-pink) 100%);
  color: var(--fresh-white);
  padding: 12px 28px;
  text-decoration: none;
  font-family: "Rubik", sans-serif;
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 4px 15px rgba(255, 77, 133, 0.3);
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 77, 133, 0.4);
  background: linear-gradient(135deg, var(--fresh-pink) 0%, #e6396e 100%);
}

.section {
  max-width: 900px;
  margin: 50px auto;
  padding: 0 20px;
}

h1 {
  font-family: "Rubik", sans-serif;
  color: var(--fresh-text);
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 30px;
  line-height: 1.2;
  text-align: center;
  position: relative;
}

h1::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background-color: var(--fresh-pink);
  margin: 15px auto 0;
  border-radius: 2px;
}

p {
  margin-bottom: 25px;
  font-size: 17px;
  color: var(--fresh-text-muted);
  text-align: justify;
}

/* Author Block */
.review-hero__author {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0 auto 40px;
  padding: 20px 25px;
  background-color: var(--fresh-white);
  border: 1px solid var(--fresh-border);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(255, 77, 133, 0.05);
  max-width: 600px;
}

.review-hero__author-avatar {
  margin: 0;
  padding: 0;
}

.review-hero__author-avatar-placeholder {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background-color: var(--fresh-light-pink);
  color: var(--fresh-pink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-family: "Rubik", sans-serif;
  font-weight: 700;
  transform: rotate(-5deg);
  transition: transform 0.3s ease;
}

.review-hero__author:hover .review-hero__author-avatar-placeholder {
  transform: rotate(0deg);
}

.review-hero__author-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.review-hero__author-name {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Rubik", sans-serif;
  font-weight: 700;
  color: var(--fresh-text);
  font-size: 19px;
  margin: 0;
}

.review-hero__verified-badge {
  margin: 0;
  display: flex;
}

.review-hero__author-updated {
  font-size: 13px;
  color: var(--fresh-text-muted);
  font-weight: 600;
}

/* Pink Vitrine Grid */
.fresh-vitrine {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin: 40px 0;
}

.fresh-card {
  background-color: var(--fresh-white);
  border: 2px solid var(--fresh-light-pink);
  border-radius: 24px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.fresh-card:hover {
  transform: translateY(-5px);
  border-color: var(--fresh-pink);
  box-shadow: 0 15px 35px rgba(255, 77, 133, 0.1);
}

.fresh-card__icon {
  font-size: 42px;
  margin-bottom: 15px;
  background: var(--fresh-bg);
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: inset 0 3px 10px rgba(255, 77, 133, 0.1);
}

.fresh-card__title {
  font-family: "Rubik", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--fresh-text);
  margin-bottom: 8px;
}

.fresh-card__bonus {
  font-size: 14px;
  color: var(--fresh-text-muted);
  margin-bottom: 20px;
  flex-grow: 1;
  line-height: 1.5;
}

.fresh-card__bonus span {
  display: block;
  color: var(--fresh-pink);
  font-weight: 800;
  font-size: 16px;
  margin-top: 4px;
}

.fresh-card .button {
  width: 100%;
  padding: 14px 20px;
  font-size: 14px;
}

@media only screen and (max-width: 767px) {
  .review-hero__author {
    flex-direction: column;
    text-align: center;
    padding: 25px;
  }
  h1 {
    font-size: 30px;
  }
}

footer {
  margin-top: auto;
  background-color: var(--fresh-white);
  color: var(--fresh-text-muted);
  padding: 50px 20px;
  border-top: 1px solid var(--fresh-border);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.footer-inner p {
  font-size: 14px;
  margin-bottom: 16px;
}

.footer-brand p {
  margin-bottom: 8px;
}

.footer-brand strong {
  font-family: "Rubik", sans-serif;
  color: var(--fresh-pink);
  font-size: 20px;
  letter-spacing: 1px;
}
