/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --pink:       #FF1493;
  --hot-pink:   #FF69B4;
  --yellow:     #FFD700;
  --yellow-light: #FFF176;
  --black:      #111111;
  --dark:       #1a1a1a;
  --white:      #ffffff;
  --grey:       #f5f5f5;
  --text:       #333333;
  --grad: linear-gradient(135deg, var(--yellow) 0%, var(--hot-pink) 50%, var(--pink) 100%);
  --grad-rev: linear-gradient(135deg, var(--pink) 0%, var(--hot-pink) 50%, var(--yellow) 100%);
  --shadow: 0 4px 24px rgba(255,20,147,0.15);
  --radius: 16px;
  --radius-sm: 8px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

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

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: all 0.25s ease;
  cursor: pointer;
  border: 3px solid transparent;
  text-align: center;
}

.btn--primary {
  background: var(--black);
  color: var(--yellow);
  border-color: var(--black);
}
.btn--primary:hover {
  background: var(--pink);
  border-color: var(--pink);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255,20,147,0.4);
}

.btn--secondary {
  background: var(--pink);
  color: var(--white);
  border-color: var(--pink);
}
.btn--secondary:hover {
  background: #cc0070;
  border-color: #cc0070;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255,20,147,0.4);
}

.btn--outline {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}
.btn--outline:hover {
  background: var(--black);
  color: var(--yellow);
  transform: translateY(-2px);
}

.btn--full { width: 100%; display: block; }

.btn--sm {
  padding: 10px 20px;
  font-size: 0.85rem;
}

/* ===== ANNOUNCEMENT BAR ===== */
.announcement-bar {
  background: var(--black);
  color: var(--yellow);
  text-align: center;
  padding: 10px 20px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}

/* ===== HEADER ===== */
.site-header {
  background: var(--white);
  border-bottom: 3px solid var(--yellow);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 20px;
}

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

.logo-scissors {
  font-size: 2.2rem;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-main {
  font-family: 'Black Han Sans', sans-serif;
  font-size: 1.3rem;
  color: var(--black);
  line-height: 1;
  letter-spacing: 0.5px;
}

.logo-sub {
  font-size: 0.7rem;
  color: var(--pink);
  font-weight: 600;
  letter-spacing: 0.3px;
  margin-top: 2px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav a {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--dark);
  transition: color 0.2s;
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--pink);
  transition: width 0.2s;
}

.main-nav a:hover { color: var(--pink); }
.main-nav a:hover::after { width: 100%; }

.nav-cta {
  background: var(--grad);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 700 !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { opacity: 0.9; transform: translateY(-1px); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--black);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--yellow) 0%, #FFCA28 20%, var(--hot-pink) 60%, var(--pink) 100%);
  z-index: 0;
}

/* Decorative floral corners */
.hero-floral {
  position: absolute;
  width: 200px;
  height: 200px;
  z-index: 1;
  opacity: 0.25;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ccircle cx='50' cy='50' r='40' stroke='%23000' stroke-width='2' fill='none'/%3E%3Ccircle cx='50' cy='20' r='12' stroke='%23000' stroke-width='2' fill='none'/%3E%3Ccircle cx='50' cy='80' r='12' stroke='%23000' stroke-width='2' fill='none'/%3E%3Ccircle cx='20' cy='50' r='12' stroke='%23000' stroke-width='2' fill='none'/%3E%3Ccircle cx='80' cy='50' r='12' stroke='%23000' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}
.hero-floral--tl { top: -20px; left: -20px; }
.hero-floral--br { bottom: -20px; right: -20px; transform: rotate(180deg); }

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  padding-top: 60px;
  padding-bottom: 100px;
}

.hero-title {
  font-family: 'Black Han Sans', sans-serif;
  line-height: 1;
  margin-bottom: 16px;
}

.hero-title-top,
.hero-title-bottom {
  display: block;
  color: var(--black);
  font-size: clamp(3rem, 7vw, 5.5rem);
  text-shadow: 3px 3px 0 rgba(255,255,255,0.3);
}

.hero-tagline {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 12px;
}

.hero-desc {
  font-size: 1rem;
  color: var(--black);
  margin-bottom: 28px;
  max-width: 480px;
  opacity: 0.85;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-badges {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.badge {
  background: rgba(0,0,0,0.12);
  backdrop-filter: blur(4px);
  border: 2px solid rgba(0,0,0,0.2);
  border-radius: 50px;
  padding: 8px 18px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--black);
}

.badge-icon { font-size: 1rem; }

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-icon-wrap {
  width: 280px;
  height: 280px;
  background: rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  border: 4px solid rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: float 4s ease-in-out infinite;
}

.scissors-svg {
  width: 180px;
  height: 180px;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  line-height: 0;
}

.hero-wave svg { width: 100%; height: 80px; }

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--black);
  padding: 28px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: var(--white);
}

.trust-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.trust-item strong {
  display: block;
  font-size: 0.9rem;
  color: var(--yellow);
  margin-bottom: 2px;
}

.trust-item p {
  font-size: 0.78rem;
  opacity: 0.75;
  line-height: 1.4;
}

/* ===== SECTIONS ===== */
.section {
  padding: 80px 0;
}

.section--pink {
  background: linear-gradient(180deg, #FFF0F5 0%, #FFE4EF 100%);
}

.section--yellow {
  background: linear-gradient(180deg, #FFFDE7 0%, #FFF9C4 100%);
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-title {
  font-family: 'Black Han Sans', sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--black);
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 1rem;
  color: #666;
  max-width: 500px;
  margin: 0 auto;
}

/* ===== EXTENSIONS GRID ===== */
.extensions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.ext-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
  border: 2px solid transparent;
}

.ext-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(255,20,147,0.2);
  border-color: var(--pink);
}

.ext-card--featured {
  border-color: var(--yellow);
  box-shadow: 0 6px 30px rgba(255,215,0,0.3);
}

.ext-card-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--yellow);
  color: var(--black);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  z-index: 1;
}

.ext-card-img {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ext-card-img--real    { background: linear-gradient(135deg, #FFD700, #FF69B4); }
.ext-card-img--synthetic { background: linear-gradient(135deg, #FF69B4, #FF1493); }
.ext-card-img--braiding  { background: linear-gradient(135deg, #FFB300, #FF6F00); }

.ext-icon { font-size: 4rem; }

.ext-card-body {
  padding: 24px;
}

.ext-card-body h3 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--black);
}

.ext-card-body p {
  font-size: 0.88rem;
  color: #666;
  margin-bottom: 14px;
}

.ext-features {
  margin-bottom: 20px;
}

.ext-features li {
  font-size: 0.83rem;
  color: var(--text);
  padding: 3px 0;
  font-weight: 600;
}

/* ===== PRODUCTS GRID ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  transition: transform 0.25s, box-shadow 0.25s;
  border-bottom: 4px solid transparent;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(255,20,147,0.15);
  border-bottom-color: var(--pink);
}

.product-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.product-card h3 {
  font-size: 0.95rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--black);
}

.product-card p {
  font-size: 0.8rem;
  color: #777;
  margin-bottom: 16px;
  line-height: 1.5;
}

/* ===== TRADE SECTION ===== */
.trade-section {
  background: var(--black);
  color: var(--white);
}

.trade-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.trade-kicker {
  display: inline-block;
  background: var(--yellow);
  color: var(--black);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 50px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.trade-content h2 {
  font-family: 'Black Han Sans', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 16px;
  color: var(--white);
}

.trade-content p {
  color: rgba(255,255,255,0.75);
  margin-bottom: 24px;
  font-size: 0.95rem;
}

.trade-list {
  margin-bottom: 28px;
}

.trade-list li {
  color: rgba(255,255,255,0.85);
  padding: 6px 0;
  font-size: 0.9rem;
  font-weight: 600;
}

.trade-visual {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.trade-card {
  background: rgba(255,255,255,0.07);
  border: 2px solid rgba(255,215,0,0.4);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  transition: all 0.25s;
}

.trade-card:hover {
  background: rgba(255,215,0,0.12);
  border-color: var(--yellow);
}

.trade-card--public {
  border-color: rgba(255,105,180,0.4);
}
.trade-card--public:hover { border-color: var(--pink); }

.trade-card-icon { font-size: 2.5rem; margin-bottom: 10px; }

.trade-card h3 {
  font-family: 'Black Han Sans', sans-serif;
  font-size: 1.5rem;
  color: var(--yellow);
  margin-bottom: 8px;
}

.trade-card--public h3 { color: var(--hot-pink); }

.trade-card p {
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
}

/* ===== WHY US ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  transition: transform 0.25s;
}

.why-card:hover { transform: translateY(-4px); }

.why-icon { font-size: 2.8rem; margin-bottom: 14px; }

.why-card h3 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--black);
}

.why-card p { font-size: 0.85rem; color: #666; line-height: 1.5; }

/* ===== CONTACT ===== */
.contact-section { background: var(--grey); }

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
}

.contact-info h2 {
  font-family: 'Black Han Sans', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  margin-bottom: 14px;
  color: var(--black);
}

.contact-info > p {
  color: #666;
  margin-bottom: 28px;
  font-size: 0.95rem;
}

.contact-details {
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.contact-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }

.contact-item strong {
  display: block;
  font-size: 0.85rem;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.contact-item p, .contact-item a {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.5;
}

.contact-item a:hover { color: var(--pink); }

/* FORM */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
}

.contact-form-wrap h3 {
  font-family: 'Black Han Sans', sans-serif;
  font-size: 1.5rem;
  margin-bottom: 24px;
  color: var(--black);
}

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

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid #e0e0e0;
  border-radius: var(--radius-sm);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--pink);
}

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

.form-success {
  display: none;
  margin-top: 14px;
  background: #e8f5e9;
  color: #2e7d32;
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--dark);
  color: var(--white);
  padding: 52px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.footer-brand .logo-scissors {
  font-size: 2rem;
}

.footer-brand strong {
  display: block;
  font-family: 'Black Han Sans', sans-serif;
  font-size: 1.1rem;
  color: var(--yellow);
  margin-bottom: 4px;
}

.footer-brand p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
  color: var(--yellow);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--yellow); }

.footer-contact p,
.footer-contact a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 6px;
  display: block;
}

.footer-contact a:hover { color: var(--yellow); }

.footer-bottom {
  text-align: center;
  padding: 18px 20px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    border-top: 2px solid var(--yellow);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    gap: 14px;
  }
  .main-nav.open { display: flex; }
  .hamburger { display: flex; }

  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-image { display: none; }
  .hero-desc { margin: 0 auto 28px; }
  .hero-ctas { justify-content: center; }
  .hero-badges { justify-content: center; }

  .extensions-grid { grid-template-columns: 1fr; }
  .trade-inner { grid-template-columns: 1fr; gap: 40px; }
  .contact-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }

  .section { padding: 52px 0; }
}

@media (max-width: 500px) {
  .trust-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .contact-form-wrap { padding: 24px 16px; }
}
