:root {
  --pink: #f55f8d;
  --pink-dark: #e24a78;
  --pink-soft: #fde8ef;
  --pink-wash: #fce4ec;
  --pink-mid: #ffd6e5;
  --teal: #00bcd4;
  --teal-dark: #00a5bb;
  --charcoal: #2d2d2d;
  --text: #333333;
  --muted: #666666;
  --light: #8a8a8a;
  --line: #ececec;
  --white: #ffffff;
  --shadow: 0 8px 30px rgba(245, 95, 141, 0.12);
  --shadow-soft: 0 6px 24px rgba(0, 0, 0, 0.08);
  --radius: 4px;
  --container: 1170px;
  --font: "Poppins", sans-serif;
  --serif: "Playfair Display", serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  font-size: 15px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--pink);
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

a:hover {
  color: var(--pink-dark);
}

h1, h2, h3, h4, h5 {
  font-family: var(--serif);
  color: var(--text);
  line-height: 1.25;
  margin: 0 0 12px;
}

p {
  margin: 0 0 14px;
  color: var(--muted);
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.site-main {
  min-height: 40vh;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  cursor: pointer;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 12px 26px;
  border-radius: var(--radius);
  transition: 0.2s ease;
  line-height: 1;
}

.btn-pink {
  background: var(--pink);
  color: var(--white);
}

.btn-pink:hover {
  background: var(--pink-dark);
  color: var(--white);
}

.btn-teal {
  background: var(--teal);
  color: var(--white);
}

.btn-teal:hover {
  background: var(--teal-dark);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--pink);
  border: 2px solid var(--pink);
}

.btn-outline:hover {
  background: var(--pink);
  color: var(--white);
}

.btn-block {
  width: 100%;
}

/* Top bar */
.topbar {
  background: var(--pink);
  color: var(--white);
  min-height: 38px;
  display: flex;
  align-items: center;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.topbar-inner span {
  margin-right: auto;
  font-size: 12px;
  letter-spacing: 0.4px;
}

.social-row {
  display: flex;
  gap: 8px;
  align-items: center;
}

.social-row a {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: transparent;
}

.social-row a:hover {
  background: rgba(255, 255, 255, 0.18);
  color: var(--white);
}

.social-row svg {
  width: 13px;
  height: 13px;
  fill: currentColor;
}

/* Header */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
}

.nav-wrap {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 180px;
  gap: 12px;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--text);
}

.logo img {
  height: 168px;
  width: auto;
  object-fit: contain;
}

.nav-left,
.nav-right {
  display: flex;
  gap: 22px;
  align-items: center;
}

.nav-left {
  justify-content: flex-end;
}

.nav-right {
  justify-content: flex-start;
}

.nav-wrap a.nav-link {
  color: var(--text);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  position: relative;
  padding: 6px 0;
}

.nav-wrap a.nav-link:hover,
.nav-wrap a.nav-link.active {
  color: var(--pink);
}

.cart-link {
  position: relative;
  margin-left: 6px;
}

.cart-badge {
  position: absolute;
  top: -8px;
  right: -12px;
  background: var(--pink);
  color: var(--white);
  border-radius: 50%;
  min-width: 18px;
  height: 18px;
  font-size: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  width: 42px;
  height: 42px;
  cursor: pointer;
  margin-left: auto;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--text);
  margin: 6px 0;
}

/* Page hero */
.page-hero {
  background: var(--pink) center / cover no-repeat;
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(245, 95, 141, 0.82), rgba(245, 95, 141, 0.55));
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  padding: 54px 16px;
}

.page-hero h1 {
  color: var(--white);
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 8px;
}

.breadcrumb {
  color: var(--white);
  font-size: 13px;
}

.breadcrumb a {
  color: var(--white);
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* Home hero */
.home-hero {
  min-height: 620px;
  background: var(--pink-soft) center / cover no-repeat;
  display: flex;
  align-items: center;
  position: relative;
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.78) 0%, rgba(255, 255, 255, 0.18) 52%, rgba(252, 228, 236, 0.12) 100%);
}

.home-hero .container {
  position: relative;
  z-index: 1;
}

.home-hero-copy {
  max-width: 560px;
  padding: 70px 0;
}

.home-hero h1 {
  color: var(--pink);
  font-size: 54px;
  font-weight: 700;
  margin-bottom: 18px;
}

.home-hero p {
  font-size: 16px;
  margin-bottom: 28px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Section headings */
.section {
  padding: 80px 0;
}

.section-alt {
  background: var(--pink-soft);
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.section-head h2 {
  color: var(--pink);
  font-size: 36px;
  font-weight: 700;
}

.flourish {
  width: 78px;
  height: 18px;
  margin: 8px auto 16px;
  display: block;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 80 18'%3E%3Cpath fill='%23f55f8d' d='M2 9c8-8 14-8 18 0 4 8 10 8 18 0 8-8 14-8 20 0 6 8 12 8 20 0' stroke='%23f55f8d' stroke-width='1.4' fill='none'/%3E%3Ccircle cx='40' cy='9' r='2.4' fill='%23f55f8d'/%3E%3C/svg%3E") center / contain no-repeat;
}

.section-head p {
  font-size: 14px;
}

/* Service circles */
.circle-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.circle-card {
  text-align: center;
}

.circle-frame {
  width: 170px;
  height: 170px;
  margin: 0 auto 18px;
  border-radius: 50%;
  border: 3px solid var(--pink);
  padding: 6px;
  position: relative;
}

.circle-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.circle-icon {
  position: absolute;
  right: 6px;
  bottom: 6px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--pink);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(245, 95, 141, 0.4);
}

.circle-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.circle-card h3 {
  color: var(--pink);
  font-family: var(--font);
  font-size: 18px;
  margin-bottom: 8px;
}

/* Feature cards */
.feature-band {
  position: relative;
  padding: 70px 0;
  overflow: hidden;
}

.feature-deco {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 180px;
  height: 280px;
  object-fit: cover;
  pointer-events: none;
}

.feature-deco.left {
  left: 0;
}

.feature-deco.right {
  right: 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  position: relative;
  z-index: 1;
}

.feature-card {
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 32px 22px 28px;
  text-align: center;
  border-radius: 6px;
}

.feature-card .icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 16px;
  color: var(--pink);
}

.feature-card .icon svg {
  width: 54px;
  height: 54px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

.feature-card h3 {
  font-family: var(--font);
  font-size: 18px;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 13px;
  margin-bottom: 18px;
}

/* Portfolio */
.portfolio-filters {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.portfolio-filters button {
  background: none;
  border: 0;
  font-family: var(--font);
  text-transform: uppercase;
  letter-spacing: 0.7px;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
}

.portfolio-filters button.active,
.portfolio-filters button:hover {
  color: var(--pink);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  grid-template-rows: 200px 200px;
  gap: 12px;
}

.portfolio-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portfolio-grid .wide {
  grid-column: 2;
  grid-row: 1 / span 2;
}

/* Video */
.video-band {
  background: var(--charcoal);
  color: var(--white);
  text-align: center;
  padding: 90px 0;
}

.video-band h2 {
  color: var(--white);
  font-size: 36px;
}

.video-band p {
  color: #d0d0d0;
  max-width: 560px;
  margin: 0 auto 28px;
}

.play-btn {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  border: 3px solid var(--white);
  background: transparent;
  color: var(--white);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.play-btn svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
  margin-left: 4px;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 80;
  padding: 20px;
}

.modal.open {
  display: flex;
}

.modal-card {
  background: var(--white);
  max-width: 640px;
  width: 100%;
  padding: 28px;
  border-radius: 8px;
  text-align: center;
}

.modal-card h3 {
  color: var(--pink);
}

/* Team */
.team-slider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.team-track {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 16px;
  overflow: hidden;
}

.team-item {
  text-align: center;
  width: 150px;
  opacity: 0.7;
  transition: 0.3s ease;
}

.team-item img {
  width: 130px;
  height: 160px;
  object-fit: cover;
  filter: grayscale(1);
  margin: 0 auto 10px;
}

.team-item.active {
  width: 210px;
  opacity: 1;
}

.team-item.active img {
  width: 190px;
  height: 230px;
  filter: none;
}

.team-item h4 {
  color: var(--pink);
  font-family: var(--font);
  font-size: 16px;
  margin: 0;
}

.team-item span {
  font-size: 12px;
  color: var(--muted);
}

.slider-btn {
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  color: #bbb;
  font-size: 28px;
  cursor: pointer;
}

.team-circles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.team-circle {
  text-align: center;
}

.team-circle img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid var(--pink-mid);
  margin: 0 auto 14px;
}

.team-circle h4 {
  color: var(--pink);
  font-family: var(--font);
  letter-spacing: 0.6px;
  text-transform: uppercase;
  font-size: 16px;
}

/* Testimonials */
.testimonials {
  background: var(--pink-soft) center / cover no-repeat;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.testi-card {
  background: var(--white);
  padding: 28px 22px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  border-radius: 6px;
}

.testi-card img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 14px;
  border: 3px solid var(--pink-mid);
}

.testi-card p {
  font-size: 13px;
  font-style: italic;
}

.testi-card strong {
  color: var(--pink);
  display: block;
  margin-top: 8px;
  font-size: 14px;
}

/* Blog cards */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-card img,
.blog-list-item img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.blog-card h3,
.blog-list-item h3 {
  font-family: var(--font);
  font-size: 18px;
  margin: 12px 0 8px;
}

.meta {
  font-size: 12px;
  color: var(--light);
  margin-top: 10px;
}

/* Gallery strip */
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
}

.gallery-strip img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}

/* Footer */
.site-footer {
  background:
    radial-gradient(ellipse 42% 90% at 100% 40%, rgba(255, 192, 212, 0.55), transparent 72%),
    var(--pink-wash);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.3fr;
  gap: 28px;
  padding-bottom: 40px;
  position: relative;
  z-index: 1;
}

.footer-newsletter {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.footer-newsletter::before {
  content: "";
  position: absolute;
  inset: -20px -8px -24px 0;
  background: url("../images/bg-blossoms.png") right center / cover no-repeat;
  opacity: 0.32;
  pointer-events: none;
  z-index: 0;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 38%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 38%);
}

.footer-newsletter > * {
  position: relative;
  z-index: 1;
}

.site-footer h4 {
  font-family: var(--font);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 15px;
  margin-bottom: 16px;
}

.site-footer p,
.site-footer li,
.site-footer a {
  color: var(--muted);
  font-size: 14px;
}

.site-footer li {
  margin-bottom: 8px;
}

.site-footer a:hover {
  color: var(--pink);
}

.footer-links a::before {
  content: "> ";
  color: var(--pink);
}

.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin: 12px 0 16px;
}

.newsletter-form input {
  flex: 1;
  border: 1px solid #f0c3d3;
  padding: 11px 12px;
  font-family: var(--font);
  outline: none;
}

.newsletter-form input:focus {
  border-color: var(--pink);
}

.newsletter-form button {
  border-radius: 0 var(--radius) var(--radius) 0;
}

.newsletter-form .field-error,
.newsletter-form .form-success {
  flex-basis: 100%;
  margin-top: 8px;
}

.footer-social a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--pink);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 6px;
}

.footer-social a:hover {
  background: var(--teal);
  color: var(--white);
}

.footer-bottom {
  background: var(--white);
  padding: 14px 0;
  font-size: 13px;
  color: var(--muted);
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-bottom a {
  color: var(--muted);
  margin-left: 10px;
}

.footer-bottom a:hover {
  color: var(--pink);
}

/* Forms */
.form-row {
  margin-bottom: 16px;
}

label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
}

input[type="text"],
input[type="email"],
input[type="date"],
input[type="number"],
input[type="tel"],
select,
textarea {
  width: 100%;
  border: 1px solid #ddd;
  padding: 11px 12px;
  font-family: var(--font);
  font-size: 14px;
  border-radius: var(--radius);
  outline: none;
  background: var(--white);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--pink);
}

textarea {
  min-height: 130px;
  resize: vertical;
}

.field-error {
  color: #d12c54;
  font-size: 12px;
  margin-top: 4px;
  display: none;
}

.field-error.show,
.is-invalid + .field-error {
  display: block;
}

.is-invalid {
  border-color: #d12c54 !important;
}

.form-success {
  display: none;
  background: #e8f8f0;
  border: 1px solid #9ad9bb;
  color: #1f7a4d;
  padding: 14px 16px;
  border-radius: var(--radius);
  margin-bottom: 16px;
}

.form-success.show {
  display: block;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Booking */
.steps {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.steps span {
  min-width: 110px;
  text-align: center;
  padding: 10px 12px;
  background: #f4f4f4;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
}

.steps span.active {
  background: var(--teal);
  color: var(--white);
}

.steps span.done {
  background: var(--pink);
  color: var(--white);
}

.wizard-box {
  border: 1px solid var(--line);
  padding: 32px;
  background: var(--white);
}

.wizard-step {
  display: none;
}

.wizard-step.active {
  display: block;
}

.wizard-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 22px;
}

/* Layouts */
.two-col {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
}

.blog-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 36px;
}

.sidebar-box {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 20px;
  margin-bottom: 22px;
}

.sidebar-box h4 {
  font-family: var(--font);
  font-size: 16px;
  margin-bottom: 14px;
  color: var(--pink);
}

.side-nav a {
  display: block;
  padding: 10px 12px;
  color: var(--text);
  border-left: 3px solid transparent;
}

.side-nav a.active,
.side-nav a:hover {
  background: var(--pink-soft);
  border-left-color: var(--pink);
  color: var(--pink);
}

.brochure {
  background: var(--pink-soft);
  padding: 22px;
  text-align: center;
}

.recent-post {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 10px;
  margin-bottom: 12px;
}

.recent-post img {
  width: 70px;
  height: 70px;
  object-fit: cover;
}

.recent-post h5 {
  font-family: var(--font);
  font-size: 13px;
  margin: 0 0 4px;
}

.side-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.side-gallery img {
  width: 100%;
  height: 64px;
  object-fit: cover;
}

.search-form {
  display: flex;
}

.search-form input {
  border-right: 0;
  border-radius: var(--radius) 0 0 var(--radius);
}

.search-form button {
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 0 14px;
}

.blog-list-item {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 22px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.pagination {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 12px;
}

.pagination button,
.pagination a {
  min-width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  cursor: pointer;
}

.pagination .active,
.pagination a.active {
  background: var(--pink);
  border-color: var(--pink);
  color: var(--white);
}

/* Accordion */
.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item button {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  padding: 14px 0;
  font-family: var(--font);
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  color: var(--text);
}

.faq-item .answer {
  display: none;
  padding: 0 0 14px;
  color: var(--muted);
  font-size: 14px;
}

.faq-item.open .answer {
  display: block;
}

.faq-item.open button {
  color: var(--pink);
}

/* Services icon grid */
.icon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.icon-block {
  text-align: center;
  padding: 10px 16px;
}

.icon-block .glyph {
  width: 58px;
  height: 58px;
  margin: 0 auto 12px;
  color: var(--pink);
}

.icon-block h3 {
  font-family: var(--font);
  font-size: 18px;
}

.photo-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 28px 0;
}

.photo-row img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.photo-row h4 {
  font-family: var(--font);
  font-size: 16px;
  margin-top: 10px;
}

/* Pricing */
.price-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 48px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px dotted #e3b4c5;
  padding: 10px 0;
  font-size: 15px;
}

.price-row strong {
  color: var(--pink);
  white-space: nowrap;
}

/* Shop */
.shop-layout {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 32px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.product-card {
  text-align: center;
}

.product-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  background: var(--pink-soft);
  margin-bottom: 10px;
}

.product-card h3 {
  font-family: var(--font);
  font-size: 16px;
  margin-bottom: 4px;
}

.stars {
  color: #f5b301;
  font-size: 13px;
  letter-spacing: 1px;
}

.price {
  color: var(--pink);
  font-weight: 700;
}

.price s {
  color: #aaa;
  font-weight: 400;
  margin-right: 6px;
}

.color-swatches {
  display: flex;
  gap: 8px;
}

.color-swatches button,
.size-btns button {
  border: 1px solid #ddd;
  background: var(--white);
  cursor: pointer;
}

.color-swatches button {
  width: 22px;
  height: 22px;
  border-radius: 50%;
}

.size-btns {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.size-btns button {
  min-width: 42px;
  height: 34px;
  font-family: var(--font);
}

.size-btns button.active,
.color-swatches button.active {
  outline: 2px solid var(--pink);
  border-color: var(--pink);
}

.qty-box {
  display: inline-flex;
  border: 1px solid #ddd;
}

.qty-box button,
.qty-box input {
  border: 0;
  width: 40px;
  height: 38px;
  text-align: center;
  background: var(--white);
  font-family: var(--font);
}

.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.thumbs {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.thumbs img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  cursor: pointer;
  border: 2px solid transparent;
}

.thumbs img.active {
  border-color: var(--pink);
}

#mainProductImage {
  width: 100%;
  height: 420px;
  object-fit: cover;
  background: var(--pink-soft);
}

.tabs {
  display: flex;
  gap: 0;
  margin: 36px 0 0;
  border-bottom: 2px solid var(--pink);
}

.tabs button {
  background: var(--pink-soft);
  border: 0;
  padding: 12px 22px;
  font-family: var(--font);
  font-weight: 600;
  cursor: pointer;
  color: var(--text);
}

.tabs button.active {
  background: var(--pink);
  color: var(--white);
}

.tab-panel {
  display: none;
  padding: 22px 0;
}

.tab-panel.active {
  display: block;
}

.check-list li {
  padding-left: 22px;
  position: relative;
  margin-bottom: 8px;
  color: var(--muted);
}

.check-list li::before {
  content: "✓";
  color: var(--pink);
  position: absolute;
  left: 0;
}

.trust-bar {
  background: #f7f7f7;
  padding: 28px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  text-align: center;
}

.trust-grid h4 {
  font-family: var(--font);
  font-size: 16px;
  margin: 8px 0 0;
}

.filter-list label {
  font-weight: 400;
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 8px;
}

/* Cart */
.cart-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 28px;
}

.cart-table th {
  text-align: left;
  background: var(--pink-soft);
  padding: 12px;
  font-size: 13px;
  text-transform: uppercase;
}

.cart-table td {
  padding: 14px 12px;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
}

.cart-table img {
  width: 70px;
  height: 70px;
  object-fit: cover;
}

.remove-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 0;
  background: #e74c3c;
  color: var(--white);
  cursor: pointer;
}

.cart-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.cart-box {
  border: 1px solid var(--line);
  padding: 22px;
}

.totals-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
}

.totals-row.grand {
  font-weight: 700;
  color: var(--pink);
  border-bottom: 0;
  font-size: 18px;
  margin-top: 8px;
}

.order-success {
  display: none;
  text-align: center;
  padding: 48px 20px;
  background: var(--pink-soft);
  border-radius: 8px;
}

.order-success.show {
  display: block;
}

.order-success h2 {
  color: var(--pink);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 22px;
}

.contact-card {
  background: var(--white);
  box-shadow: var(--shadow-soft);
  padding: 28px 22px;
}

.legal-content h2 {
  color: var(--pink);
  font-size: 24px;
  margin-top: 28px;
}

.legal-content h3 {
  font-family: var(--font);
  font-size: 18px;
  margin-top: 18px;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
}

.legal-content ul {
  padding-left: 18px;
  list-style: disc;
  margin-bottom: 14px;
}

.about-intro {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: center;
}

.about-intro img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.article img.hero-img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  margin-bottom: 18px;
}

.empty-note {
  text-align: center;
  color: var(--muted);
  padding: 24px;
}
