/* GLOBAL RESET */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  width: 55%;
  height: 100%;
  margin: 20;
}

body {
  background: #700d36;
  color: #ffffff;
  font-family: "Helvetica World", "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 1.35;
}

/* PAGE WRAPPER */
.page {
  width: 1414px;
  margin: 0 auto;
  padding: 40px 56px 60px;
  position: relative;
}

.craft-logo {
position: absolute;
  top: -70px;
  right: 0px;
  display: flex;
  align-items: center;
  gap: 24px;
  width: 138px;
  height: auto;
}


/* TOP BAR */
.top-bar {
  position: absolute;
  top: 80px;
  right: 0px;
  display: flex;
  align-items: center;
  gap: 24px;
}


.chip {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 6px 40px;
  border-radius: 9999px;
  background: #ffffff;
  color: #000000;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
}

.chip .divider {
  width: 1px;
  height: 16px;
  background: #700d36;
}

/* TITLE & SUBTITLE */
.title {
  font-size: 56px;
  font-weight: 700;
  margin: 0 0 6px;
  border-bottom: 2px solid #ffffff;
  display: inline-block;
  padding-bottom: 6px;
}

.subtitle {
  font-size: 22px;
  font-weight: 400;
  margin: 0 0 40px;
}

/* SECTION HEADINGS */
.section h3,
.two-col h3,
.additional h3 {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 10px;
}

.section p,
.two-col p {
  font-size: 18px;
  margin: 0 0 32px;
  text-align: justify;
}

/* IMAGE GALLERY */
.gallery {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}

.gallery img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

/* TWO COLUMN LAYOUT */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 48px;
}

/* LARGE PRODUCT IMAGE */


.product-photo img {
  position: absolute;
  right: 50px;
  display: flex;
  align-items: center;
  gap: 24px;
  width: 500x;
  height: 300px;

}

/* QR AND PRINT BUTTON */
.qr-print {
  display: flex;
  align-items: center;
  gap: 48px;
  margin-bottom: 48px;
}

.qr {
  width: 148px;
  height: 148px;
}

.print-btn {
  width: 210px;
  height: 148px;
  border: 2px solid #ffffff;
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  line-height: 1.25;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* CTA BUTTONS */
.cta-row {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}

.cta {
  width: 128px;
  padding: 14px 0;
  border: 2px solid #ffffff;
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  text-decoration: none;
  line-height: 1.25;
}

/* ADDITIONAL INFO */
.additional ul {
  margin: 0;
  padding-left: 20px;
  font-size: 16px;
}

.additional a {
  color: #ffffff;
  text-decoration: underline;
}

/* PRINT OVERRIDE */
@media print {
  .page {
    width: 100%;
    padding: 0 40px;
  }
}
