:root {
  --pink: #ff0f68;
  --pink-2: #ff176c;
  --magenta: #d40b70;
  --magenta-dark: #b90c68;
  --purple: #4b0d68;
  --purple-2: #63148f;
  --purple-light: #7825c6;
  --orange: #ff8a00;
  --gold: #ffad00;

  --text: #211426;
  --text-2: #38243d;
  --muted: #6c6170;

  --surface: #ffffff;
  --surface-soft: #fff8fb;
  --surface-pink: #fff5f8;

  --border: rgba(210, 50, 110, 0.12);
  --shadow: 0 10px 28px rgba(65, 17, 69, 0.10);
  --shadow-card: 0 4px 14px rgba(44, 12, 48, 0.13);

  --radius: 10px;
  --radius-lg: 16px;

  --container: 1320px;
}

/* =========================================================
   RESET
========================================================= */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.45;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

ul {
  list-style: none;
}

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: fixed;
  left: 14px;
  top: -80px;
  z-index: 99999;
  padding: 10px 16px;
  background: #fff;
  color: var(--purple);
  border-radius: 8px;
  font-weight: 800;
}

.skip-link:focus {
  top: 12px;
}

/* =========================================================
   TOP UTILITY BAR
========================================================= */

.top-utility {
  height: 36px;
  background: linear-gradient(
    90deg,
    #f90f6e 0%,
    #ff0d68 30%,
    #ff3959 56%,
    #ff790e 82%,
    #ffab00 100%
  );
  color: #fff;
}

.utility-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.utility-links,
.utility-social {
  display: flex;
  align-items: center;
}

.utility-links {
  gap: 28px;
}

.utility-links a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 700;
  transition: opacity 0.2s ease;
}

.utility-social {
  gap: 23px;
}

.utility-social a {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  font-size: 16px;
  font-weight: 800;
}

.utility-links a:hover,
.utility-social a:hover {
  opacity: 0.8;
}

/* =========================================================
   HEADER
========================================================= */

.site-header {
  background: #fff;
  border-bottom: 1px solid rgba(86, 25, 89, 0.05);
}

.header-inner {
  min-height: 87px;
  display: grid;
  grid-template-columns: 360px minmax(360px, 1fr) auto;
  align-items: center;
  gap: 42px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
}

.brand-icon {
  width: 39px;
  height: 58px;
  position: relative;
  flex: 0 0 auto;
}

.lipstick {
  position: absolute;
  bottom: 0;
  width: 16px;
  height: 39px;
  border-radius: 5px 5px 9px 9px;
  background: linear-gradient(to bottom, #151015 0 64%, #080608 64% 100%);
}

.lipstick::before {
  content: "";
  position: absolute;
  left: 3px;
  top: -19px;
  width: 10px;
  height: 22px;
  background: var(--pink);
  border-radius: 8px 8px 2px 2px;
  transform: skew(-5deg);
}

.lipstick-one {
  left: 3px;
}

.lipstick-two {
  right: 3px;
  transform: rotate(8deg);
  height: 33px;
}

.lipstick-two::before {
  background: #d80c67;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-name {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 38px;
  line-height: 1;
  font-style: italic;
  font-weight: 700;
  color: #ff0f68;
  white-space: nowrap;
}

.brand-tagline {
  margin-top: 5px;
  color: var(--purple);
  font-family: "Montserrat", sans-serif;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 1.65px;
  white-space: nowrap;
}

.header-search {
  position: relative;
  height: 40px;
  display: flex;
  min-width: 0;
}

.header-search input {
  width: 100%;
  height: 100%;
  border: 1px solid #e9dfe8;
  border-radius: 24px 0 0 24px;
  padding: 0 19px;
  color: var(--text);
  background: #fff;
  outline: none;
  font-size: 13px;
  box-shadow: inset 0 1px 3px rgba(70, 10, 70, 0.03);
}

.header-search input::placeholder {
  color: #817585;
}

.header-search input:focus {
  border-color: rgba(255, 15, 104, 0.45);
}

.header-search button {
  width: 58px;
  border: 0;
  border-radius: 0 24px 24px 0;
  background: linear-gradient(135deg, #ff0f68, #ef126f);
  color: #fff;
  display: grid;
  place-items: center;
}

.search-icon {
  width: 17px;
  height: 17px;
  border: 3px solid currentColor;
  border-radius: 50%;
  position: relative;
}

.search-icon::after {
  content: "";
  width: 8px;
  height: 3px;
  background: currentColor;
  position: absolute;
  right: -7px;
  bottom: -4px;
  transform: rotate(45deg);
  border-radius: 5px;
}

.search-suggestions {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 200;
  background: #fff;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-action {
  height: 40px;
  min-width: 156px;
  padding: 0 18px;
  border-radius: 5px;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.courses-button {
  background: linear-gradient(135deg, #ff176c, #ff0f68);
}

.favorites-button {
  background: linear-gradient(135deg, #7116a1, #581279);
}

.header-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 17px rgba(73, 13, 80, 0.17);
}

.mobile-menu-toggle {
  display: none;
}

/* =========================================================
   MAIN NAVIGATION
========================================================= */

.main-navigation {
  position: relative;
  z-index: 100;
  background:
    radial-gradient(circle at 80% 50%, rgba(164, 34, 172, 0.2), transparent 25%),
    linear-gradient(90deg, #241031, #3c0c56 55%, #3e105b);
  color: #fff;
  box-shadow: 0 5px 13px rgba(52, 9, 63, 0.12);
}

.nav-inner {
  min-height: 43px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.main-menu {
  display: flex;
  align-items: stretch;
  height: 43px;
}

.main-menu > li {
  position: relative;
  display: flex;
  align-items: stretch;
}

.nav-link,
.nav-dropdown-button {
  padding: 0 25px;
  height: 43px;
  border: 0;
  background: transparent;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 800;
  font-family: "Montserrat", sans-serif;
}

.nav-link:hover,
.nav-dropdown-button:hover {
  background: rgba(255, 255, 255, 0.06);
}

.nav-home.active {
  margin-block: 4px;
  height: 35px;
  border-radius: 5px;
  background: var(--pink);
  padding-inline: 18px;
}

.dropdown-chevron {
  font-size: 14px;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 250px;
  background: #fff;
  color: var(--text);
  box-shadow: var(--shadow);
  border-radius: 0 0 10px 10px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.2s ease;
  z-index: 999;
}

.dropdown-menu a {
  display: block;
  padding: 11px 15px;
  font-size: 12px;
  border-bottom: 1px solid #f4e9f0;
}

.dropdown-menu a:hover {
  color: var(--pink);
  background: #fff7fa;
}

.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.articles-counter {
  background: linear-gradient(90deg, #ffc000, #ff9500);
  color: #301135;
  border-radius: 20px;
  height: 32px;
  padding: 0 19px;
  display: inline-flex;
  gap: 7px;
  align-items: center;
  font-size: 11px;
  font-weight: 900;
}

/* =========================================================
   HERO
========================================================= */

.hero {
  position: relative;
  height: 263px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 55% 80%, rgba(255, 174, 0, 0.75), transparent 29%),
    radial-gradient(circle at 20% 30%, rgba(229, 12, 123, 0.8), transparent 40%),
    linear-gradient(110deg, #ca126a 0%, #ff1d62 42%, #f45d38 68%, #c51775 100%);
}

.hero::before {
  content: "";
  position: absolute;
  left: -80px;
  bottom: -30px;
  width: 260px;
  height: 180px;
  opacity: 0.42;
  transform: rotate(-10deg);
  background:
    linear-gradient(
      160deg,
      transparent 0 20%,
      #ff7a80 20% 22%,
      transparent 22% 26%,
      #ff6c88 26% 28%,
      transparent 28% 32%,
      #ff7e83 32% 34%,
      transparent 34%
    );
}

.hero::after {
  content: "";
  position: absolute;
  right: -95px;
  bottom: -50px;
  width: 300px;
  height: 220px;
  opacity: 0.36;
  transform: rotate(-18deg);
  background:
    linear-gradient(
      150deg,
      transparent 0 10%,
      #ff786c 10% 12%,
      transparent 12% 18%,
      #ff9170 18% 20%,
      transparent 20% 27%,
      #ff5f8b 27% 29%,
      transparent 29%
    );
}

.hero-inner {
  height: 100%;
  display: grid;
  grid-template-columns: 45% 37% 18%;
  align-items: center;
  position: relative;
  z-index: 3;
}

.hero-copy {
  align-self: center;
  max-width: 590px;
}

.hero-copy h1 {
  font-family: "Montserrat", sans-serif;
  font-size: 40px;
  line-height: 1.13;
  letter-spacing: -1.3px;
  font-weight: 900;
  margin-bottom: 11px;
}

.hero-copy h1 span {
  display: block;
  color: #ffc000;
}

.hero-copy p {
  max-width: 555px;
  font-size: 17px;
  line-height: 1.55;
  font-weight: 700;
}

.hero-buttons {
  margin-top: 19px;
  display: flex;
  gap: 16px;
}

.btn {
  height: 41px;
  border-radius: 5px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-size: 12px;
  font-weight: 800;
}

.btn-primary {
  background: linear-gradient(135deg, #ff0f68, #ff176c);
  color: #fff;
  box-shadow: 0 8px 16px rgba(182, 13, 84, 0.20);
}

.btn-light {
  background: rgba(255, 255, 255, 0.94);
  color: var(--purple);
  box-shadow: 0 8px 16px rgba(70, 10, 65, 0.12);
}

.hero-model {
  align-self: stretch;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero-model img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 30%;
  mix-blend-mode: normal;
}

.hero-model::before {
  content: "";
  position: absolute;
  left: -30px;
  top: 0;
  bottom: 0;
  width: 90px;
  z-index: 2;
  background: linear-gradient(90deg, #ef335f, transparent);
  pointer-events: none;
}

.hero-features {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-left: 23px;
}

.hero-feature {
  display: flex;
  gap: 15px;
  align-items: center;
}

.hero-feature-icon {
  width: 58px;
  height: 58px;
  border: 1.5px solid rgba(255,255,255,.85);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 25px;
  flex: 0 0 auto;
  box-shadow: 0 5px 12px rgba(58, 9, 65, 0.14);
}

.feature-pink {
  background: linear-gradient(135deg, #f73a87, #ee1269);
}

.feature-purple {
  background: linear-gradient(135deg, #6c2aca, #4c13a0);
}

.feature-orange {
  background: linear-gradient(135deg, #ffb300, #ff8900);
}

.hero-feature strong,
.hero-feature span {
  display: block;
}

.hero-feature strong {
  font-size: 15px;
  margin-bottom: 2px;
}

.hero-feature span {
  font-size: 13px;
  line-height: 1.35;
}

/* =========================================================
   HOME CONTENT
========================================================= */

.home-content {
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 210, 221, 0.22), transparent 30%),
    linear-gradient(#fff, #fffdfd);
}

.home-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 30px;
  padding-top: 14px;
  padding-bottom: 12px;
}

.featured-content {
  min-width: 0;
}

.section-heading-row {
  height: 41px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.section-title {
  display: flex;
  align-items: flex-start;
  gap: 9px;
}

.section-title-icon {
  font-size: 21px;
  line-height: 1;
}

.section-title h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  line-height: 1;
  font-weight: 900;
}

.title-line {
  display: block;
  margin-top: 8px;
  width: 21px;
  height: 2px;
  background: var(--pink);
}

.view-all-button {
  height: 30px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 15, 104, 0.35);
  border-radius: 5px;
  color: var(--pink);
  font-size: 10px;
  font-weight: 700;
}

/* =========================================================
   ARTICLE CARDS
========================================================= */

.article-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 17px;
}

.article-card {
  min-width: 0;
  background: #fff;
  border: 1px solid #eadfe6;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.article-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 9px 20px rgba(57, 15, 59, 0.14);
}

.article-image-wrapper {
  height: 118px;
  position: relative;
  overflow: hidden;
  background: #f5e9ef;
}

.article-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.article-card:hover .article-image-wrapper img {
  transform: scale(1.03);
}

.article-number {
  position: absolute;
  top: 7px;
  left: 7px;
  min-width: 27px;
  height: 25px;
  padding: 0 6px;
  border-radius: 4px;
  background: var(--pink);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 11px;
}

.article-category {
  position: absolute;
  left: 8px;
  bottom: 7px;
  max-width: calc(100% - 16px);
  padding: 4px 8px;
  border-radius: 3px;
  background: var(--pink);
  color: #fff;
  font-size: 8px;
  line-height: 1;
  font-weight: 900;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.article-card-body {
  position: relative;
  min-height: 107px;
  padding: 11px 11px 9px;
}

.article-card-body h3 {
  padding-right: 10px;
  font-family: "Montserrat", sans-serif;
  font-size: 12.5px;
  line-height: 1.25;
  font-weight: 800;
  color: #32123d;
  min-height: 47px;
}

.article-card-body h3 a:hover {
  color: var(--pink);
}

.article-card-body p {
  margin-top: 5px;
  color: #4e4250;
  font-size: 9.8px;
  line-height: 1.55;
}

.favorite-toggle {
  position: absolute;
  top: 7px;
  right: 7px;
  z-index: 3;
  width: 25px;
  height: 25px;
  border: 0;
  background: transparent;
  color: var(--pink);
  font-size: 17px;
  opacity: 0;
}

.article-card:hover .favorite-toggle,
.favorite-toggle.is-favorite {
  opacity: 1;
}

.article-meta {
  min-height: 30px;
  padding: 0 10px;
  border-top: 1px solid #eee4e9;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #625967;
  font-size: 8.2px;
}

.article-meta span {
  display: inline-flex;
  gap: 4px;
  align-items: center;
}

/* =========================================================
   LOAD MORE
========================================================= */

.additional-articles {
  margin-top: 10px;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.additional-articles:not([hidden]) {
  display: grid;
}

.mini-article-card {
  border: 1px solid #f1d8e5;
  border-radius: 6px;
  background: #fff8fb;
}

.mini-article-card a {
  min-height: 54px;
  padding: 9px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.mini-article-card strong {
  font-size: 11px;
}

.mini-article-card span {
  color: var(--pink);
  font-size: 8px;
  font-weight: 900;
}

.load-more-button {
  margin: 10px auto 12px;
  width: 48%;
  min-width: 320px;
  height: 32px;
  border: 0;
  border-radius: 4px;
  background: linear-gradient(90deg, #ff0f68, #ff176c);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 800;
}

/* =========================================================
   TRUST STRIP
========================================================= */

.trust-strip {
  min-height: 64px;
  border: 1px solid #f1d1df;
  border-radius: 7px;
  background: linear-gradient(90deg, #fff3f7, #fff8f9);
  padding: 8px 17px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 11px;
}

.trust-icon {
  width: 43px;
  height: 43px;
  flex: 0 0 auto;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 23px;
}

.trust-pink {
  background: linear-gradient(135deg, #ff0f68, #f20f6e);
}

.trust-purple {
  background: linear-gradient(135deg, #a724bd, #6514a2);
}

.trust-orange {
  background: linear-gradient(135deg, #ffad00, #ff8700);
}

.trust-item strong,
.trust-item span {
  display: block;
}

.trust-item strong {
  font-size: 10px;
  margin-bottom: 2px;
}

.trust-item span {
  color: #493e4d;
  font-size: 8.7px;
  line-height: 1.35;
}

/* =========================================================
   SIDEBAR
========================================================= */

.home-sidebar {
  min-width: 0;
}

.sidebar-section + .sidebar-section {
  margin-top: 8px;
}

.sidebar-heading {
  height: 42px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid #e9e0e5;
  color: var(--text);
}

.sidebar-heading > span {
  color: var(--pink);
  font-size: 23px;
}

.sidebar-heading h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 17px;
  font-weight: 900;
}

.social-grid {
  padding-top: 10px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
}

.social-card {
  height: 70px;
  border-radius: 5px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: transform 0.2s ease;
}

.social-card:hover {
  transform: translateY(-2px);
}

.social-card-icon {
  font-size: 24px;
  line-height: 1;
}

.social-card strong {
  margin-top: 5px;
  font-size: 10px;
}

.social-card small {
  font-size: 8px;
}

.instagram {
  background: linear-gradient(135deg, #dc248d, #ff176c);
}

.youtube {
  background: #f30606;
}

.tiktok {
  background: linear-gradient(135deg, #17202c, #090b0e);
}

.pinterest {
  background: #d10605;
}

.facebook {
  background: linear-gradient(135deg, #1674e9, #0c5dcc);
}

.newsletter {
  background: linear-gradient(135deg, #7a20b4, #5b1490);
}

.category-list {
  padding-top: 4px;
}

.category-list li {
  border-bottom: 0;
}

.category-list a {
  min-height: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #332837;
  font-size: 10px;
}

.category-left {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.category-icon {
  width: 17px;
  color: var(--pink);
  font-weight: 900;
  text-align: center;
}

.category-count {
  min-width: 27px;
  height: 21px;
  padding: 0 7px;
  border-radius: 12px;
  background: #f7eef3;
  display: grid;
  place-items: center;
  color: #544b55;
  font-size: 9px;
}

.all-categories-button {
  margin-top: 5px;
  width: 100%;
  height: 31px;
  border: 1px solid rgba(255, 15, 104, 0.42);
  border-radius: 4px;
  color: var(--pink);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  font-size: 9.5px;
  font-weight: 700;
}

/* =========================================================
   FOOTER
========================================================= */

.site-footer {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 12% 75%, rgba(255, 91, 144, 0.52), transparent 23%),
    radial-gradient(circle at 90% 35%, rgba(255, 126, 33, 0.65), transparent 22%),
    linear-gradient(95deg, #ba126c 0%, #dc1269 37%, #ef1b60 66%, #ff7e1c 100%);
}

.footer-grid {
  min-height: 120px;
  display: grid;
  grid-template-columns: 310px 120px 150px 300px 1fr;
  gap: 28px;
  align-items: start;
  padding-top: 14px;
  padding-bottom: 13px;
  position: relative;
  z-index: 2;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 26px;
  font-weight: 700;
  font-style: italic;
}

.footer-lipstick {
  font-size: 23px;
}

.footer-brand p {
  margin-top: 6px;
  font-size: 9.5px;
  line-height: 1.45;
}

.footer-social {
  margin-top: 6px;
  display: flex;
  gap: 9px;
}

.footer-social a {
  width: 20px;
  height: 20px;
  border-radius: 5px;
  background: rgba(37, 13, 52, 0.63);
  display: grid;
  place-items: center;
  font-size: 10px;
}

.footer-column h2,
.footer-newsletter h2 {
  font-size: 11px;
  margin-bottom: 7px;
}

.footer-column li + li {
  margin-top: 4px;
}

.footer-column a,
.footer-newsletter p {
  font-size: 9.3px;
  line-height: 1.35;
}

.footer-column a:hover {
  text-decoration: underline;
}

.newsletter-form-row {
  margin-top: 7px;
  display: grid;
  grid-template-columns: 165px 95px;
  height: 31px;
}

.newsletter-form-row input {
  border: 0;
  outline: none;
  padding: 0 11px;
  border-radius: 4px 0 0 4px;
  font-size: 9px;
}

.newsletter-form-row button {
  border: 0;
  background: rgba(247, 21, 101, 0.78);
  color: #fff;
  border-radius: 0 4px 4px 0;
  font-size: 9px;
  font-weight: 800;
}

.newsletter-feedback {
  margin-top: 5px;
  min-height: 12px;
  font-size: 8px !important;
}

.footer-quote {
  padding-top: 1px;
  text-align: center;
  transform: rotate(-3deg);
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-size: 23px;
  line-height: 1.26;
  text-shadow: 0 2px 3px rgba(92, 18, 65, 0.18);
}

.footer-quote span {
  display: block;
}

.footer-quote b {
  color: #ff9abb;
  font-family: sans-serif;
}

.footer-bottom {
  background: rgba(62, 8, 71, 0.82);
}

.footer-bottom-inner {
  min-height: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 8.5px;
}

.footer-love span {
  color: #ff7ea7;
}

.developer-credit {
  background: #22052c;
  text-align: center;
  padding: 5px 15px;
  font-size: 8px;
  color: rgba(255,255,255,.85);
}

.developer-credit a {
  font-weight: 800;
  color: #fff;
}

.footer-decor {
  position: absolute;
  pointer-events: none;
}

.footer-decor-left {
  width: 250px;
  height: 180px;
  left: -60px;
  bottom: -55px;
  transform: rotate(-18deg);
  opacity: 0.16;
  background:
    repeating-linear-gradient(
      155deg,
      transparent 0 11px,
      #ffb5ca 11px 14px
    );
}

.footer-decor-right {
  width: 250px;
  height: 150px;
  right: -45px;
  top: 3px;
  transform: rotate(-12deg);
  opacity: 0.2;
  background:
    repeating-linear-gradient(
      155deg,
      transparent 0 13px,
      #ffd46a 13px 16px
    );
}

/* =========================================================
   COOKIE BANNER
========================================================= */

.cookie-banner {
  position: fixed;
  inset: auto 18px 18px 18px;
  z-index: 5000;
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-content {
  max-width: 980px;
  margin-inline: auto;
  padding: 15px 18px;
  background: #fff;
  border: 1px solid #f0d4e2;
  border-radius: 12px;
  box-shadow: 0 14px 50px rgba(48, 9, 50, 0.18);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cookie-content strong {
  display: block;
  color: var(--purple);
  margin-bottom: 3px;
}

.cookie-content p,
.cookie-content a {
  font-size: 11px;
}

.cookie-content a {
  color: var(--pink);
  font-weight: 700;
}

.cookie-actions {
  display: flex;
  gap: 7px;
}

.cookie-actions button {
  min-height: 36px;
  padding: 0 12px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 800;
}

.cookie-settings {
  border: 1px solid #d7c8d3;
  background: #fff;
  color: var(--purple);
}

.cookie-reject {
  border: 1px solid rgba(255, 15, 104, 0.35);
  background: #fff5f9;
  color: var(--pink);
}

.cookie-accept {
  border: 0;
  color: #fff;
  background: linear-gradient(135deg, var(--pink), var(--magenta));
}

/* =========================================================
   GLOBAL INTERACTIONS
========================================================= */

a,
button {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 3px solid rgba(255, 173, 0, 0.72);
  outline-offset: 2px;
}

/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}