/** Shopify CDN: Minification failed

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

**/
/**
 * 3 Tinkers Pink - Complete Homepage Styles
 * Comprehensive CSS utilities matching React/Tailwind implementation
 */

/* ========================================
   CUSTOM SCROLLBAR
   ======================================== */

/* Chrome, Safari, Edge */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #F7F2EE;
}

::-webkit-scrollbar-thumb {
  background: #DFB8B4;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #5A7B7B;
}

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #DFB8B4 #F7F2EE;
}

/* ========================================
   PRESTIGE THEME OVERRIDES
   ======================================== */

/* Only set default background on body/main - sections control their own */
body,
main,
#MainContent {
  background-color: #F7F2EE !important;
}

/* Override Prestige section gaps and spacing */
.section + .section,
.shopify-section + .shopify-section {
  margin-top: 0 !important;
  border-top: none !important;
}

/* Remove any borders or shadows that create dark lines */
.shopify-section,
.section {
  border: none !important;
  box-shadow: none !important;
}

/* ========================================
   VARIABLES & COLORS
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --color-deepolive: #5A7B7B;
  --color-deepolive-dark: #4A6A6A;
  --color-deepolive-light: #7A9494;
  --color-sand: #E5D7D1;
  --color-rose: #DFB8B4;
  --color-rose-light: #EDD5D2;
  --color-stone: #F7F2EE;
  --color-charcoal: #2F2F2C;
  --color-slateteal: #7F948F;
  --color-slateteal-dark: #2F5550;
  --color-slateteal-link: #3F6F67;

  /* Font Families - ALL SECTIONS USE THESE */
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-heading-family: 'Playfair Display', Georgia, serif;
  --font-body-family: 'Inter', system-ui, -apple-system, sans-serif;
}

/* ========================================
   BASE & TYPOGRAPHY
   ======================================== */

body {
  font-family: var(--font-sans);
  color: var(--color-charcoal);
  background-color: var(--color-stone);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--color-charcoal);
}

h1 {
  font-size: 2.5rem;
  line-height: 1.2;
  font-weight: 700;
}

h2 {
  font-size: 2rem;
  line-height: 1.3;
  font-weight: 700;
}

h3 {
  font-size: 1.5rem;
  line-height: 1.4;
  font-weight: 600;
}

@media (min-width: 1024px) {
  h1 {
    font-size: 3.5rem;
  }

  h2 {
    font-size: 2.5rem;
  }
}

.text-balance {
  text-wrap: balance;
}

.font-serif {
  font-family: var(--font-serif);
}

.font-sans {
  font-family: var(--font-sans);
}

/* ========================================
   LAYOUT & CONTAINER
   ======================================== */

.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.section-padding {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

@media (min-width: 1024px) {
  .section-padding {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

/* ========================================
   DISPLAY
   ======================================== */

.hidden {
  display: none;
}

.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

.flex {
  display: flex;
}

.inline-flex {
  display: inline-flex;
}

.grid {
  display: grid;
}

/* ========================================
   FLEXBOX
   ======================================== */

.flex-col {
  flex-direction: column;
}

.flex-row {
  flex-direction: row;
}

.flex-wrap {
  flex-wrap: wrap;
}

.items-start {
  align-items: flex-start;
}

.items-center {
  align-items: center;
}

.items-baseline {
  align-items: baseline;
}

.justify-start {
  justify-content: flex-start;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.flex-shrink-0 {
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .sm\:flex-row {
    flex-direction: row;
  }
}

/* ========================================
   GRID SYSTEM
   ======================================== */

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

@media (min-width: 640px) {
  .sm\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lg\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .lg\:grid-flow-dense {
    grid-auto-flow: dense;
  }

  .lg\:col-start-1 {
    grid-column-start: 1;
  }

  .lg\:col-start-2 {
    grid-column-start: 2;
  }

  .lg\:row-start-1 {
    grid-row-start: 1;
  }
}

@media (min-width: 1280px) {
  .xl\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* ========================================
   GAP UTILITIES
   ======================================== */

.gap-0 {
  gap: 0;
}

.gap-0\.5 {
  gap: 0.125rem;
}

.gap-1 {
  gap: 0.25rem;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-3 {
  gap: 0.75rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-8 {
  gap: 2rem;
}

.gap-12 {
  gap: 3rem;
}

@media (min-width: 1024px) {
  .lg\:gap-8 {
    gap: 2rem;
  }

  .lg\:gap-12 {
    gap: 3rem;
  }

  .lg\:gap-16 {
    gap: 4rem;
  }
}

/* ========================================
   POSITIONING
   ======================================== */

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.top-0 {
  top: 0;
}

.top-3 {
  top: 0.75rem;
}

.right-0 {
  right: 0;
}

.bottom-0 {
  bottom: 0;
}

.left-0 {
  left: 0;
}

.left-3 {
  left: 0.75rem;
}

.-bottom-6 {
  bottom: -1.5rem;
}

.-right-6 {
  right: -1.5rem;
}

.z-0 {
  z-index: 0;
}

.z-10 {
  z-index: 10;
}

/* ========================================
   SIZING
   ======================================== */

.w-5 {
  width: 1.25rem;
}

.w-6 {
  width: 1.5rem;
}

.w-8 {
  width: 2rem;
}

.w-10 {
  width: 2.5rem;
}

.w-12 {
  width: 3rem;
}

.w-4 {
  width: 1rem;
}

.w-16 {
  width: 4rem;
}

.w-full {
  width: 100%;
}

.h-5 {
  height: 1.25rem;
}

.h-6 {
  height: 1.5rem;
}

.h-8 {
  height: 2rem;
}

.h-10 {
  height: 2.5rem;
}

.h-12 {
  height: 3rem;
}

.h-4 {
  height: 1rem;
}

.h-16 {
  height: 4rem;
}

.h-full {
  height: 100%;
}

.h-\[600px\] {
  height: 600px;
}

@media (min-width: 1024px) {
  .lg\:h-\[700px\] {
    height: 700px;
  }
}

.max-w-xs {
  max-width: 20rem;
}

.max-w-2xl {
  max-width: 42rem;
}

.max-w-3xl {
  max-width: 48rem;
}

.max-w-container {
  max-width: 1440px;
}

.max-w-content {
  max-width: 1280px;
}

.max-w-narrow {
  max-width: 768px;
}

/* ========================================
   SPACING - MARGIN
   ======================================== */

.m-auto {
  margin: auto;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mt-0\.5 {
  margin-top: 0.125rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-8 {
  margin-top: 2rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-3 {
  margin-bottom: 0.75rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mb-12 {
  margin-bottom: 3rem;
}

.mr-2 {
  margin-right: 0.5rem;
}

.ml-2 {
  margin-left: 0.5rem;
}

.ml-4 {
  margin-left: 1rem;
}

/* ========================================
   SPACING - PADDING
   ======================================== */

.p-4 {
  padding: 1rem;
}

.p-6 {
  padding: 1.5rem;
}

.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}

@media (min-width: 640px) {
  .sm\:px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .lg\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.py-2\.5 {
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.pb-6 {
  padding-bottom: 1.5rem;
}

.pt-4 {
  padding-top: 1rem;
}

@media (min-width: 1024px) {
  .lg\:py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

/* ========================================
   SPACE BETWEEN
   ======================================== */

.space-y-2 > * + * {
  margin-top: 0.5rem;
}

.space-y-3 > * + * {
  margin-top: 0.75rem;
}

.space-y-4 > * + * {
  margin-top: 1rem;
}

/* ========================================
   COLORS - BACKGROUND
   ======================================== */

.bg-deepolive {
  background-color: var(--color-deepolive);
}

.bg-deepolive-dark {
  background-color: var(--color-deepolive-dark);
}

.bg-deepolive-light {
  background-color: var(--color-deepolive-light);
}

.bg-deepolive\/10 {
  background-color: rgba(66, 77, 44, 0.1);
}

.bg-deepolive\/90 {
  background-color: rgba(66, 77, 44, 0.9);
}

.bg-sand {
  background-color: var(--color-sand);
}

.bg-sand\/30 {
  background-color: rgba(229, 215, 209, 0.3);
}

.bg-rose {
  background-color: var(--color-rose);
}

.bg-stone {
  background-color: var(--color-stone);
}

.bg-charcoal\/20 {
  background-color: rgba(47, 47, 44, 0.2);
}

.bg-charcoal\/60 {
  background-color: rgba(47, 47, 44, 0.6);
}

.bg-slateteal {
  background-color: var(--color-slateteal);
}

.bg-slateteal-dark {
  background-color: var(--color-slateteal-dark);
}

.bg-slateteal\/20 {
  background-color: rgba(127, 148, 143, 0.2);
}

.bg-red-500 {
  background-color: #ef4444;
}

/* Gradient backgrounds */
.bg-gradient-to-r {
  background-image: linear-gradient(to right, var(--tw-gradient-stops));
}

.bg-gradient-to-t {
  background-image: linear-gradient(to top, var(--tw-gradient-stops));
}

.from-stone\/90 {
  --tw-gradient-from: rgba(247, 242, 238, 0.9);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(247, 242, 238, 0));
}

.via-stone\/70 {
  --tw-gradient-stops: var(--tw-gradient-from), rgba(247, 242, 238, 0.7), var(--tw-gradient-to, rgba(247, 242, 238, 0));
}

.to-transparent {
  --tw-gradient-to: transparent;
}

.from-charcoal\/60 {
  --tw-gradient-from: rgba(47, 47, 44, 0.6);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(47, 47, 44, 0));
}

.via-charcoal\/20 {
  --tw-gradient-stops: var(--tw-gradient-from), rgba(47, 47, 44, 0.2), var(--tw-gradient-to, rgba(47, 47, 44, 0));
}

/* ========================================
   COLORS - TEXT
   ======================================== */

.text-deepolive {
  color: var(--color-deepolive);
}

.text-deepolive-dark {
  color: var(--color-deepolive-dark);
}

.text-stone {
  color: var(--color-stone);
}

.text-slateteal {
  color: var(--color-slateteal);
}

.text-charcoal {
  color: var(--color-charcoal);
}

.text-slateteal-link {
  color: var(--color-slateteal-link);
}

.text-neutral-600 {
  color: #525252;
}

.text-neutral-700 {
  color: #404040;
}

.text-white {
  color: #ffffff;
}

.text-amber-400 {
  color: #fbbf24;
}

/* ========================================
   BORDERS
   ======================================== */

.border {
  border-width: 1px;
}

.border-2 {
  border-width: 2px;
}

.border-t {
  border-top-width: 1px;
}

.border-b {
  border-bottom-width: 1px;
}

.border-y {
  border-top-width: 1px;
  border-bottom-width: 1px;
}

.border-deepolive {
  border-color: var(--color-deepolive);
}

.border-deepolive\/20 {
  border-color: rgba(66, 77, 44, 0.2);
}

.border-stone {
  border-color: var(--color-stone);
}

.border-neutral-200 {
  border-color: #e5e5e5;
}

.rounded-full {
  border-radius: 9999px;
}

.rounded-lg {
  border-radius: 0.5rem;
}

.rounded-xl {
  border-radius: 0.75rem;
}

/* ========================================
   TEXT SIZING
   ======================================== */

.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.text-base {
  font-size: 1rem;
  line-height: 1.5rem;
}

.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}

@media (min-width: 1024px) {
  .lg\:text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}

/* ========================================
   FONT WEIGHTS
   ======================================== */

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

/* ========================================
   TEXT ALIGNMENT
   ======================================== */

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

/* ========================================
   MISC TEXT
   ======================================== */

.leading-relaxed {
  line-height: 1.625;
}

.line-clamp-2 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.line-clamp-3 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

/* ========================================
   OPACITY
   ======================================== */

.opacity-0 {
  opacity: 0;
}

.opacity-90 {
  opacity: 0.9;
}

.opacity-50 {
  opacity: 0.5;
}

.opacity-100 {
  opacity: 1;
}

.disabled\:opacity-50:disabled {
  opacity: 0.5;
}

.disabled\:cursor-not-allowed:disabled {
  cursor: not-allowed;
}

/* ========================================
   SHADOWS
   ======================================== */

.shadow-soft {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.shadow-soft-lg {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.shadow-sm {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.shadow-md {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* ========================================
   OVERFLOW
   ======================================== */

.overflow-hidden {
  overflow: hidden;
}

.overflow-y-auto {
  overflow-y: auto;
}

/* ========================================
   OBJECT FIT
   ======================================== */

.object-cover {
  object-fit: cover;
}

/* ========================================
   ASPECT RATIOS
   ======================================== */

.aspect-square {
  aspect-ratio: 1 / 1;
}

.aspect-\[3\/4\] {
  aspect-ratio: 3 / 4;
}

/* ========================================
   CURSOR
   ======================================== */

.cursor-pointer {
  cursor: pointer;
}

/* ========================================
   USER SELECT
   ======================================== */

.select-none {
  user-select: none;
}

/* ========================================
   TRANSITIONS
   ======================================== */

.transition-colors {
  transition-property: color, background-color, border-color;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 200ms;
}

.transition-transform {
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}

.transition-opacity {
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}

.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 200ms;
}

.duration-300 {
  transition-duration: 300ms;
}

/* ========================================
   TRANSFORMS
   ======================================== */

.scale-105 {
  transform: scale(1.05);
}

.rotate-180 {
  transform: rotate(180deg);
}

/* ========================================
   ANIMATIONS
   ======================================== */

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.animate-spin {
  animation: spin 1s linear infinite;
}

/* ========================================
   GROUP HOVER STATES
   ======================================== */

.group:hover .group-hover\:scale-105 {
  transform: scale(1.05);
}

.group:hover .group-hover\:opacity-100 {
  opacity: 1;
}

.group:hover .group-hover\:text-deepolive {
  color: var(--color-deepolive);
}

/* ========================================
   HOVER STATES
   ======================================== */

.hover\:bg-deepolive\/90:hover {
  background-color: #6B9090;
}

.hover\:bg-deepolive-dark:hover {
  background-color: #6B9090;
}

.hover\:bg-slateteal-dark:hover {
  background-color: var(--color-slateteal-dark);
}

.hover\:bg-sand:hover {
  background-color: var(--color-sand);
}

.hover\:bg-sand\/30:hover {
  background-color: rgba(229, 215, 209, 0.3);
}

.hover\:bg-stone:hover {
  background-color: var(--color-stone);
}

.hover\:text-deepolive:hover {
  color: var(--color-deepolive);
}

.hover\:text-charcoal:hover {
  color: var(--color-charcoal);
}

.hover\:border-deepolive:hover {
  border-color: var(--color-deepolive);
}

.hover\:shadow-soft:hover {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.hover\:shadow-md:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.active\:bg-deepolive-dark:active {
  background-color: var(--color-deepolive-dark);
}

.active\:bg-slateteal-dark:active {
  background-color: var(--color-slateteal-dark);
}

.active\:bg-sand:active {
  background-color: var(--color-sand);
}

/* ========================================
   FOCUS STATES
   ======================================== */

.btn-focus:focus {
  outline: 2px solid var(--color-deepolive);
  outline-offset: 2px;
}

/* ========================================
   RESPONSIVE - ORDER
   ======================================== */

@media (min-width: 1024px) {
  .lg\:order-1 {
    order: 1;
  }

  .lg\:order-2 {
    order: 2;
  }
}

/* ========================================
   PROSE / CONTENT
   ======================================== */

.prose {
  max-width: 65ch;
}

.prose p {
  margin-bottom: 1rem;
  line-height: 1.75;
}

/* ========================================
   SECTION-SPECIFIC STYLES
   ======================================== */

/* Hero */
.tp-hero img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

/* Value Props */
.tp-value-props .font-serif {
  font-family: var(--font-serif);
}

/* Category Tiles */
.tp-category-tiles .group {
  cursor: pointer;
}

/* Featured Products */
.tp-featured-products .product-card {
  position: relative;
}

.tp-featured-products .product-card img {
  object-fit: cover;
}

/* Personalization */
.tp-personalization .font-serif {
  font-family: var(--font-serif);
}

/* Reviews Strip */
.tp-reviews-strip .text-amber-400 {
  color: #fbbf24;
}

/* FAQ Teaser */
.tp-faq-teaser details summary {
  list-style: none;
  user-select: none;
}

.tp-faq-teaser details summary::-webkit-details-marker {
  display: none;
}

.tp-faq-teaser details[open] summary svg {
  transform: rotate(180deg);
}

/* ========================================
   GENERAL ELEMENT STYLES
   ======================================== */

button,
a[class*="inline-flex"] {
  transition: all 0.2s ease;
}

button:hover,
a[class*="inline-flex"]:hover {
  transform: translateY(-1px);
}

/* SVG Icon Defaults */
svg {
  flex-shrink: 0;
}

/* Link Colors */
a {
  color: inherit;
  text-decoration: none;
}

/* ========================================
   MEDIA QUERIES - MOBILE FIRST
   ======================================== */

@media (max-width: 639px) {
  /* Override Prestige theme CSS variables */
  :root {
    --container-gutter: 0.5rem !important;
    --container-max-width: 100% !important;
  }
  
  /* Prevent horizontal scrolling on mobile */
  html, body {
    overflow-x: hidden !important;
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  
  body {
    position: relative;
    width: 100% !important;
  }
  
  /* Reset main element */
  main, #main, .anchor {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  
  /* Reset shopify section wrappers */
  .shopify-section {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  
  /* Reset section class from Prestige */
  .section {
    margin-inline-start: 0 !important;
    margin-inline-end: 0 !important;
    --distance-to-bleed: 0.5rem !important;
  }
  
  .container {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    max-width: 100%;
    box-sizing: border-box;
  }
  
  /* Override px-4 class specifically for hero on mobile - MUST come after base .px-4 definition */
  .tp-hero .px-4,
  .tp-hero [class*="px-4"],
  .tp-hero .container.px-4,
  .tp-hero .container[class*="px-4"] {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }
  
  /* Hero container gets minimal padding for maximum width usage */
  .tp-hero .container,
  .tp-hero .container.mx-auto,
  .tp-hero .tp-hero-container {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  
  /* Remove max-width constraint completely on mobile */
  .tp-hero .max-w-2xl,
  .tp-hero [class*="max-w-2xl"],
  .tp-hero .container > div,
  .tp-hero .tp-hero-content,
  .tp-hero-container > div,
  .tp-hero-container .max-w-2xl {
    max-width: 100% !important;
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  
  /* Force all hero content to use full width */
  .tp-hero-container .tp-hero-content,
  .tp-hero-container > .max-w-2xl {
    max-width: 100% !important;
    width: 100% !important;
  }

  .sm\:hidden {
    display: none;
  }
  
  /* Ensure all sections don't overflow */
  section, .section, .shopify-section {
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
  }
  
  /* Make sure header and menu toggle are visible on mobile */
  .tp-header,
  .section-header,
  .shopify-section-group-header-group {
    overflow-x: visible !important;
    max-width: 100% !important;
  }
  
  .tp-header__menu-toggle {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    z-index: 10 !important;
  }
  
  .tp-header__wrapper {
    display: flex !important;
    align-items: center !important;
  }
  
  /* Fix images that might overflow */
  img {
    max-width: 100%;
    height: auto;
  }
  
  /* Fix text overflow */
  h1, h2, h3, h4, h5, h6, p {
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  
  /* Hero section mobile fixes */
  .tp-hero {
    overflow-x: hidden;
    padding-left: 0;
    padding-right: 0;
    width: 100%;
    max-width: 100%;
  }
  
  .tp-hero .container {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    box-sizing: border-box !important;
  }
  
  /* Override px-4 class on mobile for hero to reduce padding */
  .tp-hero .container.px-4,
  .tp-hero .container[class*="px-4"],
  .tp-hero .container.mx-auto {
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  
  .tp-hero h1 {
    font-size: 2rem;
    line-height: 1.2;
  }
  
  /* Remove max-width constraint on mobile for hero content */
  .tp-hero .max-w-2xl,
  .tp-hero [class*="max-w-2xl"],
  .tp-hero .container > div {
    max-width: 100% !important;
    width: 100% !important;
    padding-right: 0 !important;
    margin-right: 0 !important;
    box-sizing: border-box;
  }
  
  /* Make sure text content uses full available width - NOT buttons */
  .tp-hero h1,
  .tp-hero p {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
  }
  
  /* Button container - but keep buttons natural size */
  .tp-hero .flex.gap-4 {
    width: 100% !important;
  }
  
  /* Buttons should NOT be stretched */
  .tp-hero a.inline-flex {
    width: auto !important;
    max-width: none !important;
    flex-shrink: 0 !important;
  }
  
  /* Ensure hero section itself has no extra spacing */
  .tp-hero,
  .section-tp-hero,
  section.tp-hero {
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  
  /* Fix any shopify-section wrapper */
  .shopify-section--tp-hero,
  .shopify-section[class*="tp-hero"] {
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
    box-sizing: border-box !important;
  }
  
  /* Featured products mobile fixes */
  .tp-featured-products {
    overflow-x: hidden;
  }
  
  .tp-featured-products .container {
    width: 100%;
    max-width: 100%;
  }
  
  .tp-featured-products .grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 1.5rem;
  }
  
  .tp-featured-products .tp-product-card {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  
  .tp-featured-products .tp-product-price-row {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  
  .tp-featured-products .tp-product-card__title {
    font-size: 1rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  
  /* Category tiles mobile fixes */
  .tp-category-tiles {
    overflow-x: hidden;
  }
  
  .tp-category-tiles .grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  
  /* Personalization section mobile fixes */
  .tp-personalization {
    overflow-x: hidden;
  }
  
  .tp-personalization .grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  
  .tp-personalization .absolute {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 1rem;
  }
  
  /* Reviews strip mobile fixes */
  .tp-reviews-strip {
    overflow-x: hidden;
  }
  
  .tp-reviews-strip .grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  
  /* Story section mobile fixes */
  .tp-story {
    overflow-x: hidden;
  }
  
  .tp-story .grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  
  /* CTA section mobile fixes */
  .tp-cta {
    overflow-x: hidden;
  }
  
  /* Value props mobile fixes */
  .tp-value-props {
    overflow-x: hidden;
  }
  
  .tp-value-props .grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 2rem;
  }
  
  /* All buttons should not overflow */
  button {
    max-width: 100%;
    box-sizing: border-box;
  }
  
  /* Ensure flex containers don't overflow */
  .flex {
    flex-wrap: wrap;
  }
  
  /* Fix any absolute positioned elements */
  .absolute {
    max-width: calc(100% - 2rem);
  }
}

/* ========================================
   PRINT STYLES
   ======================================== */

@media print {
  .no-print {
    display: none;
  }
}

/* ========================================
   COLLECTION PAGE OVERRIDES
   ======================================== */

/* Collection page background */
.shopify-section--main-collection {
  background: var(--color-stone) !important;
}

/* Product titles - Playfair Display, one line truncated */
.shopify-section--main-collection .product-title {
  font-family: var(--font-serif) !important;
  font-size: 0.95rem !important;
  font-weight: 600 !important;
  color: var(--color-charcoal) !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  display: block !important;
}

/* Product prices - Inter font, green color */
.shopify-section--main-collection .price {
  font-family: var(--font-sans) !important;
  color: var(--color-deepolive) !important;
}

/* Sidebar styling */
.shopify-section--main-collection .facets-sidebar {
  background: var(--color-stone) !important;
}

/* Filter accordion titles */
.shopify-section--main-collection .accordion__title {
  font-family: var(--font-sans) !important;
  font-weight: 600 !important;
  font-size: 0.9rem !important;
  color: var(--color-charcoal) !important;
}

/* Filter checkboxes accent color */
.shopify-section--main-collection input[type="checkbox"] {
  accent-color: var(--color-deepolive) !important;
}

/* Product card hover effect */
.shopify-section--main-collection .product-card__image--primary {
  transition: transform 0.3s ease !important;
}

.shopify-section--main-collection .product-card:hover .product-card__image--primary {
  transform: scale(1.05) !important;
}

/* Product card container - rounded corners */
.shopify-section--main-collection .product-card__figure {
  border-radius: 8px !important;
  overflow: hidden !important;
}


/* ========================================
   SCROLLBAR OVERRIDE - END OF FILE
   ======================================== */
html::-webkit-scrollbar,
body::-webkit-scrollbar,
*::-webkit-scrollbar {
  width: 10px !important;
}

html::-webkit-scrollbar-track,
body::-webkit-scrollbar-track,
*::-webkit-scrollbar-track {
  background: #F7F2EE !important;
}

html::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb,
*::-webkit-scrollbar-thumb {
  background: #DFB8B4 !important;
  border-radius: 5px !important;
}

html::-webkit-scrollbar-thumb:hover,
body::-webkit-scrollbar-thumb:hover,
*::-webkit-scrollbar-thumb:hover {
  background: #5A7B7B !important;
}
