:root {
  --suha-primary: #FF4E88;
  --suha-accent: #FFD1E3;
  --suha-bg: #FFF5F8;
  --suha-dark: #2D2D2D;
  --suha-white: #FFFFFF;
  --suha-shadow: 0 10px 30px rgba(255, 78, 136, 0.15);
  --font-display: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--suha-bg);
  color: var(--suha-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header & Nav */
header {
  padding: 2rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--suha-primary);
  text-decoration: none;
  letter-spacing: -1px;
}

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

.nav-links a {
  text-decoration: none;
  color: var(--suha-dark);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--suha-primary);
}

/* Hero Section */
.hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
  padding: 4rem 0;
  min-height: 80vh;
}

.hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5rem);
  line-height: 1.1;
  margin-bottom: 2rem;
}

.hero-content h1 span {
  color: var(--suha-primary);
  display: block;
}

.hero-content p {
  font-size: 1.2rem;
  color: #666;
  max-width: 500px;
  margin-bottom: 2.5rem;
}

.btn {
  display: inline-block;
  padding: 1.2rem 3rem;
  background-color: var(--suha-primary);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: transform 0.3s, box-shadow 0.3s;
  border: none;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(255, 78, 136, 0.3);
}

/* Visual Playground / Interactive Area */
.playground-container {
  position: relative;
  height: 600px;
  background: var(--suha-white);
  border-radius: 40px;
  box-shadow: var(--suha-shadow);
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.model-preview {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.placeholder-avatar.full-body {
  width: 280px;
  height: 500px;
  background: #f0f0f0;
  border-radius: 140px 140px 40px 40px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

/* Simulated Bikini Components */
.bikini-top {
  position: absolute;
  top: 140px;
  width: 180px;
  height: 60px;
  display: flex;
  justify-content: space-between;
  z-index: 2;
}

.bikini-cup {
  width: 80px;
  height: 80px;
  background: var(--suha-primary);
  border-radius: 50% 50% 10% 50%;
  transform: rotate(-45deg);
}

.bikini-cup.right {
  border-radius: 50% 50% 50% 10%;
  transform: rotate(45deg);
}

.bikini-bottom {
  position: absolute;
  top: 280px;
  width: 160px;
  height: 100px;
  background: var(--suha-primary);
  clip-path: polygon(0% 0%, 100% 0%, 85% 100%, 15% 100%);
  z-index: 2;
  border-radius: 0 0 40px 40px;
}

/* Styling Controls */
.controls-panel {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  padding: 1.5rem;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.control-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.color-dot {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.2s;
}

.color-dot:hover {
  transform: scale(1.2);
}

.color-dot.active {
  border-color: var(--suha-dark);
}

/* Feature Grid */
.features {
  padding: 8rem 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.feature-card {
  background: white;
  padding: 3rem;
  border-radius: 30px;
  transition: transform 0.3s;
}

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

.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--suha-accent);
  border-radius: 18px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--suha-primary);
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* Collection Section */
.collection {
  padding: 4rem 0 8rem;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: 3rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.product-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s;
}

.product-card:hover {
  transform: scale(1.02);
}

.product-image {
  aspect-ratio: 3/4;
  background: #eee;
  position: relative;
}

.product-info {
  padding: 1.5rem;
}

.product-name {
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.product-price {
  color: var(--suha-primary);
  font-weight: 800;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .features {
    grid-template-columns: 1fr;
  }
  .nav-links {
    display: none;
  }
}

/* Visual effects */
.blob {
  position: absolute;
  z-index: -1;
  filter: blur(60px);
  opacity: 0.4;
  border-radius: 50%;
}

.blob-1 {
  width: 400px;
  height: 400px;
  background: var(--suha-primary);
  top: -100px;
  right: -100px;
}

.blob-2 {
  width: 300px;
  height: 300px;
  background: #FFD1E3;
  bottom: 100px;
  left: -50px;
}
