:root {
  --cream: #f7efe2;
  --sand: #efe2cf;
  --amber: #d9a441;
  --amber-deep: #b87c2d;
  --ink: #16110e;
  --ink-soft: rgba(239, 226, 207, 0.78);
  --line: rgba(247, 239, 226, 0.12);
  --panel: rgba(255, 255, 255, 0.06);
  --panel-strong: rgba(255, 255, 255, 0.08);
  --paper: rgba(247, 239, 226, 0.92);
  --shadow: 0 24px 60px rgba(8, 5, 3, 0.28);
  --shadow-soft: 0 16px 34px rgba(16, 11, 8, 0.16);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 18px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--cream);
  background:
    radial-gradient(circle at top left, rgba(217, 164, 65, 0.18), transparent 28%),
    radial-gradient(circle at 82% 16%, rgba(165, 77, 63, 0.14), transparent 24%),
    linear-gradient(180deg, #120d0a 0%, #17110e 36%, #1f1612 100%);
}

img {
  display: block;
  max-width: 100%;
}

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

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

.shell {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

.topbar {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 26px 0 30px;
  text-align: center;
}

.brand img {
  width: 186px;
  height: auto;
  object-fit: contain;
}

.topbar__link {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  font-weight: 800;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(247, 239, 226, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: var(--sand);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: "Anton", sans-serif;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.product,
.product,
.order-card,
.order-form,
.info-card {
  border: 1px solid rgba(247, 239, 226, 0.1);
  box-shadow: var(--shadow);
}

.section-head p,
.product__intro p,
.product__content > p,
.info-card p,
.order-card p,
.order-form__note,
.footer p {
  margin: 0;
  line-height: 1.75;
}

.product__actions,
.order-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--amber {
  background: linear-gradient(135deg, var(--amber), var(--amber-deep));
  color: #fff8f1;
  box-shadow: 0 14px 28px rgba(184, 124, 45, 0.28);
}

.button--ghost {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(247, 239, 226, 0.14);
  color: var(--cream);
}

.button--light {
  background: #fff7ef;
  color: var(--ink);
  box-shadow: 0 14px 28px rgba(8, 5, 3, 0.14);
}

.button--disabled {
  background: rgba(180, 180, 180, 0.18);
  border: 1px solid rgba(200, 200, 200, 0.2);
  color: rgba(247, 239, 226, 0.56);
  box-shadow: none;
  cursor: not-allowed;
}

.button--disabled:hover {
  transform: none;
}

.products,
.order-page {
  padding-bottom: 76px;
}

.section-head {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: end;
  margin-bottom: 28px;
}

.section-head h2 {
  margin-top: 14px;
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  line-height: 0.96;
line-height: 1.2;
}

.section-head p {
  color: var(--ink-soft);
  font-size: 1.02rem;
}

.section-head__content {
  display: grid;
  justify-items: start;
  gap: 16px;

}

.accordion {
  display: grid;
  gap: 18px;
}

.product {
  border-radius: 28px;
  background: var(--panel);
  overflow: hidden;
}

.product--cipa {
  background: linear-gradient(180deg, rgba(244, 227, 185, 0.16) 0%, rgba(217, 164, 65, 0.12) 100%);
}

.product--prost {
  background: linear-gradient(180deg, rgba(240, 224, 201, 0.14) 0%, rgba(190, 164, 131, 0.12) 100%);
}

.product--redx {
  background: linear-gradient(180deg, rgba(239, 197, 183, 0.14) 0%, rgba(178, 91, 73, 0.12) 100%);
}

.product--soldout {
  background: linear-gradient(180deg, rgba(154, 154, 154, 0.16) 0%, rgba(112, 112, 112, 0.12) 100%);
  filter: grayscale(0.22);
}

.product__summary {
  display: grid;
  grid-template-columns: 240px 1fr 40px;
  gap: 22px;
  align-items: center;
  padding: 24px 26px;
  list-style: none;
  cursor: pointer;
}

.product__summary::-webkit-details-marker {
  display: none;
}

.product__image-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 210px;
  padding: 0;
  border-radius: 22px;
  background: rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

.product__image-wrap img {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
  filter: saturate(0.95) brightness(0.9);
}

.product--soldout .product__image-wrap img {
  filter: grayscale(1) brightness(0.7);
}

.product__soldout-badge {
  position: absolute;
  left: 16px;
  top: 16px;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(26, 26, 26, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #f1f1f1;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product__kicker {
  display: inline-block;
  margin-bottom: 8px;
  color: rgba(239, 226, 207, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.product__intro h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

.product__icon {
  width: 56px;
  height: 56px;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(32, 21, 15, 0.2));
}

.product__icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  height: 56px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--cream);
  font-family: "Manrope", sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.product__intro p {
  margin-top: 10px;
  color: var(--ink-soft);
}

.product__toggle {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(247, 239, 226, 0.14);
  background: rgba(255, 255, 255, 0.06);
}

.product__toggle::before,
.product__toggle::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 16px;
  height: 2px;
  background: var(--cream);
  border-radius: 999px;
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease;
}

.product__toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.product[open] .product__toggle::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.product__body {
  display: grid;
  gap: 24px;
  padding: 0 26px 26px;
}

.product__content > p {
  color: var(--ink-soft);
  font-size: 1rem;
}

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

.info-card {
  padding: 18px;
  border-radius: 20px;
  background: var(--panel-strong);
}

.info-card h4 {
  font-size: 1.15rem;
  line-height: 1;
}

.info-card p {
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: 0.97rem;
}

.product__actions {
  align-items: center;
}

.product__footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(247, 239, 226, 0.1);
}

.product__price {
  display: grid;
  gap: 4px;
}

.product__price span {
  color: rgba(239, 226, 207, 0.62);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.product__price strong {
  font-family: "Anton", sans-serif;
  font-size: 2.3rem;
  font-weight: 400;
  line-height: 1;
}

.order-page {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 26px;
  padding-top: 18px;
}

.sample-page {
  padding: 18px 0 76px;
}

.order-form--wide {
  max-width: 920px;
  margin: 0 auto;
}

.order-card,
.order-form {
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.order-card {
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(247, 239, 226, 0.96), rgba(239, 226, 207, 0.9)),
    url("../images/papir-textura.png");
  color: #2f2118;
}

.order-card__image {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
}

.order-card__image img {
  max-width: 250px;
  max-height: 220px;
  object-fit: contain;
}

.order-card h1 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  max-width: none;
  font-size: clamp(2.8rem, 5vw, 4.6rem);
}

.order-card p {
  margin-top: 14px;
  color: rgba(47, 33, 24, 0.86);
}

.order-card__facts {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.order-card__facts span {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 0 16px;
  border-radius: 16px;
  background: rgba(22, 17, 14, 0.06);
  font-weight: 700;
}

.order-card__actions {
  margin-top: 22px;
}

.order-form {
  padding: 34px;
  background: linear-gradient(145deg, rgba(26, 18, 14, 0.94), rgba(33, 23, 18, 0.86));
}

.order-form h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 0.98;
}

.order-form__note {
  margin-top: 14px;
  color: var(--ink-soft);
}

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

.field {
  display: grid;
  gap: 9px;
}

.fieldset-disabled {
  margin: 0;
  padding: 0;
  border: 0;
}

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

.field label {
  color: rgba(239, 226, 207, 0.64);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(247, 239, 226, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--cream);
  outline: none;
  transition: border-color 0.18s ease, background-color 0.18s ease;
}

.field input,
.field select {
  min-height: 58px;
  padding: 0 16px;
}

.field select {
  color: var(--cream);
  background-color: rgba(255, 255, 255, 0.06);
}

.field select option {
  color: #1f1612;
  background: #fff7ef;
}

.field select option[value=""] {
  color: #7f6c5a;
}

.field select option:disabled {
  color: #9c8b7c;
}

.field textarea {
  min-height: 140px;
  padding: 16px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(217, 164, 65, 0.52);
  background: rgba(255, 255, 255, 0.08);
}

.order-form .button {
  margin-top: 22px;
}

.order-form form {
  margin-top: 24px;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 6px;
  padding: 16px 18px;
  border: 1px solid rgba(247, 239, 226, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
}

.consent input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--amber);
}

.consent label {
  color: var(--ink-soft);
  font-size: 0.96rem;
  line-height: 1.65;
  text-transform: none;
  letter-spacing: normal;
  font-weight: 500;
}

.consent a,
.privacy-link {
  color: #ffd27c;
  text-decoration: underline;
}

.sample-grid {
  display: grid;
  gap: 14px;
}

.sample-option {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 16px 18px;
  border: 1px solid rgba(247, 239, 226, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
}

.sample-option input {
  width: 18px;
  height: 18px;
  accent-color: var(--amber);
}

.sample-option label {
  color: var(--cream);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: normal;
  text-transform: none;
}

.sample-option span {
  color: rgba(239, 226, 207, 0.64);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.sample-option--disabled {
  opacity: 0.58;
}

.sample-option--disabled input {
  cursor: not-allowed;
}

.order-form--soldout {
  background: linear-gradient(145deg, rgba(58, 58, 58, 0.92), rgba(82, 82, 82, 0.86));
}

.order-form--soldout .field input,
.order-form--soldout .field select,
.order-form--soldout .field textarea {
  background: rgba(255, 255, 255, 0.04);
  color: rgba(247, 239, 226, 0.52);
  border-color: rgba(247, 239, 226, 0.08);
}

.order-form--soldout .field label,
.order-form--soldout .order-form__note {
  color: rgba(247, 239, 226, 0.58);
}

.privacy-page {
  padding: 18px 0 76px;
}

.privacy-card {
  max-width: 920px;
  margin: 0 auto;
  padding: 34px;
  border: 1px solid rgba(247, 239, 226, 0.1);
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, rgba(26, 18, 14, 0.94), rgba(33, 23, 18, 0.86));
  box-shadow: var(--shadow);
}

.privacy-card h1 {
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  line-height: 0.98;
}

.privacy-card h2 {
  margin-top: 28px;
  font-size: 1.8rem;
}

.privacy-card p,
.privacy-card li {
  color: var(--ink-soft);
  line-height: 1.75;
}

.privacy-card ul {
  margin: 14px 0 0;
  padding-left: 22px;
}

.thanks-page {
  padding: 18px 0 76px;
}

.thanks-card {
  max-width: 780px;
  margin: 0 auto;
  padding: 38px;
  border: 1px solid rgba(247, 239, 226, 0.1);
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, rgba(26, 18, 14, 0.94), rgba(33, 23, 18, 0.86));
  box-shadow: var(--shadow);
  text-align: center;
}

.thanks-card h1 {
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  line-height: 0.98;
}

.thanks-card p {
  margin: 18px 0 0;
  color: var(--ink-soft);
  line-height: 1.75;
}

.thanks-card .button {
  margin-top: 24px;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 0 0 40px;
  color: rgba(239, 226, 207, 0.62);
  font-size: 0.94rem;
}

@media (max-width: 1040px) {
  .section-head,
  .order-page,
  .product__grid {
    grid-template-columns: 1fr;
  }

  .order-form {
    padding: 28px;
  }

  .product__summary {
    grid-template-columns: 200px 1fr 40px;
  }
}

@media (max-width: 760px) {
  .topbar,
  .footer,
  .product__summary,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .topbar,
  .footer {
    display: grid;
  }

  .order-card,
  .order-form {
    padding: 22px;
  }

  .product__grid {
    grid-template-columns: 1fr;
  }

  .product__summary {
    display: grid;
    gap: 18px;
  }

  .product__toggle {
    justify-self: start;
  }

  .product__icon {
    width: 44px;
    height: 44px;
  }

  .product__icon-badge {
    min-width: 44px;
    height: 44px;
    font-size: 0.74rem;
  }

  .order-card h1 {
    flex-wrap: wrap;
  }

  .product__body {
    padding: 0 22px 22px;
  }

  .button,
  .topbar__link {
    width: 100%;
  }
}
