/* =========================================================
   ALEGREI
   DESIGN SYSTEM
========================================================= */

:root {

  --creme: #F7EFE3;
  --terracota: #E4637A;
  --ocre: #E0A23A;
  --oliva: #8B8F4F;
  --azul: #2C5BD7;
  --coral: #FF6B68;
  --rosa: #F7A6B6;
  --verde: #2E8B57;
  --marrom: #4B3221;

  --white: #FFFFFF;
  --black: #251A15;

  --container: 1180px;

  --shadow:
    0 18px 50px rgba(75, 50, 33, 0.10);

  --radius-sm: 12px;
  --radius-md: 22px;
  --radius-lg: 34px;
}


/* =========================================================
   RESET
========================================================= */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    "Source Sans 3",
    Arial,
    sans-serif;

  color: var(--marrom);
  background: var(--creme);

  line-height: 1.6;

  overflow-x: hidden;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}


/* =========================================================
   CONTAINER
========================================================= */

.container {
  width: min(
    calc(100% - 40px),
    var(--container)
  );

  margin-inline: auto;
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;

  background:
    rgba(247, 239, 227, 0.94);

  backdrop-filter: blur(15px);

  border-bottom:
    1px solid rgba(75, 50, 33, 0.08);
}

.header-inner {
  min-height: 82px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 25px;
}

.logo,
.footer-logo {
  font-family:
    "Sora",
    sans-serif;

  font-weight: 700;

  font-size: 30px;

  color: var(--terracota);

  letter-spacing: -1.5px;
}

.nav-links {
  display: flex;
  align-items: center;

  gap: 28px;

  font-size: 15px;
  font-weight: 600;
}

.nav-links a {
  position: relative;
}

.nav-links a::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: -6px;

  width: 0;
  height: 2px;

  background: var(--terracota);

  transition: width .25s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.icon-button {
  width: 42px;
  height: 42px;

  border: 0;

  border-radius: 50%;

  display: grid;
  place-items: center;

  color: var(--marrom);
  background: transparent;

  font-size: 23px;

  transition:
    background .2s,
    transform .2s;
}

.icon-button:hover {
  background: rgba(228, 99, 122, .10);
  transform: translateY(-2px);
}

.cart-button {
  position: relative;
}

.cart-count {
  position: absolute;

  top: -2px;
  right: -2px;

  min-width: 19px;
  height: 19px;

  padding: 0 5px;

  border-radius: 50%;

  display: grid;
  place-items: center;

  background: var(--terracota);
  color: white;

  font-size: 11px;
  font-weight: 700;
}

.account-button {
  border: 0;
  background: transparent;

  display: flex;
  align-items: center;

  gap: 7px;

  color: var(--marrom);

  font-weight: 600;

  padding: 7px 10px;

  border-radius: 20px;

  transition: background .2s;
}

.account-button:hover {
  background: rgba(228, 99, 122, .10);
}

.account-icon {
  font-size: 20px;
}

.account-label {
  font-size: 14px;
}

.mobile-menu {
  display: none;
}


/* =========================================================
   MOBILE NAV
========================================================= */

.mobile-nav {
  display: none;
}


/* =========================================================
   TYPOGRAPHY
========================================================= */

.eyebrow {
  color: var(--terracota);

  text-transform: uppercase;

  font-size: 12px;

  letter-spacing: 2px;

  font-weight: 700;

  margin-bottom: 12px;
}

.script {
  color: var(--terracota);

  font-family:
    "Sora",
    sans-serif;

  font-style: italic;
}

.section {
  padding: 110px 0;
}

.section-header {
  display: flex;

  justify-content: space-between;
  align-items: flex-end;

  gap: 30px;

  margin-bottom: 42px;
}

.section-title {
  font-family:
    "Sora",
    sans-serif;

  font-size:
    clamp(30px, 4vw, 48px);

  line-height: 1.08;

  letter-spacing: -2px;

  color: var(--marrom);
}

.section-description {
  margin-top: 16px;

  max-width: 570px;

  font-size: 18px;

  color: rgba(75, 50, 33, .70);
}


/* =========================================================
   BUTTONS
========================================================= */

.button-row {
  display: flex;

  gap: 12px;

  flex-wrap: wrap;

  margin-top: 30px;
}

.btn {
  min-height: 50px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  padding:
    0 22px;

  border-radius: 999px;

  border: 1px solid transparent;

  font-weight: 700;

  font-size: 15px;

  transition:
    transform .2s,
    box-shadow .2s,
    background .2s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: white;

  background: var(--terracota);

  box-shadow:
    0 10px 25px rgba(228, 99, 122, .22);
}

.btn-primary:hover {
  background: #d8526b;
}

.btn-secondary {
  color: var(--marrom);

  background: transparent;

  border-color:
    rgba(75, 50, 33, .20);
}

.btn-secondary:hover {
  background: white;
}

.btn-white {
  background: white;
  color: var(--marrom);

  border: 0;
}

.full-btn {
  width: 100%;
}


/* =========================================================
   HERO
========================================================= */

.hero {
  min-height: 650px;

  display: flex;
  align-items: center;

  padding:
    80px 0;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 75% 30%,
      rgba(247, 166, 182, .30),
      transparent 30%
    );
}

.hero-grid {
  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap: 60px;

  align-items: center;
}

.hero-copy h1 {
  font-family:
    "Sora",
    sans-serif;

  font-size:
    clamp(44px, 6vw, 76px);

  line-height: .98;

  letter-spacing: -4px;
}

.hero-copy h1 span {
  display: block;

  color: var(--terracota);
}

.hero-text {
  max-width: 560px;

  margin-top: 25px;

  font-size: 20px;

  color: rgba(75, 50, 33, .72);
}


/* =========================================================
   HERO ART
========================================================= */

.hero-art {
  position: relative;

  min-height: 500px;

  display: grid;
  place-items: center;
}

.art-circle {
  width: 420px;
  height: 420px;

  border-radius: 50%;

  background:
    var(--rosa);

  position: absolute;

  box-shadow:
    inset 0 -20px 0 rgba(255,255,255,.15);
}

.hero-people {
  position: relative;

  z-index: 3;

  display: flex;

  align-items: flex-end;

  gap: 15px;

  transform:
    translateY(30px);
}

.person {
  width: 100px;
  height: 180px;

  border-radius:
    50px 50px 25px 25px;

  position: relative;
}

.person::before {
  content: "";

  position: absolute;

  width: 62px;
  height: 62px;

  border-radius: 50%;

  background: #D49A73;

  left: 50%;
  top: -52px;

  transform:
    translateX(-50%);
}

.person-1 {
  background: var(--azul);
  height: 180px;
}

.person-2 {
  background: var(--ocre);
  height: 215px;
}

.person-3 {
  background: var(--verde);
  height: 160px;
}

.person-1::before {
  background: #C8845E;
}

.person-2::before {
  background: #A96748;
}

.person-3::before {
  background: #E1A47D;
}

.cake {
  position: absolute;

  z-index: 5;

  bottom: 42px;

  width: 170px;
  height: 75px;

  border-radius:
    12px 12px 25px 25px;

  background: var(--creme);

  border:
    5px solid var(--marrom);

  box-shadow:
    0 12px 0 rgba(75,50,33,.12);
}

.cake::before {
  content: "";

  position: absolute;

  width: 185px;
  height: 25px;

  left: -12px;
  top: -14px;

  border-radius: 50%;

  background: var(--terracota);

  border:
    4px solid var(--marrom);
}

.cake-candle {
  position: absolute;

  top: -57px;
  left: 72px;

  font-size: 30px;

  color: var(--ocre);
}

.art-flower {
  position: absolute;

  z-index: 8;

  font-size: 62px;

  color: var(--terracota);
}

.flower-1 {
  top: 40px;
  right: 50px;

  transform: rotate(-20deg);
}

.flower-2 {
  bottom: 55px;
  left: 40px;

  color: var(--verde);

  transform: rotate(15deg);
}

.confetti {
  position: absolute;

  z-index: 10;

  font-size: 28px;

  color: var(--azul);
}

.c1 {
  top: 100px;
  left: 30px;
}

.c2 {
  right: 20px;
  bottom: 100px;

  color: var(--ocre);
}

.c3 {
  top: 170px;
  right: 10px;

  font-size: 40px;

  color: var(--coral);
}


/* =========================================================
   CATEGORIES
========================================================= */

.category-grid {
  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  gap: 18px;
}

.category-card {
  position: relative;

  min-height: 280px;

  padding: 28px;

  border-radius: var(--radius-md);

  overflow: hidden;

  background: white;

  box-shadow:
    0 8px 30px rgba(75,50,33,.06);

  transition:
    transform .25s,
    box-shadow .25s;
}

.category-card:nth-child(1) {
  background: #F7A6B6;
}

.category-card:nth-child(2) {
  background: #E0A23A;
}

.category-card:nth-child(3) {
  background: #8B8F4F;
  color: white;
}

.category-card:nth-child(4) {
  background: #2C5BD7;
  color: white;
}

.category-card:hover {
  transform: translateY(-7px) rotate(-1deg);

  box-shadow:
    0 18px 45px rgba(75,50,33,.14);
}

.category-card h3 {
  font-family:
    "Sora",
    sans-serif;

  font-size: 22px;

  max-width: 180px;
}

.category-card p {
  margin-top: 10px;

  max-width: 200px;

  opacity: .75;
}

.category-icon {
  position: absolute;

  right: 20px;
  bottom: 18px;

  font-size: 70px;

  transform: rotate(-8deg);
}

.category-arrow {
  position: absolute;

  right: 20px;
  top: 20px;

  font-size: 28px;
}


/* =========================================================
   PRODUCTS
========================================================= */

.product-grid {
  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  gap: 22px;
}

.product-card {
  background: white;

  border-radius:
    var(--radius-md);

  overflow: hidden;

  box-shadow:
    0 8px 30px rgba(75,50,33,.06);

  transition:
    transform .25s,
    box-shadow .25s;
}

.product-card:hover {
  transform: translateY(-5px);

  box-shadow:
    0 20px 45px rgba(75,50,33,.12);
}

.product-visual {
  height: 220px;

  display: grid;
  place-items: center;

  font-size: 80px;

  position: relative;
}

.product-visual::after {
  content: "Alegrei";

  position: absolute;

  right: 15px;
  bottom: 10px;

  font-family: "Sora";

  font-size: 11px;

  font-weight: 700;

  opacity: .35;
}

.product-info {
  padding: 22px;
}

.product-category {
  color: var(--terracota);

  text-transform: uppercase;

  letter-spacing: 1.5px;

  font-size: 10px;

  font-weight: 700;
}

.product-name {
  font-family:
    "Sora",
    sans-serif;

  font-size: 18px;

  line-height: 1.25;

  margin-top: 7px;
}

.product-description {
  color:
    rgba(75,50,33,.65);

  font-size: 14px;

  margin-top: 8px;

  min-height: 44px;
}

.product-bottom {
  margin-top: 18px;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 10px;
}

.product-price {
  font-weight: 700;

  font-size: 18px;
}

.product-add {
  width: 38px;
  height: 38px;

  border: 0;

  border-radius: 50%;

  color: white;

  background: var(--terracota);

  font-size: 20px;
}

.filter-row {
  display: flex;

  gap: 10px;

  flex-wrap: wrap;

  margin-bottom: 35px;
}

.filter-btn.active {
  background: var(--marrom);
  color: white;

  border-color: var(--marrom);
}


/* =========================================================
   FINDER
========================================================= */

.finder {
  padding: 100px 0;

  background:
    var(--marrom);

  color: white;
}

.finder-inner {
  max-width: 850px;

  margin: auto;

  text-align: center;
}

.finder-eyebrow {
  color: var(--rosa);
}

.finder h2 {
  font-family:
    "Sora",
    sans-serif;

  font-size:
    clamp(34px, 5vw, 55px);

  line-height: 1.05;

  letter-spacing: -2px;
}

.finder h2 span {
  color: var(--rosa);
}

.finder p {
  margin: 18px auto 35px;

  max-width: 650px;

  color: rgba(255,255,255,.70);

  font-size: 18px;
}

.finder-options {
  display: flex;

  justify-content: center;

  gap: 10px;

  flex-wrap: wrap;
}

.finder-option {
  padding: 13px 20px;

  border:
    1px solid rgba(255,255,255,.20);

  border-radius: 999px;

  background:
    rgba(255,255,255,.05);

  color: white;

  transition:
    background .2s,
    transform .2s;
}

.finder-option:hover,
.finder-option.selected {
  background: var(--terracota);

  transform: translateY(-2px);
}


/* =========================================================
   EDITORIAL
========================================================= */

.editorial-grid {
  display: grid;

  grid-template-columns:
    1.5fr 1fr;

  gap: 20px;
}

.editorial-card {
  min-height: 390px;

  border-radius:
    var(--radius-lg);

  overflow: hidden;

  position: relative;

  display: flex;
  align-items: flex-end;

  color: white;
}

.editorial-main {
  background:
    linear-gradient(
      135deg,
      var(--azul),
      #6d87dc
    );
}

.editorial-small {
  background:
    linear-gradient(
      135deg,
      var(--oliva),
      #A6A96A
    );
}

.editorial-content {
  padding: 35px;

  position: relative;

  z-index: 2;
}

.editorial-content h3 {
  font-family:
    "Sora",
    sans-serif;

  font-size: 29px;

  line-height: 1.15;

  max-width: 570px;
}

.editorial-content p {
  margin: 15px 0 22px;

  max-width: 540px;

  color: rgba(255,255,255,.78);
}

.editorial-decoration {
  font-size: 80px;

  line-height: .7;

  margin-bottom: 25px;

  color: var(--rosa);
}


/* =========================================================
   TESTIMONIALS
========================================================= */

.testimonials {
  background: #F4E7D6;
}

.testimonial-grid {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 20px;
}

.testimonial {
  background: white;

  border-radius:
    var(--radius-md);

  padding: 30px;

  min-height: 220px;

  position: relative;
}

.quote-mark {
  color: var(--terracota);

  font-family: Georgia, serif;

  font-size: 55px;

  line-height: .7;

  margin-bottom: 15px;
}

.testimonial p {
  font-size: 18px;

  line-height: 1.45;
}

.testimonial-name {
  margin-top: 22px;

  font-weight: 700;

  color: var(--terracota);
}


/* =========================================================
   ABOUT
========================================================= */

.about-grid {
  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap: 70px;

  align-items: center;
}

.about-art {
  min-height: 450px;

  position: relative;

  display: grid;
  place-items: center;
}

.about-circle {
  width: 360px;
  height: 360px;

  border-radius: 50%;

  background: var(--ocre);

  display: grid;
  place-items: center;

  font-size: 120px;

  color: white;

  transform: rotate(-6deg);
}

.about-flower {
  position: absolute;

  font-size: 100px;

  color: var(--terracota);

  right: 15%;
  bottom: 5%;
}

.about-content p {
  margin-top: 20px;

  font-size: 18px;

  color: rgba(75,50,33,.72);
}

.about-highlight {
  color: var(--terracota) !important;

  font-weight: 700;
}


/* =========================================================
   NEWSLETTER
========================================================= */

.newsletter {
  padding: 75px 0;

  background: var(--rosa);
}

.newsletter-inner {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 40px;
}

.newsletter h2 {
  font-family:
    "Sora",
    sans-serif;

  font-size: 35px;

  letter-spacing: -1.5px;
}

.newsletter p {
  margin-top: 7px;
}

.newsletter-form {
  display: flex;

  gap: 8px;

  min-width: min(100%, 450px);
}

.newsletter-form input {
  min-width: 0;

  flex: 1;

  height: 50px;

  border: 0;

  outline: none;

  border-radius: 999px;

  padding: 0 18px;

  color: var(--marrom);

  background: white;
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
  background: var(--marrom);

  color: white;

  padding:
    75px 0 25px;
}

.footer-grid {
  display: grid;

  grid-template-columns:
    2fr repeat(3, 1fr);

  gap: 45px;
}

.footer-logo {
  color: var(--rosa);

  margin-bottom: 15px;
}

.footer-description {
  max-width: 300px;

  color:
    rgba(255,255,255,.62);
}

.footer-column {
  display: flex;

  flex-direction: column;

  gap: 10px;
}

.footer-column h4 {
  color: var(--rosa);

  margin-bottom: 8px;
}

.footer-column a {
  color:
    rgba(255,255,255,.70);

  transition: color .2s;
}

.footer-column a:hover {
  color: white;
}

.footer-bottom {
  margin-top: 55px;

  padding-top: 22px;

  border-top:
    1px solid rgba(255,255,255,.12);

  display: flex;

  justify-content: space-between;

  gap: 20px;

  color:
    rgba(255,255,255,.50);

  font-size: 13px;
}


/* =========================================================
   OVERLAYS
========================================================= */

.overlay {
  position: fixed;

  inset: 0;

  z-index: 500;

  background:
    rgba(37, 26, 21, .55);

  backdrop-filter: blur(5px);

  display: none;

  align-items: center;
  justify-content: center;

  padding: 20px;
}

.overlay.open {
  display: flex;

  animation:
    fadeIn .2s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}


/* =========================================================
   SEARCH
========================================================= */

.search-panel {
  width: min(700px, 100%);

  background: var(--creme);

  border-radius:
    var(--radius-md);

  padding: 30px;

  box-shadow: var(--shadow);

  max-height: 85vh;

  overflow-y: auto;
}

.search-header {
  display: flex;

  justify-content: space-between;

  align-items: flex-start;

  gap: 20px;

  margin-bottom: 25px;
}

.search-header h2 {
  font-family:
    "Sora",
    sans-serif;

  font-size: 30px;
}

.search-input {
  width: 100%;

  height: 58px;

  border:
    1px solid rgba(75,50,33,.16);

  background: white;

  border-radius: 16px;

  padding: 0 18px;

  outline: none;

  color: var(--marrom);

  font-size: 16px;
}

.search-input:focus {
  border-color: var(--terracota);
}

.search-results {
  display: grid;

  gap: 10px;

  margin-top: 18px;
}

.search-result {
  padding: 16px;

  border-radius: 14px;

  background: white;

  display: flex;

  align-items: center;

  gap: 15px;

  cursor: pointer;
}

.search-result:hover {
  background: #fff8f1;
}

.search-result-icon {
  width: 50px;
  height: 50px;

  display: grid;
  place-items: center;

  border-radius: 12px;

  font-size: 25px;

  background: var(--rosa);
}


/* =========================================================
   CART
========================================================= */

.cart-panel {
  width: min(550px, 100%);

  max-height: 90vh;

  display: flex;
  flex-direction: column;

  background: var(--creme);

  border-radius:
    var(--radius-md);

  box-shadow: var(--shadow);

  overflow: hidden;
}

.cart-header {
  padding: 30px;

  display: flex;

  justify-content: space-between;

  border-bottom:
    1px solid rgba(75,50,33,.08);
}

.cart-header h2 {
  font-family:
    "Sora",
    sans-serif;

  font-size: 30px;
}

.cart-items {
  padding: 20px 30px;

  overflow-y: auto;

  flex: 1;

  min-height: 200px;
}

.empty-cart {
  padding: 60px 20px;

  text-align: center;

  color:
    rgba(75,50,33,.60);
}

.empty-cart-icon {
  font-size: 50px;

  margin-bottom: 15px;
}

.cart-item {
  display: grid;

  grid-template-columns:
    65px 1fr auto;

  gap: 15px;

  align-items: center;

  padding: 14px 0;

  border-bottom:
    1px solid rgba(75,50,33,.08);
}

.cart-item-visual {
  width: 65px;
  height: 65px;

  border-radius: 14px;

  display: grid;
  place-items: center;

  font-size: 30px;
}

.cart-item-name {
  font-weight: 700;
}

.cart-item-price {
  color:
    rgba(75,50,33,.60);

  font-size: 13px;
}

.cart-item-controls {
  display: flex;

  align-items: center;

  gap: 8px;

  margin-top: 6px;
}

.qty-button {
  width: 25px;
  height: 25px;

  border: 0;

  border-radius: 50%;

  background: var(--creme);

  color: var(--marrom);
}

.remove-item {
  border: 0;

  background: transparent;

  color: var(--terracota);

  font-size: 12px;

  margin-left: 5px;
}

.cart-item-total {
  font-weight: 700;
}

.cart-footer {
  padding: 25px 30px;

  border-top:
    1px solid rgba(75,50,33,.08);
}

.cart-total {
  display: flex;

  justify-content: space-between;

  align-items: center;

  margin-bottom: 18px;

  font-size: 20px;
}


/* =========================================================
   PRODUCT MODAL
========================================================= */

.modal-content {
  width: min(900px, 100%);

  background: var(--creme);

  border-radius:
    var(--radius-md);

  position: relative;

  overflow: hidden;

  box-shadow: var(--shadow);
}

.close-modal {
  position: absolute;

  z-index: 10;

  top: 18px;
  right: 18px;

  width: 42px;
  height: 42px;

  border: 0;

  border-radius: 50%;

  background: white;

  color: var(--marrom);

  font-size: 26px;
}

.modal-grid {
  display: grid;

  grid-template-columns:
    1fr 1fr;
}

.modal-image {
  min-height: 500px;

  padding: 35px;

  display: grid;
  place-items: center;

  background: var(--rosa);
}

.modal-visual {
  width: 100%;
  height: 100%;

  min-height: 420px;

  display: grid;
  place-items: center;

  font-size: 130px;

  border-radius: 25px;

  background:
    rgba(255,255,255,.22);
}

.modal-info {
  padding: 55px 45px;

  display: flex;

  flex-direction: column;

  justify-content: center;
}

.modal-category {
  color: var(--terracota);

  text-transform: uppercase;

  letter-spacing: 2px;

  font-size: 11px;

  font-weight: 700;
}

.modal-info h2 {
  font-family:
    "Sora",
    sans-serif;

  font-size: 38px;

  line-height: 1.1;

  margin-top: 8px;
}

.modal-price {
  margin-top: 15px;

  font-size: 25px;

  font-weight: 700;

  color: var(--terracota);
}

.modal-description {
  margin-top: 18px;

  color:
    rgba(75,50,33,.70);
}

.quantity {
  display: flex;

  align-items: center;

  gap: 15px;

  margin: 25px 0;
}

.quantity button {
  width: 40px;
  height: 40px;

  border: 0;

  border-radius: 50%;

  background: white;

  color: var(--marrom);

  font-size: 20px;
}

.quantity span {
  font-weight: 700;
}


/* =========================================================
   ACCOUNT
========================================================= */

.account-modal {
  width: min(480px, 100%);

  max-height: 92vh;

  overflow-y: auto;

  position: relative;

  background: var(--creme);

  border-radius:
    var(--radius-md);

  padding: 40px;

  box-shadow: var(--shadow);
}

.account-view {
  animation:
    viewIn .25s ease;
}

.account-view.hidden {
  display: none;
}

@keyframes viewIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.account-icon-large {
  width: 60px;
  height: 60px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background: var(--rosa);

  color: var(--terracota);

  font-size: 28px;

  margin-bottom: 22px;
}

.account-view h2 {
  font-family:
    "Sora",
    sans-serif;

  font-size: 30px;

  line-height: 1.15;
}

.account-intro {
  margin-top: 12px;

  color:
    rgba(75,50,33,.65);
}

.account-form {
  margin-top: 25px;

  display: grid;

  gap: 17px;
}

.account-form label,
.checkout-form label {
  display: grid;

  gap: 7px;

  font-weight: 600;

  font-size: 14px;
}

.account-form input,
.checkout-form input {
  width: 100%;

  height: 48px;

  border:
    1px solid rgba(75,50,33,.16);

  border-radius: 12px;

  background: white;

  outline: none;

  padding: 0 14px;

  color: var(--marrom);
}

.account-form input:focus,
.checkout-form input:focus {
  border-color: var(--terracota);
}

.password-field {
  position: relative;
}

.password-field input {
  padding-right: 75px;
}

.password-field button {
  position: absolute;

  right: 8px;
  top: 50%;

  transform:
    translateY(-50%);

  border: 0;

  background: transparent;

  color: var(--terracota);

  font-size: 12px;

  font-weight: 700;
}

.checkbox-label {
  display: flex !important;

  grid-template-columns: auto 1fr;

  align-items: flex-start;

  gap: 9px !important;

  font-weight: 400 !important;

  font-size: 13px !important;

  color: rgba(75,50,33,.70);
}

.checkbox-label input {
  width: 17px !important;
  height: 17px !important;
  margin-top: 2px;
}

.text-button {
  display: block;

  border: 0;

  background: transparent;

  color: var(--terracota);

  margin: 15px auto 0;

  font-weight: 700;
}

.account-divider {
  margin: 25px 0;

  display: flex;

  align-items: center;

  gap: 15px;

  color: rgba(75,50,33,.45);
}

.account-divider::before,
.account-divider::after {
  content: "";

  height: 1px;

  flex: 1;

  background:
    rgba(75,50,33,.12);
}

.account-bottom-text {
  text-align: center;

  color:
    rgba(75,50,33,.65);

  margin-bottom: 10px;
}


/* =========================================================
   PROFILE
========================================================= */

.profile-menu {
  margin-top: 25px;

  display: grid;

  gap: 10px;
}

.profile-menu button {
  width: 100%;

  border: 1px solid rgba(75,50,33,.10);

  background: white;

  border-radius: 15px;

  padding: 14px;

  display: grid;

  grid-template-columns:
    30px 1fr 20px;

  text-align: left;

  align-items: center;

  gap: 10px;

  color: var(--marrom);
}

.profile-menu button:hover {
  border-color: var(--rosa);

  background: #fffaf5;
}

.profile-menu button > span:first-child {
  color: var(--terracota);

  font-size: 20px;
}

.profile-menu strong {
  display: block;
}

.profile-menu small {
  color:
    rgba(75,50,33,.55);
}

.logout-button {
  margin-top: 20px;
}


/* =========================================================
   DATA / ORDERS
========================================================= */

.back-button {
  border: 0;

  background: transparent;

  color: var(--terracota);

  font-weight: 700;

  margin-bottom: 20px;
}

.data-card {
  margin-top: 25px;

  background: white;

  border-radius: 17px;

  padding: 8px 20px;
}

.data-card > div {
  padding: 16px 0;

  border-bottom:
    1px solid rgba(75,50,33,.08);

  display: grid;

  gap: 4px;
}

.data-card > div:last-child {
  border-bottom: 0;
}

.data-card span {
  color:
    rgba(75,50,33,.50);

  font-size: 12px;

  text-transform: uppercase;

  letter-spacing: 1px;
}

.data-card strong {
  word-break: break-word;
}

.security-note {
  margin-top: 18px;

  color:
    rgba(75,50,33,.50);

  font-size: 12px;
}

.orders-list {
  margin-top: 25px;

  display: grid;

  gap: 12px;
}

.order-card {
  background: white;

  border-radius: 15px;

  padding: 18px;
}

.order-card-top {
  display: flex;

  justify-content: space-between;

  gap: 15px;
}

.order-number {
  font-weight: 700;
}

.order-status {
  color: var(--verde);

  font-size: 12px;

  font-weight: 700;
}

.order-card p {
  margin-top: 8px;

  color:
    rgba(75,50,33,.65);

  font-size: 14px;
}

.order-total {
  margin-top: 12px;

  font-weight: 700;
}


/* =========================================================
   CHECKOUT
========================================================= */

.checkout-modal {
  width: min(750px, 100%);

  max-height: 92vh;

  overflow-y: auto;

  position: relative;

  background: var(--creme);

  border-radius:
    var(--radius-md);

  padding: 40px;

  box-shadow: var(--shadow);
}

.checkout-header {
  margin-bottom: 25px;
}

.checkout-header h2 {
  font-family:
    "Sora",
    sans-serif;

  font-size: 34px;
}

.checkout-header p {
  color:
    rgba(75,50,33,.65);
}

.checkout-login-message {
  padding: 17px;

  border-radius: 15px;

  background: #FFF3E6;

  border:
    1px solid rgba(224,162,58,.30);

  margin-bottom: 20px;
}

.checkout-login-message p {
  margin: 4px 0 12px;

  color:
    rgba(75,50,33,.65);
}

.checkout-form {
  display: grid;

  gap: 25px;
}

.checkout-section {
  padding: 22px;

  background: white;

  border-radius: 17px;
}

.checkout-section h3 {
  font-family: "Sora";

  margin-bottom: 18px;

  font-size: 19px;
}

.form-grid {
  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap: 15px;
}

.full-field {
  grid-column: 1 / -1;
}

.checkout-summary {
  background: white;

  border-radius: 17px;

  padding: 20px;
}

.checkout-summary > div {
  display: flex;

  justify-content: space-between;

  padding: 8px 0;

  color:
    rgba(75,50,33,.65);
}

.checkout-summary .checkout-total {
  margin-top: 8px;

  padding-top: 16px;

  border-top:
    1px solid rgba(75,50,33,.10);

  color: var(--marrom);

  font-size: 20px;
}

.checkout-disclaimer {
  text-align: center;

  font-size: 12px;

  color:
    rgba(75,50,33,.45);
}


/* =========================================================
   TOAST
========================================================= */

.toast {
  position: fixed;

  z-index: 1000;

  bottom: 25px;
  left: 50%;

  transform:
    translate(-50%, 120px);

  background: var(--marrom);

  color: white;

  padding: 13px 20px;

  border-radius: 999px;

  box-shadow:
    0 15px 35px rgba(0,0,0,.20);

  opacity: 0;

  transition:
    opacity .3s,
    transform .3s;

  pointer-events: none;
}

.toast.show {
  opacity: 1;

  transform:
    translate(-50%, 0);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1050px) {

  .nav-links {
    gap: 15px;
  }

  .account-label {
    display: none;
  }

  .category-grid,
  .product-grid {
    grid-template-columns:
      repeat(2, 1fr);
  }

}


@media (max-width: 800px) {

  .header-inner {
    min-height: 70px;
  }

  .mobile-menu {
    display: grid;
  }

  .nav-links {
    display: none;
  }

  .mobile-nav {
    position: fixed;

    z-index: 90;

    top: 70px;

    left: 15px;
    right: 15px;

    background: var(--creme);

    border-radius: 18px;

    padding: 15px;

    box-shadow: var(--shadow);

    flex-direction: column;

    gap: 5px;
  }

  .mobile-nav.open {
    display: flex;
  }

  .mobile-nav a,
  .mobile-account-link {
    padding: 13px 15px;

    border-radius: 10px;

    border: 0;

    background: transparent;

    text-align: left;

    color: var(--marrom);

    font-weight: 600;
  }

  .mobile-nav a:hover,
  .mobile-account-link:hover {
    background: white;
  }

  .hero {
    padding: 55px 0;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-art {
    min-height: 400px;
  }

  .art-circle {
    width: 330px;
    height: 330px;
  }

  .person {
    transform: scale(.82);
  }

  .section {
    padding: 75px 0;
  }

  .section-header {
    align-items: flex-start;

    flex-direction: column;
  }

  .editorial-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-art {
    min-height: 330px;
  }

  .newsletter-inner {
    flex-direction: column;

    align-items: flex-start;
  }

  .newsletter-form {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns:
      repeat(2, 1fr);
  }

  .modal-grid {
    grid-template-columns: 1fr;
  }

  .modal-image {
    min-height: 300px;
  }

  .modal-visual {
    min-height: 250px;
  }

  .modal-info {
    padding: 30px;
  }

}


@media (max-width: 550px) {

  .container {
    width: min(
      calc(100% - 28px),
      var(--container)
    );
  }

  .logo {
    font-size: 25px;
  }

  .header-actions {
    gap: 0;
  }

  .account-button {
    padding: 5px;
  }

  .account-label {
    display: none;
  }

  .hero-copy h1 {
    font-size: 47px;

    letter-spacing: -3px;
  }

  .hero-text {
    font-size: 17px;
  }

  .hero-art {
    min-height: 330px;
  }

  .art-circle {
    width: 280px;
    height: 280px;
  }

  .person {
    width: 72px;
    height: 135px;
  }

  .person-2 {
    height: 160px;
  }

  .person::before {
    width: 50px;
    height: 50px;

    top: -42px;
  }

  .cake {
    width: 130px;
    height: 58px;

    bottom: 25px;
  }

  .cake::before {
    width: 142px;
  }

  .cake-candle {
    left: 55px;
  }

  .flower-1 {
    right: 0;
  }

  .flower-2 {
    left: 0;
  }

  .category-grid,
  .product-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .category-card {
    min-height: 230px;
  }

  .product-visual {
    height: 240px;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .account-modal,
  .checkout-modal {
    padding: 28px 20px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .full-field {
    grid-column: auto;
  }

  .modal-image {
    min-height: 240px;
    padding: 20px;
  }

  .modal-visual {
    min-height: 200px;
    font-size: 90px;
  }

}