/* ========================================
   BASE STYLES
======================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #0d0d0d;
  min-height: 100vh;
  font-family: 'DM Sans', sans-serif;
  color: #fff;
  padding: 60px 40px;
}

/* ========================================
   SECTION LAYOUT
======================================== */

.section {
  max-width: 1400px;
  margin: 0 auto 120px;
}

.section-header {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 15px;
  border-bottom: 1px solid #2a2a2a;
  padding-bottom: 15px;
}

.section-number {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  color: #444;
  letter-spacing: 0.2em;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  letter-spacing: 0.08em;
}

.section-desc {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 50px;
  max-width: 700px;
  line-height: 1.7;
}

.row-label {
  text-align: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  color: #333;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 30px;
}

/* ========================================
   FLAVOR ROW & CONTAINERS
======================================== */

.flavor-row {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.can-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.flavor-label {
  font-size: 0.7rem;
  color: #555;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 20px;
}

/* ========================================
   CAN BASE STYLES
======================================== */

.can {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  position: relative;
  box-shadow: 
    0 25px 60px rgba(0,0,0,0.6),
    0 0 0 1px rgba(255,255,255,0.03),
    inset 0 -30px 50px rgba(0,0,0,0.25),
    inset 0 30px 50px rgba(255,255,255,0.03);
  overflow: hidden;
}

.can::before {
  content: '';
  position: absolute;
  top: 8%;
  left: 18%;
  width: 25%;
  height: 12%;
  background: linear-gradient(180deg, rgba(255,255,255,0.25) 0%, rgba(255,255,255,0) 100%);
  border-radius: 50%;
  filter: blur(6px);
  pointer-events: none;
  z-index: 10;
}

.can-inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  position: relative;
}

/* ========================================
   RIDGE BASE STYLES
======================================== */

.can-ridge {
  border: 2px solid rgba(255,255,255,0.1);
}

.can-ridge .border-ring {
  position: absolute;
  top: 8px;
  left: 8px;
  right: 8px;
  bottom: 8px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50%;
}

.can-ridge .border-ring-inner {
  position: absolute;
  top: 16px;
  left: 16px;
  right: 16px;
  bottom: 16px;
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 50%;
}

/* Sun element */
.can-ridge .sun {
  position: absolute;
  top: 22px;
  width: 44px;
  height: 22px;
  overflow: hidden;
}

.can-ridge .sun::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
}

/* Mountains */
.can-ridge .mountains {
  position: absolute;
  top: 38px;
  width: 130px;
  height: 45px;
}

.can-ridge .mountain {
  position: absolute;
  bottom: 0;
  width: 0;
  height: 0;
  border-style: solid;
}

/* Trees */
.can-ridge .trees {
  position: absolute;
  bottom: 22px;
  display: flex;
  gap: 6px;
}

.can-ridge .tree {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 5px 14px 5px;
}

/* Ridge typography */
.can-ridge .brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  margin-top: 42px;
  margin-bottom: 0;
}

.can-ridge .sub {
  font-family: 'Source Serif 4', serif;
  font-size: 0.5rem;
  letter-spacing: 0.3em;
  margin-bottom: 8px;
  opacity: 0.6;
}

.can-ridge .flavor {
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.can-ridge .strength {
  position: absolute;
  bottom: 38px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.5rem;
  letter-spacing: 0.15em;
  opacity: 0.5;
}

/* ========================================
   RIDGE COLOR VARIATIONS
======================================== */

/* Mint - Forest Green */
.ridge-mint {
  background: linear-gradient(155deg, #2d4a3e 0%, #1a2e26 50%, #0f1c18 100%);
}
.ridge-mint .sun::before { background: #d4a855; }
.ridge-mint .mountain-1 { left: 5px; border-width: 0 28px 38px 28px; border-color: transparent transparent #3d5a4a transparent; }
.ridge-mint .mountain-2 { left: 40px; border-width: 0 35px 45px 35px; border-color: transparent transparent #2d4a3a transparent; }
.ridge-mint .mountain-3 { right: 5px; border-width: 0 22px 32px 22px; border-color: transparent transparent #3d5a4a transparent; }
.ridge-mint .tree { border-color: transparent transparent #1f3028 transparent; }
.ridge-mint .brand-name, .ridge-mint .flavor { color: #d4ccb8; }
.ridge-mint .sub, .ridge-mint .strength { color: #8a9a8a; }

/* Wintergreen - Slate Blue */
.ridge-wintergreen {
  background: linear-gradient(155deg, #3a4a5a 0%, #252f3a 50%, #141a20 100%);
}
.ridge-wintergreen .sun::before { background: #a8c0d8; }
.ridge-wintergreen .mountain-1 { left: 5px; border-width: 0 28px 38px 28px; border-color: transparent transparent #4a5a6a transparent; }
.ridge-wintergreen .mountain-2 { left: 40px; border-width: 0 35px 45px 35px; border-color: transparent transparent #3a4a5a transparent; }
.ridge-wintergreen .mountain-3 { right: 5px; border-width: 0 22px 32px 22px; border-color: transparent transparent #4a5a6a transparent; }
.ridge-wintergreen .tree { border-color: transparent transparent #2a3440 transparent; }
.ridge-wintergreen .brand-name, .ridge-wintergreen .flavor { color: #c8d4e0; }
.ridge-wintergreen .sub, .ridge-wintergreen .strength { color: #7a8a9a; }

/* Citrus - Warm Amber */
.ridge-citrus {
  background: linear-gradient(155deg, #5a4a35 0%, #3a3025 50%, #201a12 100%);
}
.ridge-citrus .sun::before { background: #e8a040; }
.ridge-citrus .mountain-1 { left: 5px; border-width: 0 28px 38px 28px; border-color: transparent transparent #6a5a45 transparent; }
.ridge-citrus .mountain-2 { left: 40px; border-width: 0 35px 45px 35px; border-color: transparent transparent #5a4a35 transparent; }
.ridge-citrus .mountain-3 { right: 5px; border-width: 0 22px 32px 22px; border-color: transparent transparent #6a5a45 transparent; }
.ridge-citrus .tree { border-color: transparent transparent #3a3020 transparent; }
.ridge-citrus .brand-name, .ridge-citrus .flavor { color: #e8dcc8; }
.ridge-citrus .sub, .ridge-citrus .strength { color: #9a8a70; }

/* Coffee - Deep Brown */
.ridge-coffee {
  background: linear-gradient(155deg, #3d3530 0%, #2a2420 50%, #151210 100%);
}
.ridge-coffee .sun::before { background: #c89060; }
.ridge-coffee .mountain-1 { left: 5px; border-width: 0 28px 38px 28px; border-color: transparent transparent #4d4540 transparent; }
.ridge-coffee .mountain-2 { left: 40px; border-width: 0 35px 45px 35px; border-color: transparent transparent #3d3530 transparent; }
.ridge-coffee .mountain-3 { right: 5px; border-width: 0 22px 32px 22px; border-color: transparent transparent #4d4540 transparent; }
.ridge-coffee .tree { border-color: transparent transparent #252018 transparent; }
.ridge-coffee .brand-name, .ridge-coffee .flavor { color: #d8ccc0; }
.ridge-coffee .sub, .ridge-coffee .strength { color: #8a7a6a; }

/* Berry - Muted Purple */
.ridge-berry {
  background: linear-gradient(155deg, #4a3a4d 0%, #2e2530 50%, #1a151c 100%);
}
.ridge-berry .sun::before { background: #c890a8; }
.ridge-berry .mountain-1 { left: 5px; border-width: 0 28px 38px 28px; border-color: transparent transparent #5a4a5d transparent; }
.ridge-berry .mountain-2 { left: 40px; border-width: 0 35px 45px 35px; border-color: transparent transparent #4a3a4d transparent; }
.ridge-berry .mountain-3 { right: 5px; border-width: 0 22px 32px 22px; border-color: transparent transparent #5a4a5d transparent; }
.ridge-berry .tree { border-color: transparent transparent #2a2030 transparent; }
.ridge-berry .brand-name, .ridge-berry .flavor { color: #dcd0d8; }
.ridge-berry .sub, .ridge-berry .strength { color: #8a7a8a; }

/* ========================================
   HUSH BASE STYLES (COOL)
======================================== */

.can-hush {
  background: linear-gradient(150deg, #1a1a1a 0%, #0a0a0a 100%);
  border: 1px solid #252525;
}

.can-hush .can-inner {
  background: radial-gradient(ellipse at 50% 30%, rgba(255,255,255,0.015) 0%, transparent 60%);
}

.can-hush .brand-name {
  font-family: 'DM Sans', sans-serif;
  font-size: 2.4rem;
  font-weight: 600;
  color: #ffffff;
  text-transform: lowercase;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

.can-hush .color-bar {
  width: 50px;
  height: 3px;
  margin-bottom: 14px;
  border-radius: 2px;
}

.can-hush .flavor {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  color: #4a4a4a;
  text-transform: uppercase;
  letter-spacing: 0.28em;
}

.can-hush .strength-row {
  position: absolute;
  bottom: 35px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.can-hush .mg {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.6rem;
  font-weight: 500;
  color: #3a3a3a;
  letter-spacing: 0.05em;
}

.can-hush .dots {
  display: flex;
  gap: 4px;
}

.can-hush .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
}

.can-hush .dot.filled {
  background: currentColor;
}

.can-hush .dot.empty {
  background: transparent;
  border: 1px solid #333;
}

/* ========================================
   HUSH COLOR VARIATIONS (COOL)
======================================== */

.hush-mint .color-bar { background: #4a9eff; }
.hush-mint .dot.filled { color: #4a9eff; }

.hush-wintergreen .color-bar { background: #40c090; }
.hush-wintergreen .dot.filled { color: #40c090; }

.hush-citrus .color-bar { background: #ffb840; }
.hush-citrus .dot.filled { color: #ffb840; }

.hush-coffee .color-bar { background: #a08060; }
.hush-coffee .dot.filled { color: #a08060; }

.hush-berry .color-bar { background: #c060a0; }
.hush-berry .dot.filled { color: #c060a0; }

/* ========================================
   HUSH WARM VARIATION
======================================== */

.can-hush-warm {
  background: linear-gradient(150deg, #1f1c1a 0%, #0f0d0c 100%);
  border: 1px solid #2a2522;
}

.can-hush-warm .can-inner {
  background: radial-gradient(ellipse at 50% 30%, rgba(255,240,220,0.02) 0%, transparent 60%);
}

.can-hush-warm .brand-name {
  font-family: 'DM Sans', sans-serif;
  font-size: 2.4rem;
  font-weight: 600;
  color: #f0e8e0;
  text-transform: lowercase;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

.can-hush-warm .color-bar {
  width: 50px;
  height: 3px;
  margin-bottom: 14px;
  border-radius: 2px;
}

.can-hush-warm .flavor {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  color: #5a5048;
  text-transform: uppercase;
  letter-spacing: 0.28em;
}

.can-hush-warm .strength-row {
  position: absolute;
  bottom: 35px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.can-hush-warm .mg {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.6rem;
  font-weight: 500;
  color: #4a4440;
  letter-spacing: 0.05em;
}

.can-hush-warm .dots {
  display: flex;
  gap: 4px;
}

.can-hush-warm .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
}

.can-hush-warm .dot.filled {
  background: currentColor;
}

.can-hush-warm .dot.empty {
  background: transparent;
  border: 1px solid #3a3530;
}

/* ========================================
   HUSH WARM COLOR VARIATIONS
======================================== */

.hush-warm-mint .color-bar { background: #70b8a0; }
.hush-warm-mint .dot.filled { color: #70b8a0; }

.hush-warm-wintergreen .color-bar { background: #88a8b8; }
.hush-warm-wintergreen .dot.filled { color: #88a8b8; }

.hush-warm-citrus .color-bar { background: #d8a050; }
.hush-warm-citrus .dot.filled { color: #d8a050; }
