:root {
  --bg: #faf9f9;
  --cream: #f5f3f3;
  --beige: #e8d6e8;
  --dusty-pink: #d4a5a5;
  --accent: #c4969c;
  --dark-gray: #4a4a4a;
  --muted: #6b6b6b;
  --glass: rgba(255, 255, 255, 0.65);
  --shadow: 0 6px 18px rgba(18, 18, 18, 0.08);
  --rounded: 18px;
}

* {
  box-sizing: border-box
}

body {
  font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, 'Helvetica Neue', Arial;
  margin: 0;
  background: var(--bg);
  color: var(--muted);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1,
h2,
h3 {
  font-family: 'Playfair Display', serif;
  color: var(--dark-gray)
}

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

/* ============================================
   HERO CAROUSEL STYLES
   ============================================ */
.hero-carousel {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.carousel-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.carousel-slide.active {
  opacity: 1;
  visibility: visible;
}

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

.carousel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg,
      rgba(18, 10, 8, 0.65) 0%,
      rgba(74, 74, 74, 0.4) 50%,
      rgba(212, 165, 165, 0.3) 100%);
}

.carousel-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  max-width: 800px;
  width: 90%;
  padding: 40px;
  z-index: 10;
}

.carousel-content .kicker {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 14px;
  color: white;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.carousel-content h1 {
  font-size: clamp(2.5rem, 8vw, 5rem);
  line-height: 1;
  margin: 0 0 24px;
  color: #fff;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
  font-weight: 700;
}

.carousel-content p {
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(1rem, 2vw, 1.25rem);
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

.carousel-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.carousel-cta .btn-primary {
  background: var(--dusty-pink);
  color: white;
  padding: 16px 32px;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.carousel-cta .btn-primary:hover {
  background: white;
  color: var(--dark-gray);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.carousel-cta .btn-ghost {
  padding: 16px 32px;
  font-size: 16px;
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.carousel-cta .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: white;
}

/* Carousel Navigation */
.carousel-nav {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 20;
}

.carousel-arrow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.carousel-arrow:hover {
  background: white;
  color: var(--dark-gray);
  border-color: white;
  transform: scale(1.1);
}

.carousel-dots {
  display: flex;
  gap: 12px;
}

.carousel-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dots .dot:hover {
  background: rgba(255, 255, 255, 0.7);
}

.carousel-dots .dot.active {
  background: white;
  width: 36px;
  border-radius: 6px;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 20;
  animation: bounce 2s infinite;
}

.scroll-indicator i {
  font-size: 16px;
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  40% {
    transform: translateX(-50%) translateY(-8px);
  }

  60% {
    transform: translateX(-50%) translateY(-4px);
  }
}

/* Floating WhatsApp Button */
.floating-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.floating-whatsapp:hover {
  transform: scale(1.1) translateY(-4px);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
}

.floating-whatsapp::before {
  content: 'Chat with us!';
  position: absolute;
  right: 70px;
  background: white;
  color: var(--dark-gray);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  white-space: nowrap;
}

.floating-whatsapp:hover::before {
  opacity: 1;
}

/* ============================================
   HEADER / HERO (Original styles modified for carousel)
   ============================================ */
.site-header {
  max-width: 1200px;
  margin: 28px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1001;
}

.logo-mark {
  width: 100px;
  height: 100px;
  background: url('./assets/logo.svg') center/contain no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;

}

nav {
  display: flex;
  gap: 18px;
  align-items: center;
}

nav a {
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 500;
  transition: all 0.3s ease;
}

nav a:hover {
  background: var(--cream);
}

.btn-contact {
  background: var(--dusty-pink);
  color: white;
  padding: 10px 16px;
  border-radius: 999px;
  transition: all 0.3s ease;
}

.btn-contact:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  background: white;
  border: 2px solid var(--cream);
  font-size: 24px;
  cursor: pointer;
  padding: 10px 14px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  z-index: 1001;
  transition: all 0.3s ease;
  color: var(--dark-gray);
  font-weight: 600;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
}

.nav-toggle:hover {
  background: var(--dusty-pink);
  color: white;
  border-color: var(--dusty-pink);
  transform: scale(1.05);
}

.nav-toggle:active {
  transform: scale(0.95);
}

/* Mobile Navigation */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  height: 100vh;
  background: linear-gradient(180deg, white 0%, var(--cream) 100%);
  box-shadow: -4px 0 30px rgba(0, 0, 0, 0.15);
  padding: 100px 28px 28px;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  z-index: 1000;
  overflow-y: auto;
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  margin-bottom: 12px;
  border-radius: 14px;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s ease;
  background: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.mobile-nav a i {
  font-size: 18px;
  width: 24px;
  color: var(--dusty-pink);
  transition: all 0.3s ease;
}

.mobile-nav a:hover i {
  color: var(--accent);
  transform: scale(1.2);
}

.mobile-nav a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: var(--dusty-pink);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.mobile-nav a:hover,
.mobile-nav a:active {
  background: var(--cream);
  transform: translateX(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.mobile-nav a:hover::before {
  transform: scaleY(1);
}

.mobile-nav .btn-contact {
  display: block;
  text-align: center;
  margin-top: 24px;
  background: var(--dusty-pink);
  color: white;
  padding: 16px 20px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(212, 165, 165, 0.3);
}

.mobile-nav .btn-contact::before {
  display: none;
}

.mobile-nav .btn-contact:hover {
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(212, 165, 165, 0.4);
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 999;
}

.nav-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.hero {
  max-width: 1200px;
  margin: 24px auto;
  background-color: var(--beige);
  border-radius: 22px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 28px;
  align-items: center;
  position: relative;
  overflow: visible;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 22px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.15);
}

.hero-left {
  z-index: 2
}

.kicker {
  display: inline-block;
  background: var(--glass);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 13px;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: 56px;
  line-height: 0.98;
  margin: 0 0 16px;
  color: #fff;
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  font-weight: 700;
}

.hero p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 520px;
}

.cta-row {
  display: flex;
  gap: 14px;
  margin-top: 20px;
}

.btn-primary {
  background: white;
  color: var(--dark-gray);
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: var(--shadow);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(18, 18, 18, 0.12);
  background: var(--dusty-pink);
  color: white;
}

.btn-ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: 14px 18px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

.hero-right {
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-end;
}

.small-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.9));
  padding: 12px 16px;
  border-radius: 14px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 12px;
  align-items: center;
  min-width: 260px;
  transition: all 0.3s ease;
}

.small-card img {
  width: 64px;
  height: 48px;
  border-radius: 10px;
  object-fit: cover;
}

.stats {
  font-weight: 700;
  color: var(--dark-gray);
}

/* Features */
.features {
  max-width: 1200px;
  margin: 28px auto;
  padding: 22px 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.feature {
  background: white;
  padding: 18px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(18, 18, 18, 0.12);
}

.feature .icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--dusty-pink);
  transition: all 0.3s ease;
}

.feature:hover .icon {
  background: var(--dusty-pink);
  color: white;
  transform: scale(1.1);
}

/* Content Sections */
.container {
  max-width: 1200px;
  margin: 36px auto;
  padding: 0 24px;
}

/* Section Title Headers */
.section-with-title {
  margin-bottom: 24px;
}

.section-title-header {
  text-align: center;
}

.section-label {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.section-main-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--dark-gray);
  margin: 0;
}

@media (max-width: 768px) {
  .section-main-title {
    font-size: 1.8rem;
  }

  .section-label {
    font-size: 0.75rem;
  }
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.split.reverse {
  direction: rtl;
}

.split.reverse>* {
  direction: ltr;
}

.service-media-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 768px) {
  .service-media-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.card-img {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}

/* Make card-img in split sections more square and proportional */
.split .card-img {

  max-height: 700px;
}

.card-img img {
  width: 100%;
  height: 100%;

  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

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

.rating-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: linear-gradient(90deg, #fff, #f7f3f0);
  padding: 6px 10px;
  border-radius: 12px;
  font-weight: 600;
}

.collection-row {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.9));
  padding: 22px;
  border-radius: 18px;
  display: flex;
  gap: 18px;
  align-items: center;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.products-wrapper {
  display: flex;
  gap: 14px;
  flex: 2;
}

.product {
  flex: 1;
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border-radius: 12px;
  background: transparent;
  transition: all 0.3s ease;
}

.product:hover {
  background: rgba(255, 255, 255, 0.6);
}

.product img {
  width: 96px;
  height: 72px;
  border-radius: 12px;
  object-fit: cover;
}

.product .price {
  font-weight: 700;
  color: var(--dark-gray);
}

/* Video + Types */
.video-row {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 28px;
  align-items: start;
  margin-top: 36px;
}

.video-card {
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  padding-bottom: 56.25%;
  background: linear-gradient(135deg, var(--beige), #d2bfae);
  box-shadow: var(--shadow);
  cursor: pointer;
}

.video-card video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
}

.video-card .play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.9);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 6px;
  font-size: 32px;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  color: var(--dusty-pink);
  z-index: 10;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.video-card .play:hover {
  background: white;
  transform: translate(-50%, -50%) scale(1.15);
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.3);
}

.types {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.type {
  background: white;
  padding: 14px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  color: var(--dark-gray);
  font-weight: 500;
}

.type:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(18, 18, 18, 0.12);
}

.type img {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
}

/* Sections */
.section {
  margin-top: 48px;
}

.section-title {
  text-align: center;
  margin-bottom: 36px;
}

/* Nail Cards */
.nail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.nail-card {
  background: white;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.nail-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(18, 18, 18, 0.15);
}

.nail-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.nail-card:hover img {
  transform: scale(1.1);
}

.nail-card-content {
  padding: 20px;
}

.nail-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.nail-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

/* Service Cards */
.service-features {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.service-feature {
  flex: 1;
  background: var(--cream);
  padding: 16px;
  border-radius: 12px;
}

.service-feature strong {
  display: block;
  margin-bottom: 8px;
}

.service-feature small {
  color: var(--muted);
}

.service-description {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

/* Instagram Embeds */
.instagram-media {
  margin: 48px auto !important;
}

/* Footer */
footer {
  max-width: 1200px;
  margin: 36px auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-badges {
  display: flex;
  gap: 16px;
  align-items: center;
}

.footer-badge {
  width: 110px;
  height: 34px;
  background: #efe6dd;
  border-radius: 8px;
}

.footer-text {
  font-size: 13px;
  color: var(--muted);
}

/* Video Modal */
.video-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  padding: 20px;
}

.video-modal.active {
  display: flex;
}

.video-modal-content {
  width: 90%;
  max-width: 900px;
  background: white;
  border-radius: 12px;
  overflow: hidden;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}

.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.video-modal-footer {
  padding: 12px;
  text-align: right;
}

.close-btn {
  padding: 8px 16px;
  border-radius: 8px;
  border: none;
  background: var(--dusty-pink);
  color: white;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
}

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

.collection-text {
  flex: 1;
}

.collection-text h3 {
  margin: 0 0 8px;
}

.collection-text p {
  margin: 0 0 12px;
  color: var(--muted);
}

.see-more-btn {
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid #e6dcd1;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.see-more-btn:hover {
  background: var(--cream);
}

/* About Page Styles */
.about-hero {
  background: linear-gradient(135deg, var(--beige), var(--cream));
  padding: 80px 0 60px;
  margin-top: 28px;
  border-radius: 22px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.about-hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.about-hero h1 {
  font-size: 52px;
  margin: 16px 0;
  color: var(--dark-gray);
}

.hero-description {
  font-size: 18px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0;
}

.about-section {
  margin-top: 60px;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-content h2 {
  margin: 0 0 12px;
  font-size: 36px;
}

.about-content p {
  line-height: 1.7;
  color: var(--muted);
  margin: 0;
}

.about-content strong {
  color: var(--dark-gray);
  font-weight: 600;
}

/* Mission & Vision */
.mission-vision-section {
  margin-top: 60px;
  padding: 48px 0;
}

.mv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.mv-card {
  background: white;
  padding: 40px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.mv-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(18, 18, 18, 0.15);
}

.mv-icon {
  font-size: 48px;
  margin-bottom: 16px;
  color: var(--dusty-pink);
}

.mv-card h3 {
  font-size: 28px;
  margin: 0 0 16px;
  color: var(--dark-gray);
}

.mv-card p {
  line-height: 1.7;
  color: var(--muted);
  margin: 0;
  font-size: 16px;
}

/* Values Section */
.values-section {
  margin-top: 60px;
  padding: 48px 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 36px;
}

.value-card {
  background: white;
  padding: 32px 24px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(18, 18, 18, 0.15);
}

.value-icon {
  font-size: 48px;
  margin-bottom: 16px;
  color: var(--accent);
}

.value-card h3 {
  font-size: 22px;
  margin: 0 0 12px;
  color: var(--dark-gray);
}

.value-card p {
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
  font-size: 15px;
}

/* Location Section */
.location-section {
  margin-top: 60px;
  margin-bottom: 48px;
}

.location-card {
  background: linear-gradient(135deg, var(--dusty-pink), var(--accent));
  padding: 60px 48px;
  border-radius: 22px;
  box-shadow: var(--shadow);
  text-align: center;
}

.location-content h2 {
  color: white;
  font-size: 36px;
  margin: 0 0 16px;
}

.location-content p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 18px;
  line-height: 1.7;
  margin: 8px 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.location-content .cta-row {
  justify-content: center;
  margin-top: 32px;
}

/* Enhanced Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-left,
.hero-right {
  animation: fadeInUp 0.6s ease-out;
}

.feature,
.nail-card,
.value-card {
  animation: fadeInUp 0.6s ease-out;
  animation-fill-mode: both;
}

.feature:nth-child(1) {
  animation-delay: 0.1s;
}

.feature:nth-child(2) {
  animation-delay: 0.2s;
}

.feature:nth-child(3) {
  animation-delay: 0.3s;
}

.feature:nth-child(4) {
  animation-delay: 0.4s;
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Enhanced Footer */
footer {
  background: linear-gradient(180deg, var(--cream) 0%, var(--beige) 100%);
  margin: 60px 0 0 0;
  padding: 0;
  width: 100%;
}

.footer-main {
  width: 100%;
  padding: 60px 40px 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  box-sizing: border-box;
}

.footer-brand {
  max-width: 320px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.footer-logo .logo-mark {
  width: 70px;
  height: 70px;
  background: url('./assets/logo.svg') center/contain no-repeat;
  box-shadow: var(--shadow);
}

.footer-logo-text {
  font-weight: 700;
  font-size: 18px;
  color: var(--dark-gray);
}

.footer-brand p {
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 20px;
  font-size: 14px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dusty-pink);
  font-size: 18px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.social-link:hover {
  background: var(--dusty-pink);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(212, 165, 165, 0.3);
}

.footer-section h4 {
  font-family: 'Playfair Display', serif;
  color: var(--dark-gray);
  font-size: 18px;
  margin: 0 0 20px;
  font-weight: 600;
}

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

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--muted);
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-links a:hover {
  color: var(--dusty-pink);
  transform: translateX(4px);
}

.footer-links i {
  font-size: 12px;
  color: var(--dusty-pink);
}

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

.footer-contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.footer-contact-info i {
  color: var(--dusty-pink);
  font-size: 16px;
  margin-top: 2px;
  min-width: 20px;
}

.footer-contact-info a {
  color: var(--muted);
  transition: color 0.3s ease;
}

.footer-contact-info a:hover {
  color: var(--dusty-pink);
}

.footer-newsletter {
  margin-top: 20px;
}

.newsletter-form {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.newsletter-input {
  flex: 1;
  padding: 12px 16px;
  border: 2px solid rgba(212, 165, 165, 0.3);
  border-radius: 999px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  outline: none;
  transition: all 0.3s ease;
}

.newsletter-input:focus {
  border-color: var(--dusty-pink);
}

.newsletter-btn {
  padding: 12px 24px;
  background: var(--dusty-pink);
  color: white;
  border: none;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
  white-space: nowrap;
}

.newsletter-btn:hover {
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 165, 165, 0.3);
}

.footer-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding: 24px 40px;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-designer {
  font-size: 13px;
  color: var(--muted);
}

.footer-bottom-text {
  font-size: 13px;
  color: var(--muted);
}

.footer-designer a {
  color: var(--dusty-pink);
  font-weight: 600;
  transition: all 0.3s ease;
}

.footer-designer a:hover {
  color: var(--accent);
  text-decoration: underline;
}

.footer-badges {
  display: flex;
  gap: 16px;
  align-items: center;
}

.footer-badge {
  height: 32px;
  padding: 0 12px;
  background: white;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--muted);
  font-weight: 600;
}

.footer-payment-icons {
  display: flex;
  gap: 8px;
}

.payment-icon {
  width: 40px;
  height: 26px;
  background: white;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  font-size: 10px;
  color: var(--muted);
  font-weight: 700;
}

/* Enhanced Small Cards */
.small-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.9));
  padding: 12px 16px;
  border-radius: 14px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 12px;
  align-items: center;
  min-width: 260px;
  transition: all 0.3s ease;
}

.small-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(18, 18, 18, 0.15);
}

/* Enhanced Collection Row */
.collection-row {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.9));
  padding: 22px;
  border-radius: 18px;
  display: flex;
  gap: 18px;
  align-items: center;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.collection-row:hover {
  box-shadow: 0 12px 32px rgba(18, 18, 18, 0.15);
}

/* Loading Animation for Images */
img {
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

/* Shop Page Styles */
.shop-hero {
  background: linear-gradient(135deg, var(--dusty-pink), var(--accent));
  padding: 80px 0 60px;
  margin-top: 28px;
  border-radius: 22px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.shop-hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.shop-hero h1 {
  font-size: 52px;
  margin: 16px 0;
  color: white;
}

.shop-hero .hero-description {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
}

.shop-hero .kicker {
  color: white;
  background: rgba(255, 255, 255, 0.2);
}

/* Filter Section */
.filter-section {
  margin: 48px 0 36px;
}

.filter-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.filter-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 20px;
  border-radius: 999px;
  border: 2px solid var(--cream);
  background: white;
  color: var(--dark-gray);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--dusty-pink);
  border-color: var(--dusty-pink);
  color: white;
}

.cart-icon {
  position: relative;
  width: 50px;
  height: 50px;
  background: var(--dusty-pink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cart-icon:hover {
  background: var(--accent);
  transform: scale(1.1);
}

.cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  background: var(--dark-gray);
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}

/* Products Grid */
.products-section {
  margin-bottom: 60px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}

.product-card {
  background: white;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  opacity: 1;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(18, 18, 18, 0.15);
}

.product-image {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: var(--cream);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.1);
}

.product-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--dusty-pink);
  color: white;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

.product-badge.featured {
  background: var(--accent);
}

.product-info {
  padding: 20px;
}

.product-category {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.product-info h3 {
  font-size: 20px;
  margin: 0 0 8px;
  color: var(--dark-gray);
}

.product-info p {
  font-size: 14px;
  color: var(--muted);
  margin: 0 0 16px;
}

.product-price {
  font-size: 24px;
  font-weight: 700;
  color: var(--dusty-pink);
  margin-bottom: 16px;
}

.btn-add-cart {
  width: 100%;
  padding: 12px;
  background: var(--dusty-pink);
  color: white;
  border: none;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

.btn-add-cart:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

/* Cart Sidebar */
.cart-sidebar {
  position: fixed;
  right: -400px;
  top: 0;
  width: 400px;
  height: 100vh;
  background: white;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
  transition: right 0.3s ease;
  z-index: 2000;
  display: flex;
  flex-direction: column;
}

.cart-sidebar.active {
  right: 0;
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid var(--cream);
}

.cart-header h3 {
  margin: 0;
  font-size: 20px;
  color: var(--dark-gray);
}

.close-cart {
  background: none;
  border: none;
  font-size: 24px;
  color: var(--muted);
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.close-cart:hover {
  background: var(--cream);
  color: var(--dark-gray);
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
}

.empty-cart {
  text-align: center;
  color: var(--muted);
  padding: 40px 20px;
}

.cart-item {
  display: flex;
  gap: 12px;
  padding: 16px;
  border-radius: 12px;
  background: var(--cream);
  margin-bottom: 12px;
  position: relative;
}

.cart-item img {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  object-fit: cover;
}

.cart-item-details {
  flex: 1;
}

.cart-item-details h4 {
  margin: 0 0 4px;
  font-size: 16px;
  color: var(--dark-gray);
}

.cart-item-price {
  color: var(--dusty-pink);
  font-weight: 600;
  margin: 4px 0;
}

.quantity-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}

.quantity-controls button {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: none;
  background: white;
  color: var(--dark-gray);
  cursor: pointer;
  font-weight: 700;
  transition: all 0.3s ease;
}

.quantity-controls button:hover {
  background: var(--dusty-pink);
  color: white;
}

.quantity-controls span {
  min-width: 30px;
  text-align: center;
  font-weight: 600;
}

.remove-item {
  position: absolute;
  top: 8px;
  right: 8px;
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.remove-item:hover {
  background: rgba(255, 0, 0, 0.1);
  color: red;
}

.cart-footer {
  padding: 20px;
  border-top: 1px solid var(--cream);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  font-size: 20px;
  font-weight: 700;
}

.total-amount {
  color: var(--dusty-pink);
}

.btn-checkout {
  width: 100%;
  padding: 14px;
  background: var(--dark-gray);
  color: white;
  border: none;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

.btn-checkout:hover {
  background: var(--dusty-pink);
  transform: translateY(-2px);
}

/* Notification */
.notification {
  position: fixed;
  top: 100px;
  right: 20px;
  background: var(--dark-gray);
  color: white;
  padding: 16px 24px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  transform: translateX(400px);
  transition: all 0.3s ease;
  z-index: 3000;
}

.notification.show {
  opacity: 1;
  transform: translateX(0);
}

.notification i {
  color: #4caf50;
  font-size: 20px;
}

/* Responsive for Shop Page */
@media (max-width:980px) {
  .shop-hero h1 {
    font-size: 40px;
  }

  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
  }

  .cart-sidebar {
    width: 100%;
    right: -100%;
  }
}

@media (max-width:520px) {
  .shop-hero {
    padding: 60px 24px 40px;
  }

  .shop-hero h1 {
    font-size: 32px;
  }

  .filter-group {
    width: 100%;
  }

  .filter-btn {
    flex: 1;
    min-width: 0;
    padding: 8px 12px;
    font-size: 14px;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }
}

/* Mobile Navigation Styles */
@media (max-width: 768px) {
  .site-header nav {
    display: none;
  }

  .nav-toggle {
    display: block;
  }
}

@media (min-width: 769px) {
  .site-header nav {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }

  .mobile-nav {
    display: none !important;
  }

  .nav-overlay {
    display: none !important;
  }
}

/* Comprehensive Mobile Responsive Styles */
@media (max-width: 980px) {

  /* Header */
  .site-header {
    padding: 0 20px;
    margin: 20px auto 0;
  }

  .logo {
    gap: 8px;
  }

  .logo-mark {
    width: 50px;
    height: 50px;
  }

  .logo div>div:first-child {
    font-size: 14px;
  }

  .logo div>div:last-child {
    font-size: 10px;
  }

  /* Hero Section */
  .hero {
    grid-template-columns: 1fr;
    padding: 32px 24px;
    gap: 24px;
    margin: 20px 16px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero p {
    font-size: 15px;
  }

  .hero-right {
    align-items: stretch;
    gap: 12px;
  }

  .small-card {
    min-width: auto;
    width: 100%;
  }

  /* Features */
  .features {
    grid-template-columns: repeat(2, 1fr);
    padding: 16px 20px;
    gap: 12px;
    margin: 20px auto;
  }

  .feature {
    padding: 14px;
  }

  .feature .icon {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }

  .feature strong {
    font-size: 14px;
  }

  .feature small {
    font-size: 12px;
  }

  /* Container */
  .container {
    padding: 0 20px;
    margin: 28px auto;
  }

  /* Split Sections */
  .split {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .split .card-img {
    height: 500px;
    width: 100%;
  }

  /* Collection Row */
  .collection-row {
    flex-direction: column;
    padding: 18px;
  }

  .products-wrapper {
    flex-direction: column;
    width: 100%;
  }

  .product {
    width: 100%;
  }

  /* Video Row */
  .video-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .types {
    flex-direction: row;
    gap: 12px;
  }

  .type {
    flex: 1;
  }

  .type img {
    width: 80px;
    height: 80px;
  }

  /* Nail Grid */
  .nail-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  /* Service Features */
  .service-features {
    flex-direction: column;
    gap: 12px;
  }

  /* Mission & Vision */
  .mv-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .mv-card {
    padding: 28px;
  }

  /* Values Grid */
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  /* About Hero */
  .about-hero {
    padding: 60px 24px 40px;
    margin: 20px 16px;
  }

  .about-hero h1 {
    font-size: 40px;
  }

  .hero-description {
    font-size: 16px;
  }

  /* Location Card */
  .location-card {
    padding: 40px 28px;
  }

  .location-content h2 {
    font-size: 28px;
  }

  .location-content p {
    font-size: 16px;
  }

  /* Footer */
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    padding: 40px 20px 28px;
  }

  .footer-brand {
    grid-column: 1 / -1;
    max-width: 100%;
    text-align: center;
  }

  .footer-logo {
    justify-content: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-bottom {
    padding: 20px;
    text-align: center;
    justify-content: center;
  }

  .footer-payment-icons {
    justify-content: center;
  }
}

@media (max-width: 640px) {

  /* Hero */
  .hero h1 {
    font-size: 32px;
    line-height: 1.1;
  }

  .cta-row {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .btn-primary,
  .btn-ghost {
    width: 100%;
    padding: 12px 16px;
  }

  /* Features */
  .features {
    grid-template-columns: 1fr;
  }

  /* Nail Grid */
  .nail-grid {
    grid-template-columns: 1fr;
  }

  /* Values Grid */
  .values-grid {
    grid-template-columns: 1fr;
  }

  /* Types */
  .types {
    flex-direction: column;
  }

  .type {
    flex-direction: row;
    justify-content: flex-start;
    gap: 12px;
  }

  .type img {
    width: 60px;
    height: 60px;
  }

  /* About Hero */
  .about-hero h1 {
    font-size: 32px;
  }

  .about-hero {
    padding: 40px 20px 30px;
  }

  /* Mission & Vision */
  .mv-card {
    padding: 24px;
  }

  .mv-icon {
    font-size: 36px;
  }

  .mv-card h3 {
    font-size: 24px;
  }

  /* Value Cards */
  .value-card {
    padding: 24px 18px;
  }

  .value-icon {
    font-size: 36px;
  }

  .value-card h3 {
    font-size: 18px;
  }

  /* Location */
  .location-card {
    padding: 32px 20px;
  }

  .location-content h2 {
    font-size: 24px;
  }

  .location-content p {
    font-size: 15px;
  }

  /* Section Titles */
  .section-title {
    font-size: 28px;
  }

  h2 {
    font-size: 28px;
  }

  /* Products */
  .product img {
    width: 80px;
    height: 60px;
  }

  /* Collection Text */
  .collection-text h3 {
    font-size: 20px;
  }

  .collection-text p {
    font-size: 14px;
  }

  /* Service Description */
  .service-description {
    font-size: 14px;
  }
}

@media (max-width: 480px) {

  /* Header */
  .site-header {
    padding: 0 16px;
    margin: 16px auto 0;
  }

  /* Hero */
  .hero {
    padding: 24px 16px;
    margin: 16px 12px;
    border-radius: 16px;
  }

  .hero h1 {
    font-size: 28px;
    margin-bottom: 12px;
  }

  .hero p {
    font-size: 14px;
  }

  .kicker {
    font-size: 11px;
    padding: 6px 10px;
  }

  /* Small Cards */
  .small-card {
    padding: 10px 12px;
  }

  .small-card img {
    width: 56px;
    height: 42px;
  }

  .small-card div {
    font-size: 13px;
  }

  .stats {
    font-size: 20px;
  }

  /* Features */
  .features {
    padding: 12px 16px;
    margin: 16px auto;
  }

  .feature {
    padding: 12px;
  }

  .feature .icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  /* Container */
  .container {
    padding: 0 16px;
    margin: 24px auto;
  }

  /* Split */
  .split {
    gap: 20px;
  }

  .split .card-img {
    height: 700px;
  }

  /* Collection Row */
  .collection-row {
    padding: 16px;
  }

  /* Nail Cards */
  .nail-card img {
    height: 180px;
  }

  .nail-card-content {
    padding: 16px;
  }

  .nail-card h3 {
    font-size: 16px;
  }

  .nail-card p {
    font-size: 13px;
  }

  /* Service Features */
  .service-feature {
    padding: 12px;
  }

  .service-feature strong {
    font-size: 14px;
  }

  .service-feature small {
    font-size: 12px;
  }

  /* About Hero */
  .about-hero {
    padding: 32px 16px 24px;
  }

  .about-hero h1 {
    font-size: 28px;
  }

  .hero-description {
    font-size: 14px;
  }

  /* Mission & Vision */
  .mv-card {
    padding: 20px;
  }

  .mv-card h3 {
    font-size: 20px;
  }

  .mv-card p {
    font-size: 14px;
  }

  /* Values */
  /* Values */
  .value-card {
    padding: 20px 16px;
  }

  .value-card h3 {
    font-size: 16px;
  }

  .value-card p {
    font-size: 14px;
  }

  /* Footer */
  .footer-main {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 32px 20px 24px;
  }

  .footer-section h4 {
    font-size: 16px;
    margin-bottom: 16px;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-btn {
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
  }

  .footer-badges {
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-payment-icons {
    flex-wrap: wrap;
  }
}

/* Location */
.location-card {
  padding: 28px 16px;
}

.location-content h2 {
  font-size: 22px;
}

.location-content p {
  font-size: 14px;
}

/* Footer */
footer {
  padding: 16px;
  margin: 24px auto;
}

.footer-badge {
  width: 90px;
  height: 28px;
}

.footer-text {
  font-size: 12px;
}

/* Video Modal */
.video-modal {
  padding: 10px;
}

/* Instagram Embeds */
.instagram-media {
  max-width: 100% !important;
  min-width: 100% !important;
}

/* Section Spacing */
.section {
  margin-top: 32px;
}

.about-section {
  margin-top: 40px;
}

.mission-vision-section,
.values-section,
.location-section {
  margin-top: 40px;
  padding: 32px 0;
}

/* Video Card */
.video-card .play {
  width: 50px;
  height: 50px;
  font-size: 18px;
  left: 12px;
  top: 12px;
}


/* Instagram Feed Section */
.instagram-feed-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #fff 0%, var(--bg) 100%);
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.instagram-media {
  margin: 0 auto !important;
  border-radius: 20px !important;
  border: none !important;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08) !important;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.instagram-media:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12) !important;
}

/* Section Header Styling */
.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: var(--primary);
  font-weight: 600;
}

.section-header p {
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Gallery Section */
.gallery-section {
  padding: 64px 0;
  background: #fafafa;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 1;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(212, 165, 165, 0.8) 0%, rgba(18, 10, 8, 0.8) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  padding: 20px;
  text-align: center;
}

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

.gallery-content h3 {
  color: white;
  margin: 0 0 8px;
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.gallery-content p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  font-size: 14px;
  transform: translateY(20px);
  transition: transform 0.4s ease 0.1s;
}

.gallery-item:hover .gallery-content h3,
.gallery-item:hover .gallery-content p {
  transform: translateY(0);
}

.video-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rotated-video {
  transform: rotate(90deg);
  scale: 1.5;
  /* Scale up slightly to avoid black bars if the aspect ratio changes due to rotation */
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
    padding: 0 16px;
  }

  .gallery-section {
    padding: 48px 0;
  }

  .gallery-content h3 {
    font-size: 1.25rem;
  }
}

/* Booking Form Modal */
.booking-modal {
  display: none;
  position: fixed;
  z-index: 1001;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
}

.booking-modal-content {
  background-color: white;
  margin: 2% auto;
  padding: 0;
  border-radius: 16px;
  width: 90%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px) scale(0.95);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.booking-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 32px;
  border-bottom: 1px solid #eee;
  background: linear-gradient(135deg, var(--primary) 0%, #d4a5a5 100%);
  color: white;
  border-radius: 16px 16px 0 0;
}

.booking-header h2 {
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 600;
}

.close-booking-btn {
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

.close-booking-btn:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.booking-form {
  padding: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: var(--primary);
  font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e1e1e1;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(212, 165, 165, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-actions {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #eee;
}

.btn-secondary {
  background: #f5f5f5;
  color: #666;
  border: 2px solid #ddd;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: #e8e8e8;
  border-color: #bbb;
}

@media (max-width: 768px) {
  .booking-modal-content {
    margin: 5% auto;
    width: 95%;
  }

  .booking-header {
    padding: 20px 24px;
  }

  .booking-form {
    padding: 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form-actions {
    flex-direction: column-reverse;
  }

  .form-actions button {
    width: 100%;
  }
}

/* ============================================
   CONTACT PAGE STYLES
   ============================================ */

/* Contact Hero */
.contact-hero {
  position: relative;
  padding: 160px 0 100px;
  background: linear-gradient(135deg, var(--dusty-pink), var(--beige), var(--accent));
  overflow: hidden;
}

.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background: url('./assets/nails/2.jpeg') center/cover;
  opacity: 0.15;
}

.contact-hero-content {
  position: relative;
  text-align: center;
  z-index: 2;
}

.contact-hero-content .kicker {
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  color: white;
}

.contact-hero-content h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: white;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  margin-bottom: 20px;
}

.contact-hero-content .hero-description {
  color: rgba(255, 255, 255, 0.95);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
}

/* Contact Options Section */
.contact-options-section {
  padding: 80px 0;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.contact-card {
  background: white;
  border-radius: 24px;
  padding: 40px 32px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  text-decoration: none;
  color: inherit;
  display: block;
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--dusty-pink);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.contact-card:hover::before {
  transform: scaleX(1);
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.contact-card .contact-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 32px;
  transition: all 0.3s ease;
}

.whatsapp-card .contact-icon {
  background: #dcf8c6;
  color: #25D366;
}

.whatsapp-card:hover .contact-icon {
  background: #25D366;
  color: white;
  transform: scale(1.1);
}

.email-card .contact-icon {
  background: #e8d6e8;
  color: var(--accent);
}

.email-card:hover .contact-icon {
  background: var(--dusty-pink);
  color: white;
  transform: scale(1.1);
}

.phone-card .contact-icon {
  background: #d4e5f7;
  color: #3b82f6;
}

.phone-card:hover .contact-icon {
  background: #3b82f6;
  color: white;
  transform: scale(1.1);
}

.contact-card h3 {
  margin: 0 0 12px;
  font-size: 1.5rem;
}

.contact-card p {
  color: var(--muted);
  margin: 0 0 16px;
  line-height: 1.6;
}

.contact-detail {
  display: block;
  font-weight: 600;
  color: var(--dark-gray);
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.card-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--dusty-pink);
  font-weight: 600;
  transition: all 0.3s ease;
}

.contact-card:hover .card-action {
  gap: 12px;
}

.card-action i {
  transition: transform 0.3s ease;
}

.contact-card:hover .card-action i {
  transform: translateX(4px);
}

/* Services Inquiry Section */
.services-inquiry-section {
  background: linear-gradient(135deg, var(--cream), var(--beige) 50%, var(--cream));
  border-radius: 32px;
  padding: 60px 40px;
  margin: 40px 0 60px;
  text-align: center;
}

.inquiry-content h2 {
  margin-bottom: 16px;
}

.inquiry-content>p {
  color: var(--muted);
  margin-bottom: 36px;
}

.service-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.service-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: white;
  padding: 16px 28px;
  border-radius: 999px;
  text-decoration: none;
  color: var(--dark-gray);
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.service-btn i {
  font-size: 20px;
  color: var(--dusty-pink);
  transition: all 0.3s ease;
}

.service-btn:hover {
  background: var(--dusty-pink);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(212, 165, 165, 0.35);
}

.service-btn:hover i {
  color: white;
}

/* Location Section */
.contact-location-section {
  padding: 60px 0;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.location-info h2 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}

.location-info h2 i {
  color: var(--dusty-pink);
}

.address-block,
.hours-block,
.social-block {
  margin-bottom: 32px;
}

.address-block h3,
.hours-block h3,
.social-block h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hours-block h3 i,
.address-block h3 i {
  color: var(--dusty-pink);
}

.address-block p {
  color: var(--muted);
  line-height: 1.8;
}

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

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  color: var(--muted);
}

.hours-list li:last-child {
  border-bottom: none;
}

.hours-list li span:last-child {
  font-weight: 600;
  color: var(--dark-gray);
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dusty-pink);
  font-size: 20px;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--dusty-pink);
  color: white;
  transform: translateY(-3px);
}

.map-container {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Contact CTA Section */
.contact-cta-section {
  padding: 60px 0 80px;
}

.cta-box {
  background: linear-gradient(135deg, var(--dusty-pink), var(--accent));
  border-radius: 32px;
  padding: 60px;
  text-align: center;
  color: white;
}

.cta-box h2 {
  color: white;
  margin-bottom: 16px;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
}

.cta-box p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
  font-size: 1.1rem;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-whatsapp {
  background: #25D366;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.cta-whatsapp:hover {
  background: #1da851;
}

.cta-gallery {
  border-color: rgba(255, 255, 255, 0.5);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

/* Contact Page Responsive */
@media (max-width: 992px) {
  .location-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .map-container iframe {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .contact-hero {
    padding: 120px 0 60px;
  }

  .contact-cards {
    grid-template-columns: 1fr;
  }

  .services-inquiry-section {
    padding: 40px 24px;
    margin: 24px 0 40px;
  }

  .service-buttons {
    flex-direction: column;
  }

  .service-btn {
    justify-content: center;
  }

  .cta-box {
    padding: 40px 24px;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-buttons a {
    width: 100%;
    justify-content: center;
  }
}

/* Development Toast */
.dev-toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: rgba(74, 74, 74, 0.95);
  color: white;
  padding: 16px 32px;
  border-radius: 999px;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  z-index: 99999;
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  pointer-events: auto;
  /* Enable interaction for close button */
}

.dev-toast.show {
  transform: translateX(-50%) translateY(0);
}

.dev-toast i {
  color: var(--dusty-pink);
  font-size: 18px;
}

.toast-close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 18px;
  cursor: pointer;
  padding: 4px;
  margin-left: 8px;
  line-height: 1;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.toast-close:hover {
  color: white;
}

@media (max-width: 640px) {
  .dev-toast {
    width: 90%;
    padding: 12px 20px;
    font-size: 14px;
    bottom: 20px;
  }
}