﻿:root {
  --pink: #E8B7C8;
  --pink-strong: #df6d99;
  --pink-light: #F6DDE5;
  --cream: #FFF9F3;
  --ink: #3A2A2A;
  --gold: #C8A46B;
  --white: #ffffff;
  --muted: #7d6868;
  --line: rgba(232, 183, 200, .42);
  --shadow: 0 18px 45px rgba(58, 42, 42, .10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Poppins", Arial, sans-serif;
  line-height: 1.7;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.topbar {
  background: linear-gradient(90deg, var(--pink-light), var(--cream));
  color: var(--muted);
  font-size: 13px;
  padding: 9px 0;
}
.topbar .container, .nav-wrap, .section-inner, .footer-inner {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}
.topbar .container, .topbar-left, .topbar-right {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(18px);
  box-shadow: 0 8px 25px rgba(58, 42, 42, .06);
}
.nav-wrap {
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 175px;
}
.logo-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(145deg, var(--pink-strong), var(--pink));
  box-shadow: 0 12px 25px rgba(223, 109, 153, .25);
}
.logo-title {
  display: block;
  color: var(--pink-strong);
  font: 700 29px/1 "Playfair Display", serif;
}
.logo-sub {
  display: block;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 1.4px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 13px;
  font-weight: 600;
}
.main-nav a {
  position: relative;
  padding: 32px 0;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 20px;
  width: 0;
  height: 2px;
  background: var(--pink-strong);
  transition: width .25s ease;
}
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }
.dropdown { position: relative; }
.dropdown-menu {
  display: grid;
  min-width: 205px;
  position: absolute;
  top: 76px;
  left: 0;
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: .2s ease;
}
.dropdown:hover .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.dropdown-menu a {
  padding: 10px 12px;
  border-radius: 6px;
}
.dropdown-menu a:hover { background: var(--cream); }
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  color: var(--ink);
  background: var(--cream);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 13px 24px;
  border: 0;
  border-radius: 7px;
  color: var(--white);
  background: linear-gradient(135deg, var(--pink-strong), var(--pink));
  font-weight: 700;
  font-size: 13px;
  box-shadow: 0 12px 26px rgba(223, 109, 153, .22);
  cursor: pointer;
  overflow: hidden;
  position: relative;
}
.btn-outline {
  color: var(--pink-strong);
  background: transparent;
  border: 1px solid var(--pink);
  box-shadow: none;
}
.btn::before {
  content: "";
  position: absolute;
  inset: auto auto 0 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.35);
  transform: translate(-50%, 50%);
  transition: width .45s ease, height .45s ease;
}
.btn:hover::before { width: 220px; height: 220px; }

.hero-slider {
  position: relative;
  min-height: 650px;
  background: linear-gradient(90deg, #fff 0%, var(--cream) 54%, var(--pink-light) 100%);
  overflow: hidden;
}
.swiper, .swiper-wrapper, .swiper-slide { min-height: 650px; }
.hero-slide {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(420px, 1.05fr);
  align-items: center;
  gap: 46px;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}
.eyebrow {
  color: var(--pink-strong);
  letter-spacing: 4px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}
h1, h2, h3, h4 {
  margin: 0;
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.15;
}
h1 { font-size: clamp(44px, 6vw, 78px); max-width: 620px; }
h2 { font-size: clamp(30px, 4vw, 46px); }
h3 { font-size: 24px; }
.lead { color: var(--muted); font-size: 18px; max-width: 560px; }
.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 24px 0 32px;
  color: var(--muted);
}
.hero-points span, .mini-feature {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.hero-points i, .mini-feature i {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--pink);
  border-radius: 50%;
  color: var(--pink-strong);
}
.hero-image {
  min-height: 560px;
  border-radius: 0 0 0 90px;
  background-size: cover;
  background-position: center;
  box-shadow: -25px 28px 60px rgba(232,183,200,.24);
}
.swiper-pagination-bullet-active { background: var(--pink-strong); }

.section {
  padding: 86px 0;
  position: relative;
}
.section-soft { background: linear-gradient(180deg, var(--cream), #fff); }
.section-pink { background: linear-gradient(135deg, var(--pink-light), var(--cream)); }
.section-title {
  text-align: center;
  margin-bottom: 38px;
}
.section-title .eyebrow { display: block; margin-bottom: 8px; }
.gold-line {
  width: 74px;
  height: 2px;
  background: var(--gold);
  margin: 16px auto 0;
  position: relative;
}
.gold-line::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 9px;
  height: 9px;
  border: 1px solid var(--gold);
  background: var(--white);
  transform: translate(-50%, -50%) rotate(45deg);
}
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid-6 { grid-template-columns: repeat(6, minmax(0, 1fr)); }

.service-card, .product-card, .blog-card, .team-card, .plain-card, .faq-item {
  background: var(--white);
  border: 1px solid rgba(232,183,200,.45);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(58,42,42,.06);
  overflow: hidden;
}
.service-card {
  position: relative;
  text-align: center;
  transition: transform .28s ease, box-shadow .28s ease;
}
.service-card:hover {
  transform: translateY(-10px) scale(1.025);
  box-shadow: var(--shadow);
}
.service-card::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .25s ease;
}
.service-card:hover::after { transform: scaleX(1); }
.card-image {
  height: 210px;
  background-size: cover;
  background-position: center;
  transition: transform .35s ease;
}
.service-card:hover .card-image, .blog-card:hover .card-image, .product-card:hover .card-image { transform: scale(1.06); }
.service-body, .product-body, .blog-body, .plain-card { padding: 22px; }
.service-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin: -31px auto 14px;
  position: relative;
  z-index: 2;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--pink-strong), var(--pink));
}
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  color: var(--pink-strong);
  font-weight: 700;
  font-size: 13px;
  opacity: .85;
}
.service-card .btn-outline {
  opacity: 0;
  transform: translateY(8px);
  margin-top: 14px;
  transition: .22s ease;
}
.service-card:hover .btn-outline {
  opacity: 1;
  transform: translateY(0);
}

.about-wrap {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: 70px;
}
.image-panel {
  min-height: 430px;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}
.stat-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}
.stat {
  text-align: center;
}
.stat i {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin: 0 auto 10px;
  color: var(--white);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink-strong), var(--pink));
}
.stat strong {
  display: block;
  font-size: 28px;
  line-height: 1;
}

.product-card .card-image { height: 190px; }
.product-body { text-align: center; }
.price { color: var(--pink-strong); font: 700 20px "Playfair Display", serif; }
.campaign {
  display: grid;
  grid-template-columns: 1fr 320px;
  align-items: center;
  gap: 20px;
  min-height: 245px;
  padding: 44px 56px;
  border: 1px solid var(--pink);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255,249,243,.95), rgba(246,221,229,.88)),
    url("https://images.unsplash.com/photo-1512496015851-a90fb38ba796?auto=format&fit=crop&w=1200&q=80") center/cover;
  overflow: hidden;
}
.campaign .discount { font: 500 clamp(46px, 7vw, 76px)/1 "Playfair Display", serif; }

.team-card {
  padding: 25px 18px;
  text-align: center;
  transition: transform .25s ease, box-shadow .25s ease;
}
.team-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.avatar {
  width: 138px;
  height: 138px;
  border: 3px solid var(--pink);
  border-radius: 50%;
  margin: 0 auto 14px;
  background-size: cover;
  background-position: center;
}

.testimonial-card {
  width: min(560px, 100%);
  margin: 0 auto;
  padding: 36px;
  text-align: center;
  border: 1px solid var(--pink);
  border-radius: 8px;
  background: var(--white);
}
.stars { color: var(--gold); letter-spacing: 3px; }

.blog-card { position: relative; }
.blog-date {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 8px 10px;
  border-radius: 6px;
  color: var(--white);
  background: var(--pink-strong);
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.gallery-grid a {
  min-height: 142px;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
}

.page-hero {
  min-height: 390px;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(58,42,42,.56), rgba(232,183,200,.35)),
    var(--hero-image) center/cover;
}
.page-hero h1 { color: var(--white); margin: 10px auto; }
.breadcrumb {
  display: inline-flex;
  gap: 9px;
  color: rgba(255,255,255,.86);
}
.content-text p { color: var(--muted); }
.icon-box {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  color: var(--white);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink-strong), var(--pink));
  margin-bottom: 18px;
}
.filter-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}
.filter-btn {
  border: 1px solid var(--pink);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  padding: 10px 18px;
  font-weight: 700;
  cursor: pointer;
}
.filter-btn.active, .filter-btn:hover { background: var(--pink-strong); color: var(--white); }

.faq-item { margin-bottom: 14px; }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 0;
  background: transparent;
  color: var(--ink);
  padding: 20px 24px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}
.faq-answer {
  display: none;
  padding: 0 24px 22px;
  color: var(--muted);
}
.faq-item.open .faq-answer { display: block; }
.faq-item.open .faq-question i { transform: rotate(45deg); }

.contact-list {
  display: grid;
  gap: 14px;
}
.contact-list a, .contact-list div {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--muted);
}
.contact-list i { color: var(--pink-strong); margin-top: 5px; }
.form-grid {
  display: grid;
  gap: 16px;
}
.form-grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
input, textarea, select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--white);
  padding: 13px 15px;
  color: var(--ink);
  font: inherit;
}
textarea { min-height: 142px; resize: vertical; }
.map {
  height: 390px;
  border: 0;
  border-radius: 8px;
  width: 100%;
  box-shadow: var(--shadow);
}

.site-footer {
  background: linear-gradient(180deg, var(--cream), var(--pink-light));
  padding: 60px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.25fr repeat(4, 1fr);
  gap: 34px;
}
.footer-col h4 {
  margin-bottom: 16px;
  color: var(--pink-strong);
  font: 700 13px "Poppins", sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.footer-col a, .footer-col p { display: block; color: var(--muted); margin: 7px 0; font-size: 14px; }
.socials { display: flex; gap: 10px; margin-top: 16px; }
.socials a {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--pink-strong);
}
.copyright {
  margin-top: 42px;
  padding: 18px 0;
  border-top: 1px solid rgba(232,183,200,.5);
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.floating-actions {
  position: fixed;
  right: 22px;
  bottom: 26px;
  z-index: 1200;
  display: grid;
  gap: 14px;
}
.float-btn {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--pink-strong);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(58,42,42,.16);
  font-size: 22px;
}
.float-btn span {
  position: absolute;
  right: 78px;
  min-width: max-content;
  padding: 8px 10px;
  border-radius: 5px;
  background: var(--ink);
  color: var(--white);
  font-size: 12px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(8px);
  transition: .2s ease;
}
.float-btn:hover span { opacity: 1; transform: translateX(0); }

.article {
  width: min(860px, calc(100% - 36px));
  margin: 0 auto;
}
.article img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
  margin-bottom: 30px;
}
.detail-list {
  display: grid;
  gap: 12px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}
.detail-list li {
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--muted);
}
.detail-list i { color: var(--pink-strong); }
