/** Shopify CDN: Minification failed

Line 112:36 Expected ":"

**/
/* ============================================
   40 THIEVES COFFEE COMPANY
   PREMIUM E-COMMERCE STYLESHEET V2
   Mobile-First | Immersive Brand Experience
   ============================================ */

/* ============================================
   ROOT VARIABLES
   ============================================ */
:root {
  /* Brand Colors */
  --tt-white: #FFFFFF;
  --tt-black: #090909;
  --tt-gold: #F1AB3D;
  --tt-steel: #5B5E67;
  --tt-rust: #B95D28;
  --tt-bronze: #AF6633;
  
  /* Base Typography */
  --tt-body-size: 18px;
  --tt-line-height: 1.6;
  
  /* Spacing Scale */
  --tt-space-xs: 0.5rem;   /* 9px */
  --tt-space-sm: 1rem;     /* 18px */
  --tt-space-md: 2rem;     /* 36px */
  --tt-space-lg: 4rem;     /* 72px */
  --tt-space-xl: 6rem;     /* 108px */
  --tt-space-xxl: 8rem;    /* 144px */
  
  /* Layout */
  --tt-max-width: 1600px;
  --tt-border-radius: 15px;
  --tt-border-radius-lg: 25px;
  --tt-gap-desktop: 30px;
  --tt-gap-mobile: 15px;
  
  /* Icons */
  --tt-icon-size-desktop: 50px;
  --tt-icon-size-mobile: 25px;
  
  /* Transitions - Premium Feel */
  --tt-transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --tt-transition-base: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --tt-transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --tt-transition-smooth: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Shadows - Depth & Elevation */
  --tt-shadow-sm: 0 2px 8px rgba(9, 9, 9, 0.08);
  --tt-shadow-md: 0 4px 16px rgba(9, 9, 9, 0.12);
  --tt-shadow-lg: 0 8px 32px rgba(9, 9, 9, 0.16);
  --tt-shadow-xl: 0 16px 48px rgba(9, 9, 9, 0.20);
  --tt-shadow-gold: 0 8px 24px rgba(241, 171, 61, 0.3);
  
  /* Z-Index Scale */
  --tt-z-base: 1;
  --tt-z-elevated: 10;
  --tt-z-sticky: 100;
  --tt-z-modal: 1000;
}

/* ============================================
   TYPOGRAPHY SYSTEM
   ============================================ */

/* Standard Heading Sizes (Must Match HTML Tags) */
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: "boucherie-block", sans-serif !important;
  font-weight: 700 !important;
  font-style: normal !important;
  line-height: 1em !important;
  
}

/* Mobile First Sizes */
.h1 { font-size: 2.5em !important; }      /* 45px */
.h2 { font-size: 2.236em !important; }    /* 40px */
.h3 { font-size: 1.618em !important; }    /* 29px */
.h4, .h5, .h6 { font-size: 1.236em !important; } /* 22px */

/* Desktop Sizes */
@media only screen and (min-width: 769px) {
  .h1 { font-size: 5.854em !important; }  /* 105px */
  .h2 { font-size: 3.618em !important; }  /* 65px */
  .h3 { font-size: 2.236em !important; }  /* 40px */
  .h4, .h5, .h6 { font-size: 1.618em !important; } /* 29px */
}

/* Display Heading Variants */
.tt-display-hero {
  font-family: "boucherie-block", sans-serif !important;
  font-weight: 700 !important;
  line-height: 0.95em !important;
  letter-spacing: -0.03em;
  font-size: 3.5em !important; /* Mobile: 63px */
}

@media only screen and (min-width: 769px) {
  .tt-display-hero {
    font-size: 7em !important; /* Desktop: 126px */
  }
}

.tt-display-mega {
  font-family: "boucherie-block", sans-serif !important;
  font-weight: 700 !important;
  line-height: 0.9em !important;qead
  font-size: 4em !important; /* Mobile: 72px */
}

@media only screen and (min-width: 769px) {
  .tt-display-mega {
    font-size: 9em !important; /* Desktop: 162px */
  }
}

/* Body Text Variants */
.tt-text-xl {
  font-size: 1.5em;    /* 27px */
  line-height: 1.4;
  font-weight: 600;
}

.tt-text-large {
  font-size: 1.333em;  /* 24px */
  line-height: 1.5;
}

.tt-text-base {
  font-size: 1em;      /* 18px */
  line-height: 1.6;
}

.tt-text-small {
  font-size: 0.889em;  /* 16px */
  line-height: 1.5;
}

.tt-text-caption {
  font-size: 0.778em;  /* 14px */
  line-height: 1.4;
  letter-spacing: 0.02em;
}

/* Text Styling */
.tt-text-bold { font-weight: 700; }
.tt-text-semibold { font-weight: 600; }
.tt-text-medium { font-weight: 500; }
.tt-text-normal { font-weight: 400; }

.tt-text-uppercase { text-transform: uppercase; letter-spacing: 0.05em; }
.tt-text-capitalize { text-transform: capitalize; }

/* Text Alignment */
.tt-text-left { text-align: left; }
.tt-text-center { text-align: center; }
.tt-text-right { text-align: right; }
.tt-text-justify { text-align: justify; }

/* Text Colors */
.tt-text-dark { color: var(--tt-black); }
.tt-text-light { color: var(--tt-white); }
.tt-text-gold { color: var(--tt-gold); }
.tt-text-steel { color: var(--tt-steel); }
.tt-text-rust { color: var(--tt-rust); }
.tt-text-bronze { color: var(--tt-bronze); }

/* Link Styles */
.tt-link {
  color: inherit;
  text-decoration: none;
  position: relative;
  transition: color var(--tt-transition-fast);
}

.tt-link-underline {
  text-decoration: underline;
  text-decoration-color: var(--tt-rust);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  transition: text-decoration-color var(--tt-transition-fast);
}

.tt-link-underline:hover {
  text-decoration-color: var(--tt-gold);
}

.tt-link-arrow::after {
  content: " →";
  display: inline-block;
  transition: transform var(--tt-transition-fast);
}

.tt-link-arrow:hover::after {
  transform: translateX(4px);
}

/* ============================================
   LAYOUT SYSTEM - FULL BLEED & CONTAINED
   ============================================ */

/* Full Bleed (Edge to Edge) */
.tt-full-bleed {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
}

/* Constrained Container */
.tt-container {
  max-width: var(--tt-max-width);
  margin: 0 auto;
  padding-left: var(--tt-space-sm);
  padding-right: var(--tt-space-sm);
}

@media only screen and (min-width: 769px) {
  .tt-container {
    padding-left: var(--tt-space-md);
    padding-right: var(--tt-space-md);
  }
}

/* Narrow Container (for text-heavy content) */
.tt-container-narrow {
  max-width: 900px;
  margin: 0 auto;
  padding-left: var(--tt-space-sm);
  padding-right: var(--tt-space-sm);
}

@media only screen and (min-width: 769px) {
  .tt-container-narrow {
    padding-left: var(--tt-space-md);
    padding-right: var(--tt-space-md);
  }
}

/* Section Wrapper */
.tt-section {
  position: relative;
  padding: var(--tt-space-lg) 0;
}

@media only screen and (min-width: 769px) {
  .tt-section {
    padding: var(--tt-space-xl) 0;
  }
}

.tt-section-sm {
  padding: var(--tt-space-md) 0;
}

@media only screen and (min-width: 769px) {
  .tt-section-sm {
    padding: var(--tt-space-lg) 0;
  }
}

.tt-section-lg {
  padding: var(--tt-space-xl) 0;
}

@media only screen and (min-width: 769px) {
  .tt-section-lg {
    padding: var(--tt-space-xxl) 0;
  }
}

/* ============================================
   HERO SECTIONS - FULL BLEED IMMERSIVE
   ============================================ */

.tt-hero {
  position: relative;
  width: 100%;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media only screen and (min-width: 769px) {
  .tt-hero {
    min-height: 80vh;
  }
}

/* Hero Sizes */
.tt-hero-sm { min-height: 40vh; }
.tt-hero-md { min-height: 60vh; }
.tt-hero-lg { min-height: 80vh; }
.tt-hero-full { min-height: 100vh; }

/* Hero Overlay */
.tt-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(9, 9, 9, 0.3), rgba(9, 9, 9, 0.6));
  z-index: var(--tt-z-base);
}

.tt-hero-overlay-dark {
  background: linear-gradient(to bottom, rgba(9, 9, 9, 0.5), rgba(9, 9, 9, 0.8));
}

.tt-hero-overlay-gold {
  background: linear-gradient(to bottom, rgba(241, 171, 61, 0.2), rgba(175, 102, 51, 0.4));
}

/* Hero Content */
.tt-hero-content {
  position: relative;
  z-index: var(--tt-z-elevated);
  width: 100%;
  max-width: var(--tt-max-width);
  padding: var(--tt-space-md);
  text-align: center;
}

@media only screen and (min-width: 769px) {
  .tt-hero-content {
    padding: var(--tt-space-xl);
  }
}

.tt-hero-content-left {
  text-align: left;
  max-width: 50%;
}

.tt-hero-content-right {
  text-align: right;
  max-width: 50%;
  margin-left: auto;
}

/* Parallax Hero */
.tt-hero-parallax {
  background-attachment: fixed;
}

/* ============================================
   GRID SYSTEM - PREMIUM LAYOUTS
   ============================================ */

.tt-grid {
  display: grid;
  gap: var(--tt-gap-mobile);
}

@media only screen and (min-width: 769px) {
  .tt-grid {
    gap: var(--tt-gap-desktop);
  }
}

/* Column Grids */
.tt-grid-2 { grid-template-columns: 1fr; }
.tt-grid-3 { grid-template-columns: 1fr; }
.tt-grid-4 { grid-template-columns: repeat(2, 1fr); }

@media only screen and (min-width: 769px) {
  .tt-grid-2 { grid-template-columns: repeat(2, 1fr); }
  .tt-grid-3 { grid-template-columns: repeat(3, 1fr); }
  .tt-grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* Auto-fit Grid (Responsive Cards) */
.tt-grid-auto {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* Asymmetric Grids (Feature + Sidebar) */
.tt-grid-feature-left {
  grid-template-columns: 1fr;
}

@media only screen and (min-width: 769px) {
  .tt-grid-feature-left {
    grid-template-columns: 2fr 1fr;
  }
}

.tt-grid-feature-right {
  grid-template-columns: 1fr;
}

@media only screen and (min-width: 769px) {
  .tt-grid-feature-right {
    grid-template-columns: 1fr 2fr;
  }
}

/* ============================================
   PREMIUM HORIZONTAL SCROLLER
   ============================================ */

.tt-scroller-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.tt-scroller {
  display: flex;
  gap: var(--tt-gap-mobile);
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: var(--tt-space-sm) 0;
  margin: 0 calc(var(--tt-space-sm) * -1);
  padding-left: var(--tt-space-sm);
  padding-right: var(--tt-space-sm);
}

.tt-scroller::-webkit-scrollbar {
  display: none;
}

@media only screen and (min-width: 769px) {
  .tt-scroller {
    gap: var(--tt-gap-desktop);
    margin: 0 calc(var(--tt-space-md) * -1);
    padding-left: var(--tt-space-md);
    padding-right: var(--tt-space-md);
  }
}

/* Scroller Items */
.tt-scroller-item {
  flex: 0 0 85%;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

@media only screen and (min-width: 769px) {
  .tt-scroller-item {
    flex: 0 0 calc((100% - (var(--tt-gap-desktop) * 2)) / 3);
  }
}

.tt-scroller-item-wide {
  flex: 0 0 90%;
}

@media only screen and (min-width: 769px) {
  .tt-scroller-item-wide {
    flex: 0 0 calc((100% - var(--tt-gap-desktop)) / 2);
  }
}

/* Scroller Navigation Arrows */
.tt-scroller-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: var(--tt-z-elevated);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--tt-white);
  box-shadow: var(--tt-shadow-md);
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--tt-transition-fast);
  border: 2px solid var(--tt-gold);
}

@media only screen and (min-width: 769px) {
  .tt-scroller-nav {
    display: flex;
  }
}

.tt-scroller-nav:hover {
  background: var(--tt-gold);
  transform: translateY(-50%) scale(1.1);
  box-shadow: var(--tt-shadow-gold);
}

.tt-scroller-nav-prev {
  left: var(--tt-space-sm);
}

.tt-scroller-nav-next {
  right: var(--tt-space-sm);
}

.tt-scroller-nav svg,
.tt-scroller-nav::before {
  width: 24px;
  height: 24px;
  color: var(--tt-gold);
}

.tt-scroller-nav:hover svg,
.tt-scroller-nav:hover::before {
  color: var(--tt-black);
}

/* Arrow Icons (CSS) */
.tt-scroller-nav-prev::before {
  content: "←";
  font-size: 24px;
  font-weight: 700;
}

.tt-scroller-nav-next::before {
  content: "→";
  font-size: 24px;
  font-weight: 700;
}

/* Scroll Progress Indicator */
.tt-scroller-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: var(--tt-space-sm);
}

.tt-scroller-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--tt-steel);
  opacity: 0.3;
  transition: all var(--tt-transition-fast);
  cursor: pointer;
}

.tt-scroller-dot.active {
  background: var(--tt-gold);
  opacity: 1;
  transform: scale(1.3);
}

/* Mobile Scroll Indicator */
.tt-scroll-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.889em;
  color: var(--tt-steel);
  margin-top: var(--tt-space-xs);
  font-family: "Red Hat Text", sans-serif;
}

.tt-scroll-hint::after {
  content: "→";
  font-size: 1.2em;
  animation: tt-scroll-bounce 2s ease-in-out infinite;
}

@keyframes tt-scroll-bounce {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(8px); }
}

@media only screen and (min-width: 769px) {
  .tt-scroll-hint {
    display: none;
  }
}

/* ============================================
   CARDS - PREMIUM PRODUCT CARDS
   ============================================ */

.tt-card {
  position: relative;
  background: var(--tt-white);
  border-radius: var(--tt-border-radius);
  overflow: hidden;
  transition: all var(--tt-transition-base);
  box-shadow: var(--tt-shadow-sm);
}

.tt-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--tt-shadow-xl);
}

/* Card Image Container */
.tt-card-image-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #F5F5F5;
}

.tt-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--tt-transition-slow);
}

.tt-card:hover .tt-card-image {
  transform: scale(1.08);
}

/* Card Badge (New, Sale, Limited) */
.tt-card-badge {
  position: absolute;
  top: var(--tt-space-sm);
  right: var(--tt-space-sm);
  padding: 0.5rem 1rem;
  background: var(--tt-gold);
  color: var(--tt-black);
  font-size: 0.778em;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: calc(var(--tt-border-radius) / 2);
  z-index: var(--tt-z-elevated);
  box-shadow: var(--tt-shadow-md);
}

.tt-card-badge-rust {
  background: var(--tt-rust);
  color: var(--tt-white);
}

.tt-card-badge-pulse {
  animation: tt-pulse 2s ease-in-out infinite;
}

/* Card Content */
.tt-card-content {
  padding: var(--tt-space-md);
}

/* Card Dark Variant */
.tt-card-dark {
  background: var(--tt-black);
  border: 2px solid var(--tt-steel);
}

.tt-card-dark:hover {
  border-color: var(--tt-bronze);
  box-shadow: 0 16px 48px rgba(241, 171, 61, 0.2);
}

/* Card with Overlay Content */
.tt-card-overlay {
  position: relative;
}

.tt-card-overlay-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--tt-space-md);
  background: linear-gradient(to top, rgba(9, 9, 9, 0.9), rgba(9, 9, 9, 0));
  color: var(--tt-white);
  transform: translateY(100%);
  transition: transform var(--tt-transition-base);
}

.tt-card-overlay:hover .tt-card-overlay-content {
  transform: translateY(0);
}

/* ============================================
   LAYERED SECTIONS (Overlapping Elements)
   ============================================ */

.tt-layer-container {
  position: relative;
}

.tt-layer-back {
  position: relative;
  z-index: var(--tt-z-base);
}

.tt-layer-front {
  position: relative;
  z-index: var(--tt-z-elevated);
  margin-top: calc(var(--tt-space-lg) * -1);
}

@media only screen and (min-width: 769px) {
  .tt-layer-front {
    margin-top: calc(var(--tt-space-xl) * -1);
  }
}

/* Floating Element */
.tt-float {
  box-shadow: var(--tt-shadow-xl);
  border-radius: var(--tt-border-radius-lg);
  background: var(--tt-white);
  padding: var(--tt-space-lg);
}

/* ============================================
   STATS DISPLAY
   ============================================ */

.tt-stats {
  display: grid;
  gap: var(--tt-gap-mobile);
  grid-template-columns: 1fr;
  text-align: center;
}

@media only screen and (min-width: 769px) {
  .tt-stats {
    gap: var(--tt-gap-desktop);
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

.tt-stat-item {
  padding: var(--tt-space-md);
  border-radius: var(--tt-border-radius);
  background: var(--tt-white);
  border: 2px solid var(--tt-gold);
  transition: all var(--tt-transition-base);
  position: relative;
  overflow: hidden;
}

.tt-stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(241, 171, 61, 0.1), transparent);
  transition: left var(--tt-transition-slow);
}

.tt-stat-item:hover::before {
  left: 100%;
}

.tt-stat-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--tt-shadow-gold);
  border-color: var(--tt-rust);
}

.tt-stat-number {
  font-family: "boucherie-block", sans-serif;
  font-size: 3em;
  font-weight: 700;
  line-height: 1;
  color: var(--tt-gold);
  margin-bottom: 0.5rem;
}

@media only screen and (min-width: 769px) {
  .tt-stat-number {
    font-size: 4em;
  }
}

.tt-stat-label {
  font-family: "Red Hat Text", sans-serif;
  font-size: 1em;
  color: var(--tt-black);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Dark Stats */
.tt-stat-item-dark {
  background: var(--tt-black);
  border-color: var(--tt-bronze);
}

.tt-stat-item-dark .tt-stat-label {
  color: var(--tt-white);
}

.tt-stat-item-dark:hover {
  border-color: var(--tt-gold);
  box-shadow: var(--tt-shadow-gold);
}

/* ============================================
   IMAGE GALLERIES
   ============================================ */

.tt-gallery {
  display: grid;
  gap: var(--tt-gap-mobile);
  grid-template-columns: repeat(2, 1fr);
}

@media only screen and (min-width: 769px) {
  .tt-gallery {
    gap: var(--tt-gap-desktop);
    grid-template-columns: repeat(4, 1fr);
  }
}

.tt-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--tt-border-radius);
  cursor: pointer;
  transition: transform var(--tt-transition-base);
  aspect-ratio: 1 / 1;
}

.tt-gallery-item:hover {
  transform: scale(1.05);
  z-index: var(--tt-z-elevated);
}

.tt-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--tt-transition-slow);
}

.tt-gallery-item:hover img {
  transform: scale(1.1);
}

/* Masonry Gallery */
.tt-gallery-masonry {
  column-count: 2;
  column-gap: var(--tt-gap-mobile);
}

@media only screen and (min-width: 769px) {
  .tt-gallery-masonry {
    column-count: 3;
    column-gap: var(--tt-gap-desktop);
  }
}

.tt-gallery-masonry .tt-gallery-item {
  break-inside: avoid;
  margin-bottom: var(--tt-gap-mobile);
  aspect-ratio: unset;
}

@media only screen and (min-width: 769px) {
  .tt-gallery-masonry .tt-gallery-item {
    margin-bottom: var(--tt-gap-desktop);
  }
}

/* ============================================
   URGENCY INDICATORS
   ============================================ */

.tt-urgency {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: calc(var(--tt-border-radius) / 2);
  font-family: "Red Hat Text", sans-serif;
  font-size: 0.889em;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: all var(--tt-transition-fast);
}

.tt-urgency-warning {
  background: var(--tt-rust);
  color: var(--tt-white);
}

.tt-urgency-success {
  background: var(--tt-gold);
  color: var(--tt-black);
}

.tt-urgency-info {
  background: var(--tt-steel);
  color: var(--tt-white);
}

/* Dark Background Variants */
.tt-urgency-warning-dark {
  background: transparent;
  border: 2px solid var(--tt-rust);
  color: var(--tt-rust);
}

.tt-urgency-success-dark {
  background: transparent;
  border: 2px solid var(--tt-gold);
  color: var(--tt-gold);
}

.tt-urgency-info-dark {
  background: transparent;
  border: 2px solid var(--tt-steel);
  color: var(--tt-steel);
}

/* Pulsing Animation */
.tt-urgency-pulse {
  animation: tt-pulse 2s ease-in-out infinite;
}

@keyframes tt-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.05); }
}

/* ============================================
   DIVIDERS - RIPPED PAPER EFFECT
   ============================================ */

.tt-rip-top,
.tt-rip-bottom {
  position: relative;
}

.tt-rip-top::before,
.tt-rip-bottom::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 20px;
  background: inherit;
  z-index: var(--tt-z-elevated);
}

.tt-rip-top::before {
  top: -1px;
  clip-path: polygon(
    0% 0%, 2% 60%, 4% 20%, 6% 80%, 8% 40%, 10% 90%, 12% 30%, 14% 70%, 16% 50%, 18% 100%,
    20% 40%, 22% 80%, 24% 20%, 26% 60%, 28% 90%, 30% 30%, 32% 70%, 34% 40%, 36% 100%, 38% 50%,
    40% 80%, 42% 20%, 44% 60%, 46% 30%, 48% 90%, 50% 40%, 52% 100%, 54% 50%, 56% 80%, 58% 30%,
    60% 70%, 62% 40%, 64% 90%, 66% 20%, 68% 60%, 70% 100%, 72% 50%, 74% 80%, 76% 30%, 78% 70%,
    80% 40%, 82% 90%, 84% 20%, 86% 60%, 88% 100%, 90% 40%, 92% 80%, 94% 30%, 96% 70%, 98% 50%,
    100% 90%, 100% 100%, 0% 100%
  );
}

.tt-rip-bottom::after {
  bottom: -1px;
  clip-path: polygon(
    0% 0%, 2% 40%, 4% 80%, 6% 20%, 8% 60%, 10% 10%, 12% 70%, 14% 30%, 16% 50%, 18% 0%,
    20% 60%, 22% 20%, 24% 80%, 26% 40%, 28% 10%, 30% 70%, 32% 30%, 34% 60%, 36% 0%, 38% 50%,
    40% 20%, 42% 80%, 44% 40%, 46% 70%, 48% 10%, 50% 60%, 52% 0%, 54% 50%, 56% 20%, 58% 70%,
    60% 30%, 62% 60%, 64% 10%, 66% 80%, 68% 40%, 70% 0%, 72% 50%, 74% 20%, 76% 70%, 78% 30%,
    80% 60%, 82% 10%, 84% 80%, 86% 40%, 88% 0%, 90% 60%, 92% 20%, 94% 70%, 96% 30%, 98% 50%,
    100% 10%, 100% 0%, 0% 0%
  );
}

/* Rip Variants */
.tt-rip-top-subtle::before {
  clip-path: polygon(
    0% 0%, 5% 40%, 10% 20%, 15% 50%, 20% 30%, 25% 60%, 30% 40%, 35% 70%, 40% 50%, 45% 80%,
    50% 60%, 55% 90%, 60% 70%, 65% 100%, 70% 80%, 75% 90%, 80% 70%, 85% 80%, 90% 60%, 95% 70%,
    100% 50%, 100% 100%, 0% 100%
  );
}

.tt-rip-bottom-subtle::after {
  clip-path: polygon(
    0% 0%, 5% 30%, 10% 50%, 15% 20%, 20% 40%, 25% 10%, 30% 30%, 35% 0%, 40% 20%, 45% 10%,
    50% 30%, 55% 0%, 60% 20%, 65% 10%, 70% 30%, 75% 20%, 80% 40%, 85% 30%, 90% 50%, 95% 40%,
    100% 60%, 100% 0%, 0% 0%
  );
}

/* ============================================
   WAVE DIVIDERS
   ============================================ */

/* Single Wave Divider (Animated Dashed) */
.tt-wave-divider {
  position: relative;
  width: 100%;
  height: 60px;
  overflow: visible;
  margin: var(--tt-space-md) 0;
}

@media only screen and (min-width: 769px) {
  .tt-wave-divider {
    height: 80px;
    margin: var(--tt-space-lg) 0;
  }
}

.tt-wave-divider svg {
  width: 100%;
  height: 100%;
}

.tt-wave-path {
  fill: none;
  stroke-width: 3;
  stroke-dasharray: 10, 5;
  stroke-linecap: round;
  animation: tt-wave-flow 20s linear infinite;
}

.tt-wave-gold { stroke: var(--tt-gold); }
.tt-wave-bronze { stroke: var(--tt-bronze); }
.tt-wave-rust { stroke: var(--tt-rust); }

@keyframes tt-wave-flow {
  0% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: -100; }
}

/* Double Wave Divider (Dotted Trail + Filled Wave Top) */
.tt-wave-double {
  position: relative;
  width: 100%;
  height: 100px;
  margin: 0;
  padding: 0;
  display: block;
}

@media only screen and (min-width: 769px) {
  .tt-wave-double {
    height: 120px;
  }
}

.tt-wave-double svg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

/* Solid Filled Wave (Creates section top) */
.tt-wave-solid-fill {
  fill: var(--tt-white);
  stroke: none;
}

/* Dotted Trail (Treasure Map) - Sits on top of solid wave */
.tt-wave-dotted {
  fill: none;
  stroke-width: 3;
  stroke-dasharray: 10, 5;
  stroke-linecap: butt;  /* Square ends */
  animation: tt-wave-flow 20s linear infinite;
}

/* Dotted Trail Colors - Use contrasting brand colors */
.tt-wave-dotted-white { stroke: var(--tt-white); }
.tt-wave-dotted-black { stroke: var(--tt-black); }
.tt-wave-dotted-gold { stroke: var(--tt-gold); }
.tt-wave-dotted-bronze { stroke: var(--tt-bronze); }
.tt-wave-dotted-rust { stroke: var(--tt-rust); }
.tt-wave-dotted-steel { stroke: var(--tt-steel); }

/* Recommended Dotted Colors by Previous Section:
   - From WHITE section: use gold, rust, bronze, or steel (NOT white)
   - From BLACK section: use gold, rust, or bronze (NOT black)
   - From GOLD section: use rust, bronze, or black
*/

/* Solid Wave Fill Colors (Next Section Background) */
.tt-wave-fill-white { fill: var(--tt-white); }
.tt-wave-fill-black { fill: var(--tt-black); }
.tt-wave-fill-gold { fill: var(--tt-gold); }
.tt-wave-fill-steel { fill: var(--tt-steel); }
.tt-wave-fill-rust { fill: var(--tt-rust); }
.tt-wave-fill-bronze { fill: var(--tt-bronze); }

/* Simple Gradient Divider */
.tt-divider {
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, var(--tt-gold), var(--tt-bronze), var(--tt-rust));
  margin: var(--tt-space-md) 0;
  border: none;
}

@media only screen and (min-width: 769px) {
  .tt-divider {
    margin: var(--tt-space-lg) 0;
  }
}

/* ============================================
   ASPECT RATIO CONTAINERS
   ============================================ */

.tt-aspect-16-9 {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  overflow: hidden;
  border-radius: var(--tt-border-radius);
}

.tt-aspect-1-1 {
  position: relative;
  width: 100%;
  padding-bottom: 100%;
  overflow: hidden;
  border-radius: var(--tt-border-radius);
}

.tt-aspect-4-3 {
  position: relative;
  width: 100%;
  padding-bottom: 75%;
  overflow: hidden;
  border-radius: var(--tt-border-radius);
}

.tt-aspect-16-9 > *,
.tt-aspect-1-1 > *,
.tt-aspect-4-3 > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================
   HOVER EFFECTS & MICRO-ANIMATIONS
   ============================================ */

/* Zoom on Hover */
.tt-hover-zoom {
  overflow: hidden;
  border-radius: var(--tt-border-radius);
}

.tt-hover-zoom img {
  transition: transform var(--tt-transition-slow);
  display: block;
  width: 100%;
}

.tt-hover-zoom:hover img {
  transform: scale(1.1);
}

/* Lift on Hover */
.tt-hover-lift {
  transition: all var(--tt-transition-base);
}

.tt-hover-lift:hover {
  transform: translateY(-12px);
  box-shadow: var(--tt-shadow-xl);
}

/* Glow on Hover */
.tt-hover-glow {
  transition: all var(--tt-transition-base);
}

.tt-hover-glow:hover {
  box-shadow: var(--tt-shadow-gold);
}

/* Tilt on Hover (3D Effect) */
.tt-hover-tilt {
  transition: transform var(--tt-transition-base);
  transform-style: preserve-3d;
}

.tt-hover-tilt:hover {
  transform: perspective(1000px) rotateX(2deg) rotateY(-2deg);
}

/* Shine Effect */
.tt-shine {
  position: relative;
  overflow: hidden;
}

.tt-shine::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left var(--tt-transition-smooth);
}

.tt-shine:hover::before {
  left: 100%;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */

.tt-fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--tt-transition-slow), transform var(--tt-transition-slow);
}

.tt-fade-in.tt-visible {
  opacity: 1;
  transform: translateY(0);
}

.tt-slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity var(--tt-transition-slow), transform var(--tt-transition-slow);
}

.tt-slide-in-left.tt-visible {
  opacity: 1;
  transform: translateX(0);
}

.tt-slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity var(--tt-transition-slow), transform var(--tt-transition-slow);
}

.tt-slide-in-right.tt-visible {
  opacity: 1;
  transform: translateX(0);
}

.tt-scale-up {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity var(--tt-transition-slow), transform var(--tt-transition-slow);
}

.tt-scale-up.tt-visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger Delays */
.tt-delay-1 { transition-delay: 0.1s; }
.tt-delay-2 { transition-delay: 0.2s; }
.tt-delay-3 { transition-delay: 0.3s; }
.tt-delay-4 { transition-delay: 0.4s; }
.tt-delay-5 { transition-delay: 0.5s; }

/* ============================================
   SPACING UTILITIES
   ============================================ */

/* Margin */
.tt-mt-xs { margin-top: var(--tt-space-xs); }
.tt-mt-sm { margin-top: var(--tt-space-sm); }
.tt-mt-md { margin-top: var(--tt-space-md); }
.tt-mt-lg { margin-top: var(--tt-space-lg); }
.tt-mt-xl { margin-top: var(--tt-space-xl); }

.tt-mb-xs { margin-bottom: var(--tt-space-xs); }
.tt-mb-sm { margin-bottom: var(--tt-space-sm); }
.tt-mb-md { margin-bottom: var(--tt-space-md); }
.tt-mb-lg { margin-bottom: var(--tt-space-lg); }
.tt-mb-xl { margin-bottom: var(--tt-space-xl); }

.tt-ml-sm { margin-left: var(--tt-space-sm); }
.tt-ml-md { margin-left: var(--tt-space-md); }
.tt-ml-lg { margin-left: var(--tt-space-lg); }
.tt-ml-xl { margin-left: var(--tt-space-xl); }

.tt-mr-sm { margin-right: var(--tt-space-sm); }
.tt-mr-md { margin-right: var(--tt-space-md); }
.tt-mr-lg { margin-right: var(--tt-space-lg); }
.tt-mr-xl { margin-right: var(--tt-space-xl); }

.tt-mx-auto { margin-left: auto; margin-right: auto; }
.tt-my-sm { margin-top: var(--tt-space-sm); margin-bottom: var(--tt-space-sm); }
.tt-my-md { margin-top: var(--tt-space-md); margin-bottom: var(--tt-space-md); }
.tt-my-lg { margin-top: var(--tt-space-lg); margin-bottom: var(--tt-space-lg); }
.tt-my-xl { margin-top: var(--tt-space-xl); margin-bottom: var(--tt-space-xl); }

/* Padding */
.tt-pt-xs { padding-top: var(--tt-space-xs); }
.tt-pt-sm { padding-top: var(--tt-space-sm); }
.tt-pt-md { padding-top: var(--tt-space-md); }
.tt-pt-lg { padding-top: var(--tt-space-lg); }
.tt-pt-xl { padding-top: var(--tt-space-xl); }

.tt-pb-xs { padding-bottom: var(--tt-space-xs); }
.tt-pb-sm { padding-bottom: var(--tt-space-sm); }
.tt-pb-md { padding-bottom: var(--tt-space-md); }
.tt-pb-lg { padding-bottom: var(--tt-space-lg); }
.tt-pb-xl { padding-bottom: var(--tt-space-xl); }

.tt-pl-sm { padding-left: var(--tt-space-sm); }
.tt-pl-md { padding-left: var(--tt-space-md); }
.tt-pl-lg { padding-left: var(--tt-space-lg); }
.tt-pl-xl { padding-left: var(--tt-space-xl); }

.tt-pr-sm { padding-right: var(--tt-space-sm); }
.tt-pr-md { padding-right: var(--tt-space-md); }
.tt-pr-lg { padding-right: var(--tt-space-lg); }
.tt-pr-xl { padding-right: var(--tt-space-xl); }

.tt-p-xs { padding: var(--tt-space-xs); }
.tt-p-sm { padding: var(--tt-space-sm); }
.tt-p-md { padding: var(--tt-space-md); }
.tt-p-lg { padding: var(--tt-space-lg); }
.tt-p-xl { padding: var(--tt-space-xl); }

/* ============================================
   VISIBILITY UTILITIES
   ============================================ */

.tt-hide-mobile {
  display: none;
}

@media only screen and (min-width: 769px) {
  .tt-hide-mobile {
    display: block;
  }
}

.tt-show-mobile {
  display: block;
}

@media only screen and (min-width: 769px) {
  .tt-show-mobile {
    display: none;
  }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.tt-full-width { width: 100%; }
.tt-full-height { height: 100%; }
.tt-overflow-hidden { overflow: hidden; }
.tt-relative { position: relative; }
.tt-absolute { position: absolute; }
.tt-block { display: block; }
.tt-inline-block { display: inline-block; }
.tt-flex { display: flex; }
.tt-inline-flex { display: inline-flex; }
.tt-pointer { cursor: pointer; }

/* Flex Utilities */
.tt-flex-row { flex-direction: row; }
.tt-flex-column { flex-direction: column; }
.tt-flex-wrap { flex-wrap: wrap; }
.tt-flex-center { 
  justify-content: center; 
  align-items: center; 
}
.tt-flex-between { justify-content: space-between; }
.tt-flex-around { justify-content: space-around; }
.tt-flex-start { justify-content: flex-start; }
.tt-flex-end { justify-content: flex-end; }
.tt-items-center { align-items: center; }
.tt-items-start { align-items: flex-start; }
.tt-items-end { align-items: flex-end; }

/* Background Colors */
.tt-bg-white { background-color: var(--tt-white); }
.tt-bg-black { background-color: var(--tt-black); }
.tt-bg-gold { background-color: var(--tt-gold); }
.tt-bg-steel { background-color: var(--tt-steel); }
.tt-bg-rust { background-color: var(--tt-rust); }
.tt-bg-bronze { background-color: var(--tt-bronze); }

/* Rounded Corners */
.tt-rounded { border-radius: var(--tt-border-radius); }
.tt-rounded-lg { border-radius: var(--tt-border-radius-lg); }
.tt-rounded-full { border-radius: 9999px; }

/* Shadows */
.tt-shadow-sm { box-shadow: var(--tt-shadow-sm); }
.tt-shadow-md { box-shadow: var(--tt-shadow-md); }
.tt-shadow-lg { box-shadow: var(--tt-shadow-lg); }
.tt-shadow-xl { box-shadow: var(--tt-shadow-xl); }

/* ============================================
   ACCESSIBILITY
   ============================================ */

.tt-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.tt-focusable:focus-visible {
  outline: 3px solid var(--tt-gold);
  outline-offset: 3px;
}

/* ============================================
   END OF PREMIUM STYLESHEET V2
   ============================================ */