:root {
  --cream: #fff8f1;
  --paper: #fffdfa;
  --blush: #f4d7cf;
  --peach: #fae6dc;
  --terracotta: #c85f3c;
  --terracotta-dark: #a94529;
  --cocoa: #3b2925;
  --muted: #75645f;
  --sage: #5f866b;
  --sage-dark: #4b6f58;
  --line: #ead8ce;
  --white: #fff;
  --danger: #a63e32;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--cream);
  color: var(--cocoa);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  margin: 0;
}

button,
input,
select,
textarea {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  align-items: center;
  display: flex;
  gap: 28px;
  justify-content: space-between;
  margin: auto;
  max-width: 1320px;
  min-height: 92px;
  padding: 16px 32px;
}

.brand {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand strong {
  font-size: 1.55rem;
  letter-spacing: .04em;
}

.brand span {
  color: var(--terracotta-dark);
  font-size: .8rem;
  margin-top: 7px;
}

.site-header nav {
  display: flex;
  gap: 28px;
}

.site-header nav a {
  font-size: .9rem;
  font-weight: 700;
}

.site-header nav a:hover {
  color: var(--terracotta);
}

.pill-button,
.primary-button,
.whatsapp-button {
  align-items: center;
  border: 0;
  border-radius: 14px;
  cursor: pointer;
  display: inline-flex;
  font-weight: 800;
  gap: 9px;
  justify-content: center;
  transition: .18s ease;
}

.pill-button {
  background: var(--sage);
  color: var(--white);
  padding: 14px 20px;
}

.pill-button:hover,
.primary-button:hover,
.whatsapp-button:hover {
  box-shadow: 0 9px 22px rgb(75 111 88 / 20%);
  transform: translateY(-2px);
}

.hero {
  align-items: center;
  background:
    radial-gradient(circle at 13% 75%, rgb(244 215 207 / 76%) 0 14%, transparent 14.2%),
    radial-gradient(circle at 41% 68%, rgb(250 230 220 / 95%) 0 22%, transparent 22.2%);
  display: grid;
  gap: 62px;
  grid-template-columns: 1.05fr .95fr;
  margin: auto;
  max-width: 1320px;
  min-height: 560px;
  padding: 58px 72px 76px;
}

.eyebrow {
  color: var(--terracotta);
  font-size: .74rem;
  font-weight: 850;
  letter-spacing: .16em;
  margin: 0 0 14px;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
}

.hero h1 {
  font-size: clamp(3.4rem, 6vw, 5.4rem);
  letter-spacing: -.055em;
  line-height: .96;
  margin: 0;
}

.hero-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
  margin: 28px 0 22px;
  max-width: 610px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-row span {
  background: rgb(255 255 255 / 78%);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--sage-dark);
  font-size: .82rem;
  font-weight: 750;
  padding: 9px 13px;
}

.date-card,
.form-card,
.notice-card {
  background: rgb(255 253 250 / 95%);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 18px 44px rgb(59 41 37 / 10%);
}

.date-card {
  padding: 30px;
}

.date-card h2 {
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  margin: 0;
}

.cutoff {
  background: var(--peach);
  border-radius: 14px;
  margin: 20px 0;
  padding: 13px 16px;
}

.cutoff strong {
  color: var(--terracotta-dark);
}

.date-options {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, 1fr);
}

.date-option {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 17px;
  color: var(--cocoa);
  cursor: pointer;
  min-height: 110px;
  padding: 10px 7px;
  transition: .16s ease;
}

.date-option span,
.date-option small {
  display: block;
  font-size: .68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.date-option strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1.15;
}

.date-option.selected {
  background: var(--terracotta);
  border-color: var(--terracotta);
  box-shadow: 0 10px 24px rgb(200 95 60 / 22%);
  color: var(--white);
}

.date-note {
  color: var(--muted);
  font-size: .78rem;
  line-height: 1.5;
  margin: 15px 0 0;
  text-align: center;
}

.content-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: .9fr 1.1fr;
  margin: auto;
  max-width: 1320px;
  padding: 72px;
}

.notice-card,
.form-card {
  padding: 38px;
}

.notice-card {
  background: linear-gradient(150deg, var(--peach), #fff6ef);
}

.notice-card h2,
.form-card h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.08;
  margin: 0;
}

.notice-card > p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.75;
  margin-top: 22px;
}

.kind-notice {
  background: rgb(255 255 255 / 67%);
  border: 1px solid rgb(200 95 60 / 20%);
  border-radius: 20px;
  line-height: 1.65;
  margin-top: 26px;
  padding: 20px;
}

.form-card {
  background: var(--white);
}

.form-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, 1fr);
}

.field {
  display: flex;
  flex-direction: column;
  font-size: .82rem;
  font-weight: 750;
  gap: 8px;
  margin-top: 19px;
}

.field.full {
  grid-column: 1 / -1;
}

.field input,
.field select,
.field textarea,
.login-card input {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 13px;
  color: var(--cocoa);
  min-height: 50px;
  outline: none;
  padding: 12px 14px;
}

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

.field input:focus,
.field select:focus,
.field textarea:focus,
.login-card input:focus {
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgb(200 95 60 / 14%);
}

.checkbox-row {
  align-items: flex-start;
  display: flex;
  font-size: .84rem;
  gap: 10px;
  line-height: 1.5;
  margin: 22px 0;
}

.checkbox-row input {
  accent-color: var(--terracotta);
  height: 19px;
  margin-top: 2px;
  width: 19px;
}

.primary-button {
  background: var(--terracotta);
  color: var(--white);
  min-height: 58px;
  width: 100%;
}

.primary-button:hover {
  background: var(--terracotta-dark);
}

.button-loader {
  display: none;
}

.primary-button.loading .button-text {
  display: none;
}

.primary-button.loading .button-loader {
  display: inline;
}

.form-message {
  border-radius: 12px;
  display: none;
  font-size: .85rem;
  line-height: 1.5;
  margin-top: 14px;
  padding: 12px;
}

.form-message.success {
  background: #e8f4eb;
  color: #315c3d;
  display: block;
}

.form-message.error {
  background: #fae7e4;
  color: var(--danger);
  display: block;
}

.whatsapp-button {
  background: var(--sage);
  color: var(--white);
  display: none;
  margin-top: 12px;
  min-height: 54px;
  width: 100%;
}

.whatsapp-button.visible {
  display: inline-flex;
}

footer {
  align-items: center;
  background: var(--cocoa);
  color: var(--white);
  display: flex;
  gap: 28px;
  justify-content: space-between;
  padding: 32px max(32px, calc((100% - 1176px) / 2));
}

footer p {
  color: #d7c9c5;
  font-size: .76rem;
}

footer a {
  color: #f2c5b6;
  font-weight: 800;
}

/* Admin */
.admin-body {
  min-height: 100vh;
}

.admin-shell {
  margin: auto;
  max-width: 1320px;
  padding: 32px;
}

.admin-header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 28px;
}

.admin-header h1 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  margin: 0;
}

.secondary-button {
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--cocoa);
  cursor: pointer;
  font-weight: 750;
  padding: 11px 15px;
}

.login-wrap {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 75vh;
}

.login-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 25px;
  box-shadow: 0 18px 44px rgb(59 41 37 / 10%);
  max-width: 440px;
  padding: 36px;
  width: 100%;
}

.login-card h1 {
  font-size: 2.5rem;
  margin: 0 0 10px;
}

.login-card p {
  color: var(--muted);
  line-height: 1.6;
}

.login-card label {
  display: flex;
  flex-direction: column;
  font-size: .82rem;
  font-weight: 750;
  gap: 8px;
  margin-top: 17px;
}

.login-card .primary-button {
  margin-top: 22px;
}

.dashboard {
  display: none;
}

.dashboard.visible {
  display: block;
}

.login-wrap.visible {
  display: flex;
}

.login-wrap:not(.visible) {
  display: none;
}

.summary-grid {
  display: grid;
  gap: 15px;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 24px;
}

.summary-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
}

.summary-card span {
  color: var(--muted);
  font-size: .77rem;
  font-weight: 750;
  text-transform: uppercase;
}

.summary-card strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  margin-top: 8px;
}

.toolbar {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr 210px;
  margin-bottom: 20px;
}

.toolbar input,
.toolbar select {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 13px;
  min-height: 48px;
  padding: 0 14px;
}

.orders-list {
  display: grid;
  gap: 16px;
}

.order-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 23px;
}

.order-top {
  align-items: flex-start;
  display: flex;
  gap: 20px;
  justify-content: space-between;
}

.order-top h2 {
  font-family: inherit;
  font-size: 1.15rem;
  margin: 0 0 5px;
}

.order-top p {
  color: var(--muted);
  font-size: .8rem;
  margin: 0;
}

.status-select {
  border: 1px solid var(--line);
  border-radius: 11px;
  min-height: 42px;
  padding: 0 10px;
}

.order-details {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 20px;
}

.order-details div {
  background: var(--paper);
  border-radius: 12px;
  padding: 12px;
}

.order-details span {
  color: var(--muted);
  display: block;
  font-size: .7rem;
  font-weight: 750;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.customer-message {
  background: var(--peach);
  border-radius: 12px;
  line-height: 1.6;
  margin: 15px 0 0;
  padding: 13px;
}

.empty-state {
  background: var(--white);
  border: 1px dashed var(--line);
  border-radius: 20px;
  color: var(--muted);
  padding: 45px;
  text-align: center;
}

.hidden {
  display: none !important;
}

*:focus-visible {
  outline: 3px solid rgb(200 95 60 / 42%);
  outline-offset: 3px;
}

@media (max-width: 980px) {
  .site-header nav {
    display: none;
  }

  .hero,
  .content-grid {
    grid-template-columns: 1fr;
  }

  .hero,
  .content-grid {
    padding: 54px 38px;
  }

  .summary-grid,
  .order-details {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 80px;
    padding: 14px 20px;
  }

  .brand strong {
    font-size: 1.15rem;
  }

  .brand span {
    font-size: .65rem;
  }

  .pill-button {
    font-size: .75rem;
    padding: 12px;
  }

  .hero,
  .content-grid {
    gap: 38px;
    padding: 42px 20px 52px;
  }

  .hero h1 {
    font-size: clamp(3rem, 16vw, 4.2rem);
  }

  .date-card,
  .form-card,
  .notice-card {
    border-radius: 22px;
    padding: 23px;
  }

  .date-options {
    gap: 7px;
  }

  .date-option {
    min-height: 100px;
    padding: 8px 4px;
  }

  .form-grid,
  .toolbar,
  .summary-grid,
  .order-details {
    grid-template-columns: 1fr;
  }

  .field.full {
    grid-column: auto;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
    padding: 32px 20px;
  }

  .admin-shell {
    padding: 22px 16px;
  }

  .admin-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .order-top {
    flex-direction: column;
  }
}
.phone-brand-section {
  margin: 48px auto 0;
  max-width: 1180px;
}

.phone-brand-title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  margin: 0 0 22px;
  text-align: center;
}

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

.phone-product-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  padding: 20px;
  text-align: center;
  transition: 0.2s ease;
}

.phone-product-card:hover {
  box-shadow: 0 15px 38px rgba(45, 35, 25, 0.08);
  transform: translateY(-4px);
}

.phone-product-card img {
  background: var(--cream-light);
  height: 230px;
  object-fit: contain;
  padding: 12px;
  width: 100%;
}

.phone-product-card h4 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  margin: 18px 0 4px;
}

.phone-site-box {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 14px;
  margin: 45px auto 0;
  max-width: 850px;
  padding: 34px;
  text-align: center;
}

.phone-site-box h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  margin: 0 0 12px;
}

.phone-site-box p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0 auto 24px;
  max-width: 620px;
}

.phone-shop-button {
  width: auto;
}

@media (max-width: 900px) {
  .phone-product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 550px) {
  .phone-product-grid {
    grid-template-columns: 1fr;
  }

  .phone-product-card img {
    height: 260px;
  }
}
