/* ============================================================
   GALAXY — Montres · Landing page (mobile-first)
   Palette : Ink #12100D · Panel #1C1815 · Gold #C9A24B
             Gold bright #E7CD8A · Cream #F6EFE2 · Line #3A3128
   Display : Cormorant Garamond · Body : Inter · Arabic : Cairo
   ============================================================ */

:root{
  --ink:        #12100D;
  --panel:      #1C1815;
  --panel-2:    #211C18;
  --gold:       #C9A24B;
  --gold-bright:#E7CD8A;
  --gold-dim:   #8A6E33;
  --cream:      #F6EFE2;
  --cream-dim:  #C9C0AE;
  --line:       #3A3128;
  --ok:         #6FA875;
  --err:        #D77B63;
  --radius:     18px;
  --max:        480px;
  --shadow:     0 20px 40px -20px rgba(0,0,0,.6);
}

*{ box-sizing: border-box; }
html{ -webkit-text-size-adjust: 100%; }

body{
  margin:0;
  background: var(--ink);
  background-image:
    radial-gradient(circle at 50% -10%, rgba(201,162,75,.14), transparent 55%),
    linear-gradient(180deg, #12100D 0%, #0F0D0B 100%);
  color: var(--cream);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

.hero, .showcase, .trust-strip, .order, .footer, .ribbon-inner{
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

/* ===== Ribbon ===== */
.ribbon{
  background: linear-gradient(90deg, var(--gold-dim), var(--gold) 50%, var(--gold-dim));
  color: #191309;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .02em;
  text-align: center;
  padding: 8px 14px;
}
.ribbon-dot{
  display:inline-block;
  width:6px; height:6px;
  border-radius:50%;
  background:#191309;
  margin-right:6px;
  vertical-align:middle;
}

/* ===== Hero ===== */
.hero{
  padding: 34px 24px 26px;
  text-align: center;
}
.hero-brand{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  margin-bottom: 22px;
}
.brand-mark{
  color: var(--gold);
  font-size: 18px;
}
.brand-mark.small{ font-size: 13px; }
.brand-name{
  font-family:'Cormorant Garamond', serif;
  font-weight:600;
  font-size: 30px;
  letter-spacing: .22em;
  color: var(--cream);
}

.hero-copy{
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 6px;
}
.hero-fr{
  margin:0 0 12px;
  font-size: 16.5px;
  color: var(--cream);
}
.hero-fr strong{ color: var(--gold-bright); }
.hero-divider{
  color: var(--gold-dim);
  font-size: 11px;
  letter-spacing: .1em;
  margin: 4px 0;
  opacity:.7;
}
.hero-ar{
  margin:12px 0 0;
  font-family:'Cairo', sans-serif;
  font-weight: 600;
  font-size: 17.5px;
  color: var(--cream);
}

.hero-cta{
  display:inline-block;
  margin-top: 24px;
  color: var(--gold-bright);
  text-decoration:none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing:.03em;
  border-bottom: 1px solid var(--gold-dim);
  padding-bottom: 3px;
}

/* ===== Showcase / display case ===== */
.showcase{
  padding: 6px 20px 8px;
}
.case-frame{
  position: relative;
  border-radius: var(--radius);
  padding: 3px;
  background: linear-gradient(155deg, var(--gold-bright), var(--gold-dim) 55%, var(--gold));
  box-shadow: var(--shadow);
}
.case-frame::before,
.case-frame::after{
  content:"";
  position:absolute;
  width:16px; height:16px;
  border: 1.5px solid var(--gold-bright);
  opacity:.8;
  z-index:2;
  pointer-events:none;
}
.case-frame::before{ top:8px; left:8px; border-right:none; border-bottom:none; }
.case-frame::after{ bottom:8px; right:8px; border-left:none; border-top:none; }

.carousel{
  position:relative;
  display:flex;
  overflow-x:auto;
  scroll-snap-type: x mandatory;
  border-radius: calc(var(--radius) - 3px);
  background: radial-gradient(circle at 50% 40%, #23201B, #15120F 75%);
  scrollbar-width:none;
}
.carousel::-webkit-scrollbar{ display:none; }

.slide{
  min-width:100%;
  scroll-snap-align:center;
  display:flex;
  align-items:center;
  justify-content:center;
  aspect-ratio: 1 / 1;
}
.slide img{
  width:100%;
  height:100%;
  object-fit: cover;
}

.case-nav{
  position:absolute;
  top:50%;
  transform: translateY(-50%);
  width:36px; height:36px;
  border-radius:50%;
  border: 1px solid rgba(231,205,138,.4);
  background: rgba(18,16,13,.55);
  backdrop-filter: blur(3px);
  color: var(--gold-bright);
  font-size: 20px;
  line-height:1;
  cursor:pointer;
  z-index:3;
  display:flex;
  align-items:center;
  justify-content:center;
}
.case-nav.prev{ left:10px; }
.case-nav.next{ right:10px; }
.case-nav:active{ transform: translateY(-50%) scale(.92); }

.case-caption{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  padding: 14px 6px 4px;
  font-family:'Cormorant Garamond', serif;
}
#slideName{
  font-size: 16.5px;
  color: var(--cream);
  font-weight:600;
}
.case-price{
  font-size: 17px;
  font-weight:700;
  color: var(--gold-bright);
  white-space:nowrap;
}

.dots{
  display:flex;
  justify-content:center;
  gap:7px;
  margin: 12px 0 4px;
}
.dot{
  width:6px; height:6px;
  border-radius:50%;
  background: var(--line);
  transition: background .2s, transform .2s;
}
.dot.active{
  background: var(--gold);
  transform: scale(1.3);
}

/* ===== Trust strip ===== */
.trust-strip{
  display:flex;
  justify-content:space-between;
  gap: 8px;
  padding: 22px 20px 6px;
}
.trust-item{
  flex:1;
  text-align:center;
  font-size: 11.5px;
  color: var(--cream-dim);
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:6px;
}
.trust-item span{
  color: var(--gold);
  font-size: 15px;
}

/* ===== Order form ===== */
.order{
  margin-top: 20px;
  padding: 28px 22px 10px;
}
.order-title{
  font-family:'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight:700;
  margin: 0 0 4px;
  text-align:center;
  color: var(--cream);
}
.order-sub{
  text-align:center;
  font-size: 13.5px;
  color: var(--cream-dim);
  margin: 0 0 22px;
}

.order-form{
  display:flex;
  flex-direction:column;
  gap: 14px;
}

.field{
  display:flex;
  flex-direction:column;
  gap:7px;
}
.field-label{
  font-size: 12.5px;
  color: var(--cream-dim);
  letter-spacing:.02em;
}
.field-label em{
  color: var(--gold);
  font-style:normal;
}

input, select{
  appearance:none;
  -webkit-appearance:none;
  width:100%;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 13px 14px;
  font-size: 15px;
  color: var(--cream);
  font-family:'Inter', sans-serif;
  outline:none;
  transition: border-color .15s, box-shadow .15s;
}
input::placeholder{ color:#5c5548; }
input:focus, select:focus{
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,162,75,.18);
}
select{
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8'><path d='M1 1l5 5 5-5' stroke='%23C9A24B' stroke-width='1.6' fill='none' fill-rule='evenodd'/></svg>");
  background-repeat:no-repeat;
  background-position: right 14px center;
  padding-right: 34px;
}
select:invalid{ color:#5c5548; }
select option{ color: #000; }

input:invalid.touched, select:invalid.touched{
  border-color: var(--err);
}

.submit-btn{
  margin-top: 6px;
  width:100%;
  border:none;
  border-radius: 12px;
  padding: 16px 18px;
  background: linear-gradient(90deg, var(--gold-dim), var(--gold) 50%, var(--gold-bright));
  color: #171208;
  font-size: 15.5px;
  font-weight:700;
  letter-spacing:.01em;
  cursor:pointer;
  box-shadow: 0 12px 24px -10px rgba(201,162,75,.55);
}
.submit-btn:active{ transform: translateY(1px); }
.submit-btn[disabled]{ opacity:.6; cursor:not-allowed; }

.form-status{
  min-height: 18px;
  text-align:center;
  font-size: 13.5px;
  margin: 4px 0 10px;
}
.form-status.ok{ color: var(--ok); }
.form-status.err{ color: var(--err); }

/* ===== Footer ===== */
.footer{
  text-align:center;
  padding: 26px 20px 40px;
  color: var(--cream-dim);
  font-size: 12px;
  letter-spacing:.03em;
}

/* ===== Wider screens: keep it a centered mobile card ===== */
@media (min-width: 560px){
  body{
    display:flex;
    justify-content:center;
  }
  .hero, .showcase, .trust-strip, .order, .footer{
    width: var(--max);
  }
}
