/* Import Wisteria font */
@font-face {
  font-family: "Wisteria";
  src: url("../fonts/wisteria/Wisteria.woff") format("woff"),
       url("../fonts/wisteria/Wisteria.ttf") format("truetype"),
       url("../fonts/wisteria/Wisteria.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* Loader Styles */
.loader-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0f0f11;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.8s cubic-bezier(0.65, 0, 0.35, 1), visibility 0.8s cubic-bezier(0.65, 0, 0.35, 1);
}

.loader-hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-wrapper {
  position: relative;
  width: 150px;
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: floatAnimation 6s cubic-bezier(0.42, 0, 0.58, 1) infinite;
}

.loader-wrapper::before {
  content: '';
  position: absolute;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(156, 107, 184, 0.15) 0%, rgba(77, 156, 106, 0.08) 40%, rgba(18, 18, 20, 0) 70%);
  border-radius: 50%;
  transform: scale(1.2);
  opacity: 0.6;
  animation: glowPulse 4s cubic-bezier(0.42, 0, 0.58, 1) infinite;
}

.flower-loader {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 6px rgba(156, 107, 184, 0.4));
  animation: rotateAnimation 20s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
}

.flower-shape {
  fill: #9c6bb8;
  opacity: 0.85;
  stroke: rgba(232, 190, 255, 0.3);
  stroke-width: 0.5;
  filter: url(#glow);
  animation: morphAnimation 10s cubic-bezier(0.76, 0, 0.24, 1) infinite;
}

.flower-center {
  fill: #4d9c6a;
  opacity: 0.85;
  filter: drop-shadow(0 0 3px rgba(77, 156, 106, 0.5));
  stroke: rgba(156, 230, 179, 0.4);
  stroke-width: 0.8;
  animation: pulseAnimation 4s cubic-bezier(0.42, 0, 0.58, 1) infinite;
}

.loader-text {
  position: absolute;
  bottom: -30px;
  left: 0;
  right: 0;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 12px;
  letter-spacing: 4px;
  color: #9c6bb8;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeInOut 2.5s cubic-bezier(0.42, 0, 0.58, 1) forwards 0.5s;
}

@keyframes morphAnimation {
  0% { d: path("M50,15 C60,25 70,10 80,15 90,20 85,40 90,50 95,60 80,70 80,80 80,90 60,85 50,90 40,95 30,80 20,80 10,80 5,60 10,50 15,40 10,30 20,20 30,10 40,5 50,15"); }
  20% { d: path("M50,10 C65,15 75,25 85,40 95,55 90,65 85,75 80,85 65,90 50,90 35,90 20,85 15,75 10,65 5,55 15,40 25,25 35,15 50,10"); }
  40% { d: path("M50,20 C65,20 75,35 75,50 75,65 65,80 50,80 35,80 25,65 25,50 25,35 35,20 50,20"); }
  60% { d: path("M50,15 C65,5 80,15 85,30 90,45 85,65 75,75 65,85 45,90 35,80 25,70 20,55 15,40 10,25 20,10 35,10 40,10 45,15 50,15"); }
  80% { d: path("M50,10 C60,5 75,10 85,25 90,35 90,55 85,70 75,85 60,90 50,85 40,90 25,85 15,70 10,55 10,35 15,25 25,10 40,5 50,10"); }
  100% { d: path("M50,15 C60,25 70,10 80,15 90,20 85,40 90,50 95,60 80,70 80,80 80,90 60,85 50,90 40,95 30,80 20,80 10,80 5,60 10,50 15,40 10,30 20,20 30,10 40,5 50,15"); }
}

@keyframes rotateAnimation {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes floatAnimation {
  0% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0); }
}

@keyframes pulseAnimation {
  0% { transform: scale(1); filter: drop-shadow(0 0 3px rgba(77, 156, 106, 0.4)); }
  50% { transform: scale(1.15); filter: drop-shadow(0 0 8px rgba(77, 156, 106, 0.6)); }
  100% { transform: scale(1); filter: drop-shadow(0 0 3px rgba(77, 156, 106, 0.4)); }
}

@keyframes glowPulse {
  0% { opacity: 0.3; transform: scale(1.2); }
  50% { opacity: 0.5; transform: scale(1.5); }
  100% { opacity: 0.3; transform: scale(1.2); }
}

@keyframes fadeInOut {
  0% { opacity: 0; transform: translateY(5px); }
  100% { opacity: 0.8; transform: translateY(0); }
}

/* Particles for loader */
.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: radial-gradient(circle, rgba(156, 107, 184, 0.8) 0%, rgba(156, 107, 184, 0) 70%);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat 5s cubic-bezier(0.42, 0, 0.58, 1) infinite;
}

@keyframes particleFloat {
  0% { transform: translateY(0) translateX(0); opacity: 0; }
  20% { opacity: 0.5; }
  80% { opacity: 0.5; }
  100% { transform: translateY(-35px) translateX(10px); opacity: 0; }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: rgba(10, 10, 18, 0.95);
}

::-webkit-scrollbar-thumb {
  background: rgba(30, 30, 40, 0.8);
  border-radius: 5px;
  transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--purple);
}

/* Base Styles */
:root {
  --dark: #0a0a12;
  --light: #f8f5ff;
  --purple: #9a84cb;
  --purple-light: #b48cff;
  --purple-dark: #6a5297;
  --transition: 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--dark);
  color: var(--light);
  overflow-x: hidden;
}

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

/* Navigation */
.main-nav {
  position: fixed;
  width: 100%;
  padding: 1.5rem 3rem;
  z-index: 100;
  transition: var(--transition);
}

.main-nav.scrolled {
  background-color: rgba(10, 10, 18, 0.8);
  padding: 1rem 2rem;
  backdrop-filter: blur(10px);
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.brand {
  font-family: "Wisteria", sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: var(--transition);
  position: relative;
  font-weight: 300;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--purple-light);
  transition: width var(--transition);
}

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

.nav-link:hover {
  color: var(--purple-light);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--light);
  transition: var(--transition);
}

/* Video Container */
.video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

#hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.8);
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, 
    rgba(10, 10, 18, 0.7) 0%, 
    rgba(90, 70, 120, 0.5) 50%, 
    rgba(10, 10, 18, 0.7) 100%);
  z-index: 1;
  mix-blend-mode: multiply;
}

/* Hero Content Styling */
.hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
  width: 90%;
  max-width: 1000px;
}

.brand-display {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.brand-line {
  height: 1px;
  width: 80px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  margin: 0 20px;
}

.brand-title {
  display: flex;
  justify-content: center;
}

.letter {
  font-family: "Wisteria", serif;
  color: var(--light);
  font-size: 5rem;
  margin: 0 0.2rem;
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInStagger 0.5s forwards;
  text-shadow: 0 0 20px rgba(180, 140, 255, 0.3);
  font-weight: 400;
}

.letter:nth-child(1) { animation-delay: 0.1s; }
.letter:nth-child(2) { animation-delay: 0.2s; }
.letter:nth-child(3) { animation-delay: 0.3s; }
.letter:nth-child(4) { animation-delay: 0.4s; }
.letter:nth-child(5) { animation-delay: 0.5s; }
.letter:nth-child(6) { animation-delay: 0.6s; }
.letter:nth-child(7) { animation-delay: 0.7s; }
.letter:nth-child(8) { animation-delay: 0.8s; }

.poetic-tagline {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeIn 1s forwards 0.9s;
  position: relative;
}

.poetic-text {
  font-family: "Wisteria", serif;
  font-size: 1.6rem;
  font-weight: 300;
  font-style: italic;
  color: var(--light);
  letter-spacing: 0.05em;
  position: relative;
  opacity: 0.7;
}

.poetic-text::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(180, 140, 255, 0.4), transparent);
  opacity: 0.6;
}

.quote-mark {
  font-family: "Wisteria", serif;
  font-size: 2.5rem;
  color: var(--purple-light);
  line-height: 0;
  opacity: 0.5;
  margin: 0 10px;
  text-shadow: 0 0 15px rgba(180, 140, 255, 0.2);
}

.cta-container {
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeIn 1s forwards 1.1s;
}

.btn-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 3rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.9rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  background-color: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(5px);
  position: relative;
  overflow: hidden;
}

.btn-main span {
  position: relative;
  z-index: 2;
  transition: var(--transition);
  margin-right: 10px;
}

.btn-main i {
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
  font-size: 0.8rem;
}

.btn-main::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  transition: width 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 1;
}

.btn-main:hover {
  border-color: transparent;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  transform: translateY(-3px);
}

.btn-main:hover span, .btn-main:hover i {
  color: var(--dark);
}

.btn-main:hover i {
  transform: translateX(5px);
}

.btn-main:hover::before {
  width: 100%;
}

.featured-scent-side {
  position: absolute;
  top: 50%;
  right: 5rem;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 2;
  opacity: 0;
  animation: fadeIn 1s forwards 1.3s;
}

.scent-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--purple-light);
  margin-bottom: 0.3rem;
  font-weight: 300;
  position: relative;
}

.scent-label::after {
  content: '';
  position: absolute;
  top: 50%;
  left: -30px;
  width: 20px;
  height: 1px;
  background-color: var(--purple-light);
  opacity: 0.7;
}

.scent-name {
  font-family: "Wisteria", serif;
  font-size: 1.4rem;
  color: var(--light);
}

.scroll-down {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.7), transparent);
  animation: scrollLine 2s infinite;
}

.social-links {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 2;
}

.social-icon {
  color: var(--light);
  font-size: 1rem;
  transition: var(--transition);
  opacity: 0.7;
}

.social-icon:hover {
  color: var(--purple-light);
  opacity: 1;
  transform: translateY(-3px);
}

/* Animations */
@keyframes fadeInStagger {
  from { 
    opacity: 0;
    transform: translateY(20px);
  }
  to { 
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scrollLine {
  0% { height: 0; opacity: 0; }
  30% { height: 60px; opacity: 1; }
  100% { height: 0; opacity: 0; }
}

/* Responsive */
@media (max-width: 992px) {
  .nav-links {
    display: none;
  }
  
  .mobile-toggle {
    display: flex;
  }
  
  .letter {
    font-size: 4rem;
    margin: 0 0.1rem;
  }
  
  .brand-line {
    width: 50px;
  }
  
  .featured-scent-side {
    right: 3rem;
  }
  
  .social-links {
    bottom: 1.5rem;
    right: 1.5rem;
  }
  
  .poetic-text {
    font-size: 1.4rem;
  }
  
  .quote-mark {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .featured-scent-side {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    align-items: center;
    margin-top: 2rem;
  }
  
  .scent-label::after {
    display: none;
  }
  
  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 576px) {
  .main-nav {
    padding: 1rem 1.5rem;
  }
  
  .letter {
    font-size: 2.5rem;
    margin: 0;
  }
  
  .brand-line {
    width: 30px;
    margin: 0 10px;
  }
  
  .poetic-tagline {
    margin-bottom: 2rem;
  }
  
  .poetic-text {
    font-size: 1.1rem;
  }
  
  .quote-mark {
    font-size: 1.5rem;
    margin: 0 5px;
  }
  
  .btn-main {
    padding: 0.7rem 2rem;
    font-size: 0.8rem;
  }
  
  .social-links {
    bottom: 1rem;
    right: 1rem;
    flex-direction: row;
    gap: 1.5rem;
  }
}

/* Luxury Essence Section */
.luxury-essence {
  position: relative;
  padding: 10rem 0;
  background-color: #0b1713;
  overflow: hidden;
}

.essence-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(43, 107, 82, 0.1) 0%, rgba(10, 20, 18, 0.9) 100%);
  z-index: 1;
}

.luxury-essence .container {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.essence-header {
  text-align: center;
  margin-bottom: 5rem;
}

.essence-title {
  font-family: "Wisteria", serif;
  font-size: 4rem;
  margin-bottom: 1.5rem;
  color: var(--light);
  letter-spacing: 0.05em;
}

.essence-title span {
  color: #7ae0c7;
  text-shadow: 0 0 20px rgba(122, 224, 199, 0.3);
}

.essence-line {
  width: 100px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #7ae0c7, transparent);
  margin: 0 auto;
}

.essence-gallery {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2rem;
  margin-bottom: 5rem;
}

.gallery-flex {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.gallery-item.large {
  height: 100%;
}

.item-inner {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.essence-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.item-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2.5rem 2rem;
  background: linear-gradient(to top, rgba(10, 20, 18, 0.8), transparent);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-item:hover .item-overlay {
  opacity: 1;
  transform: translateY(0);
}

.gallery-item:hover .essence-img {
  transform: scale(1.05);
}

.essence-quote {
  font-family: "Wisteria", serif;
  font-size: 1.5rem;
  color: var(--light);
  font-style: italic;
  display: block;
  line-height: 1.4;
}

.essence-keyword {
  font-family: "Wisteria", serif;
  font-size: 2rem;
  color: #7ae0c7;
  display: block;
}

.essence-footer {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.essence-description {
  font-size: 1.2rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  font-weight: 300;
}

.essence-accent {
  position: relative;
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(122, 224, 199, 0.5), transparent);
  margin: 0 auto;
}

.essence-accent::before, 
.essence-accent::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #7ae0c7;
  transform: translateY(-50%);
}

.essence-accent::before {
  left: 30%;
}

.essence-accent::after {
  right: 30%;
}

/* Responsive styles for Luxury Essence Section */
@media (max-width: 992px) {
  .luxury-essence {
    padding: 7rem 0;
  }
  
  .essence-title {
    font-size: 3rem;
  }
  
  .essence-gallery {
    grid-template-columns: 1fr;
  }
  
  .gallery-flex {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  
  .essence-quote {
    font-size: 1.2rem;
  }
  
  .essence-description {
    font-size: 1.1rem;
  }
}

@media (max-width: 576px) {
  .luxury-essence {
    padding: 5rem 0;
  }
  
  .essence-title {
    font-size: 2.2rem;
  }
  
  .gallery-flex {
    grid-template-columns: 1fr;
  }
  
  .essence-quote {
    font-size: 1rem;
  }
  
  .essence-keyword {
    font-size: 1.5rem;
  }
  
  .essence-description {
    font-size: 1rem;
  }
}

/* Collection Preview Section */
.collection-preview {
  padding: 120px 0;
  background-color: #0b1713;
  position: relative;
  overflow: hidden;
}

.collection-preview::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 70% 30%, rgba(122, 224, 199, 0.1), transparent 70%);
  pointer-events: none;
}

.preview-header {
  text-align: center;
  margin-bottom: 70px;
  position: relative;
}

.preview-title {
  font-family: "Wisteria", serif;
  font-size: 2.8rem;
  font-weight: 400;
  margin-bottom: 15px;
  color: var(--light);
}

.preview-title span {
  color: #7ae0c7;
}

.preview-line {
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #7ae0c7, transparent);
  margin: 0 auto;
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.preview-item {
  transition: var(--transition);
}

.preview-image {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  margin-bottom: 20px;
  isolation: isolate;
}

/* Black and white effect with colored perfume bottle */
.preview-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.7s ease;
  filter: none;
  display: block;
}

.preview-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at center, 
    rgba(122, 224, 199, 0.3) 0%, 
    transparent 60%
  );
  pointer-events: none;
  z-index: 1;
}

/* Custom color positions for each perfume bottle */
.preview-item:nth-child(1) .preview-image::after,
.preview-item:nth-child(2) .preview-image::after,
.preview-item:nth-child(3) .preview-image::after {
  background: radial-gradient(
    circle at center, 
    rgba(122, 224, 199, 0.3) 0%, 
    transparent 60%
  );
}

.preview-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 20, 18, 0.6);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 30px;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 2;
}

.preview-btn {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background-color: transparent;
  color: var(--light);
  border: 1px solid var(--light);
  padding: 10px 25px;
  transition: var(--transition);
}

.preview-btn:hover {
  background-color: var(--purple-light);
  border-color: var(--purple-light);
  color: var(--light);
}

.preview-item:hover .preview-hover {
  opacity: 1;
}

.preview-item:hover .preview-img {
  transform: scale(1.05);
  filter: grayscale(0.8) contrast(1.15);
}

.preview-info {
  text-align: center;
}

.preview-name {
  font-family: "Wisteria", serif;
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 5px;
  color: var(--light);
}

.preview-price {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  color: #7ae0c7;
}

.preview-footer {
  display: flex;
  justify-content: center;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--light);
  border: 1px solid var(--light);
  padding: 12px 30px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.btn-outline span {
  position: relative;
  z-index: 2;
  transition: var(--transition);
}

.btn-outline i {
  margin-left: 10px;
  position: relative;
  z-index: 2;
  transition: var(--transition);
}

.btn-outline::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: #7ae0c7;
  transition: transform 0.4s ease;
  z-index: 1;
}

.btn-outline:hover {
  border-color: #7ae0c7;
}

.btn-outline:hover::before {
  transform: translateX(100%);
}

.btn-outline:hover span,
.btn-outline:hover i {
  color: var(--dark);
}

.btn-outline:hover i {
  transform: translateX(5px);
}

/* Footer Styles */
.site-footer {
  background-color: #0a1510;
  color: var(--light);
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 80% 20%, rgba(154, 132, 203, 0.08), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.footer-content {
  position: relative;
  z-index: 1;
  padding: 90px 0 60px;
}

.footer-brand {
  position: relative;
  margin-bottom: 30px;
}

.footer-logo {
  font-family: "Wisteria", serif;
  font-size: 2.5rem;
  letter-spacing: 0.2em;
  margin-bottom: 20px;
  color: var(--light);
  display: inline-block;
  position: relative;
  transition: color 0.3s ease;
}

.footer-logo:hover {
  color: var(--purple-light);
}

.footer-tagline {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 25px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 95%;
}

.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.footer-social .social-icon {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  position: relative;
  background-color: rgba(154, 132, 203, 0.1);
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.footer-social .social-icon:hover {
  color: #fff;
  background-color: var(--purple);
  transform: translateY(-5px) scale(1.1);
  border-radius: 50%;
  box-shadow: 0 10px 20px rgba(180, 140, 255, 0.3);
}

.footer-widget {
  margin-bottom: 40px;
}

.footer-heading {
  font-family: "Wisteria", serif;
  font-size: 1.4rem;
  margin-bottom: 25px;
  color: #fff;
  position: relative;
  display: inline-block;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li {
  margin-bottom: 16px;
}

.footer-list a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  display: inline-block;
  padding: 2px 0;
  overflow: hidden;
}

.footer-list a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--purple-light);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.footer-list a:hover {
  color: var(--purple-light);
  transform: translateX(8px);
  letter-spacing: 0.05em;
}

.footer-list a:hover::before {
  transform: translateX(0);
}

.footer-newsletter {
  background-color: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  padding: 30px;
  position: relative;
}

.footer-newsletter p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 25px;
  font-size: 0.95rem;
  line-height: 1.7;
}

.newsletter-form {
  position: relative;
  margin-top: 25px;
}

.newsletter-input {
  background-color: rgba(255, 255, 255, 0.05);
  border: none;
  border-radius: 30px;
  padding: 16px 20px;
  width: 100%;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.newsletter-input:focus {
  outline: none;
  background-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(180, 140, 255, 0.2);
}

.newsletter-btn {
  position: absolute;
  right: 5px;
  top: 5px;
  background-color: var(--purple);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
}

.newsletter-btn i {
  transition: all 0.3s ease;
}

.newsletter-btn:hover {
  background-color: var(--purple-light);
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(180, 140, 255, 0.4);
}

.newsletter-btn:hover i {
  transform: translateX(3px) scale(1.2);
}

.footer-bottom {
  background-color: rgba(0, 0, 0, 0.2);
  padding: 25px 0;
  position: relative;
  z-index: 1;
}

.copyright {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  margin: 0;
}

.footer-legal {
  list-style: none;
  display: flex;
  gap: 30px;
  justify-content: flex-end;
  margin: 0;
  padding: 0;
}

.footer-legal li {
  display: inline-block;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  transition: all 0.3s ease;
  position: relative;
}

.footer-legal a:hover {
  color: var(--purple-light);
  text-shadow: 0 0 8px rgba(180, 140, 255, 0.5);
}

/* Media Queries for Collection and Footer */
@media (max-width: 992px) {
  .preview-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-legal {
    justify-content: flex-start;
    margin-top: 15px;
  }
}

@media (max-width: 768px) {
  .preview-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .footer-content .row > div {
    margin-bottom: 40px;
  }
  
  .footer-newsletter {
    margin-bottom: 0 !important;
  }
}

@media (max-width: 576px) {
  .collection-preview {
    padding: 80px 0;
  }
  
  .preview-title {
    font-size: 2.2rem;
  }
  
  .preview-img {
    height: 350px;
  }
  
  .footer-content {
    padding: 60px 0 30px;
  }
  
  .footer-bottom .row {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-legal {
    justify-content: center;
    margin-top: 15px;
  }
}

/* Preview Section */
.preview-section {
  padding: 120px 0;
  background-color: rgba(10, 20, 15, 1);
  position: relative;
  overflow: hidden;
}

.preview-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 70%, rgba(64, 145, 108, 0.15), transparent 70%);
  pointer-events: none;
}

.preview-header {
  text-align: center;
  margin-bottom: 70px;
  position: relative;
}

.preview-title {
  font-family: "Wisteria", serif;
  font-size: 2.8rem;
  font-weight: 400;
  margin-bottom: 15px;
  color: var(--light);
}

.preview-title span {
  color: #3D9970;
}

.preview-line {
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #3D9970, transparent);
  margin: 0 auto;
}

.preview-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.preview-item {
  transition: var(--transition);
}

.preview-img-container {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  margin-bottom: 20px;
  aspect-ratio: 3/4;
}

.preview-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
  filter: none;
  display: block;
}

.preview-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(10, 20, 15, 0.7), transparent);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 30px;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.preview-btn {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background-color: transparent;
  color: var(--light);
  border: 1px solid #3D9970;
  padding: 10px 25px;
  transition: var(--transition);
}

.preview-btn:hover {
  background-color: var(--purple-light);
  border-color: var(--purple-light);
  color: var(--light);
}

.preview-item:hover .preview-overlay {
  opacity: 1;
}

.preview-item:hover .preview-img {
  transform: scale(1.05);
  filter: brightness(1.1) saturate(1.2);
}

.preview-info {
  text-align: center;
}

.perfume-name {
  font-family: "Wisteria", serif;
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 5px;
  color: var(--light);
}

.perfume-desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
}

.perfume-price {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  color: #3D9970;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 992px) {
  .preview-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .preview-gallery {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .footer-legal {
    justify-content: flex-start;
    margin-top: 15px;
  }
}

@media (max-width: 576px) {
  .preview-section {
    padding: 70px 0;
  }
  
  .preview-title {
    font-size: 2.2rem;
  }
  
  .widget-title {
    font-size: 1.3rem;
  }
  
  .footer-bottom .row {
    flex-direction: column;
  }
  
  .footer-legal {
    margin-top: 15px;
  }
}

/* Collection Showcase Section Styles */
.collection-showcase {
  padding: 100px 0;
  background-color: var(--dark);
  position: relative;
  overflow: hidden;
}

.collection-showcase::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 80% 20%, rgba(154, 132, 203, 0.08), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.showcase-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.showcase-title {
  font-family: "Wisteria", serif;
  font-size: 3rem;
  margin-bottom: 30px;
  color: var(--light);
  letter-spacing: 0.05em;
}

.showcase-title span {
  color: var(--purple-light);
  text-shadow: 0 0 15px rgba(180, 140, 255, 0.3);
}

.showcase-description {
  max-width: 800px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 300;
  line-height: 1.8;
}

.showcase-description p {
  margin-bottom: 20px;
}

.showcase-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  position: relative;
  z-index: 1;
}

.card-wrapper {
  flex: 0 0 calc(33.333% - 30px);
  max-width: calc(33.333% - 30px);
}

.perfume-card {
  background-color: rgba(20, 20, 30, 0.5);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(154, 132, 203, 0.1);
}

.perfume-card:hover {
  transform: translateY(-10px);
}

.card-image-container {
  position: relative;
  height: 350px;
  overflow: hidden;
}

.card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.perfume-card:hover .card-image {
  transform: scale(1.05);
}

.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(10, 10, 18, 0.8), transparent 60%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 30px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.perfume-card:hover .card-overlay {
  opacity: 1;
}

.card-btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--purple);
  color: var(--light);
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.9rem;
  border-radius: 30px;
  transition: all 0.3s ease;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.perfume-card:hover .card-btn {
  transform: translateY(0);
  opacity: 1;
}

.card-btn:hover {
  background-color: var(--purple-light);
  box-shadow: 0 5px 15px rgba(154, 132, 203, 0.4);
  color: var(--light);
}

.card-content {
  padding: 25px;
}

.card-title {
  font-family: "Wisteria", serif;
  font-size: 1.6rem;
  margin-bottom: 5px;
  color: var(--light);
}

.card-subtitle {
  font-size: 0.9rem;
  color: var(--purple-light);
  margin-bottom: 15px;
  font-weight: 300;
  letter-spacing: 0.05em;
}

.card-description {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
  font-weight: 300;
}

.card-price {
  font-size: 1.2rem;
  color: var(--light);
  font-weight: 500;
}

/* Responsive styles for Collection Showcase */
@media (max-width: 992px) {
  .card-wrapper {
    flex: 0 0 calc(50% - 20px);
    max-width: calc(50% - 20px);
  }
  
  .showcase-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .collection-showcase {
    padding: 70px 0;
  }
  
  .card-wrapper {
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  .showcase-title {
    font-size: 2.2rem;
  }
  
  .card-image-container {
    height: 300px;
  }
}

@media (max-width: 576px) {
  .collection-showcase {
    padding: 50px 0;
  }
  
  .showcase-description {
    padding: 0 20px;
  }
  
  .showcase-title {
    font-size: 1.8rem;
  }
}

/* Swiper Styles for Collections Page */
.swiper-container {
  width: 100%;
  height: 100vh;
  margin: 0;
  padding: 0;
}

.swiper-slide {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(10, 10, 18, 0.8), rgba(10, 10, 18, 0.5));
  z-index: 1;
}

.slide-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 20px;
  color: var(--light);
}

.slide-title {
  font-family: "Wisteria", serif;
  font-size: 5rem;
  margin-bottom: 30px;
  color: var(--light);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  position: relative;
}

.slide-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--purple-light), transparent);
}

.slide-description {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--light);
  margin-bottom: 40px;
  font-weight: 300;
}

.slide-cta {
  display: inline-block;
  padding: 15px 40px;
  background-color: transparent;
  color: var(--light);
  border: 1px solid var(--purple);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.slide-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--purple);
  transition: all 0.3s ease;
  z-index: -1;
}

.slide-cta:hover {
  color: var(--light);
}

.slide-cta:hover::before {
  left: 0;
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
  color: var(--purple-light);
  transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  transform: scale(1.1);
}

/* Swiper Pagination */
.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: transparent;
  border: 1px solid var(--purple-light);
  opacity: 0.7;
}

.swiper-pagination-bullet-active {
  background: var(--purple-light);
  opacity: 1;
}

/* Responsive Swiper Styles */
@media (max-width: 992px) {
  .slide-title {
    font-size: 4rem;
  }
}

@media (max-width: 768px) {
  .slide-title {
    font-size: 3rem;
  }
  
  .slide-description {
    font-size: 1.1rem;
  }
}

@media (max-width: 576px) {
  .slide-title {
    font-size: 2.2rem;
    letter-spacing: 0.1em;
  }
  
  .slide-description {
    font-size: 1rem;
  }
  
  .slide-cta {
    padding: 12px 30px;
    font-size: 0.8rem;
  }
}

/* Perfume Creation Process Section Styles */
.creation-process {
  padding: 120px 0;
  background-color: #0b0c14;
  position: relative;
  overflow: hidden;
}

.creation-process::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 70%, rgba(154, 132, 203, 0.05), transparent 70%);
  pointer-events: none;
}

.process-header {
  text-align: center;
  margin-bottom: 80px;
  padding: 0 20px;
}

.process-title {
  font-family: "Wisteria", serif;
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: var(--light);
  letter-spacing: 0.05em;
}

.process-title span {
  color: var(--purple-light);
  position: relative;
}

.process-title span::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--purple-light), transparent);
}

.process-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: 300;
}

.process-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

.process-timeline {
  position: relative;
  padding: 40px 0;
}

.timeline-line {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, 
    rgba(154, 132, 203, 0.1),
    rgba(154, 132, 203, 0.5) 20%,
    rgba(154, 132, 203, 0.5) 80%,
    rgba(154, 132, 203, 0.1)
  );
  transform: translateX(-50%);
  z-index: 1;
}

.process-step {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 100px;
  position: relative;
}

.process-step:last-child {
  margin-bottom: 0;
}

.process-step::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  background-color: var(--purple);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  box-shadow: 0 0 20px rgba(154, 132, 203, 0.7);
}

.process-step::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(154, 132, 203, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.step-content, .step-visual {
  flex: 0 0 45%;
  max-width: 45%;
}

.process-step:nth-child(even) {
  flex-direction: row-reverse;
}

.step-number {
  font-family: "Wisteria", serif;
  font-size: 3rem;
  color: var(--purple);
  opacity: 0.5;
  margin-bottom: 15px;
  line-height: 1;
}

.step-title {
  font-family: "Wisteria", serif;
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--light);
}

.step-description {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
}

/* SVG Morphing Styles */
.svg-morph-container {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: 400px;
  margin: 0 auto;
}

.morph-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.morph-path {
  fill: none;
  stroke: var(--purple-light);
  stroke-width: 2;
  stroke-dasharray: 1500;
  stroke-dashoffset: 1500;
  animation: draw-path 2s forwards, pulse 3s infinite alternate;
}

.morph-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 35% 65% 65% 35% / 35% 45% 55% 65%;
  z-index: 1;
  transform: scale(0.9);
  transition: all 0.5s ease;
  filter: brightness(0.9) contrast(1.1);
}

.process-step:hover .morph-image {
  transform: scale(0.95);
  filter: brightness(1) contrast(1.15);
}

.process-step:nth-child(2) .morph-image {
  border-radius: 65% 35% 45% 55% / 40% 60% 40% 60%;
}

.process-step:nth-child(3) .morph-image {
  border-radius: 35% 65% 30% 70% / 60% 30% 70% 40%;
}

.process-step:nth-child(4) .morph-image {
  border-radius: 60% 40% 55% 45% / 35% 55% 45% 65%;
}

.process-step:nth-child(5) .morph-image {
  border-radius: 35% 65% 60% 40% / 55% 40% 60% 45%;
}

@keyframes draw-path {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes pulse {
  0% {
    stroke-opacity: 0.2;
  }
  50% {
    stroke-opacity: 0.5;
  }
  100% {
    stroke-opacity: 0.2;
  }
}

.process-footer {
  text-align: center;
  max-width: 800px;
  margin: 80px auto 0;
  padding: 0 20px;
}

.process-footer p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 30px;
  font-weight: 300;
  font-style: italic;
}

.process-cta {
  display: inline-block;
  padding: 15px 40px;
  background-color: transparent;
  color: var(--light);
  border: 1px solid var(--purple);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.process-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--purple);
  transition: all 0.3s ease;
  z-index: -1;
}

.process-cta:hover {
  color: var(--light);
}

.process-cta:hover::before {
  left: 0;
}

/* Responsive styles for Creation Process */
@media (max-width: 992px) {
  .process-title {
    font-size: 3rem;
  }
  
  .process-step {
    margin-bottom: 80px;
  }
  
  .step-number {
    font-size: 2.5rem;
  }
  
  .step-title {
    font-size: 1.6rem;
  }
  
  .svg-morph-container {
    height: 350px;
  }
}

@media (max-width: 768px) {
  .creation-process {
    padding: 80px 0;
  }
  
  .process-title {
    font-size: 2.5rem;
  }
  
  .process-subtitle {
    font-size: 1.1rem;
  }
  
  .process-step {
    flex-direction: column !important;
    margin-bottom: 100px;
  }
  
  .step-content, .step-visual {
    flex: 0 0 100%;
    max-width: 100%;
    text-align: center;
  }
  
  .step-content {
    order: 1;
    margin-bottom: 40px;
  }
  
  .step-visual {
    order: 2;
  }
  
  .process-step::before {
    top: 0;
  }
  
  .process-step::after {
    top: 0;
  }
  
  .timeline-line {
    height: calc(100% - 80px);
    top: 40px;
  }
  
  .svg-morph-container {
    height: 300px;
    max-width: 400px;
  }
}

@media (max-width: 576px) {
  .creation-process {
    padding: 60px 0;
  }
  
  .process-title {
    font-size: 2rem;
  }
  
  .process-subtitle {
    font-size: 1rem;
  }
  
  .step-number {
    font-size: 2rem;
  }
  
  .step-title {
    font-size: 1.4rem;
  }
  
  .step-description {
    font-size: 0.95rem;
  }
  
  .svg-morph-container {
    height: 250px;
  }
  
  .process-footer p {
    font-size: 1.1rem;
  }
}

