/* ===== STYLEBYTT — GLOBAL STYLES ===== */

:root {
  --pink:    #E91E8C;
  --pink-lt: #FF6BBB;
  --purple:  #6C3FC5;
  --dark:    #1A1A2E;
  --grey:    #F7F5FF;
  --white:   #FFFFFF;
  --text:    #333340;
  --muted:   #777790;
  --radius:  14px;
  --shadow:  0 4px 24px rgba(108,63,197,.12);
}

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

html { scroll-behavior: smooth; }

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

/* ===== NAV ===== */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 5%;
  background: var(--white);
  border-bottom: 1px solid rgba(108,63,197,.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--purple);
  text-decoration: none;
  letter-spacing: -0.5px;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

nav ul a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  font-size: .95rem;
  transition: color .2s;
}

nav ul a:hover { color: var(--pink); }

.nav-toggle { display: none; background: none; border: none; font-size: 1.4rem; cursor: pointer; color: var(--purple); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: .85rem 2.2rem;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: var(--white);
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .3px;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 16px rgba(233,30,140,.3);
}

.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(233,30,140,.4); }

.btn-light {
  background: var(--white);
  color: var(--purple);
  box-shadow: 0 4px 16px rgba(108,63,197,.2);
}

.btn-light:hover { box-shadow: 0 6px 24px rgba(108,63,197,.35); }

/* ===== HERO ===== */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6rem 5% 5rem;
  background: linear-gradient(135deg, #F7F5FF 0%, #FFF0F8 100%);
  min-height: 80vh;
  gap: 3rem;
}

.hero-content { flex: 1; max-width: 520px; }

.hero-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: var(--white);
  padding: .35rem 1.1rem;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 5vw, 4rem);
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 1.2rem;
}

.hero p {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 2rem;
  max-width: 420px;
}

.hero-visual { flex: 1; display: flex; justify-content: center; }

.hero-card {
  width: 340px;
  height: 420px;
  border-radius: 24px;
  background: linear-gradient(145deg, var(--pink-lt), var(--purple));
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(108,63,197,.25);
}

.hero-card::before {
  content: '👗';
  position: absolute;
  font-size: 8rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  opacity: .4;
}

.hero-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: var(--white);
  color: var(--purple);
  padding: .5rem 1.2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: .9rem;
}

/* ===== PLATFORMS ===== */
.platforms {
  padding: 5rem 5%;
  text-align: center;
}

.platforms-label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 2.5rem;
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  max-width: 900px;
  margin: 0 auto;
}

.platform-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  border-radius: var(--radius);
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
  box-shadow: var(--shadow);
}

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

.whatnot  { background: linear-gradient(135deg, #1a1a2e, #16213e); color: var(--white); }
.ebay     { background: linear-gradient(135deg, #e53238, #f5af02); color: var(--white); }
.poshmark { background: linear-gradient(135deg, #e31c3d, #c01230); color: var(--white); }
.mercari  { background: linear-gradient(135deg, #e74c3c, #c0392b); color: var(--white); }

.platform-name { font-weight: 700; font-size: 1.05rem; margin-bottom: .3rem; }
.platform-sub  { font-size: .8rem; opacity: .8; }

/* ===== CATEGORIES ===== */
.categories {
  padding: 5rem 5%;
  background: var(--grey);
}

.categories h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  text-align: center;
  color: var(--dark);
  margin-bottom: 3rem;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.category-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform .2s;
}

.category-card:hover { transform: translateY(-3px); }

.category-icon { font-size: 2.5rem; margin-bottom: 1rem; }

.category-card h3 {
  font-weight: 700;
  color: var(--dark);
  margin-bottom: .5rem;
}

.category-card p { font-size: .9rem; color: var(--muted); }

/* ===== CTA ===== */
.cta {
  background: linear-gradient(135deg, var(--purple), var(--pink));
  padding: 6rem 5%;
  text-align: center;
  color: var(--white);
}

.cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  margin-bottom: 1rem;
}

.cta p { font-size: 1.05rem; opacity: .9; margin-bottom: 2.5rem; max-width: 500px; margin-left: auto; margin-right: auto; }

/* ===== FOOTER ===== */
footer {
  background: var(--dark);
  padding: 2.5rem 5%;
  color: rgba(255,255,255,.6);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--white);
  font-weight: 700;
}

.footer-nav { display: flex; gap: 2rem; }
.footer-nav a { color: rgba(255,255,255,.6); text-decoration: none; font-size: .9rem; transition: color .2s; }
.footer-nav a:hover { color: var(--pink-lt); }

.footer-legal { font-size: .8rem; }

/* ===== PAGE HEADER (inner pages) ===== */
.page-header {
  background: linear-gradient(135deg, #F7F5FF, #FFF0F8);
  padding: 5rem 5% 4rem;
  text-align: center;
}

.page-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  color: var(--dark);
  margin-bottom: .8rem;
}

.page-header p { color: var(--muted); font-size: 1.05rem; }

/* ===== SHOP PAGE ===== */
.shop-section { padding: 4rem 5%; }
.shop-section h2 { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: var(--dark); margin-bottom: 2.5rem; }

.shop-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; max-width: 860px; margin: 0 auto; }

.shop-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem;
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--white);
  box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s;
}

.shop-card:hover { transform: translateY(-4px); box-shadow: 0 10px 40px rgba(0,0,0,.15); }

.shop-card .icon { font-size: 2.8rem; }

.shop-card .info h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: .3rem; }
.shop-card .info p { font-size: .85rem; opacity: .85; }
.shop-card .arrow { margin-left: auto; font-size: 1.4rem; opacity: .7; }

/* ===== ABOUT PAGE ===== */
.about-section { padding: 5rem 5%; max-width: 760px; margin: 0 auto; }
.about-section h2 { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--dark); margin-bottom: 1.2rem; }
.about-section p { color: var(--muted); margin-bottom: 1.5rem; font-size: 1rem; line-height: 1.8; }

/* ===== CONTACT PAGE ===== */
.contact-section { padding: 5rem 5%; max-width: 600px; margin: 0 auto; }
.contact-section h2 { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--dark); margin-bottom: .8rem; }
.contact-section > p { color: var(--muted); margin-bottom: 2.5rem; }

form { display: flex; flex-direction: column; gap: 1.2rem; }
label { font-weight: 600; font-size: .9rem; color: var(--dark); margin-bottom: .3rem; display: block; }
input, textarea, select {
  width: 100%;
  padding: .9rem 1.1rem;
  border: 1.5px solid rgba(108,63,197,.2);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: .95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color .2s;
}
input:focus, textarea:focus { outline: none; border-color: var(--purple); }
textarea { resize: vertical; min-height: 130px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .platform-grid, .category-grid { grid-template-columns: repeat(2, 1fr); }
  .shop-grid { grid-template-columns: 1fr; }
  .hero { flex-direction: column; text-align: center; padding: 4rem 5%; min-height: auto; }
  .hero-content { max-width: 100%; }
  .hero-visual { display: none; }
  .hero p { margin: 0 auto 2rem; }
}

@media (max-width: 600px) {
  nav ul { display: none; }
  .nav-toggle { display: block; }
  .platform-grid { grid-template-columns: repeat(2, 1fr); }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-nav { justify-content: center; }
}
