/* ============================================
   CREATE CANVAS – Photo Magnets
   Brand: Dark/charcoal + orange aperture accent
   ============================================ */

:root {
  --black:       #1a1208;
  --dark:        #231a0f;
  --charcoal:    #2d2416;
  --cream:       #fdf8f2;
  --warm-white:  #fff9f3;
  --orange:      #e8621a;
  --orange-light:#f5874a;
  --orange-pale: #fef0e0;
  --brown:       #4a2e1a;
  --muted:       #7a6555;
  --green:       #2a7a4a;
  --red:         #d63a2a;
  --shadow:      rgba(26,18,8,.13);
  --radius:      16px;
  --radius-sm:   10px;
  --font-display:'Playfair Display', Georgia, serif;
  --font-body:   'Inter', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--cream); color: var(--black); line-height: 1.6; }

/* ── LANG BAR ── */
.lang-bar {
  background: var(--black);
  padding: 10px 24px;
  position: sticky; top: 0; z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.lang-inner {
  max-width: 960px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { height: 32px; object-fit: contain; }
.lang-btns { display: flex; gap: 8px; }
.lang-btn {
  padding: 5px 14px;
  border: 1.5px solid rgba(255,255,255,.2);
  border-radius: 99px;
  background: transparent; color: rgba(255,255,255,.7);
  font-family: var(--font-body); font-size: .82rem; font-weight: 600;
  cursor: pointer; transition: all .18s;
}
.lang-btn:hover { border-color: var(--orange); color: var(--orange); }
.lang-btn.active { background: var(--orange); border-color: var(--orange); color: #fff; }

/* ── HERO — split layout, fits viewport ── */
.hero {
  min-height: calc(100vh - 52px); /* full viewport minus navbar */
  background: var(--black);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 48px 60px;
  gap: 40px;
}
.hero-overlay {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 80% 90% at 0% 50%, rgba(232,98,26,.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 60% at 100% 20%, rgba(74,30,10,.5) 0%, transparent 55%);
}
.hero-overlay::after {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    45deg, transparent, transparent 32px,
    rgba(255,255,255,.008) 32px, rgba(255,255,255,.008) 33px
  );
}

/* ── Left: copy ── */
.hero-content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: flex-start;
}

.hero-eyebrow {
  display: flex; align-items: center; gap: 10px;
  font-size: .78rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--orange-light);
  margin-bottom: 20px;
  animation: fadeLeft .5s ease both;
}
.dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 3px rgba(232,98,26,.25);
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 3px rgba(232,98,26,.25); }
  50%      { box-shadow: 0 0 0 7px rgba(232,98,26,.1); }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 900; color: var(--cream);
  line-height: 1.1; margin-bottom: 18px;
  animation: fadeLeft .5s .1s ease both;
}
.hero h1 em {
  font-style: italic; color: var(--orange-light);
  display: block;
}
.hero-sub {
  color: rgba(253,248,242,.65); font-size: 1rem;
  max-width: 400px; margin-bottom: 28px; line-height: 1.65;
  animation: fadeLeft .5s .2s ease both;
}

/* Inline steps strip */
.hero-steps {
  display: flex; align-items: center; gap: 6px;
  flex-wrap: wrap; margin-bottom: 32px;
  animation: fadeLeft .5s .28s ease both;
}
.hero-step { display: flex; align-items: center; gap: 7px; }
.hs-num {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--orange); color: #fff;
  font-size: .72rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hs-label { font-size: .8rem; color: rgba(253,248,242,.7); white-space: nowrap; }
.hs-arrow { color: var(--orange); opacity: .5; font-size: .9rem; padding: 0 2px; }

.hero-cta {
  animation: fadeLeft .5s .35s ease both;
  font-size: 1rem; padding: 15px 34px;
  box-shadow: 0 4px 24px rgba(232,98,26,.4);
}

@keyframes fadeLeft {
  from { opacity:0; transform: translateX(-20px); }
  to   { opacity:1; transform: translateX(0); }
}

/* ── Right: magnet grid ── */
.hero-visual {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
  animation: fadeRight .6s .15s ease both;
}
@keyframes fadeRight {
  from { opacity:0; transform: translateX(24px); }
  to   { opacity:1; transform: translateX(0); }
}

.magnet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  width: 100%;
  max-width: 340px;
}
.mg-card {
  aspect-ratio: 1;
  border-radius: 12px;
  background: linear-gradient(135deg, #2d2010 0%, #1a1208 100%);
  border: 1.5px solid rgba(232,98,26,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.2rem;
  position: relative; overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.5), 0 1px 0 rgba(255,255,255,.05) inset;
  transition: transform .3s ease, box-shadow .3s ease;
  cursor: default;
}
.mg-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.06) 0%, transparent 50%);
  border-radius: inherit;
}
/* Subtle gloss sweep on hover */
.mg-card:hover {
  transform: translateY(-4px) rotate(-1deg);
  box-shadow: 0 10px 32px rgba(0,0,0,.6), 0 1px 0 rgba(255,255,255,.08) inset;
  border-color: rgba(232,98,26,.45);
}
/* Staggered entrance animations */
.mg-c1 { animation: cardPop .5s .3s ease both; }
.mg-c2 { animation: cardPop .5s .38s ease both; }
.mg-c3 { animation: cardPop .5s .46s ease both; }
.mg-c4 { animation: cardPop .5s .54s ease both; }
.mg-c5 { animation: cardPop .5s .62s ease both; }
.mg-c6 { animation: cardPop .5s .70s ease both; }
@keyframes cardPop {
  from { opacity:0; transform: scale(.7) translateY(10px); }
  to   { opacity:1; transform: scale(1) translateY(0); }
}

.magnet-label {
  font-size: .78rem; color: rgba(253,248,242,.35);
  letter-spacing: .08em; text-transform: uppercase;
  text-align: center;
}

/* ── MOBILE: stack vertically ── */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 36px 24px 28px;
    min-height: calc(100vh - 52px);
    text-align: center;
  }
  .hero-content { align-items: center; }
  .hero-eyebrow { justify-content: center; }
  .hero-sub { max-width: 100%; }
  .hero-steps { justify-content: center; }
  .hero-visual { display: none; } /* hide on small screens to keep it tight */
}
@media (max-width: 480px) {
  .hero h1 { font-size: 2.2rem; }
}



/* ── CONTAINERS ── */
.container { max-width: 880px; margin: 0 auto; padding: 0 24px; }
section { padding: 72px 0; }
h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  font-weight: 900; color: var(--brown);
  text-align: center; margin-bottom: 8px;
}
.section-sub { text-align: center; color: var(--muted); margin-bottom: 48px; }

/* ── PRICING ── */
.pricing { background: var(--warm-white); }
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
@media (max-width: 600px) { .pricing-grid { grid-template-columns: 1fr; max-width: 340px; margin: 0 auto; } }

.price-card {
  position: relative; background: #fff;
  border: 2.5px solid #e8ddd3; border-radius: var(--radius);
  cursor: pointer; transition: all .22s; overflow: hidden; display: block;
}
.price-card:hover { border-color: var(--orange); transform: translateY(-3px); box-shadow: 0 8px 24px var(--shadow); }
.price-card input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0; }
.price-card.popular { border-color: var(--orange); box-shadow: 0 4px 20px rgba(232,98,26,.2); }
.popular-tag { background: var(--orange); color: #fff; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; text-align: center; padding: 6px; }
.card-inner { padding: 28px 20px; text-align: center; }
.photo-count { font-family: var(--font-display); font-size: 2rem; font-weight: 900; color: var(--brown); margin-bottom: 12px; }
.prices { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 10px; }
.old-price { text-decoration: line-through; color: #b0a099; font-size: .95rem; }
.new-price  { font-size: 1.6rem; font-weight: 700; color: var(--orange); }
.saving { font-size: .85rem; color: var(--green); font-weight: 600; background: #eaf6ef; padding: 4px 10px; border-radius: 99px; display: inline-block; }
.checkmark {
  position: absolute; top: 12px; right: 14px;
  width: 26px; height: 26px; border-radius: 50%;
  background: #e8ddd3; color: transparent;
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; font-weight: 700; transition: all .2s;
}
.price-card:has(input:checked) { border-color: var(--orange); background: var(--orange-pale); }
.price-card:has(input:checked) .checkmark { background: var(--orange); color: #fff; }

/* ── FORM ── */
.order-section { background: var(--cream); }
.form-step {
  background: #fff; border-radius: var(--radius);
  padding: 32px; margin-bottom: 24px;
  border: 1.5px solid #ece5dc;
  box-shadow: 0 2px 12px var(--shadow);
}
.step-title {
  font-family: var(--font-display); font-size: 1.3rem; font-weight: 700;
  color: var(--brown); margin-bottom: 24px;
  display: flex; align-items: center; gap: 12px;
}
.step-num {
  width: 32px; height: 32px;
  background: var(--orange); color: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; font-weight: 700; font-family: var(--font-body);
  flex-shrink: 0;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 520px) { .form-row { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: .88rem; font-weight: 600; color: var(--brown); }
.form-group input {
  padding: 12px 16px; border: 1.5px solid #ddd4c8;
  border-radius: var(--radius-sm); font-size: 1rem;
  font-family: var(--font-body); background: var(--warm-white);
  transition: border .2s;
}
.form-group input:focus { outline: none; border-color: var(--orange); }

/* ── TABS ── */
.upload-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.tab-btn {
  padding: 9px 18px; border: 1.5px solid #ddd4c8; border-radius: 99px;
  background: var(--warm-white); cursor: pointer;
  font-family: var(--font-body); font-size: .9rem; color: var(--brown);
  transition: all .18s;
}
.tab-btn:hover  { border-color: var(--orange); }
.tab-btn.active { background: var(--orange); border-color: var(--orange); color: #fff; font-weight: 600; }
.tab-content { display: none; }
.tab-content.active { display: block; }

/* ── DROP ZONE ── */
.drop-zone {
  border: 2.5px dashed #d4c8bb; border-radius: var(--radius);
  padding: 48px 24px; text-align: center; cursor: pointer;
  transition: all .2s; background: var(--orange-pale);
}
.drop-zone:hover, .drop-zone.drag-over { border-color: var(--orange); background: #fde8d0; }
.drop-icon { font-size: 3rem; margin-bottom: 12px; }
.drop-zone p { color: var(--muted); margin-bottom: 20px; }
.btn-upload {
  padding: 12px 28px; background: var(--orange); color: #fff;
  border: none; border-radius: 99px; font-family: var(--font-body);
  font-size: .95rem; font-weight: 600; cursor: pointer; transition: background .18s;
}
.btn-upload:hover { background: #cc530e; }

/* ── SOCIAL / URL ── */
.social-info { text-align: center; padding: 36px 20px; background: var(--orange-pale); border-radius: var(--radius); }
.social-icon  { font-size: 3rem; margin-bottom: 12px; }
.social-info h4 { font-family: var(--font-display); font-size: 1.15rem; color: var(--brown); margin-bottom: 8px; }
.social-info p  { color: var(--muted); margin-bottom: 20px; }
.url-inputs { padding: 24px; background: var(--orange-pale); border-radius: var(--radius); }
.url-inputs h4 { font-family: var(--font-display); color: var(--brown); margin-bottom: 16px; }
.url-row { display: flex; gap: 10px; margin-bottom: 10px; }
.url-input {
  flex: 1; padding: 10px 14px; border: 1.5px solid #ddd4c8;
  border-radius: var(--radius-sm); font-family: var(--font-body); font-size: .95rem;
  background: #fff;
}
.url-input:focus { outline: none; border-color: var(--orange); }
.btn-add-url {
  width: 38px; height: 38px; background: var(--orange); color: #fff;
  border: none; border-radius: var(--radius-sm); font-size: 1.3rem;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background .18s;
}
.btn-add-url:hover { background: #cc530e; }
.url-hint { font-size: .85rem; color: var(--muted); }

/* ── PREVIEW ── */
.preview-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 12px; margin-top: 20px;
}
.preview-item {
  position: relative; aspect-ratio: 1;
  border-radius: var(--radius-sm); overflow: hidden;
  border: 2px solid #e0d5c8; animation: popIn .25s ease;
}
.preview-item img { width: 100%; height: 100%; object-fit: cover; }
.preview-remove {
  position: absolute; top: 4px; right: 4px;
  width: 22px; height: 22px; background: rgba(0,0,0,.65); color: #fff;
  border: none; border-radius: 50%; font-size: .8rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center; transition: background .15s;
}
.preview-remove:hover { background: var(--red); }
@keyframes popIn { from { opacity:0; transform:scale(.8); } to { opacity:1; transform:scale(1); } }

/* ── PAYMENT ── */
.order-summary { background: var(--orange-pale); border-radius: var(--radius-sm); padding: 16px 20px; margin-bottom: 24px; }
.summary-row { display: flex; justify-content: space-between; padding: 4px 0; color: var(--muted); }
.summary-row.total { font-weight: 700; font-size: 1.15rem; color: var(--brown); border-top: 1px solid #e0d0be; margin-top: 8px; padding-top: 12px; }
.payment-options { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.payment-option { border: 2px solid #e0d5c8; border-radius: var(--radius); cursor: pointer; transition: border .2s; overflow: hidden; }
.payment-option:has(input:checked) { border-color: var(--orange); background: var(--orange-pale); }
.payment-option input { position: absolute; opacity: 0; width: 0; height: 0; }
.payment-inner { display: flex; align-items: center; gap: 16px; padding: 18px 20px; }
.swish-logo    { height: 32px; object-fit: contain; }
.payment-icon  { font-size: 2rem; }
.payment-inner strong { display: block; color: var(--brown); }
.payment-inner p      { font-size: .88rem; color: var(--muted); margin: 0; }
.swish-number-box {
  background: #e8f5ee; border: 1.5px solid #b5dfc4;
  border-radius: var(--radius); padding: 20px 24px; text-align: center;
}
.swish-number-box p { color: #2a6040; margin-bottom: 8px; }
.swish-number { font-size: 1.8rem; font-weight: 900; color: var(--green); font-family: var(--font-display); letter-spacing: .04em; }
.swish-note { font-size: .85rem; color: #5a8070; margin-top: 8px !important; margin-bottom: 0 !important; }
.shop-box { background: #e8f0fe; border: 1.5px solid #b8cff8; border-radius: var(--radius); padding: 20px; color: #1a3a8a; text-align: center; }
.swish-instructions, .shop-instructions { margin-bottom: 24px; }

/* ── SUBMIT ── */
.btn-submit {
  width: 100%; padding: 18px;
  background: var(--orange); color: #fff;
  border: none; border-radius: var(--radius);
  font-family: var(--font-body); font-size: 1.1rem; font-weight: 700;
  cursor: pointer; letter-spacing: .02em;
  transition: background .2s, transform .1s; margin-bottom: 16px;
}
.btn-submit:hover    { background: #cc530e; }
.btn-submit:active   { transform: scale(.99); }
.btn-submit:disabled { background: #c9bdb4; cursor: not-allowed; }
.form-note { font-size: .8rem; color: #a09080; text-align: center; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block; background: var(--orange); color: #fff;
  padding: 14px 32px; border-radius: 99px;
  font-weight: 700; text-decoration: none;
  transition: background .2s, transform .1s;
  border: none; cursor: pointer; font-family: var(--font-body);
}
.btn-primary:hover { background: #cc530e; transform: translateY(-1px); }
.btn-secondary {
  display: inline-block; background: transparent;
  border: 2px solid var(--orange); color: var(--orange);
  padding: 10px 22px; border-radius: 99px;
  font-weight: 600; text-decoration: none; transition: all .18s;
}
.btn-secondary:hover { background: var(--orange); color: #fff; }

/* ── MODAL ── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 999;
  background: rgba(26,18,8,.75);
  display: flex; align-items: center; justify-content: center;
  padding: 24px; backdrop-filter: blur(4px);
}
.modal {
  background: #fff; border-radius: 24px;
  padding: 48px 36px; max-width: 420px; width: 100%;
  text-align: center; box-shadow: 0 24px 60px rgba(0,0,0,.35);
  animation: popIn .3s ease;
}
.modal-icon { font-size: 4rem; margin-bottom: 16px; }
.modal h3 { font-family: var(--font-display); font-size: 1.8rem; font-weight: 900; color: var(--brown); margin-bottom: 12px; }
.modal p   { color: var(--muted); margin-bottom: 12px; }
.modal-sub { font-size: .9rem; margin-bottom: 28px !important; }

/* ── FOOTER ── */
.footer { background: var(--black); padding: 36px 24px; }
.footer-inner { max-width: 880px; margin: 0 auto; text-align: center; }
.footer-logo { height: 40px; object-fit: contain; margin-bottom: 14px; display: block; margin-left: auto; margin-right: auto; }
.footer p { color: rgba(253,248,242,.45); font-size: .875rem; margin-bottom: 4px; }

/* ── ERRORS ── */
.error-msg {
  background: #fde8e8; border: 1.5px solid #f5b8b8;
  color: var(--red); padding: 12px 16px;
  border-radius: var(--radius-sm); margin-bottom: 16px; font-size: .9rem;
}

/* ── RESPONSIVE ── */
@media (max-width: 480px) {
  .form-step { padding: 20px 16px; }
  .hero { padding: 80px 20px 60px; }
  .hero-magnets .magnet { font-size: 1.5rem; opacity: .3; }
  .modal { padding: 32px 22px; }
}
