
:root {
  --bg-body: #ffffff;
  --text-main: #111111;
  --text-muted: #555555;
  --ube-pop: #8A2BE2;
  --ube-gradient: linear-gradient(135deg, #8A2BE2 0%, #D8BFD8 100%);
  --raw-latte: #F2E6D8;
  --border-color: #111111;
  --border-thin: 1px solid var(--border-color);
  --border-thick: 2px solid var(--border-color);
  --font-main: 'Inter', sans-serif;
  --font-display: 'Space Grotesk', sans-serif;
  --font-mono: 'Space Mono', monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  background-color: var(--bg-body);
  color: var(--text-main);
  font-family: var(--font-main);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
main { background: #fff; }

.de-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
}
.de-section {
  border-bottom: var(--border-thin);
}
.de-band {
  background-color: var(--raw-latte);
  border-bottom: var(--border-thin);
}

h1,
h2,
h3,
.de-footer-logo {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: 0;
}
.de-eyebrow {
  display: block;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.de-container h2,
.de-band h2 {
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  margin-bottom: 1.5rem;
  overflow-wrap: anywhere;
  hyphens: auto;
}
.de-container h3,
.de-product-card h2 {
  font-size: 1.55rem;
  margin-bottom: 1rem;
}
.de-lead,
.de-intro,
.de-container p,
.de-band p {
  line-height: 1.75;
  font-size: 1.1rem;
  color: var(--text-muted);
}
.de-intro,
.de-container p,
.de-band p {
  margin-bottom: 1.5rem;
}

.de-hero {
  min-height: calc(100vh - 108px);
  display: flex;
  align-items: center;
  border-bottom: var(--border-thick);
  position: relative;
  background: #fff;
  padding: 4.5rem 0 5rem;
}
.de-hero-inner {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding-top: 0;
  padding-bottom: 0;
}
.de-hero-copy {
  max-width: 620px;
  min-width: 0;
}
.de-hero h1 {
  font-size: clamp(2.8rem, 7vw, 5rem);
  line-height: 0.95;
  margin-bottom: 1.75rem;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: manual;
  text-wrap: balance;
}
.de-lead {
  max-width: 540px;
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.de-hero-media {
  display: flex;
  justify-content: center;
  align-items: center;
}
.de-hero-media img {
  width: 100%;
  max-width: 340px;
  max-height: 470px;
  object-fit: contain;
  border: 2px solid #000;
  background: #fff;
  box-shadow: 15px 15px 0 var(--ube-pop);
  transform: rotate(-5deg);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}
.de-hero-media img:hover {
  transform: rotate(0deg) scale(1.05);
  box-shadow: 20px 20px 0 #000;
}

.de-marquee {
  background: var(--ube-pop);
  color: white;
  padding: 1rem 0;
  overflow: hidden;
  white-space: nowrap;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.2rem;
  border-top: var(--border-thin);
  border-bottom: var(--border-thick);
}
.de-marquee-content {
  display: inline-block;
  animation: de-scroll 22s linear infinite;
}
.de-marquee span {
  margin-right: 4rem;
}
@keyframes de-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.de-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 1.6rem;
}
.de-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  padding: 0.9rem 1.6rem;
  border-radius: 50px;
  cursor: pointer;
  transition: 0.3s;
  border: var(--border-thin);
  text-decoration: none;
  min-height: 50px;
}
.de-btn-primary {
  background: var(--text-main);
  color: white;
}
.de-btn-primary:hover {
  background: var(--ube-pop);
  border-color: var(--ube-pop);
  transform: scale(1.05);
}
.de-btn-secondary {
  background: transparent;
  color: var(--text-main);
}
.de-btn-secondary:hover {
  background: var(--ube-pop);
  border-color: var(--ube-pop);
  color: #fff;
  transform: scale(1.05);
}

.de-card-grid,
.de-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}
.de-card,
.de-product-card,
.de-legal-panel {
  background: #fff;
  border: 2px solid #000;
  border-radius: 24px;
  padding: 2rem;
}
.de-card,
.de-product-card {
  display: flex;
  flex-direction: column;
  min-height: 220px;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.de-card:hover,
.de-product-card:hover {
  background: var(--ube-pop);
  color: #fff;
  transform: translateY(-4px);
}
.de-card:hover p,
.de-product-card:hover p,
.de-product-card:hover .de-product-price {
  color: #fff !important;
}
.de-card p,
.de-product-card p {
  font-size: 0.95rem;
  margin-bottom: 1rem;
  flex-grow: 1;
}
.de-card span,
.de-product-card .de-btn {
  margin-top: auto;
}
.de-card span {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  text-decoration: underline;
  font-weight: 700;
  text-transform: uppercase;
}
.de-product-card img {
  margin-bottom: 1.5rem;
  border: var(--border-thin);
  border-radius: 16px;
  overflow: hidden;
  background: #f8f8f8;
  aspect-ratio: 1;
  object-fit: cover;
  width: 100%;
}
.de-product-price {
  font-weight: 900;
  color: var(--text-main) !important;
}

.de-product-strip,
.de-pdp,
.de-recipe {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.de-product-strip img,
.de-pdp img {
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  object-fit: cover;
  aspect-ratio: 1;
  border: 2px solid #000;
  border-radius: 24px;
  background: #f4f4f4;
  box-shadow: 15px 15px 0 rgba(0, 0, 0, 1);
}

.de-price-summary {
  font-family: var(--font-mono);
  background: white;
  padding: 2rem 2rem 2.5rem;
  position: relative;
  border: 1px solid #ddd;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  margin: 1.5rem 0;
}
.de-price-summary::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 20px;
  background:
    linear-gradient(45deg, transparent 33.333%, #fff 33.333%, #fff 66.667%, transparent 66.667%),
    linear-gradient(-45deg, transparent 33.333%, #fff 33.333%, #fff 66.667%, transparent 66.667%);
  background-size: 20px 40px;
}
.de-price-summary strong {
  display: block;
  font-size: 1.3rem;
  line-height: 1.25;
  text-transform: uppercase;
  color: var(--text-main);
  text-align: left;
}
.de-price-summary span {
  display: block;
  margin-top: 0.45rem;
  color: var(--ube-pop);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.25;
  text-align: left;
}

.de-trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: var(--border-thin);
}
.de-trust-strip div {
  padding: 1rem;
  border-radius: 18px;
  background: white;
  border: 2px solid #000;
}
.de-trust-strip strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.35;
  margin-bottom: 0.4rem;
}
.de-trust-strip span {
  display: block;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.4;
}

.de-list {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}
.de-list li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
  font-size: 1.1rem;
}

.de-faq {
  max-width: 860px;
}
.de-faq details {
  border-bottom: 2px solid #000;
  padding: 1.5rem 0;
}
.de-faq details:first-of-type {
  border-top: 2px solid #000;
}
.de-faq summary {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  text-transform: uppercase;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}
.de-faq summary::-webkit-details-marker {
  display: none;
}
.de-faq summary::after {
  content: '+';
  font-size: 1.5rem;
  flex: 0 0 auto;
}
.de-faq details[open] summary::after {
  content: '-';
}
.de-faq p {
  margin-top: 1rem;
  margin-bottom: 0;
}

.de-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
}
.de-table th,
.de-table td {
  border: 2px solid #000;
  padding: 1rem;
  text-align: left;
  vertical-align: top;
}
.de-table th {
  background: var(--text-main);
  color: white;
  font-family: var(--font-display);
  text-transform: uppercase;
}

.de-legal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}
.de-legal-panel {
  overflow-wrap: anywhere;
  word-break: normal;
}
.de-legal-panel h2 {
  font-size: 1.55rem;
}
.de-legal-panel a,
.de-container a:not(.de-btn):not(.de-card) {
  text-decoration: underline;
  font-weight: 700;
}

.de-variant-box {
  display: grid;
  gap: 0.8rem;
  margin: 1.5rem 0;
}
.de-variant-box label {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
}
.de-variant-box select,
.de-variant-box input {
  border: 2px solid #000;
  border-radius: 12px;
  padding: 0.9rem 1rem;
  font: inherit;
  background: #fff;
}
.de-muted {
  font-size: 0.92rem !important;
  color: var(--text-muted);
}

.de-footer {
  padding: 4rem 1.5rem;
  border-top: var(--border-thick);
  background: #f9f9f9;
  color: var(--text-main);
  text-align: center;
}
.de-footer-logo {
  font-size: clamp(3rem, 10vw, 8rem);
  margin-bottom: 1rem;
  opacity: 0.1;
}
.de-footer nav {
  display: flex;
  gap: 0.7rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 2rem auto;
  max-width: 1040px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--text-main);
}
.de-footer a {
  color: var(--text-main);
  text-decoration: underline;
  font-weight: 700;
  text-transform: uppercase;
}
.de-footer p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .de-container {
    padding: 4rem 1rem;
  }
  .de-hero {
    min-height: auto;
    text-align: center;
    padding: 3rem 0 4rem;
  }
  .de-hero-inner,
  .de-product-strip,
  .de-pdp,
  .de-recipe,
  .de-legal-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .de-hero-inner {
    justify-items: center;
    padding-top: 0;
    padding-bottom: 0;
  }
  .de-hero h1 {
    font-size: clamp(2.2rem, 10vw, 3rem);
    line-height: 0.95;
    overflow-wrap: anywhere;
    hyphens: auto;
  }
  .de-actions {
    justify-content: center;
  }
  .de-hero-media img {
    max-width: 280px;
  }
  .de-card-grid,
  .de-products-grid,
  .de-trust-strip {
    grid-template-columns: 1fr;
  }
  .de-product-strip img,
  .de-pdp img {
    max-width: 100%;
    aspect-ratio: 1;
    box-shadow: 10px 10px 0 rgba(0, 0, 0, 1);
  }
  .de-table {
    font-size: 0.9rem;
  }
  .de-table th,
  .de-table td {
    padding: 0.7rem;
  }
}
