/** Shopify CDN: Minification failed

Line 18:0 All "@import" rules must come first

**/
:root {
  --trulux-black: #000000;
  --trulux-dark-grey: #1a1a1a;
  --trulux-light-grey: #e5e5e5;
  --trulux-mid-grey: #424242;
  --trulux-white: #ffffff;
  
  --trulux-font: 'Inter', sans-serif;
  --card-radius: 32px;
  --button-radius: 50px;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

body {
  font-family: var(--trulux-font);
  background-color: var(--trulux-black);
  color: var(--trulux-white);
  margin: 0;
  -webkit-font-smoothing: antialiased;
}

.trulux-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Typography */
.trulux-h1 {
  font-size: 64px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 20px 0;
}

.trulux-h2 {
  font-size: 48px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin: 0 0 15px 0;
}

.trulux-h3 {
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 0 10px 0;
}

.trulux-body {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--trulux-light-grey);
}

.trulux-body-dark {
  color: var(--trulux-mid-grey);
}

/* Cards & Components */
.trulux-card {
  background: var(--trulux-white);
  border-radius: var(--card-radius);
  padding: 48px;
  color: var(--trulux-black);
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.trulux-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  background: var(--trulux-black);
  color: var(--trulux-white);
  border-radius: var(--button-radius);
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
  font-size: 14px;
}

.trulux-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  background: #222;
}

/* Background Elements */
.trulux-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.8) 100%);
  z-index: 1;
}

.trulux-ellipse {
  position: absolute;
  width: 600px;
  height: 600px;
  background: var(--trulux-light-grey);
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.1;
  pointer-events: none;
}

.dot-grid {
  background-image: radial-gradient(var(--trulux-mid-grey) 1px, transparent 1px);
  background-size: 20px 20px;
  width: 100px;
  height: 100px;
  opacity: 0.3;
}

/* Product Specific */
.trulux-diagonal-bg {
  position: relative;
  background: #f5f5f5;
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
}