/** Shopify CDN: Minification failed

Line 1178:0 Unexpected "}"

**/
/* Conversion-Optimized Styles for Scrubs Galore */

/* Improved text contrast and readability */
body {
  color: #333;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  color: #000;
  font-weight: 700;
}

/* Base text color - excluding testimonials */
body p,
body span,
body li {
  color: #444;
  line-height: 1.6;
}

/* Fix for testimonials - inherit section text color, stars always gold */
.testimonials-section p,
.testimonials-section span:not(.testimonial-stars),
.testimonials-section .rte-setting,
.testimonials-section .text-spacing,
.testimonials-section blockquote {
  color: inherit !important;
}

.testimonials-section strong {
  color: #FAC440 !important;
}

/* Stars always gold regardless of background */
.testimonials-section .testimonial-stars {
  color: #FAC440 !important;
}

/* Enhance contrast on dark backgrounds */
.countdown-wrapper,
[style*="background: rgb(15, 15, 15)"],
[style*="background-color: rgb(15, 15, 15)"],
[style*="--countdown-background-color: #0f0f0f"] {
  color: #ffffff !important;
}

.countdown-wrapper h1,
.countdown-wrapper h2,
.countdown-wrapper h3,
.countdown-wrapper p {
  color: #ffffff !important;
}

/* Button text contrast */
.btn {
  text-shadow: none;
}

.btn--solid {
  color: #ffffff;
}

.product-block--guarantee {
  background: linear-gradient(135deg, #000 0%, #1C1D1D 100%);
  color: #FAC440;
  padding: 16px 20px;
  text-align: center;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin: 12px 0 20px;
  border: 2px solid #FAC440;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  animation: fudge-pulse 3s ease-in-out infinite;
}

@keyframes fudge-pulse {
  0%, 100% {
    opacity: 1;
    box-shadow: 0 4px 12px rgba(250, 196, 64, 0.15);
  }
  50% {
    opacity: 0.95;
    box-shadow: 0 6px 16px rgba(250, 196, 64, 0.25);
  }
}

/* Enhance CTA buttons */
.btn {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  transition: left 0.3s ease;
}

.btn:hover::before {
  left: 100%;
}

/* Trust badge styling */
.product-block--sales-point {
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
}

.product-block--sales-point:last-child {
  border-bottom: none;
}

.sales-point .icon-and-text {
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 1.4;
}

.sales-point svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  fill: #FAC440;
}

/* Price block emphasis */
.product__price.on-sale {
  color: #FF4E4E;
  font-weight: 700;
  font-size: 1.3em;
}

.fudge-savings-badge {
  background: #FF4E4E !important;
  color: #fff;
  padding: 6px 14px;
  border-radius: 0;
  font-weight: 700;
  display: inline-block;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.1em;
  box-shadow: 0 2px 8px rgba(255, 78, 78, 0.2);
}

/* Collection Grid Sale Badges & Price Anchoring */
.grid-product__price {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}

.grid-product__price--original {
  text-decoration: line-through;
  color: #888;
  font-size: 13px;
  font-weight: 400;
  order: 2;
}

.grid-product__price .money {
  font-size: 15px;
  font-weight: 700;
  color: #000;
}

.grid-product__price--savings {
  display: inline-flex;
  align-items: center;
  background: #FF4E4E;
  color: #fff !important;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  order: 3;
  box-shadow: 0 2px 6px rgba(255, 78, 78, 0.25);
}

/* Sale tag badge enhancement */
.grid-product__tag--sale {
  background: linear-gradient(135deg, #d4af37 0%, #e8c547 100%) !important;
  color: #000 !important;
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  box-shadow: 0 2px 8px rgba(255, 78, 78, 0.3);
}

/* Selling Fast badge */
.grid-product__tag--selling-fast {
  background: #000 !important;
  color: #FAC440 !important;
  padding: 5px 10px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* On-sale price styling */
.grid-product__price .on-sale .money {
  color: #FF4E4E;
  font-weight: 700;
}

/* From price for variants */
.grid-product__price .from-text {
  font-size: 12px;
  color: #666;
  margin-right: 4px;
}

/* Mobile optimizations */
@media only screen and (max-width: 768px) {
  .grid-product__price {
    gap: 6px;
    margin-top: 6px;
  }
  
  .grid-product__price .money {
    font-size: 14px;
  }
  
  .grid-product__price--original {
    font-size: 12px;
  }
  
  .grid-product__price--savings {
    font-size: 10px;
    padding: 3px 8px;
  }
  
  .grid-product__tag--sale {
    padding: 5px 10px;
    font-size: 10px;
    top: 10px;
    left: 10px;
    background: linear-gradient(135deg, #d4af37 0%, #e8c547 100%) !important;
    color: #000 !important;
  }
}

/* ============================================
   PRODUCT PAGE ATC & TYPOGRAPHY IMPROVEMENTS
   ============================================ */

/* Prominent Add to Cart button */
button.btn.add-to-cart,
button.btn.btn--secondary.add-to-cart,
.product-form button.btn.add-to-cart {
  background: #FAC440 !important;
  color: #000 !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  padding: 18px 24px !important;
  min-height: 56px !important;
  border: 2px solid #FAC440 !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(250, 196, 64, 0.3) !important;
}

button.btn.add-to-cart:hover,
button.btn.btn--secondary.add-to-cart:hover,
.product-form button.btn.add-to-cart:hover {
  background: #000 !important;
  color: #FAC440 !important;
  border-color: #000 !important;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2) !important;
}

button.btn.add-to-cart[disabled],
button.btn.btn--secondary.add-to-cart[disabled] {
  background: #e8e8e8 !important;
  color: #999 !important;
  border-color: #e8e8e8 !important;
  box-shadow: none !important;
}


@media only screen and (max-width: 749px) {
  .product-single__title {
    font-size: 22px !important;
  }
  
  .product-form .btn.add-to-cart {
    min-height: 52px !important;
    font-size: 15px !important;
  }
}

/* Sale price emphasis on PDP */
.product__price--sale .product__price--reg {
  text-decoration: line-through;
  color: #999 !important;
  font-size: 0.85em;
}

.product__price--sale .product__price--compare {
  color: #FF4E4E !important;
  font-weight: 700;
  font-size: 1.2em;
}

/* Inventory status emphasis */
.product__inventory {
  color: #FF4E4E;
  font-weight: 600;
  font-size: 14px;
  padding: 8px;
  background: #fff5f5;
  margin: 10px 0;
  border-left: 3px solid #FF4E4E;
}

/* Mobile optimization */
@media only screen and (max-width: 749px) {
  .product-block--guarantee {
    font-size: 11px;
    padding: 12px 14px;
    margin: 8px 0 14px;
  }

  .product__price.on-sale {
    font-size: 1.15em;
  }

  .btn {
    min-height: 48px;
    padding: 14px 20px;
  }
}

/* Testimonial section styling */
.testimonials__text {
  font-size: 15px;
  line-height: 1.6;
  color: #333;
}

.testimonials-slider__text cite {
  display: block;
  font-weight: 700;
  font-size: 15px;
  margin-top: 12px;
  color: #000;
}

/* Mobile testimonial alignment fix */
@media (max-width: 768px) {
  .testimonial-stars {
    text-align: center !important;
  }
  
  .testimonials-slider__text {
    text-align: center !important;
  }
}

/* Newsletter CTA emphasis */
.newsletter-1603121401369 {
  background: linear-gradient(135deg, #000 0%, #1C1D1D 100%);
  padding: 60px 20px;
}

.newsletter-1603121401369 .h3 {
  color: #FAC440;
  margin-bottom: 10px;
}

/* Newsletter section - ensure white text on dark background */
.newsletter-section,
[class*="newsletter-"] {
  color: #fff !important;
}

.newsletter-section h2,
.newsletter-section h3,
.newsletter-section .h2,
.newsletter-section .h3,
[class*="newsletter-"] h2,
[class*="newsletter-"] h3,
[class*="newsletter-"] .h2,
[class*="newsletter-"] .h3 {
  color: #fff !important;
}

.newsletter-section p,
[class*="newsletter-"] p {
  color: #fff !important;
}

/* Homepage section spacing */
.index-section {
  padding: 60px 0;
}

@media only screen and (max-width: 749px) {
  .index-section {
    padding: 40px 0;
  }
}

/* Collection Page Enhancements - moved to fudge-UAHFk-collection-redesign.css */

/* Sidebar refinements */
.collection-grid-filters {
  position: sticky;
  top: 100px;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
}

.filter-group {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #E8E8E1;
}

.filter-group:last-child {
  border-bottom: none;
}

.filter-group__title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 12px;
  color: #000;
}

.filter-group__item {
  font-size: 13px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  transition: color 0.3s ease;
}

.filter-group__item:hover {
  color: #FAC440;
}

/* Mobile sidebar drawer improvements */
.collection-filters__drawer {
  background: #fff;
  box-shadow: none;
  border: 1px solid #E8E8E1;
}

/* ============================================
   ENHANCED MOBILE DRAWER MENU - Scrubs Galore
   ============================================ */

/* Fix header navigation z-index to ensure clickable */
.header-item--navigation {
  position: relative;
  z-index: 10 !important;
}

.header-item--navigation .site-nav {
  position: relative;
  z-index: 10 !important;
}

/* Ensure hamburger button is always clickable on touch devices */
.site-nav__link--icon.js-drawer-open-nav {
  position: relative;
  z-index: 20 !important;
  pointer-events: auto !important;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  cursor: pointer !important;
}

/* Make sure the icon inside doesn't block clicks */
.site-nav__link--icon.js-drawer-open-nav svg,
.site-nav__link--icon.js-drawer-open-nav span {
  pointer-events: none;
}

/* Ensure cart icon has adequate tap target on mobile (44x44px minimum) */
.site-nav__link--icon.js-drawer-open-cart {
  position: relative;
  z-index: 30 !important;
  min-width: 44px !important;
  min-height: 44px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  pointer-events: auto !important;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  cursor: pointer !important;
}

.site-nav__link--icon.js-drawer-open-cart svg,
.site-nav__link--icon.js-drawer-open-cart span {
  pointer-events: none;
}

/* Ensure header stays above sticky ATC bar and floating widgets */
@media only screen and (max-width: 768px) {
  .header-sticky-wrapper {
    z-index: 1000 !important;
  }

  .header-wrapper.header-wrapper--sticky {
    z-index: 1000 !important;
  }
}

/* Fix center-split layout - prevent logo-split from overlapping hamburger on mobile */
@media only screen and (max-width: 768px) {
  .header-item--logo-split {
    flex: 1 1 0 !important;
    min-width: 0 !important;
    pointer-events: none !important;
  }
  
  .header-item--logo-split * {
    pointer-events: auto;
  }
  
  /* Ensure navigation items are clickable on mobile */
  .header-item--navigation {
    pointer-events: auto !important;
    flex: 0 0 auto !important;
  }
  
  .header-item--icons {
    pointer-events: auto !important;
    flex: 0 0 auto !important;
  }
}

/* Drawer container - full height, smooth animation */
.drawer {
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15) !important;
  z-index: 9999 !important;
}

/* Make drawer visible when opened */
.drawer.drawer--is-open {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  z-index: 9999 !important;
}

/* Left drawer - translate to visible position (matches theme: 350px) */
.drawer--left.drawer--is-open,
.drawer.drawer--left.drawer--is-open {
  transform: translateX(350px) !important;
  left: -350px;
}

/* Right drawer - translate to visible position (matches theme: -350px) */
.drawer--right.drawer--is-open,
.drawer.drawer--right.drawer--is-open {
  transform: translateX(-350px) !important;
}

/* Also support the wrong class name that was previously used */
.drawer.drawer--is-visible {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  z-index: 9999 !important;
}

.drawer--left.drawer--is-visible {
  transform: translateX(350px) !important;
}

.drawer--right.drawer--is-visible {
  transform: translateX(-350px) !important;
}

.drawer--right {
  background: #ffffff;
}

/* Drawer header with close button */
.drawer__fixed-header {
  border-bottom: 2px solid #d4af37;
  background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
}

.drawer__header {
  padding: 16px 20px;
  min-height: 60px;
}

.drawer__title {
  color: #FAC440;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* Close button - gold accent */
.drawer__close-button {
  color: #FAC440 !important;
  transition: all 0.3s ease;
  padding: 8px;
}

.drawer__close-button:hover {
  color: #ffffff !important;
  transform: rotate(90deg);
}

.drawer__close-button svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 2px;
}

/* Scrollable content area */
.drawer__scrollable {
  padding: 0;
}

/* Mobile navigation container */
.mobile-nav {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Top-level navigation items */
.mobile-nav__item {
  border-bottom: 1px solid #f5f5f5;
  margin: 0;
}

.mobile-nav__item:last-child {
  border-bottom: none;
}

/* Main navigation links */
.mobile-nav__link--top-level {
  display: block;
  padding: 18px 20px;
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #111 !important;
  text-decoration: none;
  transition: all 0.25s ease;
  border-left: 4px solid transparent;
}

.mobile-nav__link--top-level:hover,
.mobile-nav__link--top-level:focus {
  background: #FFFBF0;
  color: #000 !important;
  border-left-color: #FAC440;
  padding-left: 24px;
}

.mobile-nav__link--top-level[data-active="true"] {
  background: #FFFBF0;
  border-left-color: #FAC440;
  color: #000 !important;
  font-weight: 700;
}

/* Dropdown toggle buttons */
.mobile-nav__has-sublist {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
}

.mobile-nav__toggle {
  flex-shrink: 0;
  padding-right: 16px;
}

/* Toggle/expand button styling */
.mobile-nav__toggle button,
.mobile-nav__link--button {
  background: transparent;
  border: none;
  padding: 16px 20px;
  cursor: pointer;
  color: #000;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  text-align: left;
}

.mobile-nav__toggle button {
  padding: 12px;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f9f9f9;
  border: 1px solid #e8e8e8;
}

.mobile-nav__toggle button:hover {
  background: #FAC440;
  border-color: #FAC440;
}

.mobile-nav__toggle button.is-open {
  background: #000;
  border-color: #000;
  color: #FAC440;
}

/* Collapsible icons (chevrons) */
.mobile-nav__toggle .collapsible-trigger__icon,
.collapsible-icons svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.mobile-nav__toggle button.is-open .collapsible-trigger__icon,
.is-open .collapsible-icons svg {
  transform: rotate(180deg);
}

/* Sublist (dropdown) containers */
.mobile-nav__sublist {
  background: #fafafa;
  border-left: 3px solid #FAC440;
  margin-left: 0;
}

.mobile-nav__sublist .collapsible-content__inner {
  padding: 8px 0;
}

/* Child links (second level) */
.mobile-nav__sublist .mobile-nav__link,
.mobile-nav__sublist .mobile-nav__faux-link,
.drawer .mobile-nav__sublist a.mobile-nav__link {
  display: block;
  padding: 14px 20px 14px 32px;
  font-size: 14px;
  font-weight: 500;
  color: #333 !important;
  text-decoration: none;
  transition: all 0.25s ease;
  border-left: 3px solid transparent;
}

.mobile-nav__sublist .mobile-nav__link:hover {
  background: #fff;
  color: #000 !important;
  border-left-color: #FAC440;
  padding-left: 36px;
}

.mobile-nav__sublist .mobile-nav__link[data-active="true"] {
  background: #fff;
  border-left-color: #FAC440;
  color: #000 !important;
  font-weight: 600;
}

/* Child item with sub-dropdown */
.mobile-nav__child-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 12px;
}

.mobile-nav__child-item .mobile-nav__link {
  flex: 1;
}

.mobile-nav__child-item .collapsible-trigger {
  padding: 10px;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  background: #f0f0f0;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-nav__child-item .collapsible-trigger:hover {
  background: #FAC440;
}

/* Grandchild list (third level) */
.mobile-nav__grandchildlist {
  background: #f5f5f5;
  padding: 6px 0;
}

.mobile-nav__grandchildlist .mobile-nav__link {
  padding: 12px 20px 12px 48px;
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  color: #333 !important;
  font-weight: 400;
}

.mobile-nav__grandchildlist .mobile-nav__link:hover {
  background: #fff;
  color: #000 !important;
  padding-left: 52px;
}

/* Secondary items (toolbar + account) */
.mobile-nav__item--secondary {
  background: #f9f9f9;
  border-top: 2px solid #e8e8e8;
  margin-top: 8px;
  padding: 16px 20px;
}

.mobile-nav__item--secondary .mobile-nav__link {
  font-size: 13px;
  color: #666 !important;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 10px 0;
  font-weight: 500;
}

.mobile-nav__item--secondary .mobile-nav__link:hover {
  color: #000 !important;
}

/* Social media icons at bottom */
.mobile-nav__social {
  display: flex;
  gap: 16px;
  padding: 24px 20px;
  margin: 0;
  border-top: 1px solid #e8e8e8;
  background: #fff;
  justify-content: center;
}

.mobile-nav__social-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #ddd;
  transition: all 0.3s ease;
}

.mobile-nav__social-item a:hover {
  background: #000;
  border-color: #000;
  transform: translateY(-2px);
}

.mobile-nav__social-item a:hover svg path {
  fill: #FAC440 !important;
}

.mobile-nav__social-item svg {
  width: 20px;
  height: 20px;
  transition: all 0.3s ease;
}

.mobile-nav__social-item svg path {
  fill: #111 !important;
}

/* Faux button for dropdowns */
.faux-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

/* Animation improvements */
.drawer--right {
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.js-drawer-open .drawer--right {
  transform: translateX(0);
}

/* Collapsible content animation */
.collapsible-content {
  transition: height 0.3s ease;
}

/* Mobile overlay backdrop */
.drawer-overlay {
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(2px);
}

/* Responsive adjustments */
@media only screen and (max-width: 768px) {
  .drawer {
    width: 85vw !important;
    max-width: 360px;
  }
  
  /* Fix mobile drawer positioning - drawer is positioned left: -85vw, needs to translate back */
  .drawer--left {
    left: calc(-85vw) !important;
  }
  
  .drawer--left.drawer--is-open {
    transform: translateX(calc(85vw)) !important;
  }
  
  .mobile-nav__link--top-level {
    padding: 16px 18px;
    font-size: 14px;
  }
  
  .mobile-nav__sublist .mobile-nav__link {
    padding: 12px 18px 12px 28px;
    font-size: 13px;
  }
  
  .mobile-nav__grandchildlist .mobile-nav__link {
    padding: 10px 18px 10px 40px;
    font-size: 12px;
  }
}

/* Touch-friendly tap targets */
@media (hover: none) and (pointer: coarse) {
  .mobile-nav__link--top-level,
  .mobile-nav__sublist .mobile-nav__link {
    padding-top: 18px;
    padding-bottom: 18px;
  }
  
  .mobile-nav__toggle button {
    width: 48px;
    height: 48px;
  }
}

/* Quick Shop Links - Mobile Drawer */
.mobile-nav__quick-links {
  background: linear-gradient(135deg, #FFFBF0 0%, #FFF8E7 100%);
  padding: 20px;
  border-bottom: 2px solid #FAC440;
}

.mobile-nav__quick-links-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #666;
  margin-bottom: 12px;
}

.mobile-nav__quick-links-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.mobile-nav__quick-link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 8px;
  background: #fff;
  border: 1px solid #FAC440;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #000 !important;
  text-decoration: none;
  transition: all 0.25s ease;
  text-align: center;
  line-height: 1.2;
}

.mobile-nav__quick-link:hover {
  background: #FAC440;
  color: #000 !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(250, 196, 64, 0.3);
}

@media only screen and (max-width: 768px) {
  .mobile-nav__quick-links {
    padding: 16px;
  }
  
  .mobile-nav__quick-links-grid {
    gap: 6px;
  }
  
  .mobile-nav__quick-link {
    padding: 10px 6px;
    font-size: 11px;
  }
}

/* Blog section spacing */
.blog-posts-section {
  margin-top: 60px;
  padding-top: 60px;
  border-top: 1px solid #E8E8E1;
}

/* Quick-Add Button on Collection Cards */
.fudge-quick-add-btn {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: #FAC440;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  opacity: 1;
  transform: translateY(0);
  transition: all 0.3s ease;
  z-index: 5;
  color: #000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  /* Pill shape with text */
  width: auto;
  min-width: 44px;
  height: 44px;
  padding: 0 16px;
  border-radius: 22px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
}

.fudge-quick-add-btn:hover {
  background: #000;
  color: #FAC440;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.fudge-quick-add-btn:active {
  transform: translateY(0) scale(0.95);
}

.fudge-quick-add-btn svg {
  width: 20px;
  height: 20px;
  pointer-events: none;
}

/* Show quick-add on product card hover */
.grid__item-image-wrapper:hover .fudge-quick-add-btn,
.grid-product:hover .fudge-quick-add-btn {
  opacity: 1;
  transform: translateY(0);
}

/* Loading state */
.fudge-quick-add-btn.is-loading {
  pointer-events: none;
  opacity: 0.7;
}

.fudge-quick-add-btn.is-loading::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  border: 2px solid #000;
  border-top-color: transparent;
  border-radius: 50%;
  animation: fudge-spin 0.8s linear infinite;
}

.fudge-quick-add-btn.is-loading svg {
  opacity: 0;
}

@keyframes fudge-spin {
  to { transform: rotate(360deg); }
}

/* Success state */
.fudge-quick-add-btn.is-success {
  background: #22c55e;
  color: #fff;
}

.fudge-quick-add-btn.is-success svg {
  display: none;
}

.fudge-quick-add-btn.is-success::after {
  content: '✓';
  font-size: 16px;
  font-weight: 700;
}

/* Mobile: always show quick-add */
@media only screen and (max-width: 768px) {
  .fudge-quick-add-btn {
    opacity: 1;
    transform: translateY(0);
    width: 40px;
    height: 40px;
    bottom: 10px;
    right: 10px;
  }
}
}

/* ============================================
   SITE AUDIT FIXES - April 2026
   ============================================ */

/* Carousel/Pagination Dots - Improved Visibility */
.flickity-page-dots {
  bottom: 20px !important;
}

.flickity-page-dots .dot {
  width: 12px !important;
  height: 12px !important;
  background: rgba(255, 255, 255, 0.5) !important;
  border: 2px solid rgba(255, 255, 255, 0.8) !important;
  opacity: 1 !important;
  margin: 0 6px !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3) !important;
  transition: all 0.3s ease !important;
}

.flickity-page-dots .dot.is-selected {
  background: #FAC440 !important;
  border-color: #FAC440 !important;
  transform: scale(1.2) !important;
}

/* Hero Slideshow - Darker Overlay for Better Contrast */
.slideshow__slide .hero__image-wrapper:after {
  background-color: rgba(0, 0, 0, 0.45) !important;
}

/* Hero Text Container - Gold Left Border (Desktop Only) */
@media only screen and (min-width: 769px) {
  .hero__text-content {
    position: relative;
  }

  .hero__text-content::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #FAC440;
    border-radius: 2px 0 0 2px;
  }
}

/* Hero Button Letter-Spacing Fix */
.hero__link .btn {
  letter-spacing: 0.1em !important;
}

/* Hero Title Mobile - Prevent Cutoff */
@media only screen and (max-width: 768px) {
  .hero__title {
    font-size: 1.8rem !important;
    line-height: 1.2 !important;
  }
  
  .hero__subtitle {
    font-size: 14px !important;
  }
}

/* ============================================
   HEADER & ANNOUNCEMENT BAR FIXES
   ============================================ */

/* Fix Gold Announcement Bar - Make it Dark with Gold Accent */
.announcement-bar {
  background: #000000 !important;
  color: #ffffff !important;
  padding: 10px 0 !important;
}

.announcement-bar .announcement-text {
  color: #ffffff !important;
}

.announcement-bar .announcement-link-text {
  color: #FAC440 !important;
  font-weight: 600;
}

.announcement-bar .announcement-link:hover .announcement-link-text {
  color: #ffffff !important;
}

/* Toolbar below header - dark styling */
.toolbar {
  background: #000000 !important;
  border-bottom: none !important;
}

.toolbar a {
  color: #ffffff !important;
}

.toolbar a:hover {
  color: #FAC440 !important;
}

/* Header wrapper - ensure dark background */
.header-wrapper {
  background: #000000 !important;
}

.site-header {
  background: #000000 !important;
}

/* Remove border between announcement and header for seamless look */
.announcement-bar {
  border-bottom: none !important;
}

/* Ensure header wrapper has no top spacing */
.header-sticky-wrapper {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* Fix announcement slider height on mobile */
@media only screen and (max-width: 768px) {
  .announcement-slider .flickity-viewport {
    height: auto !important;
  }
  
  .announcement-slider__slide {
    position: relative !important;
    transform: none !important;
    left: auto !important;
  }
  
  .announcement-bar {
    padding: 10px 0 !important;
  }
}

/* Footer/Bottom Widget Spacing - Prevent Overlap */
/* CSS Animation Hack - Forces override of inline styles */
@keyframes fudge-rewards-position {
  0%, 100% {
    bottom: 130px !important;
    right: 20px !important;
    z-index: 1003 !important;
    position: fixed !important;
  }
}

@keyframes fudge-chat-position {
  0%, 100% {
    bottom: 20px !important;
    right: 20px !important;
    z-index: 1002 !important;
    position: fixed !important;
  }
}

/* Universal: Force all fixed bottom-right elements to be positionable */
html body > iframe,
html body > div[style*="fixed"],
html body > div[style*="absolute"] {
  pointer-events: auto;
}

/* Smile.io Rewards Widget - Apply animation */
.smile-launcher-frame-container,
#smile-ui-launcher,
.smile-launcher,
[id*="smile"]:not(body):not(html),
[class*="smile-launcher"],
iframe[src*="smile"],
[data-smile] {
  animation: fudge-rewards-position 1s ease infinite !important;
}

/* Desktop: Hide Klaviyo "10% OFF" teaser ribbon and Google Store Quality badge */
html body div[class*='kl-teaser'],
html body div.kl-private-reset-css-Xuajs1[style*='fixed'][style*='left'],
iframe[src*='google.com/storequality'],
iframe[src*='gstatic.com/storequality'],
div[class*='g-badge'],
[class*='google-badge'],
[class*='store-quality'],
iframe[title*='Store Quality'],
iframe[title*='Google'] {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
  height: 0 !important;
  width: 0 !important;
  overflow: hidden !important;
}

/* Mobile-specific widget positioning */
@media only screen and (max-width: 768px) {
  @keyframes fudge-rewards-position-mobile {
    0%, 100% {
      bottom: 220px !important;
      right: 12px !important;
      z-index: 1003 !important;
    }
  }
  
  .smile-launcher-frame-container,
  #smile-ui-launcher,
  .smile-launcher,
  [id*="smile"]:not(body):not(html),
  [class*="smile-launcher"],
  iframe[src*="smile"],
  [data-smile] {
    animation: fudge-rewards-position-mobile 1s ease infinite !important;
  }
  
  /* Account/Heart floating buttons - generic catch-all for any floating widgets */
  body > div[style*="fixed"][style*="bottom"],
  body > button[style*="fixed"][style*="bottom"],
  body > a[style*="fixed"][style*="bottom"],
  body > iframe[style*="fixed"][style*="bottom"] {
    bottom: 180px !important;
    right: 12px !important;
    z-index: 1001 !important;
  }
  
  /* Chat widget stays lowest */
  @keyframes fudge-chat-position-mobile {
    0%, 100% {
      bottom: 80px !important;
      right: 12px !important;
      z-index: 1002 !important;
    }
  }
}

/* Gorgias/Chat Widget - Apply animation */
#gorgias-chat-container,
.gorgias-chat,
[class*="gorgias"],
[id*="gorgias"],
iframe[src*="gorgias"],
iframe[src*="chat"],
[class*="chat-container"],
[class*="chat-button"],
[class*="gorgias-container"],
[class*="chat-canvas"],
[data-gorgias-chat],
[data-chat-widget],
#chat-container,
.chat-widget,
iframe[id*="chat"],
iframe[class*="chat"] {
  animation: fudge-chat-position 1s ease infinite !important;
}

@media only screen and (max-width: 768px) {
  #gorgias-chat-container,
  .gorgias-chat,
  [class*="gorgias"],
  [id*="gorgias"],
  iframe[src*="gorgias"],
  iframe[src*="chat"],
  [class*="chat-container"],
  [class*="chat-button"],
  [class*="gorgias-container"],
  [class*="chat-canvas"],
  [data-gorgias-chat],
  [data-chat-widget],
  #chat-container,
  .chat-widget,
  iframe[id*="chat"],
  iframe[class*="chat"] {
    animation: fudge-chat-position-mobile 1s ease infinite !important;
  }
}

/* Contact/Feedback Tab - Move to left side */
.site-footer .contact-tab,
[class*="contact-tab"],
[class*="feedback-tab"],
.contact-tab {
  bottom: 20px !important;
  left: 20px !important;
  right: auto !important;
  z-index: 998 !important;
  margin-bottom: 0 !important;
}

/* Cart/Notification Badge Positioning */
.cart-count-badge,
.notification-badge {
  z-index: 1000 !important;
}

/* Announcement Bar Vertical Alignment */
.announcement-bar,
.site-header__announcement {
  display: flex;
  align-items: center;
  padding-top: 8px !important;
  padding-bottom: 8px !important;
}

.announcement-bar__message {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mobile Header Navigation Alignment */
@media only screen and (max-width: 768px) {
  .site-header {
    display: flex;
    align-items: center;
  }
  
  .site-header__mobile-nav {
    display: flex;
    align-items: center;
    padding: 12px 0 !important;
  }
  
  .site-header__logo {
    margin: 0 auto !important;
  }
  
  .site-header__icons {
    display: flex;
    align-items: center;
    gap: 12px;
  }
}

/* Trust Strip Mobile Scroll Fix - Already Applied */
/* See sections/fudge-ITlbC-trust-strip.liquid for inline styles */

/* Product Card Image Aspect Ratio Fix */
.grid-product__image-wrap,
.grid__item-image-wrapper {
  overflow: hidden;
}

.grid-product__image {
  object-fit: contain !important;
  width: 100%;
  height: 100%;
}

/* Sale Badge Gold Gradient (Already Applied) */
.grid-product__tag--sale {
  background: linear-gradient(135deg, #d4af37 0%, #e8c547 100%) !important;
  color: #000 !important;
  font-weight: 700 !important;
  letter-spacing: 0.05em !important;
}

/* Low Stock Urgency Badge */
.grid-product__tag--low-stock {
  background: #fff !important;
  color: #dc2626 !important;
  font-weight: 700 !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  animation: fudge-urgency-pulse 2s ease-in-out infinite;
}

.low-stock-dot {
  width: 8px;
  height: 8px;
  background: #dc2626;
  border-radius: 50%;
  animation: fudge-dot-blink 1s ease-in-out infinite;
}

@keyframes fudge-urgency-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.02); }
}

@keyframes fudge-dot-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* Chat Widget Mobile Positioning - Prevent overlap with form fields */
@media screen and (max-width: 767px) {
  /* Use animation to override inline styles on chat widgets */
  body > div[style*='fixed'][style*='bottom'],
  body > iframe[style*='fixed'][style*='bottom'],
  #gorgias-chat-container,
  [id*='gorgias'],
  [id*='chat-widget'],
  .gorgias-web-messenger-frame,
  iframe[src*='gorgias'],
  iframe[src*='chat'] {
    animation: fudge-chat-widget-position 0.1s forwards !important;
    -webkit-animation: fudge-chat-widget-position 0.1s forwards !important;
  }
  
  @keyframes fudge-chat-widget-position {
    from { bottom: 0; }
    to { bottom: 62px; }
  }
  
  @-webkit-keyframes fudge-chat-widget-position {
    from { bottom: 0; }
    to { bottom: 62px; }
  }
  
  /* Add padding to form sections so fields aren't in widget zone */
  .form-vertical {
    padding-bottom: 100px !important;
  }
  
  /* Smile.io / reward widget - hide on mobile to avoid sticky ATC overlap */
  .smile-launcher-frame-container,
  iframe[title*='Smile'],
  [class*='smile-launcher'] {
    display: none !important;
  }

  /* Shop App / account / Klaviyo widgets - hide on mobile */
  iframe[id='shopify-shop-login-button'],
  iframe[src*='shop.app'],
  iframe[src*='shopify.com/shop'],
  [class*='account-menu-trigger'],
  [class*='klaviyo-account-hub'] {
    display: none !important;
  }

  /* Shop App floating login button - hide on mobile via animation override */
  @keyframes fudge-shop-widget-hide {
    from { display: none !important; opacity: 0 !important; visibility: hidden !important; }
    to { display: none !important; opacity: 0 !important; visibility: hidden !important; }
  }
  body > div[id*='shopify'][style*='fixed'],
  body > button[style*='fixed'][style*='bottom'],
  iframe[src*='shop.app'],
  iframe[id*='shopify-shop'],
  [data-shopify-shop] {
    animation: fudge-shop-widget-hide 0.01s forwards !important;
    -webkit-animation: fudge-shop-widget-hide 0.01s forwards !important;
    pointer-events: none !important;
  }

  /* 10% OFF ribbon / Honeycomb discount tab - hide on mobile */
  [class*='discount-ribbon'],
  [class*='discount-tab'],
  [id*='discount-ribbon'],
  [id*='discount-tab'],
  div[class*='side-tab'],
  a[class*='offer'][style*='fixed'],
  [class*='honeycomb-tab'],
  [class*='honeycomb'] > div[style*='fixed'],
  div[class*='cb-'][style*='fixed'] {
    display: none !important;
  }

  /* Klaviyo teaser ribbon - override aggressive Klaviyo reset CSS with max specificity */
  html body div.kl-teaser-WMx3qt.kl-private-reset-css-Xuajs1,
  html body div[class*='kl-teaser'][class*='kl-private-reset-css'],
  html body .kl-private-reset-css-Xuajs1[style*='fixed'][style*='left'],
  html body div[style*='fixed'][style*='left'][style*='bottom'][class*='kl'] {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    height: 0 !important;
    width: 0 !important;
    overflow: hidden !important;
  }

  /* Ensure last sections aren't hidden behind sticky ATC */
  .shopify-section:last-of-type {
    padding-bottom: 60px !important;
  }

  /* ===== QA FIXES: Product Page Audit ===== */

  /* Compact empty Judgeme review section */
  .jdgm-widget.jdgm-review-widget.jdgm-outside-widget {
    min-height: 0 !important;
    padding: 16px 0 !important;
  }
  .jdgm-rev-widg__header {
    margin-bottom: 12px !important;
  }
  .jdgm-rev-widg__body-empty,
  .jdgm-rev-widg__no-reviews {
    padding: 12px 0 !important;
    font-size: 14px !important;
  }

  /* Product card title fixed height - align prices across cards */
  .grid-product__title,
  .fudge-ctl-product-title {
    height: 36px !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    white-space: normal !important;
    margin: 0 !important;
    font-family: inherit !important;
  }

  @media screen and (max-width: 767px) {
    .grid-product__title,
    .fudge-ctl-product-title {
      height: 34px !important;
    }
  }

  /* Fix checkmark alignment in product description feature lists */
  .rte ul li,
  .product-description ul li {
    position: relative;
    padding-left: 0;
    line-height: 1.7;
  }

  /* Testimonial dots larger on mobile */
  .testimonials-slider .flickity-page-dots .dot {
    width: 10px !important;
    height: 10px !important;
    margin: 0 5px !important;
  }

  /* Reduce excessive gap before footer on product pages */
  .template-product .shopify-section:not(:last-of-type) {
    margin-bottom: 0 !important;
  }

  /* CTL product card image - consistent crop */
  .fudge-ctl-image {
    object-fit: cover !important;
    object-position: center top !important;
  }

  /* Hero slideshow - prevent text cutoff on mobile */
  .hero__text-wrap {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    display: flex !important;
    align-items: center !important;
  }
  .hero__text-content {
    max-height: 85vh !important;
    overflow: visible !important;
    padding: 16px !important;
  }
  .hero__title {
    font-size: 24px !important;
    line-height: 1.2 !important;
    margin-bottom: 8px !important;
  }
  .hero__subtitle {
    font-size: 13px !important;
    line-height: 1.4 !important;
    margin-bottom: 12px !important;
  }
  .hero__top-subtitle {
    font-size: 11px !important;
    margin-bottom: 6px !important;
  }
  .hero__link .btn {
    font-size: 12px !important;
    padding: 10px 18px !important;
    letter-spacing: 0.08em !important;
  }

  /* Floating widgets - push right and down to avoid overlapping content */
  body > div[style*="fixed"][style*="bottom"],
  body > button[style*="fixed"][style*="bottom"],
  body > a[style*="fixed"][style*="bottom"],
  body > iframe[style*="fixed"][style*="bottom"] {
    bottom: 140px !important;
    right: 16px !important;
    z-index: 999 !important;
  }

  /* 10% OFF ribbon / discount ribbon - force hide on mobile */
  [class*='discount-ribbon'],
  [class*='discount-tab'],
  [id*='discount-ribbon'],
  [id*='discount-tab'],
  div[class*='side-tab'],
  a[class*='offer'][style*='fixed'],
  div[style*='position: fixed'][style*='left']:not(.drawer),
  [class*='honeycomb-tab'],
  [class*='honeycomb'] > div[style*='fixed'],
  div[class*='cb-'][style*='fixed'],
  /* Generic fixed-position banners in bottom-left */
  div[style*='bottom'][style*='left'][style*='fixed'],
  a[style*='bottom'][style*='left'][style*='fixed'] {
    display: none !important;
  }

  /* Mega menu nav links - consistent color, no greyed-out items */
  .mega-menu a,
  .mega-menu .mega-menu__link,
  .mobile-nav .mobile-nav__link,
  .site-nav .site-nav__link {
    color: #1c1d1d !important;
    opacity: 1 !important;
  }

  /* H3 heading margin reset for SEO heading hierarchy */
  .collection-item__title {
    margin: 0 !important;
    font-family: inherit !important;
  }

  /* Broken Instafeed/Social images - hide empty placeholders gracefully */
  .instastory-item img[src=""],
  .instastory-item img:not([src]),
  .stories .story img[src=""],
  .stories .story img:not([src]),
  .instafeed-app img[src=""],
  .instafeed-app img:not([src]) {
    display: none !important;
  }
  .stories .story {
    background: #f5f5f5 !important;
    border-radius: 50% !important;
    overflow: hidden !important;
  }
}
