        /* Custom Button Style */
        .btn-chili {
            background-color: #D94D4A;
            color: white;
            transition: all 0.3s ease-out;
            box-shadow: 0 4px 15px rgba(217, 77, 74, 0.4);
        }
        .btn-chili:hover {
            background-color: #B83A37;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(217, 77, 74, 0.6);
        }

        /* Glamorous Card Hover Animation */
        .glamorous-card {
            transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
        }
        .glamorous-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(58, 39, 28, 0.25);
        }

        /* Smooth page fade-in effect */
        .page-content {
            animation: slideIn 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
        }
        @keyframes slideIn {
            from { opacity: 0; transform: translateY(15px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        /* Style for the horizontal product slider */
        .horizontal-scroll {
            overflow-x: auto;
            white-space: nowrap;
            padding-bottom: 1rem;
            -webkit-overflow-scrolling: touch;
        }
        .horizontal-scroll::-webkit-scrollbar {
            height: 8px;
        }
        .horizontal-scroll::-webkit-scrollbar-thumb {
            background-color: #F5B44B;
            border-radius: 4px;
        }
        .horizontal-scroll::-webkit-scrollbar-track {
            background: #F9F7F4;
        }
        @keyframes blink {
            0%, 50%, 100% { opacity: 1; }
            25%, 75% { opacity: 0; }
            }
            .animate-blink {
            animation: blink 1s infinite;
            }
            @keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}
.animate-fade-in {
  animation: fadeIn 0.25s ease-out;
}
/* Gradient text */
.logo-gradient {
  background: linear-gradient(45deg, #D94D4A, #F5B44B, #FFD700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

/* Optional subtle shadow/glow */
.logo-gradient::after {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: linear-gradient(45deg, #f6f6f3, #fffcf8, #D94D4A);
  filter: blur(6px);
  opacity: 0.4;
  z-index: -1;
  border-radius: 4px;
}

/* Optional shimmer animation */
@keyframes shimmer {
  0% { background-position: -200px 0; }
  100% { background-position: 200px 0; }
}
.logo-gradient {
  background-size: 400% 100%;
  animation: shimmer 3s linear infinite;
}

/* SVG underline animation */
a svg path {
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  animation: dash 2s ease-in-out infinite;
}

@keyframes dash {
  0% { stroke-dashoffset: 200; }
  50% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: 200; }
}
.modal-content {
  transform: scale(0.95);
  opacity: 0;
  transition: all 0.3s ease;
}
#modal-overlay.show .modal-content {
  transform: scale(1);
  opacity: 1;
}

.marquee-track {
  animation: marquee 25s linear infinite;
}

.marquee-text {
  font-family: var(--font-heading, serif);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: transparent;
  background: linear-gradient(90deg, #D94D4A, #F5B44B, #FFD700);
  -webkit-background-clip: text;
  background-clip: text;
  white-space: nowrap;
}

/* Animation */
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Subtle fade edges (premium touch) */
.marquee-fade::before,
.marquee-fade::after {
  content: "";
  position: absolute;
  top: 0;
  width: 80px;
  height: 100%;
  z-index: 10;
}

.marquee-fade::before {
  left: 0;
  background: linear-gradient(to right, #1f1f1f, transparent);
}

.marquee-fade::after {
  right: 0;
  background: linear-gradient(to left, #1f1f1f, transparent);
}



.lookbook-track {
  animation: lookbook-marquee 12s linear infinite;
}

.lookbook-card {
  min-width: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  transition: transform 0.6s ease;
}

.lookbook-card img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 2rem;
  box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.lookbook-card p {
  font-family: serif;
  font-size: 0.9rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  font-weight: 700;
  color: #3E2723;
}

/* Hover pause + lift */
.lookbook-track:hover {
  animation-play-state: paused;
}

.lookbook-card:hover {
  transform: translateY(-10px) scale(1.03);
}

/* Animation */
@keyframes lookbook-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
