:root {
  --color-body: #f6f7fb;
  --color-white: #ffffff;
  --color-primary: #c7b6ff;
  --color-primary-dark: #b39cff;
  --color-text: #1f2433;
  --color-muted: #697081;
  --color-border: #e5e7f0;
  --max-width: 1200px;
  font-size: 16px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  background-color: var(--color-body);
  color: var(--color-text);
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  font: inherit;
  border: none;
  background: none;
  cursor: pointer;
  color: inherit;
}

.section-spacing {
  padding: 0 2rem;
  margin: 3.5rem auto 0;
}

.site-header {
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 1px 3px rgba(22, 28, 45, 0.06);
}

.site-header__bar {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.4rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo {
  font-weight: 600;
  font-size: 1.3rem;
  letter-spacing: 0.04em;
}

nav {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.nav-link {
  font-size: 0.96rem;
  font-weight: 500;
  color: #3b4152;
  position: relative;
}

.nav-link.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.6rem;
  width: 100%;
  height: 2px;
  background: var(--color-primary-dark);
  border-radius: 999px;
}

.nav-link:hover {
  color: var(--color-primary-dark);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.icon-button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #f0f2f9;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #2c3142;
  transition: background 0.2s ease, color 0.2s ease;
}

.icon-button:hover {
  background: #e3e6f3;
  color: #1c2130;
}

.icon-button svg {
  width: 20px;
  height: 20px;
}

.announcement-bar {
  background: #dff1ff;
  color: #3c6b87;
  text-align: center;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  padding: 0.75rem 1rem;
}

.hero {
  max-width: var(--max-width);
  background: linear-gradient(115deg, #c8b8ff, #b2a0ff);
  border-radius: 34px;
  padding: 3.8rem 3.5rem;
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 18% -25% -30% auto;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0));
  width: 70%;
  transform: rotate(-12deg);
  opacity: 0.55;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3.5rem;
}

.hero__copy {
  color: var(--color-white);
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero__eyebrow {
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  opacity: 0.9;
}

.hero__eyebrow::before {
  content: "";
  width: 42px;
  height: 1px;
  background: rgba(255, 255, 255, 0.6);
}

.hero__headline {
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 3.7rem);
  font-weight: 600;
  letter-spacing: 0.01em;
}

.hero__price {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.2rem;
  opacity: 0.92;
}

.price-new {
  font-weight: 600;
}

.price-old {
  text-decoration: line-through;
  opacity: 0.6;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  border-radius: 8px;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
  padding: 0.85rem 2.4rem;
}

.button--ghost {
  border: 2px solid rgba(255, 255, 255, 0.85);
  color: var(--color-white);
  padding: 0.85rem 2.8rem;
  letter-spacing: 0.08em;
}

.button--ghost:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

.button--primary {
  background: linear-gradient(135deg, #5a3cff, #7567ff);
  color: #ffffff;
  border: none;
  padding: 0.95rem 3.5rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  border-radius: 14px;
}

.button--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(90, 60, 255, 0.25);
}

.hero__media {
  flex: 1;
  display: grid;
  place-items: center;
  position: relative;
}

.hero__circle {
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: #f1f2ff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 28px 60px rgba(32, 39, 72, 0.18);
  position: relative;
  overflow: hidden;
}

.hero__circle img {
  width: 72%;
  transform: translateY(8px);
}

.hero__overlay-card {
  position: absolute;
  right: 10%;
  bottom: 12%;
  width: 160px;
  height: 180px;
  border-radius: 20px;
  background: rgba(15, 18, 33, 0.12);
  filter: blur(48px);
  opacity: 0.4;
}

.category-highlight {
  max-width: var(--max-width);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.category-card {
  background: #f2f3f8;
  border-radius: 28px;
  padding: 2.7rem 2.3rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.6rem;
  box-shadow: 0 12px 36px rgba(39, 44, 72, 0.08);
  position: relative;
  overflow: hidden;
}

.category-card figure {
  margin: 0 auto 0 0;
  width: 200px;
  align-self: center;
}

.category-card img {
  width: 100%;
  border-radius: 18px;
  object-fit: cover;
}

.category-card h2 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
  color: #2a2f3c;
}

.product-section {
  max-width: var(--max-width);
}

.section-heading {
  text-align: center;
  margin-bottom: 2.8rem;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 600;
  color: #232738;
}

.section-heading p {
  margin: 0.6rem 0 0;
  color: var(--color-muted);
  font-size: 1rem;
}

.product-grid {
  display: grid;
  gap: 2.2rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.product-card {
  background: var(--color-white);
  border-radius: 30px;
  padding: 2.2rem 2.4rem 2.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  box-shadow: 0 16px 44px rgba(32, 39, 72, 0.1);
}

.product-card__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  color: inherit;
  text-decoration: none;
  height: 100%;
  width: 100%;
}

.product-card figure {
  width: 100%;
  height: 240px;
  background: #f3f4f9;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  margin: 0;
}

.product-card img {
  max-height: 100%;
  object-fit: contain;
}

.product-card h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
  text-align: center;
  color: #2c3144;
}

.product-price {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 1.05rem;
}

.button--outline {
  border: 2px solid #181b25;
  background: transparent;
  color: #181b25;
  letter-spacing: 0.04em;
  align-self: flex-start;
  padding: 0.85rem 2.3rem;
}

.button--outline:hover {
  background: rgba(24, 27, 37, 0.05);
  transform: translateY(-1px);
}

.page-content {
  padding: 4rem 2rem 0;
  min-height: 60vh;
}

.page-container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.about-page {
  padding-top: 1rem;
}

.page-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  padding: 4.5rem 0 5rem;
}

.page-header h1 {
  margin: 0;
  font-size: clamp(2.4rem, 4vw, 3rem);
  font-weight: 500;
  color: #2e3344;
}

.page-header p {
  margin: 1rem 0 0;
  color: var(--color-muted);
  font-size: 1.05rem;
}

.cart-page {
  border-top: 1px solid var(--color-border);
  margin-top: 3.2rem;
}

.cart-total {
  margin: 0;
  display: grid;
  gap: 0.3rem;
  text-align: right;
  font-size: 0.98rem;
  color: #3b4153;
}

.cart-total dt {
  font-weight: 500;
}

.cart-total dd {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 600;
  color: #1f2433;
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: #8a91a4;
  margin: 1.2rem 0 2.4rem;
}

.breadcrumb a {
  color: #6f7990;
  font-weight: 500;
}

.breadcrumb span[aria-hidden="true"] {
  font-size: 1rem;
  color: #b1b6c4;
}

.breadcrumb [aria-current="page"] {
  color: #4a5163;
  font-weight: 500;
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 420px);
  gap: 3.4rem;
  align-items: start;
  padding-bottom: 4.5rem;
}

.about-copy {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  color: #34394a;
  font-size: 1.02rem;
}

.about-eyebrow {
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #50556a;
  margin: 0;
}

.about-list {
  margin: 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.7rem;
  color: #3a4053;
}

.about-subheading {
  margin: 1.2rem 0 0.5rem;
  font-size: 1.4rem;
  font-weight: 600;
  color: #2d3242;
}

.about-illustration {
  position: relative;
  margin: 0;
  background: linear-gradient(150deg, #c7b6ff, #a692ff);
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(46, 53, 96, 0.12);
}

.about-illustration img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-page {
  padding-bottom: 5rem;
}

.contact-hero {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 3.5rem;
  display: grid;
  gap: 1.1rem;
  color: #3b4150;
}

.contact-hero h1 {
  margin: 0;
  font-size: clamp(1.9rem, 3.4vw, 2.4rem);
  font-weight: 500;
}

.contact-hero strong {
  font-weight: 600;
  color: #2f3444;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.2rem;
  margin-bottom: 4rem;
}

.contact-card {
  background: var(--color-white);
  border-radius: 32px;
  padding: 2.8rem 2.6rem;
  box-shadow: 0 16px 48px rgba(37, 44, 68, 0.1);
  display: grid;
  gap: 1.5rem;
  color: #343a4c;
}

.contact-card h2 {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 600;
  color: #2d3242;
}

.contact-list {
  margin: 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.8rem;
}

.contact-link {
  color: #4d66ff;
  font-weight: 600;
}

.contact-link:hover {
  text-decoration: underline;
}

.contact-form-wrapper {
  display: flex;
  justify-content: center;
}

.contact-form {
  width: 100%;
  max-width: 960px;
  background: var(--color-white);
  border-radius: 32px;
  padding: 3.2rem 3rem 4rem;
  box-shadow: 0 18px 56px rgba(35, 42, 76, 0.12);
  display: grid;
  gap: 2rem;
}

.faq-page {
  padding-bottom: 5rem;
}

.faq-hero {
  display: grid;
  grid-template-columns: minmax(0, 340px) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
  margin-bottom: 3.5rem;
}

.faq-hero__media {
  margin: 0;
  background: #f5f6fb;
  border-radius: 28px;
  padding: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 16px 48px rgba(39, 44, 68, 0.1);
}

.faq-hero__media img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.faq-hero__content h1 {
  margin: 0 0 1.2rem;
  font-size: clamp(2.2rem, 4vw, 2.8rem);
  font-weight: 600;
  color: #2d3244;
}

.faq-hero__content p {
  margin: 0;
  color: #4a5063;
  line-height: 1.7;
  font-size: 1.02rem;
}

.faq-link {
  color: #5e74ff;
  font-weight: 600;
}

.faq-link:hover {
  text-decoration: underline;
}

.faq-list {
  display: grid;
  gap: 2.4rem;
}

.faq-item {
  background: var(--color-white);
  border-radius: 26px;
  padding: 2.4rem 2.6rem;
  box-shadow: 0 18px 48px rgba(37, 44, 68, 0.1);
  display: grid;
  gap: 1.1rem;
  color: #33394c;
}

.faq-item h2 {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 600;
  color: #232738;
}

.faq-item p {
  margin: 0;
  line-height: 1.7;
}

.faq-list__sub {
  margin: 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.4rem;
  color: #3d4356;
  list-style: disc;
}

.policy-page {
  padding-bottom: 5rem;
}

.policy-hero {
  display: grid;
  grid-template-columns: minmax(0, 340px) minmax(0, 1fr);
  gap: 2.8rem;
  align-items: center;
  margin-bottom: 3.5rem;
}

.policy-hero__media {
  margin: 0;
  background: #eef3ff;
  border-radius: 28px;
  padding: 1.6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 18px 48px rgba(32, 38, 66, 0.12);
}

.policy-hero__media img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.policy-hero__content h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.2rem, 4vw, 2.8rem);
  font-weight: 600;
  color: #262c3f;
}

.policy-hero__content p {
  margin: 0;
  color: #40475c;
  line-height: 1.7;
  font-size: 1.02rem;
}

.policy-highlight {
  margin-top: 1.2rem;
  font-weight: 600;
  color: #31364a;
}

.policy-section {
  background: var(--color-white);
  border-radius: 26px;
  padding: 2.4rem 2.6rem;
  box-shadow: 0 18px 48px rgba(32, 38, 66, 0.12);
  display: grid;
  gap: 1.1rem;
  color: #333a4d;
}

.policy-section + .policy-section {
  margin-top: 2.4rem;
}

.policy-section h2 {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 600;
  color: #24293a;
}

.policy-section p {
  margin: 0;
  line-height: 1.7;
}

.policy-list {
  margin: 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.5rem;
  color: #3d4559;
  list-style: disc;
}

.policy-link {
  color: #5e74ff;
  font-weight: 600;
}

.policy-link:hover {
  text-decoration: underline;
}

.search-page {
  padding-bottom: 5rem;
}

.search-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.6rem;
  margin-bottom: 2.8rem;
}

.search-header h1 {
  margin: 0;
  font-size: clamp(2.4rem, 4vw, 3rem);
  font-weight: 500;
  color: #2e3344;
}

.search-header h1 span {
  font-size: 0.46em;
  color: #969db0;
  margin-left: 0.4rem;
}

.search-input {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  border: 1px solid #d1d7e6;
  border-radius: 16px;
  padding: 0.3rem 1rem;
  min-width: 240px;
  background: #ffffff;
}

.search-input input {
  border: none;
  outline: none;
  font: inherit;
  padding: 0.8rem 0;
  min-width: 200px;
  color: #2f3445;
}

.search-input input::placeholder {
  color: #a4a9b9;
}

.search-input svg {
  width: 20px;
  height: 20px;
  color: #6b7389;
}

.search-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 3rem;
}

.filters {
  background: var(--color-white);
  border-radius: 18px;
  border: 1px solid #dbe1f0;
  padding: 2rem 1.8rem;
  display: grid;
  gap: 1.6rem;
  height: fit-content;
}

.filters__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.filters__header h2 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: #323749;
}

.filters__reset {
  font-size: 0.92rem;
  font-weight: 600;
  color: #6a72ff;
  background: none;
  border: none;
  text-decoration: none;
  cursor: pointer;
}

.filters__reset:hover {
  text-decoration: underline;
}

.filters__selected {
  margin: 0;
  font-size: 0.92rem;
  color: #7a8093;
  font-weight: 500;
}

.filters__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 1.1rem;
}

.filter-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: #3b4150;
  cursor: pointer;
}

.filter-checkbox input {
  width: 20px;
  height: 20px;
  border: 1px solid #c9d0e1;
  accent-color: #6f7cff;
}

.search-results .product-grid--search {
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

.auth-page {
  display: flex;
  justify-content: center;
}

.auth-card {
  width: 100%;
  max-width: 780px;
}

.auth-header h1 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 2.7rem);
  font-weight: 500;
  color: #2f3443;
}

.auth-header p {
  margin: 0.8rem 0 2.5rem;
  color: var(--color-muted);
  font-size: 1rem;
}

.auth-link {
  color: #5772ff;
  font-weight: 500;
}

.auth-link--muted {
  color: #73809b;
  font-weight: 500;
  margin-top: 1rem;
  align-self: flex-start;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-bottom: 3rem;
}

.auth-form--signup {
  gap: 2rem;
}

.form-row {
  display: flex;
  gap: 1.6rem;
}

.form-field {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.form-label {
  font-weight: 500;
  font-size: 0.95rem;
  color: #44495a;
}

.form-input {
  width: 100%;
  padding: 1.1rem 1.2rem;
  border: 1px solid #d6dae6;
  border-radius: 6px;
  background-color: #ffffff;
  font-size: 1rem;
  font-family: inherit;
  color: var(--color-text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input::placeholder {
  color: #a1a8bb;
}

.form-input:focus {
  border-color: #8a9cff;
  box-shadow: 0 0 0 4px rgba(138, 156, 255, 0.18);
  outline: none;
}

.form-input--select {
  appearance: none;
  padding-right: 2.5rem;
  cursor: pointer;
}

.select-wrapper {
  position: relative;
}

.select-icon {
  position: absolute;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  font-size: 1.2rem;
  color: #7a8091;
}

.auth-meta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #454b5c;
  font-size: 0.95rem;
}

.auth-terms {
  margin: 0;
  color: #7b8498;
  font-size: 0.94rem;
  text-align: center;
  margin-top: 0.5rem;
}

.site-footer {
  margin-top: 4rem;
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
}

.footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 3rem 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  row-gap: 1.5rem;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  font-size: 0.95rem;
  color: var(--color-muted);
}

.footer__links a:hover {
  color: #3a3f51;
}

.footer__brand {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer__brand .logo {
  font-size: 1.2rem;
}

.footer__brand p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.92rem;
}

.footer__social {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.footer__social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f2f4f8;
  color: #4a4f61;
  transition: background 0.2s ease, transform 0.2s ease;
}

.footer__social a:hover {
  background: #e7e9f2;
  transform: translateY(-2px);
}

.footer__social svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 1024px) {
  .site-header__bar {
    gap: 1rem;
  }

  nav {
    gap: 1.4rem;
  }

  .hero {
    padding: 3rem 2.5rem;
  }

  .hero__inner {
    flex-direction: column;
    text-align: center;
  }

  .hero__copy {
    align-items: center;
    text-align: center;
  }

  .hero__eyebrow::before {
    display: none;
  }

  .hero__media {
    width: 100%;
  }

  .hero__overlay-card {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    bottom: 8%;
  }

  .contact-hero {
    margin-bottom: 3rem;
  }

  .contact-form {
    padding: 2.8rem 2.4rem 3.6rem;
  }

  .search-layout {
    grid-template-columns: 240px 1fr;
    gap: 2.2rem;
  }

  .faq-hero {
    grid-template-columns: minmax(0, 300px) minmax(0, 1fr);
  }

  .policy-hero {
    grid-template-columns: minmax(0, 300px) minmax(0, 1fr);
  }
}

@media (max-width: 768px) {
  .site-header__bar {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }

  nav {
    order: 3;
    flex-wrap: wrap;
    justify-content: center;
  }

  .header-actions {
    order: 2;
  }

  .section-spacing {
    padding: 0 1.5rem;
    margin-top: 3rem;
  }

  .hero__circle {
    width: 280px;
    height: 280px;
  }

  .page-content {
    padding: 3.2rem 1.5rem 0;
  }

  .page-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .about-hero {
    grid-template-columns: 1fr;
  }

  .about-illustration {
    max-width: 560px;
    margin: 0 auto;
  }

  .contact-grid {
    gap: 1.9rem;
  }

  .contact-form {
    padding: 2.4rem 2rem 3.2rem;
  }

  .contact-form .button--primary {
    width: 100%;
    justify-content: center;
  }

  .search-layout {
    grid-template-columns: 1fr;
  }

  .filters {
    order: 2;
  }

  .search-results {
    order: 1;
  }

  .faq-hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .faq-hero__media {
    max-width: 420px;
    margin: 0 auto;
  }

  .faq-item {
    padding: 2rem 2.1rem;
  }

  .policy-hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .policy-hero__media {
    max-width: 420px;
    margin: 0 auto;
  }

  .policy-section {
    padding: 2rem 2.1rem;
  }
  
  .policy-section + .policy-section {
    margin-top: 2rem;
  }

  .cart-total {
    text-align: left;
  }

  .form-row {
    flex-direction: column;
    gap: 1.5rem;
  }

  .auth-card {
    max-width: 100%;
  }
}

@media (max-width: 520px) {
  .site-header__bar {
    padding: 1.2rem 1.4rem;
  }

  .announcement-bar {
    font-size: 0.86rem;
  }

  .section-spacing {
    padding: 0 1rem;
    margin-top: 2.6rem;
  }

  .category-card {
    padding: 2.2rem 1.8rem;
  }

  .category-card figure {
    width: 160px;
  }

  .product-card {
    padding: 1.9rem 1.7rem 2rem;
  }

  .product-card figure {
    height: 200px;
  }

  .page-content {
    padding: 2.6rem 1.2rem 0;
  }

  .page-header {
    padding: 3.2rem 0 4rem;
  }

  .breadcrumb {
    margin: 0.6rem 0 2rem;
  }

  .about-hero {
    gap: 2.4rem;
    padding-bottom: 3.5rem;
  }

  .contact-card {
    padding: 2.4rem 2.1rem;
  }

  .contact-form {
    padding: 2rem 1.5rem 2.6rem;
  }

  .contact-form .button--primary {
    width: 100%;
  }

  .search-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .search-input {
    width: 100%;
  }

  .search-input input {
    width: 100%;
  }

  .about-illustration {
    border-radius: 26px;
  }

  .auth-form .button--outline {
    width: 100%;
    justify-content: center;
  }

  .faq-item {
    padding: 1.9rem 1.6rem;
  }

  .faq-hero__media {
    padding: 1.2rem;
  }

  .policy-section {
    padding: 1.9rem 1.6rem;
  }

  .policy-hero__media {
    padding: 1.2rem;
  }
}
.product-page {
  background: var(--color-body);
}

.product-announcement {
  background: #ffe5f3;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 1.4rem;
  color: #ff4f9f;
  font-weight: 500;
}

.product-announcement__cta {
  margin: 0 auto;
  font-size: 0.75rem;
  padding: 0.55rem 1.6rem;
}

.product-hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  align-items: center;
  background: var(--color-white);
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 18px 50px rgba(32, 38, 66, 0.11);
  margin-bottom: 3.5rem;
}

.product-hero__image {
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f7f8fb;
  border-radius: 20px;
  padding: 2rem;
}

.product-hero__image img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.product-hero__details h1 {
  margin: 0 0 0.8rem;
  font-size: clamp(2.6rem, 4vw, 3.2rem);
  font-weight: 500;
  color: #272d40;
}

.product-hero__price {
  margin: 0 0 1.8rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.4rem;
}

.product-hero__quantity {
  margin-bottom: 1.6rem;
  display: grid;
  gap: 0.6rem;
  font-weight: 500;
  color: #3c4256;
}

.quantity-control {
  display: inline-flex;
  align-items: center;
  border: 1px solid #d7dcea;
  border-radius: 8px;
  overflow: hidden;
}

.quantity-control button {
  background: #eef1fb;
  padding: 0.6rem 0.9rem;
  font-size: 1.1rem;
}

.quantity-control input {
  width: 3rem;
  border: none;
  text-align: center;
  font-size: 1rem;
  padding: 0.6rem 0;
}

.product-hero__add {
  width: 100%;
  padding: 1.1rem;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.product-icons {
  display: grid;
  gap: 1.8rem;
  margin-bottom: 3rem;
}

.product-icons__title {
  margin: 0;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 600;
  color: #2c3142;
}

.product-icons__grid {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.product-icons__item {
  background: var(--color-white);
  border-radius: 22px;
  padding: 1.6rem 1.5rem;
  box-shadow: 0 16px 40px rgba(32, 38, 66, 0.12);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  color: #33394d;
}

.product-icons__icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, #c7b6ff, #9ea7ff);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  flex-shrink: 0;
}

.product-icons__icon svg {
  width: 26px;
  height: 26px;
}

.product-icons__item h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: #272d3f;
}

.product-icons__item p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #485066;
}

.product-sections {
  display: grid;
  gap: 2.4rem;
}

.product-section {
  background: var(--color-white);
  border-radius: 24px;
  padding: 2.6rem 2.8rem;
  box-shadow: 0 18px 48px rgba(32, 38, 66, 0.12);
  display: grid;
  gap: 1.2rem;
}

.product-section h2 {
  margin: 0;
  font-size: 1.6rem;
  font-weight: 600;
  color: #272d3f;
}

.product-section p {
  margin: 0;
  line-height: 1.75;
  color: #3a4054;
}

.product-section ul {
  margin: 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.5rem;
  color: #3a4054;
}

.product-faq p {
  margin: 0;
}

.product-related {
  margin-top: 3.5rem;
  background: var(--color-white);
  border-radius: 24px;
  padding: 2.6rem 2.8rem 3.2rem;
  box-shadow: 0 18px 48px rgba(32, 38, 66, 0.12);
}

.product-related header h2 {
  margin: 0;
  font-size: 1.8rem;
  font-weight: 600;
  color: #262c3c;
}

.product-related header p {
  margin: 0.4rem 0 1.8rem;
  color: #6b7285;
}

.product-related__grid {
  display: grid;
  gap: 1.8rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.product-card--compact {
  padding: 1.8rem 1.6rem 2rem;
  align-items: flex-start;
}

.product-card--compact figure {
  height: 180px;
  padding: 1rem;
  background: #f3f5fb;
  border-radius: 18px;
}

.product-link {
  margin-top: 0.8rem;
  font-weight: 600;
  color: #5e74ff;
}

.product-link:hover {
  text-decoration: underline;
}

/* Cart Badge */
.cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  background: #ff4757;
  color: white;
  font-size: 0.7rem;
  font-weight: 600;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

.icon-button {
  position: relative;
}

/* Cart Notification */
.cart-notification {
  position: fixed;
  top: 100px;
  right: 20px;
  background: #10b981;
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
  font-weight: 500;
  transform: translateX(400px);
  transition: transform 0.3s ease;
  z-index: 1000;
}

.cart-notification.show {
  transform: translateX(0);
}

/* Cart Page */
.cart-items {
  margin-top: 2rem;
  display: grid;
  gap: 1rem;
}

.cart-item {
  background: white;
  border-radius: 16px;
  padding: 1.5rem;
  display: grid;
  grid-template-columns: 100px 1fr auto auto auto;
  gap: 1.5rem;
  align-items: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.cart-item__image {
  margin: 0;
}

.cart-item__image img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  border-radius: 12px;
  background: #f6f7fb;
  padding: 0.5rem;
}

.cart-item__details h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.cart-item__details p {
  margin: 0;
  color: var(--color-muted);
}

.cart-item__quantity {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cart-item__quantity label {
  font-size: 0.85rem;
  color: var(--color-muted);
}

.cart-quantity-input {
  width: 70px;
  padding: 0.5rem;
  border: 2px solid var(--color-border);
  border-radius: 8px;
  font-size: 1rem;
  text-align: center;
}

.cart-item__total {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-text);
  min-width: 100px;
  text-align: right;
}

.cart-item__remove {
  background: #fee;
  color: #f44;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.cart-item__remove:hover {
  background: #fdd;
  transform: scale(1.1);
}

.cart-item__remove svg {
  width: 20px;
  height: 20px;
}

.cart-checkout {
  margin-top: 2rem;
  display: flex;
  justify-content: flex-end;
}

.checkout-btn {
  padding: 1rem 3rem;
  font-size: 1.1rem;
  font-weight: 600;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .cart-item {
    grid-template-columns: 80px 1fr;
    gap: 1rem;
  }

  .cart-item__quantity,
  .cart-item__total {
    grid-column: 2;
  }

  .cart-item__remove {
    grid-column: 2;
    justify-self: end;
  }
}
