/* BASIC RESET */
body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  background: #f9f5ff;
  color: #111;
}

/* HERO SECTION */
.hero {
  position: relative;
  text-align: center;
  padding: 6rem 1rem;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;

  background:
    linear-gradient(rgba(10, 4, 25, 0.7), rgba(10, 4, 25, 0.75)),
    url("hero.JPEG");
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;

  color: #ffffff;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin: 0;
}

.tagline {
  margin-top: 0.5rem;
  font-size: 1.4rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #c8a2ff;
}

/* HERO BUTTON */
.hero-btn {
  margin: 2rem auto 0;
  padding: 0.9rem 2.5rem;
  border-radius: 999px;
  border: none;
  background: linear-gradient(90deg, #ff7ad9, #c78bff);
  color: #0b0714;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.hero-btn:hover {
  filter: brightness(1.05);
}

/* POPUP OVERLAY */
.signup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

/* POPUP BOX */
.signup-modal {
  position: relative; /* IMPORTANT */
  background: #0b0714;
  color: #f7ecff;
  padding: 2rem 2.5rem;
  border-radius: 1.5rem;
  max-width: 380px;
  width: 90%;
  text-align: left;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.signup-modal h2 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.signup-modal p {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

/* FORM */
.signup-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.signup-form label {
  display: flex;
  flex-direction: column;
  font-size: 0.85rem;
}

.signup-form input {
  margin-top: 0.25rem;
  padding: 0.6rem 0.75rem;
  border-radius: 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: #161026;
  color: #f7ecff;
}

.signup-form input::placeholder {
  color: rgba(247, 236, 255, 0.6);
}

.signup-submit {
  margin-top: 0.8rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  border: none;
  background: linear-gradient(90deg, #ff7ad9, #c78bff);
  color: #0b0714;
  font-weight: 600;
  cursor: pointer;
}

/* CLOSE BUTTON */
.signup-close {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.12);
  color: #f7ecff;
  font-size: 1.4rem;
  cursor: pointer;
}

.signup-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* HIDE / SHOW */
.signup-overlay.hidden {
  display: none;
}

.hero-actions {
  display: flex;
  flex-direction: column;   /* STACK */
  align-items: center;      /* CENTER */
  gap: 1rem;                /* SPACE BETWEEN */
  margin-top: 2rem;
}

/* make links behave like buttons */
.hero-actions a {
  text-decoration: none;
}
 

/* TOP BAR */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  background: rgba(11, 7, 20, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.topbar-logo {
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #ffffff;
  text-decoration: none;
}

.topbar-links {
  display: flex;
  gap: 1rem;
}

.topbar-links a {
  color: rgba(247, 236, 255, 0.85);
  text-decoration: none;
  font-size: 0.95rem;
}

.topbar-links a:hover {
  color: #c8a2ff;
}

/* PAGE LAYOUT */
.page {
  padding: 3rem 1.25rem 4rem;
  max-width: 1100px;
  margin: 0 auto;
}

.page-title {
  margin: 0;
  font-size: 2.1rem;
  letter-spacing: 0.05em;
}

.page-subtitle {
  margin-top: 0.6rem;
  opacity: 0.8;
}

.page-cta {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
}

/* PRODUCT GRID */
.product-grid {
  margin-top: 2rem;
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.product-card {
  background: #0b0714;
  color: #f7ecff;
  border-radius: 1.25rem;
  padding: 1rem;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 16px 40px rgba(0,0,0,0.25);
}

.product-img {
  height: 190px;
  border-radius: 1rem;
  margin-bottom: 0.9rem;
}

.price {
  margin: 0.4rem 0 1rem;
  opacity: 0.8;
}

.buy-btn {
  display: block;
  text-align: center;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  background: linear-gradient(90deg, #ff7ad9, #c78bff);
  color: #0b0714;
}

/* LOOKBOOK GRID */
.lookbook-grid {
  margin-top: 2rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.lookbook-img {
  height: 280px;
  border-radius: 1.25rem;
}

/* PLACEHOLDER BLOCKS */
.placeholder {
  background: linear-gradient(135deg, rgba(255,122,217,0.18), rgba(199,139,255,0.18));
  border: 1px dashed rgba(255,255,255,0.25);
}

/* ===== Lookbook: Cute Polaroid Collage ===== */
.lookbook-stage{
  min-height: 100vh;
  padding: 40px 20px 60px; /* REDUCED top padding */
  position: relative;
  overflow: hidden;
  text-align: center;
  background: #0b0d12;
}


/* subtle clover pattern */
.lookbook-stage::before{
  content:"";
  position:absolute;
  inset:0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Ctext x='30' y='38' text-anchor='middle' font-size='22'%3E%F0%9F%8D%80%3C/text%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 60px 60px;
  opacity: 0.20;
  pointer-events:none;
  z-index:1;
}




/* vignette glow */
.lookbook-stage::after{
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(
    circle at center,
    rgba(0,0,0,0.15) 0%,
    rgba(0,0,0,0.55) 65%,
    rgba(0,0,0,0.75) 100%
  );
  pointer-events:none;
  z-index: 1;
}
 
.lookbook-stage > *{
  position: relative;
  z-index: 2;
}




.lb-title{
  position: relative;
  z-index: 2;
  margin: 0;
  font-size: 40px;
  letter-spacing: 6px;
  font-weight: 700;
  color: #ff5ea8; /* pink pop */
}

.lb-subtitle{
  position: relative;
  z-index: 2;
  margin: 8px 0 0;
  letter-spacing: 4px;
  font-size: 14px;
  color: rgba(255,255,255,.85);
}

.lb-kicker{
  position: relative;
  z-index: 2;
  margin: 6px 0 30px;
  letter-spacing: 3px;
  font-size: 12px;
  color: rgba(100,255,190,.9);
}

.polaroid-wrap{
  position: relative;
  z-index: 2;
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 16px;
  justify-items: center;
  align-items: start;
  align-content: start;
}

.polaroid{
  width: min(360px, 42vw);
  background: #fff;
  border-radius: 10px;
  padding: 14px 14px 18px;
  box-shadow: 0 18px 45px rgba(0,0,0,.45);
  transform-origin: center;
}

.polaroid img{
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 8px;
  display:block;
  background: #eee;
}

.polaroid figcaption{
  margin-top: 10px;
  font-size: 13px;
  letter-spacing: .5px;
  color: rgba(0,0,0,.75);
}

/* tilts for scrapbook vibe */
.tilt-left  { transform: rotate(-7deg); }
.tilt-right { transform: rotate(6deg);  }
.tilt-left2 { transform: rotate(-4deg) translateY(10px); }
.tilt-right2{ transform: rotate(8deg) translateY(14px); }

.polaroid:hover{
  transform: rotate(0deg) scale(1.02);
  transition: transform .2s ease;
}

/* Mobile: one column */
@media (max-width: 720px){
  .polaroid-wrap{ grid-template-columns: 1fr; }
  .polaroid{ width: min(380px, 88vw); }
  .polaroid img{ height: 380px; }
}

.editors-note{
  position: relative;
  z-index: 2;
  max-width: 620px;
  margin: 12px auto 28px;
  padding: 16px 18px;
  border-radius: 18px;

  background: rgba(15, 12, 20, 0.6);
  backdrop-filter: blur(14px);

  border: 1px solid rgba(255, 105, 180, 0.45);

box-shadow:
  0 0 20px rgba(255,105,180,0.18),
  0 12px 30px rgba(0,0,0,0.35);
; /* PINK BORDER */
  box-shadow:
    0 0 0 1px rgba(255,105,180,0.25),
    0 10px 30px rgba(0,0,0,0.35);
}

.editors-note p{
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.9);
  text-align: center;
}

.editors-note p + p{
  margin-top: 8px;
  color: rgba(255,255,255,0.75);
}

/* ===== SHOP THE DROP STAGE ===== */
.shop-stage{
  min-height: 100vh;
  padding: 80px 20px 100px;
  position: relative;
  overflow: hidden;
  text-align: center;
  background: #0b0d12;
}

/* Clover background (same as Look Book) */
.shop-stage::before{
  content:"";
  position:absolute;
  inset:0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Ctext x='30' y='38' text-anchor='middle' font-size='22'%3E%F0%9F%8D%80%3C/text%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 60px 60px;
  opacity: 0.26;
  pointer-events:none;
  z-index:1;
}

/* Vignette */
.shop-stage::after{
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(
    circle at center,
    rgba(0,0,0,0.15) 0%,
    rgba(0,0,0,0.6) 65%,
    rgba(0,0,0,0.85) 100%
  );
  pointer-events:none;
  z-index:1;
}

/* Keep content above background */
/* ===== SHOP PAGE: VIXYN VIBE ===== */

.shop-body{
  background: #0b0d12;
  color: #fff;
}

/* stage background */
.shop-stage{
  min-height: 100vh;
  padding: 70px 20px 90px;
  position: relative;
  overflow: hidden;
  text-align: center;
  background: #0b0d12;
}

/* repeating clover pattern */
.shop-stage::before{
  content:"";
  position:absolute;
  inset:0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Ctext x='30' y='38' text-anchor='middle' font-size='22'%3E%F0%9F%8D%80%3C/text%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 60px 60px;
  opacity: 0.26;
  pointer-events:none;
  z-index: 1;
}

/* vignette */
.shop-stage::after{
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(
    circle at center,
    rgba(0,0,0,0.15) 0%,
    rgba(0,0,0,0.6) 65%,
    rgba(0,0,0,0.85) 100%
  );
  pointer-events:none;
  z-index: 1;
}

/* keep content above background */
.shop-stage > *{
  position: relative;
  z-index: 2;
}

/* title */
.shop-title{
  margin: 0;
  font-size: 40px;
  letter-spacing: 6px;
  font-weight: 700;
  color: #ff5ea8;
}

.shop-subtitle{
  margin: 10px 0 18px;
  letter-spacing: 3px;
  font-size: 13px;
  color: rgba(100,255,190,.9);
}

/* little details strip */

.shop-note{
  margin: 18px auto 40px;
  max-width: 520px;
  padding: 14px 22px;
  text-align: center;

  border-radius: 999px;
  border: 1px solid rgba(255, 122, 217, 0.6); /* pink outline */
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(10px);
}

.shop-note span{
  font-size: 13px;
  letter-spacing: 2px;
  font-weight: 500;
  color: #7CFFD6; /* softer mint green */
  text-transform: uppercase;
}


/* grid */
.shop-grid{
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  align-items: start;
}

/* product card */
.shop-card{
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  padding: 18px;
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.45);
}

.shop-img{
  height: 240px;
  border-radius: 14px;
  margin-bottom: 14px;
  overflow: hidden;
}

.shop-name{
  margin: 0 0 6px;
  font-weight: 600;
  font-size: 16px;
  color: rgba(255,255,255,0.92);
}

.shop-price{
  margin: 0 0 14px;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}

/* coming soon button */
.shop-btn{
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  border: none;
  background: linear-gradient(90deg, #ff7ad9, #c78bff);
  color: #0b0714;
  font-weight: 700;
  opacity: 0.75;   /* looks disabled but still cute */
  cursor: not-allowed;
}

/* placeholder block (re-use your existing placeholder look) */
.shop-img.placeholder{
  background: linear-gradient(135deg, rgba(255,122,217,0.18), rgba(199,139,255,0.18));
  border: 1px dashed rgba(255,255,255,0.18);
}

/* CTA */
.shop-cta{
  margin-top: 32px;
  display: flex;
  justify-content: center;
}

/* Mobile tune */
@media (max-width: 520px){
  .shop-title{ font-size: 32px; }
  .shop-img{ height: 220px; }
}

/* Cute font for product names */
.shop-name{
  font-family: "Fraunces", serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: 18px;
  margin: 0 0 6px;
}

/* Image area now uses real <img> and crops correctly */
.shop-img{
  height: 240px;
  border-radius: 14px;
  margin-bottom: 14px;
  overflow: hidden;
  position: relative;
  background: rgba(255,255,255,0.06);
}

/* Both images stacked */
.shop-img img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;              /* THIS is the “zoom” crop */
  object-position: center 20%;    /* moves subject up a bit */
  transform: scale(1.12);         /* subtle zoom-in */
  transition: opacity .25s ease, transform .35s ease;
  image-rendering: auto;
}

/* Hover swap: show alt image */
.shop-img .img-alt{ opacity: 0; }
.shop-card:hover .shop-img .img-main{ opacity: 0; }
.shop-card:hover .shop-img .img-alt{ opacity: 1; }
.shop-card:hover .shop-img img{ transform: scale(1.16); }

/* Per-product framing tweaks (so faces + dress sit better) */
.zoom-clover .shop-img img{ object-position: center 18%; }
.zoom-crown  .shop-img img{ object-position: center 28%; }
 

/* =========================
   SHOP THE DROP — CLEAN FIX
   Paste at BOTTOM of CSS
   ========================= */

/* cuter product name font */
.shop-name{
  font-family: "Fraunces", serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: 18px;
  margin: 0 0 6px;
  color: rgba(255,255,255,0.92);
}

/* make the grid feel tighter + less huge */
.shop-grid{
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

/* slimmer cards (less chunky boxes) */
.shop-card{
  padding: 14px;
  border-radius: 16px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.35);
}

/* image window: a little taller to show more dress */
.shop-img{
  height: 260px;
  border-radius: 14px;
  margin-bottom: 12px;
  overflow: hidden;
  position: relative;
  background: rgba(255,255,255,0.06);
}

/* REAL images: less zoom + better framing */
.shop-img img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);            /* LESS zoom */
  object-position: center 25%;       /* shows more dress */
  transition: opacity .25s ease, transform .35s ease;
}

/* Hover swap (second photo) */
.shop-img .img-alt{ opacity: 0; }
.shop-card:hover .shop-img .img-main{ opacity: 0; }
.shop-card:hover .shop-img .img-alt{ opacity: 1; }
.shop-card:hover .shop-img img{ transform: scale(1.04); }  /* small hover zoom only */

/* Fine-tune each product framing */
.zoom-clover .shop-img img{ object-position: center 22%; }
.zoom-crown  .shop-img img{ object-position: center 30%; }

/* button: less thick */
.shop-btn{
  width: 100%;
  padding: 0.72rem 1rem;
  font-size: 0.95rem;
  border-radius: 999px;
}

/* mobile */
@media (max-width: 760px){
  .shop-grid{ grid-template-columns: 1fr; }
}



/* ===== SIDE SCROLL ARROW ===== */
.scroll-arrow{
  position: absolute;

  /* sits near Look Book button */
  right: 26px;
  top: 58%;
  transform: translateY(-50%);

  background: transparent;
  border: none;

  font-size: 26px;
  font-weight: 600;
  color: #ff7ad9;

  cursor: pointer;
  animation: arrowBounce 1.6s infinite;
}

/* bounce animation */
@keyframes arrowBounce{
  0%   { transform: translateY(-50%) translateY(0); }
  50%  { transform: translateY(-50%) translateY(10px); }
  100% { transform: translateY(-50%) translateY(0); }
}

/* hover */
.scroll-arrow:hover{
  color: #c78bff;
}

/* mobile tweak */
@media (max-width: 520px){
  .scroll-arrow{
    right: 14px;
    top: 62%;
  }
}


