:root {
  --primary-color: #dcd0ff;
  --primary-dark: #a890d3;
  --primary-light: #f3efff;
  --rose-gold: #cba1a7;
  --rose-gold-light: #e6d2d5;
  --bg-color: #ffffff;
  --bg-light: #fafafc;
  --text-dark: #332a40;
  --text-light: #7a6b8f;
  --font-heading: "Playfair Display", serif;
  --font-body: "Montserrat", sans-serif;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --shadow-soft: 0 10px 25px rgba(168, 144, 211, 0.08);
  --shadow-hover: 0 15px 30px rgba(168, 144, 211, 0.18);
  --shadow-rose: 0 12px 25px rgba(203, 161, 167, 0.25);
  --border-radius: 16px;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--bg-color);
  line-height: 1.6;
  overflow-x: hidden;
}

a,
button,
[role="button"],
input,
textarea,
.zoomable-item,
.business-card-container,
.faq-question {
  cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 1rem;
}

p {
  color: var(--text-light);
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

button {
  background: none;
  border: none;
  font-family: inherit;
}

img {
  max-width: 100%;
  display: block;
  border-radius: var(--border-radius);
  height: auto;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.section-padding {
  padding: 100px 0;
  content-visibility: auto;
  contain-intrinsic-size: 800px;
}

.bg-light {
  background-color: var(--bg-light);
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 50px auto;
}

.section-subtitle {
  display: block;
  font-family: var(--font-body);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--rose-gold);
  margin-bottom: 10px;
  font-weight: 600;
}

.section-header h2 {
  font-size: 2.5rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
  border: 2px solid transparent;
  transition: var(--transition);
}

.btn-primary {
  background-color: var(--primary-dark);
  color: #fff;
  box-shadow: 0 8px 15px rgba(168, 144, 211, 0.2);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background-color: #8a73b6;
  transform: translateY(-3px);
  box-shadow: 0 12px 20px rgba(168, 144, 211, 0.3);
  outline: none;
}

.btn-secondary {
  background-color: #fff;
  color: var(--text-dark);
  box-shadow: var(--shadow-soft);
}

.btn-secondary.btn-rose-hover:hover,
.btn-secondary:focus-visible {
  background-color: var(--rose-gold);
  color: #fff;
  box-shadow: var(--shadow-rose);
  transform: translateY(-3px);
  outline: none;
}

.btn-outline {
  border-color: var(--primary-dark);
  color: var(--primary-dark);
}

.btn-outline:hover {
  background-color: var(--primary-dark);
  color: #fff;
}

.btn-text {
  padding: 0;
  background: transparent;
  color: var(--text-dark);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
}

.btn-text:hover {
  color: var(--rose-gold);
}

.btn-whatsapp {
  background-color: #25d366;
  color: #fff;
}

.btn-whatsapp:hover {
  background-color: #128c7e;
}

#navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 0;
  z-index: 1000;
  transition: var(--transition);
  background: transparent;
}

#navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 15px 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-dark);
}

.logo span {
  font-weight: 400;
  font-style: italic;
  color: var(--text-dark);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links li a {
  font-size: 0.9rem;
  font-weight: 500;
  position: relative;
}

.nav-links li a:not(.btn)::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--rose-gold);
  transition: width 0.3s ease;
}

.nav-links li a:not(.btn):hover::after,
.nav-links li a:not(.btn):focus-visible::after {
  width: 100%;
}

.nav-links li a:focus-visible {
  outline: 2px dashed var(--rose-gold);
  outline-offset: 4px;
}

.hamburger {
  display: none;
  font-size: 1.5rem;
  color: var(--text-dark);
}

#hero {
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background-color: var(--primary-light);
}

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-slider .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.hero-slider .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slider .slide.active {
  opacity: 0.7;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.85),
    rgba(243, 239, 255, 0.7)
  );
  z-index: 1;
}

.hero-bg-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.3;
  animation: float 8s ease-in-out infinite;
}

.shape-1 {
  width: 400px;
  height: 400px;
  background: var(--primary-color);
  top: -100px;
  right: -100px;
}

.shape-2 {
  width: 300px;
  height: 300px;
  background: var(--rose-gold-light);
  bottom: 10%;
  left: -50px;
  animation-delay: 2s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-content h1 {
  font-size: 4rem;
  line-height: 1.2;
  margin-bottom: 20px;
}

.rose-gold-text {
  color: var(--rose-gold);
  font-style: italic;
}

.gold-text {
  color: var(--gold-accent);
  font-style: italic;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.desktop-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  height: 70px;
  display: flex;
  justify-content: center;
}

.swipe-track {
  position: absolute;
  width: 3px;
  height: 100%;
  background: linear-gradient(
    to top,
    transparent,
    var(--rose-gold-light),
    transparent
  );
  border-radius: 2px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  opacity: 0.6;
}

.swipe-hand-icon {
  font-size: 2rem;
  color: var(--primary-dark);
  z-index: 2;
  animation: swipeUpAnim 2s infinite ease-in-out;
}

@keyframes swipeUpAnim {
  0% {
    transform: translateY(40px);
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    transform: translateY(-10px);
    opacity: 0;
  }
}

.swipe-up-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  z-index: 10;
  opacity: 1;
  visibility: visible;
  transition: var(--transition);
  height: 100px;
}

.about-image {
  position: relative;
  width: 100%;
}

.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-soft);
}

.experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--primary-dark);
  color: #fff;
  padding: 25px;
  border-radius: 50%;
  text-align: center;
  font-family: var(--font-heading);
  box-shadow:
    0 0 0 6px var(--bg-color),
    0 8px 20px rgba(203, 161, 167, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.experience-badge p {
  color: #fff;
  margin-bottom: 0;
  font-size: 1.1rem;
}

.service-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  will-change: transform;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.service-card .icon {
  width: 70px;
  height: 70px;
  background: var(--primary-light);
  color: var(--primary-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 20px auto;
  transition: var(--transition);
}

.service-card:hover .icon {
  background: var(--rose-gold);
  color: #fff;
  box-shadow: var(--shadow-rose);
}

.carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 50px;
  overflow: hidden;
}

.track-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 20px 0;
  touch-action: pan-y pinch-zoom;
}

.track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.item {
  flex: 0 0 320px;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  position: relative;
  background: #fff;
}

.gallery-item:hover,
.gallery-item:focus-within {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.item:focus-visible {
  outline: 3px solid var(--rose-gold);
  outline-offset: 2px;
}

.img-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 350px;
  border-radius: var(--border-radius);
}

.img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  -webkit-user-drag: none;
  user-select: none;
  -webkit-user-select: none;
}

.img-wrapper img,
.lightbox-img {
  -webkit-touch-callout: none;
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
}

.zoomable-item:hover img {
  transform: scale(1.08);
}

.zoom-icon {
  position: absolute;
  inset: 0;
  background: rgba(51, 42, 64, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.zoom-icon i {
  color: #fff;
  font-size: 3rem;
  transform: scale(0.5);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.zoomable-item:hover .zoom-icon {
  opacity: 1;
}

.zoomable-item:hover .zoom-icon i {
  transform: scale(1);
}

.collection-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.collection-card h3 {
  margin: 20px 20px 10px;
  font-size: 1.3rem;
}

.collection-card p {
  margin: 0 20px 20px;
  font-size: 0.9rem;
  flex-grow: 1;
  margin-bottom: 0;
  padding-bottom: 15px;
}

.button-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 20px 20px 20px;
  width: 100%;
}

.add-to-list-btn {
  width: 100%;
  max-width: 250px;
  margin: 0 auto;
}

.carousel-btn {
  position: absolute;
  z-index: 10;
  width: 45px;
  height: 45px;
  background: #fff;
  border-radius: 50%;
  color: var(--primary-dark);
  font-size: 1.2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.carousel-btn:hover,
.carousel-btn:focus-visible {
  background: var(--rose-gold);
  color: #fff;
  transform: translateY(-2px);
  outline: none;
}

.carousel-btn.prev {
  left: 0;
}

.carousel-btn.next {
  right: 0;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(20, 15, 30, 0.95);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s,
    visibility 0.3s;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;
  display: inline-block;
  max-width: 90vw;
  max-height: 90vh;
}

.lightbox-img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: 8px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
  display: block;
}

.lightbox .modal-close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: var(--transition);
  z-index: 100;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.lightbox .modal-close-btn:hover,
.lightbox .modal-close-btn:focus-visible {
  background: var(--rose-gold);
  transform: rotate(90deg);
  outline: none;
  border-color: var(--rose-gold);
}

.blog-card {
  background: #fff;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s;
  border: 1px solid rgba(168, 144, 211, 0.1);
  display: flex;
  flex-direction: column;
  will-change: transform;
  box-shadow: var(--shadow-soft);
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--rose-gold-light);
}

.blog-img {
  height: 220px;
  overflow: hidden;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

.blog-card:hover .blog-img img {
  transform: scale(1.06);
}

.blog-content {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-category {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--rose-gold);
  margin-bottom: 12px;
}

.blog-content h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.blog-content p {
  font-size: 0.95rem;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.read-more {
  font-weight: 600;
  color: var(--text-dark);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  border: none;
  background: transparent;
  padding: 0;
}

.read-more:hover,
.read-more:focus-visible {
  color: var(--rose-gold);
  outline: none;
}

.blog-modal-container {
  position: fixed;
  inset: 0;
  background: rgba(20, 15, 30, 0.85);
  backdrop-filter: blur(5px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s,
    visibility 0.3s;
  padding: 20px;
}

.blog-modal-container.active {
  opacity: 1;
  visibility: visible;
}

.blog-modal-content {
  background: var(--bg-color);
  width: 100%;
  max-width: 1000px;
  border-radius: var(--border-radius);
  position: relative;
  transform: translateY(30px) scale(0.95);
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
}

.blog-modal-container.active .blog-modal-content {
  transform: translateY(0) scale(1);
}

.blog-modal-grid {
  display: flex;
  height: 100%;
  overflow-y: auto;
}

.blog-modal-text {
  flex: 1;
  padding: 50px;
  display: flex;
  flex-direction: column;
}

.blog-modal-text h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.modal-body-content p {
  margin-bottom: 15px;
  font-size: 1rem;
  color: var(--text-light);
}

.blog-modal-image {
  width: 40%;
}

.blog-modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-modal-content .modal-close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--text-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: var(--transition);
  border: transparent;
  z-index: 10;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.blog-modal-content .modal-close-btn:hover {
  background: var(--rose-gold);
  color: #fff;
  transform: rotate(90deg);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 15px;
  border: 1px solid rgba(168, 144, 211, 0.2);
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 25px;
  font-weight: 600;
  font-size: 1.05rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  transition: background 0.2s;
}

.faq-question:hover,
.faq-question:focus-visible {
  background: var(--primary-light);
  outline: none;
  color: var(--primary-dark);
}

.faq-question i {
  transition: transform 0.3s ease;
  color: var(--rose-gold);
}

.faq-question[aria-expanded="true"] i {
  transform: rotate(180deg);
  color: var(--primary-dark);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}

.faq-answer > div {
  overflow: hidden;
}

.faq-question[aria-expanded="true"] + .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer p {
  padding: 0 25px 20px;
  margin: 0;
}

.contact-left-column {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
  height: 100%;
  align-items: center;
}

.business-card-display {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 420px;
  flex-shrink: 0;
  margin-bottom: 10px;
}

.business-card-container {
  position: relative;
  width: 100%;
  height: 250px;
  perspective: 1500px;
  z-index: 5;
}

.card-inner {
  position: absolute;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.9s cubic-bezier(0.2, 0.85, 0.3, 1.1);
  box-shadow: 0 15px 30px rgba(168, 144, 211, 0.2);
  border-radius: 16px;
}

.business-card-display:focus-visible .card-inner {
  transform: rotateY(180deg);
  outline: none;
}

.business-card-display.is-flipped .card-inner {
  transform: rotateY(180deg);
}

.card-front,
.card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  backface-visibility: hidden;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  text-align: center;
}

.floral-bg {
  background-image:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.94) 0%,
      rgba(243, 239, 255, 0.9) 100%
    ),
    url(https://images.unsplash.com/photo-1595123533800-47b2c01997b6?auto=format&fit=crop&w=600&q=80);
  background-size: cover;
  background-position: center;
  background-blend-mode: overlay;
}

.card-front .card-logo {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 5px;
  text-shadow: 0 2px 10px rgba(255, 255, 255, 0.8);
  width: 100%;
  display: block;
}

.card-front .card-logo span {
  font-weight: 400;
  font-style: italic;
  color: var(--rose-gold);
}

.card-front .card-title {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  width: 100%;
  display: block;
}

.desktop-ripple-hint {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  z-index: 10;
  opacity: 1;
  visibility: visible;
}

.desktop-ripple-hint::before,
.desktop-ripple-hint::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: #fff0;
  border: 2px solid var(--rose-gold);
  border-radius: 50%;
  animation: rippleWater 2s infinite ease-out;
}

.desktop-ripple-hint::after {
  animation-delay: 0.6s;
}

@keyframes rippleWater {
  0% {
    width: 0;
    height: 0;
    opacity: 1;
    border-width: 3px;
  }

  100% {
    width: 60px;
    height: 60px;
    opacity: 0;
    border-width: 1px;
  }
}

.business-card-display:hover .desktop-ripple-hint,
.business-card-display:focus-visible .desktop-ripple-hint,
.business-card-display.is-flipped .desktop-ripple-hint {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s;
}

.card-back {
  transform: rotateY(180deg);
  align-items: flex-start;
  text-align: left;
}

.card-back h4 {
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: var(--primary-dark);
  border-bottom: 1px solid rgb(168 144 211 / 0.3);
  padding-bottom: 5px;
  width: 100%;
}

.card-info-list {
  width: 100%;
}

.card-info-list li {
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--text-dark);
  font-weight: 500;
}

.card-info-list li i {
  color: var(--rose-gold);
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
}

.card-mount-base {
  position: absolute;
  bottom: -20px;
  width: 80%;
  height: 40px;
  background: rgb(168 144 211 / 0.15);
  border-radius: 50%;
  filter: blur(15px);
  z-index: 1;
}

.brand-message-box {
  flex-grow: 1;
  width: 100%;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: linear-gradient(135deg, #fff, var(--primary-light));
  border: 1px solid rgb(168 144 211 / 0.2);
  border-radius: var(--border-radius);
  padding: 40px 30px;
  box-shadow: var(--shadow-soft);
}

.contact-form-container {
  background: #fff;
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-soft);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.9rem;
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--bg-light);
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--rose-gold);
  background: #fff;
  box-shadow: 0 0 0 3px rgb(203 161 167 / 0.15);
}

.input-prefix-wrapper {
  display: flex;
  background: var(--bg-light);
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition);
}

.input-prefix-wrapper:focus-within {
  border-color: var(--rose-gold);
  background: #fff;
  box-shadow: 0 0 0 3px rgb(203 161 167 / 0.15);
}

.input-prefix-wrapper .prefix {
  padding: 12px 5px 12px 15px;
  font-weight: 600;
  color: var(--text-dark);
  opacity: 0.7;
}

.form-group .input-prefix-wrapper input {
  border: none;
  background: transparent;
  box-shadow: none;
}

.error-msg {
  color: #e74c3c;
  font-size: 0.8rem;
  font-weight: 500;
  display: block;
  min-height: 18px;
  margin-top: 5px;
}

.form-bottom-info {
  display: flex;
  justify-content: space-between;
}

footer {
  background: #2b2536;
  color: #fff;
  padding-top: 70px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2.5fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
  align-items: center;
}

footer .logo {
  color: #fff;
  display: inline-block;
  margin-bottom: 15px;
}

footer .logo span {
  color: var(--rose-gold);
}

.footer-brand p {
  color: #dcdcdc;
  font-size: 0.95rem;
  line-height: 1.8;
  padding-right: 40px;
  margin-bottom: 0;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links a {
  color: #dcdcdc;
  font-size: 1rem;
  transition: var(--transition);
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--rose-gold);
  outline: none;
}

.footer-contact {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
}

.footer-contact .social-icons {
  gap: 4px;
  margin-top: 0;
  display: flex;
}

.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 4px 15px rgb(37 211 102 / 0.3);
  z-index: 1000;
  transition: transform 0.3s;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  transform: scale(1.1);
  outline: none;
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary-dark);
  color: #fff;
  box-shadow: var(--shadow-hover);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 99;
  border: none;
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover,
.back-to-top:focus-visible {
  background: var(--rose-gold);
  transform: translateY(-5px);
  outline: none;
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.6s ease-out,
    transform 0.6s ease-out;
  will-change: opacity, transform;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.fade-right {
  transform: translateX(-40px);
}

.fade-left {
  transform: translateX(40px);
}

.success-modal-container {
  position: fixed;
  inset: 0;
  background: rgb(20 15 30 / 0.85);
  backdrop-filter: blur(5px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s,
    visibility 0.3s;
}

.success-modal-container.active {
  opacity: 1;
  visibility: visible;
}

.success-modal-content {
  background: var(--bg-color);
  padding: 50px 40px;
  border-radius: 24px;
  text-align: center;
  max-width: 420px;
  width: 90%;
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: 0 20px 40px rgb(0 0 0 / 0.2);
}

.success-modal-container.active .success-modal-content {
  transform: scale(1);
}

.success-icon {
  font-size: 4rem;
  margin-bottom: 20px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.process-grid {
  margin-top: 50px;
}

.process-card {
  background: #fff;
  padding: 50px 25px 30px;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--shadow-soft);
  position: relative;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  margin-top: 35px;
  border: 1px solid rgb(168 144 211 / 0.05);
}

.process-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--rose-gold-light);
}

.process-icon {
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 70px;
  background: var(--primary-dark);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  border: 6px solid #fff;
  box-shadow: 0 5px 15px rgb(168 144 211 / 0.2);
  transition: var(--transition);
}

.process-card:hover .process-icon {
  background: var(--rose-gold);
  box-shadow: var(--shadow-rose);
}

.process-card h3 {
  font-size: 1.15rem;
  margin-bottom: 15px;
}

.process-card p {
  font-size: 0.9rem;
  margin-bottom: 0;
  color: var(--text-light);
}

.footer-contact .social-icons a {
  margin: 0 5px;
  color: #fff;
  font-size: 2rem;
  display: inline-block;
  transition: var(--transition);
}

.footer-contact .social-icons a:hover,
.footer-contact .social-icons a:focus-visible {
  color: var(--rose-gold);
  transform: translateY(-4px);
}

.featured-card {
  background: var(--bg-color);
  border-radius: var(--border-radius);
  padding: 30px;
  display: flex;
  flex-direction: row;
  gap: 30px;
  box-shadow: var(--shadow-soft);
  align-items: center;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  border: 1px solid rgb(168 144 211 / 0.1);
}

.featured-content {
  flex: 1.2;
}

.featured-image {
  flex: 0.8;
  height: 400px;
  border-radius: calc(var(--border-radius) - 5px);
  overflow: hidden;
  box-shadow: inset 0 0 10px rgb(0 0 0 / 0.05);
}

.featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.featured-tag {
  display: inline-block;
  background-color: var(--rose-gold);
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 20px;
}

.featured-content h3 {
  font-size: 1.8rem;
  line-height: 1.3;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.check-list {
  margin-bottom: 20px;
}

.check-list li {
  font-size: 0.9rem;
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text-dark);
}

.check-list li i {
  color: var(--rose-gold);
  margin-top: 4px;
  font-size: 0.85rem;
}

.featured-note {
  font-style: italic;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 25px;
}

.btn-featured {
  display: inline-block;
  background-color: var(--rose-gold);
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgb(203 161 167 / 0.3);
}

.btn-featured:hover {
  background-color: #b88e94;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgb(203 161 167 / 0.4);
  color: #fff;
}

.featured-image.zoomable-item:hover img {
  transform: scale(1.08);
}

#about-heading {
  font-size: clamp(1.8rem, 3vw, 3rem);
}

/* Sipariş Numarası Kopyalama Alanı (GÜNCELLENDİ) */
.copy-order-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  /* Kutuyu biraz daha ferah yaptık */
  background-color: var(--primary-light);
  color: #000000;
  /* Yazı rengi artık tam siyah */
  border: 1px dashed var(--primary-dark);
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.15rem;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
  white-space: nowrap;
  line-height: 1;
  /* Dikeyde kusursuz ortalama için satır yüksekliğini sıfırladık */
}

.copy-order-btn:hover {
  background-color: var(--primary-color);
  color: #000000;
  border-style: solid;
}

/* Kopyala Baloncuğu (Tooltip) */
.copy-tooltip {
  position: absolute;
  left: 100%;
  /* Butonun hemen sağında konumlandırır */
  top: 50%;
  transform: translateY(-50%) translateX(10px);
  background-color: var(--text-dark);
  color: #fff;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 500;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  pointer-events: none;
}

/* Baloncuğun solundaki küçük ok */
.copy-tooltip::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 100%;
  transform: translateY(-50%);
  border-width: 5px;
  border-style: solid;
  border-color: transparent var(--text-dark) transparent transparent;
}

.copy-order-btn:hover .copy-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(8px);
}

.copy-order-btn.copied {
  background-color: #2ecc71;
  color: #fff;
  border-color: #27ae60;
  border-style: solid;
}

.copy-order-btn.copied .copy-tooltip {
  background-color: #27ae60;
}

.copy-order-btn.copied .copy-tooltip::before {
  border-color: transparent #27ae60 transparent transparent;
}

/* Yüzen Liste Butonu */
.floating-list-btn {
  position: fixed;
  bottom: 100px;
  /* WhatsApp'ın üzerinde durması için */
  left: 30px;
  width: 60px;
  height: 60px;
  background: var(--primary-dark);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 999;
  box-shadow: var(--shadow-hover);
  transition: var(--transition);
}

.list-count {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--rose-gold);
  color: white;
  font-size: 0.75rem;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid white;
}

/* Yan Panel (Drawer) */
.list-drawer {
  position: fixed;
  top: 0;
  right: -400px;
  /* Başlangıçta gizli */
  width: 380px;
  height: 100%;
  background: white;
  z-index: 10001;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: flex;
  flex-direction: column;
}

.list-drawer.active {
  right: 0;
}

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 10000;
  display: none;
}

.drawer-overlay.active {
  display: block;
}

.drawer-items {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
}

.drawer-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--primary-light);
}

.remove-item {
  color: #e74c3c;
  cursor: pointer;
}

/* --- YAN PANEL (DRAWER) GÖRÜNÜM DÜZELTMELERİ --- */
.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: var(--bg-light);
  border-bottom: 1px solid var(--primary-light);
}

.drawer-header h3 {
  margin: 0;
  font-size: 1.3rem;
  color: var(--primary-dark);
}

.close-drawer {
  font-size: 1.5rem;
  color: var(--text-light);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
}

.close-drawer:hover {
  background: var(--rose-gold-light);
  color: var(--text-dark);
  transform: rotate(90deg);
}

.drawer-footer {
  padding: 20px;
  border-top: 1px solid var(--primary-light);
  background: #fff;
}

/* --- SEPETTEKİ ÇÖP KUTUSU --- */
.remove-entire-item {
  color: #e74c3c;
  cursor: pointer;
  font-size: 1.1rem;
  margin-left: 15px;
  transition: var(--transition);
  padding: 5px;
}

.remove-entire-item:hover {
  transform: scale(1.2);
  color: #c0392b;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- YENİ NESİL KART İÇİ ADET KONTROLÜ --- */
.in-card-qty-control {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  width: 100%;
  height: 48px;
  /* Butonla aynı yükseklik, böylece kart uzamaz */
  animation: fadeIn 0.3s ease;
}

.card-qty-adjuster {
  display: flex;
  gap: 20px;
  align-items: center;
  background: var(--bg-light);
  padding: 8px 20px;
  border-radius: 30px;
  border: 1px solid var(--primary-light);
  font-size: 1.1rem;
  font-weight: bold;
  color: var(--text-dark);
}

.card-qty-adjuster .qty-btn {
  cursor: pointer;
  color: var(--primary-dark);
  font-size: 1rem;
  transition: var(--transition);
  padding: 2px 5px;
}

.card-qty-adjuster .qty-btn:hover {
  color: var(--rose-gold);
  transform: scale(1.2);
}

.in-card-qty-control .remove-entire-item {
  font-size: 1.4rem;
  margin-left: 5px;
  padding: 5px;
  color: #e74c3c;
  cursor: pointer;
  transition: transform 0.2s;
}

.in-card-qty-control .remove-entire-item:hover {
  transform: scale(1.15);
}

/* --- ADET SAYICININ ESNEMESİNİ ENGELLEME --- */
.card-qty-adjuster span {
  display: inline-block;
  min-width: 24px;
  /* Rakam 2 haneye çıksa bile alanı korur */
  text-align: center;
  font-variant-numeric: tabular-nums;
  /* Rakamların monospace (eşit genişlikte) gibi hizalanmasını sağlar */
}

.modal-cta-btn {
  padding: 12px 25px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-note {
  margin-top: 15px;
  font-size: 0.85rem;
  color: var(--text-light);
}

.trust-badges {
  margin-top: 10px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-light);
}

.featured-image-inner {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: inherit;
}

.featured-image-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.modal-buttons-wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

/* Kaydırma (Swipe) Kararlılığı İçin Kritik Kural */
#collectionTrack,
#galleryTrack {
  touch-action: pan-y;
}

/* Lightbox Yön Okları Tasarımı */
#lightbox-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}

#lightbox-nav button:hover {
  background: var(--rose-gold);
  border-color: var(--rose-gold);
}

.lightbox-prev {
  left: -70px;
}
.lightbox-next {
  right: -70px;
}
