:root {
  /* Palitra, uyğunlaşdırılıb AG Parfum loqotipinə */
  --bg-body: #fff9f7;
  --bg-elevated: #ffffff;
  --bg-elevated-soft: #fff3f6;
  --border-subtle: rgba(214, 151, 161, 0.25);
  --accent: #d93f77;
  --accent-soft: rgba(217, 63, 119, 0.08);
  --accent-strong: #f18ba8;
  --text-main: #4b1f32;
  --text-muted: #8e6074;
  --text-soft: #b28a99;
  --text-on-accent: #ffffff;
  --danger: #ff6b6b;
  --radius-lg: 1.5rem;
  --radius-md: 1rem;
  --radius-sm: 999px;
  --shadow-soft: 0 18px 80px rgba(0, 0, 0, 0.65);
  --shadow-subtle: 0 1px 0 rgba(255, 255, 255, 0.02);
  --container-width: 1120px;
}

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

body {
  margin: 0;
  min-height: 100vh;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #ffe6ee 0, #fff9f7 55%);
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.loading {
  overflow: hidden;
}

.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #fff9f7 0%, #ffe6ee 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.6s ease-out, visibility 0.6s ease-out;
  visibility: visible;
}

.loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loading-content {
  display: flex;
  align-items: center;
  justify-content: center;
}

.loading-logo-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.5) translateY(30px);
  animation: logoFadeIn 1s ease-out 0.3s forwards;
}

@keyframes logoFadeIn {
  0% {
    opacity: 0;
    transform: scale(0.5) translateY(30px);
  }
  60% {
    transform: scale(1.05) translateY(-5px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.loading-logo {
  height: 200px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 6px 20px rgba(217, 63, 119, 0.3));
  animation: logoFloat 3s ease-in-out infinite 1.3s;
}

@keyframes logoFloat {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-12px) scale(1.02);
  }
}


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

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

button {
  font: inherit;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 4.5rem 0;
}

@media (min-width: 960px) {
  .section {
    padding: 5.5rem 0;
  }
}

.two-column {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 960px) {
  .two-column {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
    align-items: start;
  }
}

.contact-wrapper {
  margin-top: 2rem;
}

.contact-info-section {
  display: flex;
  flex-direction: column;
}

@media (min-width: 960px) {
  .contact-info-section,
  .contact-form {
    align-self: start;
  }
}

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--accent-strong);
  background: linear-gradient(135deg, var(--accent-soft), rgba(217, 63, 119, 0.1));
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
  border: 1px solid rgba(217, 63, 119, 0.2);
}

.lead {
  color: var(--text-main);
  font-size: 1.05rem;
  line-height: 1.8;
  font-weight: 400;
  margin-top: 1rem;
  max-width: 34rem;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 1.8rem 0 0;
  display: grid;
  gap: 0.9rem;
}

.check-list li {
  position: relative;
  padding-left: 2rem;
  color: var(--text-main);
  font-size: 0.95rem;
  line-height: 1.5;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-strong), var(--accent));
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(217, 63, 119, 0.3);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border-radius: var(--radius-sm);
  padding: 0.7rem 1.4rem;
  font-size: 0.9rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease,
    border-color 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: var(--text-on-accent);
  box-shadow: 0 12px 26px rgba(217, 63, 119, 0.45);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(217, 63, 119, 0.55);
}

.btn-ghost {
  background: #ffffff;
  border-color: rgba(217, 63, 119, 0.35);
  color: var(--accent);
}

.btn-ghost:hover {
  background: var(--accent-soft);
}

.btn-full {
  width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 249, 247, 0.98);
  border-bottom: 1px solid var(--border-subtle);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.4rem 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.logo-image {
  height: 3.5rem;
  width: auto;
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 999px;
  background: radial-gradient(circle at 20% 20%, #ffffff, var(--accent-strong));
  color: var(--accent);
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 8px 20px rgba(217, 63, 119, 0.4);
}

.logo-text {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-main);
  white-space: nowrap;
}

.main-nav {
  display: none;
}

.nav-logo {
  display: none;
}

.nav-logo-image {
  height: 2rem;
  width: auto;
}

.main-nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 1.6rem;
}

.main-nav a {
  font-size: 0.85rem;
  color: var(--text-soft);
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.3rem;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--accent-strong), var(--accent));
  transition: width 0.18s ease-out;
}

.main-nav a:hover {
  color: var(--text-main);
}

.main-nav a:hover::after {
  width: 100%;
}

.header-account {
  display: none;
  font-size: 0.82rem;
  color: var(--accent);
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  border: 1px solid rgba(217, 63, 119, 0.2);
  background: #ffffff;
}

.nav-toggle {
  width: 2.2rem;
  height: 2.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.22rem;
  border-radius: 999px;
  border: 1px solid rgba(217, 63, 119, 0.25);
  background: #ffffff;
  cursor: pointer;
}

.nav-toggle span {
  width: 1.1rem;
  height: 1px;
  border-radius: 999px;
  background: var(--accent);
  transition: transform 0.18s ease, opacity 0.18s ease, width 0.18s ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(3px) rotate(40deg);
  width: 1.2rem;
}

.nav-toggle.is-open span:nth-child(2) {
  transform: translateY(-3px) rotate(-40deg);
  width: 1.2rem;
}

.site-header.nav-open .main-nav {
  position: fixed;
  inset: 3.8rem 1rem auto;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-radius: 1.2rem;
  border: 1px solid rgba(214, 151, 161, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12),
              0 4px 16px rgba(217, 63, 119, 0.15);
  padding: 1.2rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  z-index: 50;
  min-width: 280px;
  max-width: 90vw;
}

.site-header.nav-open .nav-logo {
  display: flex;
  justify-content: center;
  padding-bottom: 0.8rem;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid rgba(214, 151, 161, 0.2);
}

.site-header.nav-open .main-nav ul {
  flex-direction: column;
  gap: 0.5rem;
  padding: 0;
}

.site-header.nav-open .main-nav a {
  display: block;
  padding: 0.7rem 0.9rem;
  border-radius: 0.6rem;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.site-header.nav-open .main-nav a:hover {
  background: var(--accent-soft);
  color: var(--accent-strong);
  transform: translateX(4px);
}

.site-header.nav-open .main-nav a::after {
  display: none;
}

@media (max-width: 767px) {
  .logo-text {
    display: none;
  }
}

@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }

  .main-nav {
    display: block;
  }

  .site-header.nav-open .main-nav {
    position: static;
    background: none;
    border: none;
    box-shadow: none;
    padding: 0;
    flex-direction: row;
  }

  .site-header.nav-open .nav-logo {
    display: none;
  }
}

@media (min-width: 880px) {
  .header-account {
    display: inline-flex;
  }
}

.hero {
  position: relative;
  padding-top: 3.8rem;
  padding-bottom: 3.5rem;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.4) 0%,
    rgba(255, 249, 247, 0.3) 50%,
    rgba(255, 255, 255, 0.4) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (min-width: 960px) {
  .hero {
    padding-top: 4.5rem;
    padding-bottom: 4.2rem;
    min-height: 700px;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 500px;
  }

  .hero-content {
    padding: 1.5rem;
    border-radius: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-content {
    padding: 1.2rem;
    border-radius: 0.8rem;
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 1.5rem;
}

.hero-content .eyebrow {
  color: #ffffff;
  font-weight: 600;
  text-shadow: 
    0 2px 10px rgba(0, 0, 0, 0.4),
    0 0 20px rgba(0, 0, 0, 0.2);
}

.hero-content h1 {
  color: #ffffff;
  font-weight: 800;
  text-shadow: 
    0 3px 15px rgba(0, 0, 0, 0.5),
    0 1px 5px rgba(0, 0, 0, 0.3),
    0 0 30px rgba(0, 0, 0, 0.2);
  font-size: clamp(2.1rem, 4vw, 3rem);
  letter-spacing: -0.03em;
  margin: 0 0 0.9rem;
}

.hero-content .highlight {
  background: linear-gradient(90deg, #ffd6e8, #ffb3d1);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 
    0 3px 15px rgba(217, 63, 119, 0.4),
    0 1px 5px rgba(217, 63, 119, 0.3);
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.hero-text {
  color: #ffffff;
  max-width: 30rem;
  font-size: 1rem;
  font-weight: 500;
  text-shadow: 
    0 2px 10px rgba(0, 0, 0, 0.4),
    0 1px 5px rgba(0, 0, 0, 0.3);
  margin: 0 auto;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin: 1.4rem 0 1.7rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 
    0 2px 8px rgba(0, 0, 0, 0.4),
    0 1px 4px rgba(0, 0, 0, 0.3);
}

.hero-meta .meta-label {
  display: block;
  margin-bottom: 0.1rem;
  color: rgba(255, 255, 255, 0.8);
}

.hero-meta .meta-value {
  color: #ffffff;
  font-weight: 600;
}

.hero-visual {
  position: relative;
  min-height: 260px;
}

.hero-card {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at 10% 0%, rgba(241, 139, 168, 0.25), transparent 55%),
    radial-gradient(circle at 100% 120%, rgba(250, 210, 185, 0.7), transparent 58%),
    linear-gradient(145deg, #ffffff, #ffe5ee);
  border: 1px solid rgba(241, 139, 168, 0.3);
  box-shadow: 0 16px 40px rgba(214, 151, 161, 0.45);
  padding: 1.6rem 1.7rem;
  overflow: hidden;
}

.hero-card-main h2 {
  font-size: 1.25rem;
  margin: 0 0 0.4rem;
}

.hero-card-main p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.hero-card-main .tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(245, 192, 118, 0.6);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-strong);
  margin-bottom: 0.9rem;
}

.hero-card-secondary {
  top: auto;
  left: auto;
  right: 6%;
  bottom: -6%;
  width: 60%;
  border-radius: 1.1rem;
  padding: 1rem 1.2rem;
  backdrop-filter: blur(18px);
  background: radial-gradient(circle at 0 0, rgba(241, 139, 168, 0.3), transparent 55%),
    rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(241, 139, 168, 0.45);
}

.hero-card-secondary h3 {
  margin: 0 0 0.3rem;
  font-size: 0.95rem;
}

.hero-card-secondary p {
  margin: 0;
  font-size: 0.8rem;
  color: var(--text-muted);
}

@media (max-width: 959px) {
  .hero-card {
    position: static;
    margin-top: 1.2rem;
  }

  .hero-card-secondary {
    position: static;
    width: 100%;
    margin-top: 0.9rem;
  }
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin-bottom: 1.9rem;
}

.section-header h2 {
  margin: 0;
  font-size: 1.5rem;
}

.section-header-actions {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

@media (min-width: 880px) {
  .section-header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }

  .section-header-actions {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
  }
}

.pill-tabs {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.25rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(214, 151, 161, 0.3);
}

.pill-tab {
  border: none;
  background: transparent;
  color: var(--text-muted);
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-size: 0.78rem;
  cursor: pointer;
}

.pill-tab.is-active {
  background: var(--accent-soft);
  color: var(--accent);
}

.search-wrapper {
  position: relative;
  flex: 1;
  min-width: 0;
}

.search-wrapper input {
  width: 100%;
  border-radius: 999px;
  border: 1px solid rgba(214, 151, 161, 0.35);
  background: #ffffff;
  padding: 0.55rem 0.9rem;
  font-size: 0.82rem;
  color: var(--text-main);
}

.search-wrapper input::placeholder {
  color: var(--text-soft);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

@media (min-width: 720px) {
  .products-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.product-card {
  position: relative;
  border-radius: 1.1rem;
  background: var(--bg-elevated-soft);
  border: 1px solid rgba(214, 151, 161, 0.35);
  box-shadow: 0 12px 26px rgba(212, 143, 155, 0.28);
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow: hidden;
  height: 100%;
}

.product-image-wrapper {
  position: relative;
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 20% 0, rgba(241, 139, 168, 0.35), transparent 60%);
  opacity: 0;
  transition: opacity 0.22s ease-out;
}

.product-card:hover::before {
  opacity: 1;
}

.product-card-content {
  padding: 0.9rem 0.7rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
}

.product-tag {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2), 
              0 2px 8px rgba(217, 63, 119, 0.3),
              inset 0 1px 0 rgba(255, 255, 255, 0.2);
  z-index: 2;
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1;
}

.product-tag span:first-child {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #ffffff;
  opacity: 0.95;
  flex-shrink: 0;
}

.product-tag span:last-child {
  display: inline-block;
}

.product-name {
  font-size: 0.85rem;
  font-weight: 600;
  margin: 0 0 0.6rem 0;
  line-height: 1.4;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  margin: 0 0 0.8rem 0;
}

.badge {
  border-radius: 999px;
  padding: 0.08rem 0.35rem;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.badge-soft {
  background: var(--accent-soft);
  color: var(--accent);
}

.badge-outline {
  border: 1px solid rgba(214, 151, 161, 0.4);
  color: var(--text-soft);
}

.product-cta {
  margin-top: auto;
  padding-top: 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.product-cta button {
  width: 100%;
  font-size: 0.75rem;
  padding: 0.5rem 0.8rem;
}

.product-cta small {
  font-size: 0.68rem;
  color: var(--text-soft);
}

.products-hint {
  margin-top: 1.2rem;
  font-size: 0.85rem;
  color: var(--text-soft);
}

.products-hint a {
  color: var(--accent);
}

.why-section {
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  background: #fffdfc;
}

.feature-grid {
  display: grid;
  gap: 1.1rem;
}

@media (min-width: 720px) {
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.feature-card {
  border-radius: 1.1rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  padding: 1rem 1.1rem;
  box-shadow: var(--shadow-subtle);
}

.feature-card h3 {
  margin: 0 0 0.45rem;
  font-size: 0.98rem;
}

.feature-card p {
  margin: 0;
  font-size: 0.87rem;
  color: var(--text-muted);
}

.about-section {
  background: #ffffff;
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
}

.about-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 249, 247, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}

.about-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-section.visible .about-wrapper {
  opacity: 1;
  transform: translateY(0);
}

.about-left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-badge {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  background: linear-gradient(135deg, rgba(217, 63, 119, 0.1), rgba(214, 151, 161, 0.08));
  border: 1px solid rgba(217, 63, 119, 0.2);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-strong);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  width: fit-content;
  margin-bottom: 0.5rem;
}

.about-main-title {
  font-size: 2.5rem;
  line-height: 1.2;
  font-weight: 800;
  color: var(--text-main);
  margin: 0;
  letter-spacing: -0.02em;
}

.about-subtitle {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text-muted);
  margin: 0.3rem 0 0 0;
  line-height: 1.5;
}

.about-description {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-main);
  margin: 0;
  max-width: 100%;
}


.about-right {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.about-logo-container {
  position: relative;
  width: 100%;
  max-width: 320px;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.6;
  animation: orbFloat 8s ease-in-out infinite;
}

.logo-orb-1 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(217, 63, 119, 0.4), rgba(217, 63, 119, 0.1));
  top: -20px;
  left: -30px;
  animation-delay: 0s;
}

.logo-orb-2 {
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(214, 151, 161, 0.35), rgba(214, 151, 161, 0.1));
  bottom: -10px;
  right: -20px;
  animation-delay: 2s;
}

.logo-orb-3 {
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(255, 182, 193, 0.3), rgba(255, 182, 193, 0.1));
  top: 50%;
  right: -40px;
  transform: translateY(-50%);
  animation-delay: 4s;
}

@keyframes orbFloat {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(20px, -20px) scale(1.1);
  }
  66% {
    transform: translate(-15px, 15px) scale(0.9);
  }
}

.about-logo-wrapper {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.95) 0%,
    rgba(255, 249, 247, 0.9) 100%);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 2px solid rgba(255, 255, 255, 0.5);
  box-shadow: 
    0 20px 60px rgba(217, 63, 119, 0.15),
    0 8px 24px rgba(214, 151, 161, 0.1),
    inset 0 2px 8px rgba(255, 255, 255, 0.8),
    inset 0 -2px 8px rgba(217, 63, 119, 0.05);
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
}

.logo-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle,
    rgba(217, 63, 119, 0.15) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.6s ease;
  border-radius: 50%;
}

.about-logo-wrapper:hover {
  transform: scale(1.05);
  box-shadow: 
    0 28px 80px rgba(217, 63, 119, 0.25),
    0 12px 32px rgba(214, 151, 161, 0.15),
    inset 0 2px 12px rgba(255, 255, 255, 1),
    inset 0 -2px 12px rgba(217, 63, 119, 0.1);
}

.about-logo-wrapper:hover .logo-glow {
  opacity: 1;
}

.about-logo {
  position: relative;
  z-index: 1;
  height: 160px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(217, 63, 119, 0.2));
  animation: logoRotateFloat 8s ease-in-out infinite;
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.about-logo-wrapper:hover .about-logo {
  filter: drop-shadow(0 8px 20px rgba(217, 63, 119, 0.3));
  transform: scale(1.08);
}

@keyframes logoRotateFloat {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-8px) rotate(2deg);
  }
  50% {
    transform: translateY(-12px) rotate(0deg);
  }
  75% {
    transform: translateY(-8px) rotate(-2deg);
  }
}

.logo-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  pointer-events: none;
}

.logo-particles .particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: radial-gradient(circle, rgba(217, 63, 119, 0.8), transparent);
  border-radius: 50%;
  animation: particleFloat 12s ease-in-out infinite;
}

.logo-particles .particle:nth-child(1) {
  top: 10%;
  left: 20%;
  animation-delay: 0s;
}

.logo-particles .particle:nth-child(2) {
  top: 30%;
  right: 15%;
  animation-delay: 2s;
}

.logo-particles .particle:nth-child(3) {
  bottom: 25%;
  left: 25%;
  animation-delay: 4s;
}

.logo-particles .particle:nth-child(4) {
  bottom: 15%;
  right: 30%;
  animation-delay: 6s;
}

.logo-particles .particle:nth-child(5) {
  top: 50%;
  left: 10%;
  animation-delay: 8s;
}

.logo-particles .particle:nth-child(6) {
  top: 20%;
  right: 25%;
  animation-delay: 10s;
}

@keyframes particleFloat {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translate(30px, -40px) scale(1.5);
    opacity: 1;
  }
}

.about-slogan {
  margin-top: 4rem;
  text-align: center;
  position: relative;
  padding: 3rem 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.6s;
}

.about-section.visible .about-slogan {
  opacity: 1;
  transform: translateY(0);
}

.about-slogan::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(
    circle,
    rgba(217, 63, 119, 0.06) 0%,
    transparent 70%
  );
  opacity: 0;
  animation: sloganGlow 3s ease-in-out 1s forwards;
  pointer-events: none;
}

@keyframes sloganGlow {
  0% {
    opacity: 0;
    transform: translateX(-50%) scale(0.8);
  }
  50% {
    opacity: 1;
    transform: translateX(-50%) scale(1);
  }
  100% {
    opacity: 0.6;
    transform: translateX(-50%) scale(1.1);
  }
}

.slogan-line {
  width: 140px;
  height: 2px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(217, 63, 119, 0.3) 30%,
    rgba(214, 151, 161, 0.5) 50%,
    rgba(217, 63, 119, 0.3) 70%,
    transparent 100%);
  margin: 0 auto 3rem;
  opacity: 0;
  transform: scaleX(0);
  position: relative;
}

.about-section.visible .slogan-line {
  animation: lineSlideIn 1.2s ease-out 0.5s forwards;
}

.slogan-line::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: rgba(217, 63, 119, 0.5);
  border-radius: 50%;
  opacity: 0;
  animation: dotFadeIn 0.5s ease-out 1.5s forwards;
}

.slogan-line:last-of-type {
  margin: 3rem auto 0;
}

.about-section.visible .slogan-line:last-of-type {
  animation: lineSlideIn 1.2s ease-out 2.8s forwards;
}

.about-section.visible .slogan-line:last-of-type::after {
  animation: dotFadeIn 0.5s ease-out 3.8s forwards;
}

@keyframes lineSlideIn {
  0% {
    width: 0;
    opacity: 0;
    transform: scaleX(0);
  }
  100% {
    width: 140px;
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes dotFadeIn {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

.slogan-text {
  font-family: 'Playfair Display', 'Georgia', 'Times New Roman', serif;
  font-size: 2.6rem;
  line-height: 1.8;
  font-weight: 400;
  color: var(--text-main);
  letter-spacing: 0.05em;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.1rem;
  opacity: 0;
  animation: sloganFadeIn 0.8s ease-out 1.2s forwards;
  position: relative;
  z-index: 1;
}

.slogan-char {
  display: inline-block;
  opacity: 0;
  transform: translateY(50px) rotateX(90deg);
  transition: all 0.3s ease;
}

.about-section.visible .slogan-char {
  animation: charSlideUp 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.slogan-char.space {
  width: 0.3em;
}

.slogan-char:hover {
  transform: translateY(-5px) scale(1.2);
  color: var(--accent-strong);
}

/* Hər hərf üçün fərqli delay - hər hərf 0.03s interval ilə */
.slogan-char:nth-child(1) { animation-delay: 1.5s; color: var(--accent-strong); font-weight: 500; }
.slogan-char:nth-child(2) { animation-delay: 1.53s; }
.slogan-char:nth-child(3) { animation-delay: 1.56s; }
.slogan-char:nth-child(4) { animation-delay: 1.59s; }
.slogan-char:nth-child(5) { animation-delay: 1.62s; }
.slogan-char:nth-child(6) { animation-delay: 1.65s; }
.slogan-char:nth-child(7) { animation-delay: 1.68s; }
.slogan-char:nth-child(8) { animation-delay: 1.71s; }
.slogan-char:nth-child(9) { animation-delay: 1.74s; }
.slogan-char:nth-child(10) { animation-delay: 1.77s; }
.slogan-char:nth-child(11) { animation-delay: 1.8s; }
.slogan-char:nth-child(12) { animation-delay: 1.83s; }
.slogan-char:nth-child(13) { animation-delay: 1.86s; }
.slogan-char:nth-child(14) { animation-delay: 1.89s; }
.slogan-char:nth-child(15) { animation-delay: 1.92s; }
.slogan-char:nth-child(16) { animation-delay: 1.95s; }
.slogan-char:nth-child(17) { animation-delay: 1.98s; }
.slogan-char:nth-child(18) { animation-delay: 2.01s; }
.slogan-char:nth-child(19) { animation-delay: 2.04s; }
.slogan-char:nth-child(20) { animation-delay: 2.07s; }
.slogan-char:nth-child(21) { animation-delay: 2.1s; }
.slogan-char:nth-child(22) { animation-delay: 2.13s; }
.slogan-char:nth-child(23) { animation-delay: 2.16s; }
.slogan-char:nth-child(24) { animation-delay: 2.19s; }
.slogan-char:nth-child(25) { animation-delay: 2.22s; }
.slogan-char:nth-child(26) { animation-delay: 2.25s; }
.slogan-char:nth-child(27) { animation-delay: 2.28s; }
.slogan-char:nth-child(28) { animation-delay: 2.31s; }
.slogan-char:nth-child(29) { animation-delay: 2.34s; }
.slogan-char:nth-child(30) { animation-delay: 2.37s; }
.slogan-char:nth-child(31) { animation-delay: 2.4s; }
.slogan-char:nth-child(32) { animation-delay: 2.43s; }
.slogan-char:nth-child(33) { animation-delay: 2.46s; }
.slogan-char:nth-child(34) { animation-delay: 2.49s; }
.slogan-char:nth-child(35) { animation-delay: 2.52s; }
.slogan-char:nth-child(36) { animation-delay: 2.55s; }
.slogan-char:nth-child(37) { animation-delay: 2.58s; }
.slogan-char:nth-child(38) { animation-delay: 2.61s; }
.slogan-char:nth-child(39) { animation-delay: 2.64s; }
.slogan-char:nth-child(40) { animation-delay: 2.67s; }
.slogan-char:nth-child(41) { animation-delay: 2.7s; }
.slogan-char:nth-child(42) { animation-delay: 2.73s; }
.slogan-char:nth-child(43) { animation-delay: 2.76s; }
.slogan-char:nth-child(44) { animation-delay: 2.79s; }
.slogan-char:nth-child(45) { animation-delay: 2.82s; }
.slogan-char:nth-child(46) { animation-delay: 2.85s; }
.slogan-char:nth-child(47) { animation-delay: 2.88s; }
.slogan-char:nth-child(48) { animation-delay: 2.91s; }
.slogan-char:nth-child(49) { animation-delay: 2.94s; }
.slogan-char:nth-child(50) { animation-delay: 2.97s; }

/* Xüsusi hərflər üçün rəng */
.slogan-char:nth-child(1),
.slogan-char:nth-child(2),
.slogan-char:nth-child(3),
.slogan-char:nth-child(4) {
  color: var(--accent-strong);
  font-weight: 500;
}

.slogan-char:nth-child(24),
.slogan-char:nth-child(25),
.slogan-char:nth-child(26),
.slogan-char:nth-child(27),
.slogan-char:nth-child(28) {
  color: var(--accent);
  font-weight: 500;
}

@keyframes sloganFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes charSlideUp {
  0% {
    opacity: 0;
    transform: translateY(50px) rotateX(90deg) scale(0.8);
  }
  60% {
    transform: translateY(-8px) rotateX(0deg) scale(1.1);
  }
  100% {
    opacity: 1;
    transform: translateY(0) rotateX(0deg) scale(1);
  }
}


.about-section blockquote::before {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-strong), transparent);
  margin: 0 auto 2rem;
}

.about-section blockquote::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-strong), transparent);
  margin: 2rem auto 0;
}

.about-section blockquote::before {
  content: """;
  position: absolute;
  left: 1rem;
  top: 0.8rem;
  font-size: 3rem;
  color: var(--accent);
  opacity: 0.3;
  font-family: Georgia, serif;
  line-height: 1;
}

.about-section blockquote p {
  margin: 0;
  position: relative;
  z-index: 1;
  color: var(--text-main);
  font-weight: 300;
}


.business-section {
  border-bottom: 1px solid var(--border-subtle);
  background: #fff9f7;
}

.business-card {
  border-radius: 1.4rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 249, 247, 0.95));
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border: 1px solid rgba(214, 151, 161, 0.25);
  padding: 2rem 2.2rem;
  box-shadow: 0 12px 40px rgba(212, 143, 155, 0.25),
              0 4px 16px rgba(217, 63, 119, 0.15),
              inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.business-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-strong), var(--accent));
  opacity: 0.8;
}

.business-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(212, 143, 155, 0.35),
              0 8px 24px rgba(217, 63, 119, 0.2),
              inset 0 1px 0 rgba(255, 255, 255, 0.9);
  border-color: rgba(217, 63, 119, 0.4);
}

.business-card h3 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-main);
  background: linear-gradient(135deg, var(--accent-strong), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.business-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.business-card dl {
  margin: 0;
  display: grid;
  gap: 1.5rem;
}

.business-card dl > div {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 0.8rem;
  border: 1px solid rgba(214, 151, 161, 0.15);
  transition: all 0.2s ease;
}

.business-card dl > div:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(217, 63, 119, 0.25);
  transform: translateX(4px);
}

.business-card dt {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent-strong);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.business-card dd {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-main);
  line-height: 1.6;
  font-weight: 500;
}

.business-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.8rem;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 1.8rem 0 0;
  display: grid;
  gap: 1rem;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 0.9rem;
  border: 1px solid rgba(214, 151, 161, 0.2);
  transition: all 0.2s ease;
}

.contact-list li:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(217, 63, 119, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(217, 63, 119, 0.15);
}

.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 0.7rem;
  background: linear-gradient(135deg, var(--accent-strong), var(--accent));
  color: #ffffff;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(217, 63, 119, 0.3);
}

.contact-icon svg {
  width: 24px;
  height: 24px;
  color: #ffffff;
  fill: #ffffff;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  flex: 1;
}

.contact-list .label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-soft);
  font-weight: 500;
}

.contact-list a {
  font-size: 1rem;
  color: var(--accent-strong);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-list a:hover {
  color: var(--accent);
}

.contact-form {
  margin-top: 1.8rem;
  border-radius: 1.3rem;
  background: #ffffff;
  border: 1px solid rgba(214, 151, 161, 0.4);
  padding: 1.2rem 1.3rem 1.3rem;
  box-shadow: 0 18px 46px rgba(212, 143, 155, 0.35);
  align-self: start;
}

@media (min-width: 960px) {
  .contact-form {
    margin-top: 0;
  }
}

.form-row {
  margin-bottom: 0.9rem;
}

.form-row label {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 0.8rem;
}

.form-row input,
.form-row textarea {
  width: 100%;
  border-radius: 0.7rem;
  border: 1px solid rgba(214, 151, 161, 0.45);
  padding: 0.55rem 0.8rem;
  background: #fffaf8;
  color: var(--text-main);
  font-size: 0.9rem;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: var(--text-soft);
}

.form-hint {
  font-size: 0.75rem;
  color: var(--text-soft);
  margin-bottom: 0.9rem;
}

.account-section .account-card {
  border-radius: 1.1rem;
  padding: 1.3rem 1.4rem;
  background: #ffffff;
  border: 1px dashed rgba(241, 139, 168, 0.7);
  color: var(--text-muted);
}

.site-footer {
  border-top: 1px solid var(--border-subtle);
  padding: 1.3rem 0 1.6rem;
  background: #fff5f8;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  align-items: flex-start;
}

.footer-logo-image {
  height: 3.1rem;
  width: auto;
}

.footer-brand {
  margin-left: 0.35rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-soft);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  font-size: 0.78rem;
  color: var(--text-soft);
}

@media (min-width: 720px) {
  .footer-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 4rem 0;
  }

  .about-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-right {
    order: -1;
    margin-bottom: 1rem;
  }

  .about-slogan {
    margin-top: 3rem;
    padding: 2rem 0;
  }

  .about-logo-container {
    max-width: 280px;
    height: 280px;
    margin: 0 auto;
  }

  .about-logo-wrapper {
    width: 200px;
    height: 200px;
  }

  .about-logo {
    height: 140px;
  }

  .logo-orb-1 {
    width: 160px;
    height: 160px;
  }

  .logo-orb-2 {
    width: 120px;
    height: 120px;
  }

  .logo-orb-3 {
    width: 100px;
    height: 100px;
  }

  .about-main-title {
    font-size: 2.5rem;
  }

  .about-subtitle {
    font-size: 1.2rem;
  }

  .about-description {
    max-width: 100%;
  }

  .about-slogan {
    margin-top: 4rem;
    padding: 2.5rem 0;
  }

  .slogan-text {
    font-size: 1.9rem;
    gap: 0.08rem;
    letter-spacing: 0.03em;
  }

  .slogan-line {
    width: 100px;
  }
}

@media (max-width: 480px) {
  .header-inner {
    padding-inline: 1.1rem;
  }

  .container {
    padding-inline: 1.1rem;
  }

  .hero-content h1 {
    font-size: 1.85rem;
  }

  .products-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .about-logo-container {
    max-width: 240px;
    height: 240px;
  }

  .about-logo-wrapper {
    width: 180px;
    height: 180px;
  }

  .about-logo {
    height: 120px;
  }

  .logo-orb-1 {
    width: 140px;
    height: 140px;
  }

  .logo-orb-2 {
    width: 100px;
    height: 100px;
  }

  .logo-orb-3 {
    width: 80px;
    height: 80px;
  }

  .about-section {
    padding: 3rem 0;
  }

  .about-wrapper {
    gap: 3rem;
  }

  .about-main-title {
    font-size: 2rem;
  }

  .about-subtitle {
    font-size: 1.1rem;
  }

  .about-description {
    font-size: 1rem;
  }

  .about-slogan {
    margin-top: 3rem;
    padding: 2rem 0;
  }

  .slogan-text {
    font-size: 1.6rem;
    line-height: 1.6;
    gap: 0.05rem;
    letter-spacing: 0.02em;
  }

  .slogan-line {
    width: 80px;
  }
}

