/* Import partials */
/* WooCommerce Styles */
/* Make Woo product loops use our Tailwind grid layout */
.woocommerce ul.products,
ul.products {
  display: grid !important;
  /* Let Tailwind handle grid-template-columns and gaps */
}
/* neutralize Woo defaults so cards look correct in the grid */
.woocommerce ul.products li.product,
ul.products li.product {
  float: none !important;
  width: auto !important;
  margin: 0 !important;
  list-style: none !important;
}
/* Override WordPress install page body constraints */
body {
  max-width: none !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
}
/* Ensure full width on all pages */
html, body {
  max-width: none !important;
  width: 100% !important;
}
/* Countdown styling for product cards - Liquid Glass Effect */
.woocommerce ul.products li.product .inner-wrapper .cwdc-countdown {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 0.5rem !important;
  margin: 1rem 0 !important;
}
.woocommerce ul.products li.product .inner-wrapper .cwdc-countdown > div {
  position: relative !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  backdrop-filter: blur(8px) !important;
  background: rgba(255, 255, 255, 0.1) !important;
  color: white !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 0.5rem !important;
  padding: 0.5rem 0.375rem !important;
  min-width: 2.5rem !important;
  text-align: center !important;
  box-shadow:
    0 4px 16px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    inset 0 -1px 0 rgba(0, 0, 0, 0.1) !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  overflow: hidden !important;
}
.woocommerce ul.products li.product .inner-wrapper .cwdc-countdown > div::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  background: linear-gradient(135deg,
    rgba(255, 255, 255, 0.15) 0%,
    rgba(255, 255, 255, 0.05) 50%,
    rgba(0, 0, 0, 0.05) 100%) !important;
  opacity: 0 !important;
  transition: opacity 0.3s ease !important;
  pointer-events: none !important;
}
.woocommerce ul.products li.product .inner-wrapper .cwdc-countdown > div:hover::before {
  opacity: 1 !important;
}
.woocommerce ul.products li.product .inner-wrapper .cwdc-countdown > div:hover {
  transform: translateY(-1px) !important;
  background: rgba(255, 255, 255, 0.15) !important;
  box-shadow:
    0 6px 20px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    inset 0 -1px 0 rgba(0, 0, 0, 0.1) !important;
}
.woocommerce ul.products li.product .inner-wrapper .cwdc-countdown > div:first-child {
  margin-left: 0 !important;
}
.woocommerce ul.products li.product .inner-wrapper .cwdc-countdown > div:last-child {
  margin-right: 0 !important;
}
.woocommerce ul.products li.product .inner-wrapper .cwdc-countdown > div span {
  display: block !important;
  font-weight: 700 !important;
  line-height: 1.1 !important;
}
.woocommerce ul.products li.product .inner-wrapper .cwdc-countdown .wc_lotery_countdown-amount {
  font-size: 0.875rem !important;
  font-weight: 700 !important;
  margin-bottom: 0.25rem !important;
}
.woocommerce ul.products li.product .inner-wrapper .cwdc-countdown .wc_lotery_countdown-period {
  font-size: 0.625rem !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.025em !important;
}
/* NUCLEAR OPTION: Enhanced mobile countdown sizing for better readability */
@media only screen and (max-width: 479px) {

  /* NUCLEAR: Target ANY element in product loop that might be a countdown wrapper */
  .woocommerce ul.products li.product div[class*="purple"],
  .woocommerce ul.products li.product div[class*="countdown"][class*="box"],
  .woocommerce ul.products li.product .rounded-lg.p-3.text-center {
    background: none !important;
    border: none !important;
    padding: 0 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    margin: 0 !important;
    border-radius: 0 !important;
  }
  /* FORCE remove outer purple wrapper on mobile for product loop - use space for countdown */
  .woocommerce ul.products li.product .wdw-countdown-wrapper,
  .woocommerce ul.products li.product .wdw-countdown-purple-box {
    background: none !important;
    border: none !important;
    padding: 0 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    margin: 0 !important;
    border-radius: 0 !important;
  }

  /* Force hide any purple box styling on mobile in product loop */
  body .woocommerce ul.products li.product .wdw-countdown-purple-box {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
  }

  /* Apply purple styling directly to ANY countdown element on mobile */
  .woocommerce ul.products li.product .comp-lottery-time.countdown,
  .woocommerce ul.products li.product .lottery-time.countdown,
  .woocommerce ul.products li.product .main-lottery,
  .woocommerce ul.products li.product .lottery-time-countdown,
  .woocommerce ul.products li.product div[class*="countdown"],
  .woocommerce ul.products li.product div[data-time] {
    background: linear-gradient(135deg, #6A1FFF 0%, #8B5CF6 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: white !important;
    box-shadow: 0 4px 20px rgba(106, 31, 255, 0.2) !important;
    backdrop-filter: blur(10px) !important;
    border-radius: 0.5rem !important;
    padding: 0.75rem !important;
    position: relative !important;
    overflow: hidden !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 4px !important;
  }

  /* Apply liquid glass overlay to inner countdown */
  .woocommerce ul.products li.product .comp-lottery-time.countdown::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.1) 0%,
      rgba(255, 255, 255, 0.05) 50%,
      rgba(0, 0, 0, 0.05) 100%) !important;
    pointer-events: none !important;
  }

  /* NUCLEAR: Font targeting for ANY countdown number elements */
  .woocommerce ul.products li.product span[class*="countdown-amount"],
  .woocommerce ul.products li.product span[class*="amount"],
  .woocommerce ul.products li.product div[class*="amount"],
  .woocommerce ul.products li.product *[class*="wc_lotery_countdown"] span {
    font-size: 1rem !important; /* 16px - LARGE and visible */
    font-weight: 700 !important;
    color: white !important;
    position: relative !important;
    z-index: 1 !important;
  }

  /* NUCLEAR: Font targeting for ANY countdown period/label elements */
  .woocommerce ul.products li.product span[class*="countdown-period"],
  .woocommerce ul.products li.product span[class*="period"],
  .woocommerce ul.products li.product div[class*="period"] {
    font-size: 0.875rem !important; /* 14px - LARGE and readable */
    font-weight: 500 !important;
    color: rgba(255, 255, 255, 0.9) !important;
    margin-top: 2px !important;
    position: relative !important;
    z-index: 1 !important;
  }

  /* Enhanced font sizes for mobile readability - BROAD targeting for any countdown elements */
  .woocommerce ul.products li.product .comp-lottery-time.countdown .wc_lotery_countdown-amount,
  .woocommerce ul.products li.product .lottery-time.countdown .wc_lotery_countdown-amount,
  .woocommerce ul.products li.product .main-lottery .wc_lotery_countdown-amount,
  .woocommerce ul.products li.product .lottery-time-countdown .wc_lotery_countdown-amount,
  .woocommerce ul.products li.product div[class*="countdown"] .wc_lotery_countdown-amount,
  .woocommerce ul.products li.product span.wc_lotery_countdown-amount {
    font-size: 0.75rem !important; /* 12px - larger size now that we have more space */
    font-weight: 700 !important;
    color: white !important;
    position: relative !important;
    z-index: 1 !important;
  }

  .woocommerce ul.products li.product .comp-lottery-time.countdown .wc_lotery_countdown-period,
  .woocommerce ul.products li.product .lottery-time.countdown .wc_lotery_countdown-period,
  .woocommerce ul.products li.product .main-lottery .wc_lotery_countdown-period,
  .woocommerce ul.products li.product .lottery-time-countdown .wc_lotery_countdown-period,
  .woocommerce ul.products li.product div[class*="countdown"] .wc_lotery_countdown-period,
  .woocommerce ul.products li.product span.wc_lotery_countdown-period {
    font-size: 0.625rem !important; /* 10px - much more readable now */
    font-weight: 500 !important;
    color: rgba(255, 255, 255, 0.9) !important;
    margin-top: 2px !important;
    position: relative !important;
    z-index: 1 !important;
  }

  /* Container optimizations for mobile countdown sections - BROAD targeting */
  .woocommerce ul.products li.product .comp-lottery-time.countdown .wc_lotery_countdown-section,
  .woocommerce ul.products li.product .lottery-time.countdown .wc_lotery_countdown-section,
  .woocommerce ul.products li.product .main-lottery .wc_lotery_countdown-section,
  .woocommerce ul.products li.product .lottery-time-countdown .wc_lotery_countdown-section,
  .woocommerce ul.products li.product div[class*="countdown"] .wc_lotery_countdown-section,
  .woocommerce ul.products li.product span.wc_lotery_countdown-section {
    background-color: rgba(255, 255, 255, 0.15) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 6px !important;
    padding: 6px 8px !important; /* More generous padding with extra space */
    min-width: 32px !important; /* Larger containers for better readability */
    margin: 0 2px !important;
    position: relative !important;
    z-index: 1 !important;
    backdrop-filter: blur(4px) !important;
    display: inline-flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
  }

  /* Countdown container spacing optimization */
  .woocommerce ul.products li.product .comp-lottery-time.countdown,
  .woocommerce ul.products li.product .main-lottery,
  .woocommerce ul.products li.product .lottery-time-countdown {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 4px !important; /* More space between time units */
    position: relative !important;
    z-index: 1 !important;
  }

  /* Fallback rules for any countdown not in product loop (maintains existing behavior) */
  .wdw-countdown-purple-box .comp-lottery-time .wc_lotery_countdown-amount,
  .wdw-countdown-purple-box .main-lottery .wc_lotery_countdown-amount,
  .wdw-countdown-purple-box .lottery-time-countdown .wc_lotery_countdown-amount,
  .wdw-countdown-purple-box span.wc_lotery_countdown-amount {
    font-size: 0.5rem !important; /* 8px - improved from 6px */
  }

  .wdw-countdown-purple-box .comp-lottery-time .wc_lotery_countdown-period,
  .wdw-countdown-purple-box .main-lottery .wc_lotery_countdown-period,
  .wdw-countdown-purple-box .lottery-time-countdown .wc_lotery_countdown-period,
  .wdw-countdown-purple-box span.wc_lotery_countdown-period {
    font-size: 0.4375rem !important; /* 7px - improved from 4px */
  }

  /* Smaller price and buttons */
  .woocommerce ul.products li.product span.woocommerce-Price-amount.amount {
    font-size: 0.625rem !important;
    padding: 0.1875rem 0.375rem !important;
  }

  .woocommerce ul.products li.product a.button {
    padding: 0.25rem 0.5rem !important;
    font-size: 0.625rem !important;
  }
}
/* Remove all responsive overrides - let Tailwind classes handle it */
/* Hide default WooCommerce onsale badge - we use custom badge */
.woocommerce ul.products li.product .onsale,
.woocommerce-page ul.products li.product .onsale,
.single-product .onsale {
  display: none !important;
}
/* Enter Now Button - Liquid Glass Effect */
.woocommerce ul.products li.product .bg-wdw-purple,
.woocommerce ul.products li.product a.button {
  position: relative !important;
  backdrop-filter: blur(12px) !important;
  background: rgba(106, 31, 255, 0.8) !important;
  border: 1px solid rgba(106, 31, 255, 0.3) !important;
  box-shadow:
    0 8px 32px rgba(106, 31, 255, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2) !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  overflow: hidden !important;
  text-decoration: none !important;
}
.woocommerce ul.products li.product .bg-wdw-purple::before,
.woocommerce ul.products li.product a.button::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  background: linear-gradient(135deg,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0.1) 50%,
    rgba(0, 0, 0, 0.05) 100%) !important;
  opacity: 0 !important;
  transition: opacity 0.3s ease !important;
  pointer-events: none !important;
}
.woocommerce ul.products li.product .bg-wdw-purple:hover::before,
.woocommerce ul.products li.product a.button:hover::before {
  opacity: 1 !important;
}
.woocommerce ul.products li.product .bg-wdw-purple:hover,
.woocommerce ul.products li.product a.button:hover {
  transform: translateY(-2px) !important;
  background: rgba(106, 31, 255, 0.9) !important;
  box-shadow:
    0 12px 40px rgba(106, 31, 255, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2) !important;
}
/* Additional badge styling - category, sale, draw date */
.woocommerce ul.products li.product .bg-wdw-yellow,
.woocommerce ul.products li.product .bg-wdw-red,
.woocommerce ul.products li.product .bg-black {
  position: relative !important;
  backdrop-filter: blur(8px) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  box-shadow:
    0 4px 16px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    inset 0 -1px 0 rgba(0, 0, 0, 0.1) !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}
.woocommerce ul.products li.product .bg-wdw-yellow {
  background: rgba(255, 204, 0, 0.9) !important;
}
.woocommerce ul.products li.product .bg-wdw-red {
  background: rgba(239, 68, 68, 0.9) !important;
}
.woocommerce ul.products li.product .bg-black {
  background: rgba(0, 0, 0, 0.8) !important;
}
/* Product Loop Price Styling - Clean Ecommerce Style */
.wdw-product-price {
  display: flex !important;
  align-items: baseline !important;
  justify-content: center !important;
  gap: 0.5rem !important;
  flex-wrap: wrap !important;
}
/* Original price (strikethrough) - WooCommerce uses <del> */
.wdw-product-price del,
.wdw-product-price del .woocommerce-Price-amount {
  color: #9CA3AF !important; /* Grey-400 */
  font-size: 0.75rem !important; /* 12px - smaller */
  font-weight: 500 !important;
  text-decoration: line-through !important;
  opacity: 0.7 !important;
}
/* Sale price - WooCommerce uses <ins> */
.wdw-product-price ins,
.wdw-product-price ins .woocommerce-Price-amount {
  color: #6A1FFF !important; /* Purple brand color */
  font-size: 1.125rem !important; /* 18px - larger */
  font-weight: 700 !important;
  text-decoration: none !important;
}
/* Regular price when NOT on sale */
.wdw-product-price .woocommerce-Price-amount {
  color: #6A1FFF !important;
  font-size: 1rem !important; /* 16px */
  font-weight: 700 !important;
}
/* Remove any default WooCommerce price backgrounds/borders */
.wdw-product-price .price,
.wdw-product-price del,
.wdw-product-price ins,
.wdw-product-price .woocommerce-Price-amount {
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  padding: 0 !important;
  margin: 0 !important;
}
/* Ensure currency symbol inherits size and color */
.wdw-product-price .woocommerce-Price-currencySymbol {
  font-size: inherit !important;
  color: inherit !important;
  font-weight: inherit !important;
}
/* Dark mode support */
[data-theme="dark"] .wdw-product-price del,
[data-theme="dark"] .wdw-product-price del .woocommerce-Price-amount {
  color: #6B7280 !important; /* Grey-500 for dark mode */
}
[data-theme="dark"] .wdw-product-price ins,
[data-theme="dark"] .wdw-product-price ins .woocommerce-Price-amount,
[data-theme="dark"] .wdw-product-price .woocommerce-Price-amount {
  color: #A78BFA !important; /* Lighter purple for dark mode */
}
/* Additional countdown widget styling - target all possible shortcode outputs */
.wdw-countdown-purple-box .wdw-countdown,
.wdw-countdown-purple-box .lottery-countdown,
.wdw-countdown-purple-box .countdown-timer,
.wdw-countdown-purple-box .wdw-timer,
.wdw-countdown-purple-box div[class*="countdown"],
.wdw-countdown-purple-box div[id*="countdown"],
.wdw-countdown-purple-box .countdown,
.wdw-countdown-purple-box .timer {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 0.25rem !important;
  margin: 0 !important;
  flex-wrap: nowrap !important;
}
/* Style individual countdown elements with liquid glass effect */
.wdw-countdown-purple-box .wdw-countdown > *,
.wdw-countdown-purple-box .lottery-countdown > *,
.wdw-countdown-purple-box .countdown-timer > *,
.wdw-countdown-purple-box .wdw-timer > *,
.wdw-countdown-purple-box div[class*="countdown"] > *,
.wdw-countdown-purple-box div[id*="countdown"] > *,
.wdw-countdown-purple-box .countdown > *,
.wdw-countdown-purple-box .timer > * {
  background-color: rgba(255, 255, 255, 0.15) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 0.375rem !important;
  padding: 0.5rem 0.375rem !important;
  margin: 1px !important;
  font-size: 0.75rem !important;
  min-width: 2rem !important;
  flex: 1 !important;
  color: white !important;
  font-weight: 700 !important;
  text-align: center !important;
  backdrop-filter: blur(4px) !important;
  position: relative !important;
  z-index: 1 !important;
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    inset 0 -1px 0 rgba(0, 0, 0, 0.1) !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}
/* Force all text elements inside countdown to be white with maximum specificity */
.wdw-countdown-purple-box *,
.wdw-countdown-purple-box span,
.wdw-countdown-purple-box div,
.wdw-countdown-purple-box .countdown *,
.wdw-countdown-purple-box .timer *,
.wdw-countdown-purple-box [class*="countdown"] *,
.wdw-countdown-purple-box [id*="countdown"] * {
  color: white !important;
}
/* Remove any conflicting styles from specific shortcode outputs */
.wdw-countdown-purple-box .countdown span,
.wdw-countdown-purple-box .timer span,
.wdw-countdown-purple-box div[class*="wdw"] span {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
}
/* Comprehensive button styling - catalog tabs, filter buttons, and view all buttons */
.catalog-tab,
.catalog-tab.bg-wdw-purple,
button.catalog-tab,
.wdw-filter-btn,
.wdw-filter-btn.active,
a.bg-wdw-purple,
button.bg-wdw-purple,
.bg-wdw-purple {
  position: relative !important;
  backdrop-filter: blur(12px) !important;
  background: rgba(106, 31, 255, 0.8) !important;
  border: 1px solid rgba(106, 31, 255, 0.3) !important;
  box-shadow:
    0 8px 32px rgba(106, 31, 255, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2) !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  overflow: hidden !important;
  text-decoration: none !important;
  color: white !important;
}
/* Pseudo-element for liquid glass overlay */
.catalog-tab::before,
.catalog-tab.bg-wdw-purple::before,
button.catalog-tab::before,
.wdw-filter-btn::before,
.wdw-filter-btn.active::before,
a.bg-wdw-purple::before,
button.bg-wdw-purple::before,
.bg-wdw-purple::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  background: linear-gradient(135deg,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0.1) 50%,
    rgba(0, 0, 0, 0.05) 100%) !important;
  opacity: 0 !important;
  transition: opacity 0.3s ease !important;
  pointer-events: none !important;
}
/* Hover effects */
.catalog-tab:hover::before,
.catalog-tab.bg-wdw-purple:hover::before,
button.catalog-tab:hover::before,
.wdw-filter-btn:hover::before,
.wdw-filter-btn.active:hover::before,
a.bg-wdw-purple:hover::before,
button.bg-wdw-purple:hover::before,
.bg-wdw-purple:hover::before {
  opacity: 1 !important;
}
.catalog-tab:hover,
.catalog-tab.bg-wdw-purple:hover,
button.catalog-tab:hover,
.wdw-filter-btn:hover,
.wdw-filter-btn.active:hover,
a.bg-wdw-purple:hover,
button.bg-wdw-purple:hover,
.bg-wdw-purple:hover {
  transform: translateY(-2px) !important;
  background: rgba(106, 31, 255, 0.9) !important;
  box-shadow:
    0 12px 40px rgba(106, 31, 255, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2) !important;
}
/* Force white text on all purple buttons */
.catalog-tab,
.catalog-tab.bg-wdw-purple,
button.catalog-tab,
.wdw-filter-btn.active,
a.bg-wdw-purple,
button.bg-wdw-purple,
.bg-wdw-purple,
.catalog-tab *,
.catalog-tab.bg-wdw-purple *,
button.catalog-tab *,
.wdw-filter-btn.active *,
a.bg-wdw-purple *,
button.bg-wdw-purple *,
.bg-wdw-purple * {
  color: white !important;
}
/* Inactive filter buttons - different styling */
.wdw-filter-btn:not(.active) {
  background: rgba(243, 244, 246, 0.8) !important;
  color: rgb(55, 65, 81) !important;
  border: 1px solid rgba(243, 244, 246, 0.3) !important;
  backdrop-filter: blur(8px) !important;
}
.wdw-filter-btn:not(.active):hover {
  background: rgba(156, 163, 175, 0.8) !important;
  transform: translateY(-1px) !important;
}
/* Theme Variables and Utilities */
/* Base CSS Variables - Light Mode (default) */
:root {
  --theme-primary: #FFFFFF;
  --theme-secondary: #6A1FFF; /* wdw-purple */
  --theme-accent: #FCD34D; /* wdw-yellow */
  --theme-text: #1F2937; /* wdw-black */
  --theme-text-secondary: #6B7280;
  --theme-border: #E5E7EB;
  --theme-text-on-color: #FFFFFF; /* White text for colored backgrounds */
  --theme-bg: #FFFFFF;
  --theme-card-bg: #FFFFFF;
  --theme-input-bg: #FFFFFF;
  --theme-input-border: #D1D5DB;
  --theme-shadow: rgba(0, 0, 0, 0.1);
}
/* Dark Mode Theme Classes */
[data-theme="dark"] {
  --theme-primary: #1F2937; /* wdw-black */
  --theme-secondary: #6A1FFF; /* wdw-purple */
  --theme-accent: #FCD34D; /* wdw-yellow */
  --theme-text: #FFFFFF;
  --theme-text-secondary: #9CA3AF; /* wdw-gray-medium */
  --theme-border: #374151; /* wdw-gray-dark */
  --theme-text-on-color: #FFFFFF; /* White text for colored backgrounds */
  --theme-bg: #111827;
  --theme-card-bg: #1F2937;
  --theme-input-bg: #374151;
  --theme-input-border: #4B5563;
  --theme-shadow: rgba(0, 0, 0, 0.3);
}
/* Apply theme variables to all elements */
* {
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
/* Theme utility classes */
.bg-theme-primary {
  background-color: var(--theme-primary);
}
.bg-theme-bg {
  background-color: var(--theme-bg);
}
.bg-theme-card {
  background-color: var(--theme-card-bg);
}
.text-theme-text {
  color: var(--theme-text);
}
.text-theme-text-secondary {
  color: var(--theme-text-secondary);
}
.text-theme-text-on-color {
  color: var(--theme-text-on-color) !important;
}
.border-theme-border {
  border-color: var(--theme-border);
}
/* Ensure purple background elements always have white text */
.bg-wdw-purple,
.bg-wdw-purple *,
.bg-wdw-purple h1,
.bg-wdw-purple h2,
.bg-wdw-purple h3,
.bg-wdw-purple span,
.bg-wdw-purple div {
  color: white !important;
}
/* Dark mode specific overrides for common elements */
[data-theme="dark"] body {
  background-color: var(--theme-bg);
  color: var(--theme-text);
}
[data-theme="dark"] .site {
  background-color: var(--theme-bg);
}
[data-theme="dark"] .site-main {
  background-color: var(--theme-bg);
}
[data-theme="dark"] .widget-area {
  background-color: var(--theme-card-bg);
  border-color: var(--theme-border);
}
[data-theme="dark"] input,
[data-theme="dark"] textarea,
[data-theme="dark"] select {
  background-color: var(--theme-input-bg);
  border-color: var(--theme-input-border);
  color: var(--theme-text);
}
[data-theme="dark"] .woocommerce {
  background-color: var(--theme-bg);
}
[data-theme="dark"] .woocommerce .site-main {
  background-color: var(--theme-bg);
}
[data-theme="dark"] .woocommerce .widget-area {
  background-color: var(--theme-card-bg);
}
/* Ensure WooCommerce elements respect dark mode */
[data-theme="dark"] .woocommerce .product,
[data-theme="dark"] .woocommerce .product * {
  background-color: var(--theme-card-bg);
  color: var(--theme-text);
}
[data-theme="dark"] .woocommerce .product .price {
  color: var(--theme-accent);
}
[data-theme="dark"] .woocommerce .product .woocommerce-loop-product__title {
  color: var(--theme-text);
}
[data-theme="dark"] .woocommerce .product .woocommerce-loop-product__title:hover {
  color: var(--theme-secondary);
}
/* SINGLE PRODUCT PAGE SPECIFIC DARK MODE OVERRIDES */
[data-theme="dark"] .single-product {
  background-color: var(--theme-bg) !important;
}
[data-theme="dark"] .single-product .min-h-screen {
  background-color: var(--theme-bg) !important;
}
[data-theme="dark"] .single-product .bg-theme-primary {
  background-color: var(--theme-primary) !important;
}
[data-theme="dark"] .single-product .text-theme-text {
  color: var(--theme-text) !important;
}
[data-theme="dark"] .single-product .text-theme-text-secondary {
  color: var(--theme-text-secondary) !important;
}
[data-theme="dark"] .single-product .bg-white {
  background-color: var(--theme-card-bg) !important;
}
[data-theme="dark"] .single-product .text-black {
  color: var(--theme-text) !important;
}
[data-theme="dark"] .single-product .text-gray-600 {
  color: var(--theme-text-secondary) !important;
}
[data-theme="dark"] .single-product .border-gray-200 {
  border-color: var(--theme-border) !important;
}
[data-theme="dark"] .single-product .bg-gray-50 {
  background-color: var(--theme-card-bg) !important;
}
[data-theme="dark"] .single-product .bg-gray-100 {
  background-color: var(--theme-card-bg) !important;
}
/* Override any hardcoded Tailwind colors on single product page main content only */
[data-theme="dark"] .single-product .site-main [class*="bg-"] {
  background-color: var(--theme-card-bg) !important;
}
[data-theme="dark"] .single-product .site-main [class*="text-"] {
  color: var(--theme-text) !important;
}
/* But preserve specific brand colors */
[data-theme="dark"] .single-product .bg-wdw-purple {
  background-color: var(--wdw-purple) !important;
}
[data-theme="dark"] .single-product .text-wdw-yellow {
  color: var(--wdw-yellow) !important;
}
[data-theme="dark"] .single-product .text-wdw-red {
  color: var(--wdw-red) !important;
}
[data-theme="dark"] .single-product .text-green-500 {
  color: #10B981 !important;
}
/* Additional WooCommerce elements for dark mode */
[data-theme="dark"] .woocommerce-tabs,
[data-theme="dark"] .woocommerce-Tabs-panel {
  background-color: var(--theme-card-bg) !important;
  color: var(--theme-text) !important;
}
[data-theme="dark"] .woocommerce .woocommerce-tabs ul.tabs li {
  background-color: var(--theme-input-bg) !important;
  border-color: var(--theme-border) !important;
}
[data-theme="dark"] .woocommerce .woocommerce-tabs ul.tabs li.active {
  background-color: var(--theme-card-bg) !important;
}
[data-theme="dark"] .woocommerce .woocommerce-tabs ul.tabs li a {
  color: var(--theme-text) !important;
}
/* Ensure consistent theme application */
[data-theme="dark"] .bg-theme-primary {
  background-color: var(--theme-primary) !important;
}
[data-theme="dark"] .text-theme-text {
  color: var(--theme-text) !important;
}
[data-theme="dark"] .text-theme-text-secondary {
  color: var(--theme-text-secondary) !important;
}
[data-theme="dark"] .border-theme-border {
  border-color: var(--theme-border) !important;
}
/* Force dark mode styles on specific single product elements */
[data-theme="dark"] .single-product .min-h-screen.bg-theme-primary {
  background-color: var(--theme-primary) !important;
}
/* Handle Tailwind utility classes that might override theme variables */
[data-theme="dark"] .bg-white:not(.bg-wdw-purple):not(.bg-wdw-yellow):not(.bg-wdw-red) {
  background-color: var(--theme-card-bg) !important;
}
[data-theme="dark"] .text-gray-500:not(.text-wdw-purple):not(.text-wdw-yellow):not(.text-wdw-red) {
  color: var(--theme-text-secondary) !important;
}
/* Fix product card sold/left text visibility in dark mode */
[data-theme="dark"] .woocommerce ul.products li.product .text-wdw-gray-dark {
  color: var(--theme-text) !important;
}
[data-theme="dark"] .text-wdw-gray-dark {
  color: var(--theme-text) !important;
}
/* Header/Masthead Styles */
/* Responsive logo sizing */
.wdw-logo {
  width: 100px;
  height: 80px;
}
@media (min-width: 768px) {
  .wdw-logo {
    width: 120px;
    height: 96px;
  }
}
@media (min-width: 1024px) {
  .wdw-logo {
    width: 154px;
    height: 123px;
  }
}
/* Mobile header layout adjustments */
@media (max-width: 1023px) {
  #masthead .flex.items-end.justify-between {
    justify-content: space-between;
    align-items: center;
  }
  
  /* Fix mobile sticky header clipping */
  #masthead {
    top: 0 !important;
    z-index: 50 !important;
  }
  
  .bg-wdw-black.sticky {
    top: 0 !important;
    z-index: 40 !important;
  }
  
  /* Ensure proper spacing for mobile sticky behavior */
  body {
    padding-top: 0 !important;
  }
}
/* Sticky header behavior */
.bg-wdw-black.sticky {
  transition: all 0.3s ease-in-out;
}
#masthead.sticky {
  transition: all 0.3s ease-in-out;
  backdrop-filter: blur(8px);
  background-color: rgba(147, 51, 234, 0.95); /* wdw-purple with opacity */
}
/* Ensure proper stacking context */
.bg-wdw-black.sticky {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
#masthead.sticky {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
/* Force yellow hover for header menu items */
#masthead .text-white:hover {
  color: #FCD34D !important;
}
#masthead a:hover,
#masthead button:hover {
  color: #FCD34D !important;
}
#masthead nav a:hover,
#masthead nav span:hover {
  color: #FCD34D !important;
}
/* Force larger text size for navigation menu */
#masthead #primary-menu {
  font-size: 1.125rem !important;
  line-height: 1.75rem !important;
}
#masthead #primary-menu a,
#masthead #primary-menu span {
  font-size: 1.125rem !important;
  line-height: 1.75rem !important;
}
/* Force black text color for basket quantity badge */
#masthead .bg-wdw-yellow.text-black {
  color: #000000 !important;
}
/* Fix responsive navigation visibility issues */
@media (min-width: 1024px) {
  #masthead nav.hidden.lg\\:block {
    display: block !important;
  }
  
  #masthead button.lg\\:hidden {
    display: none !important;
  }
}
@media (max-width: 1023px) {
  #masthead nav.hidden.lg\\:block {
    display: none !important;
  }
  
  #masthead button.lg\\:hidden {
    display: inline-flex !important;
  }
}
/* Mobile menu styling */
#mobile-menu {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
#mobile-menu .space-y-4 > * {
  margin-bottom: 1rem;
}
#mobile-menu .space-y-4 > *:last-child {
  margin-bottom: 0;
}
/* Mobile Menu Improvements */
@media (max-width: 1023px) {
  /* Mobile menu container improvements */
  #mobile-menu {
    padding: 2rem 1.5rem;
    width: 75%;
    max-width: 320px;
  }
  
  /* Mobile menu logo and close button */
  #mobile-menu .flex.items-center.justify-between {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  /* Mobile menu items container */
  #mobile-menu .space-y-4 {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  
  /* Individual mobile menu items */
  #mobile-menu .space-y-4 > li {
    margin: 0;
  }
  
  /* Mobile menu links */
  #mobile-menu .wdw-mobile-menu-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border-radius: 0.75rem;
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.5;
    transition: all 0.15s ease-in-out;
    width: 100%;
    /* Touch-friendly improvements */
    -webkit-tap-highlight-color: rgba(252, 211, 77, 0.3);
    touch-action: manipulation;
    cursor: pointer;
  }
  
  /* Mobile menu icons */
  #mobile-menu .wdw-mobile-menu-link svg {
    width: 1.75rem;
    height: 1.75rem;
    flex-shrink: 0;
  }
  
  /* Mobile menu text */
  #mobile-menu .wdw-mobile-menu-text {
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.5;
    white-space: nowrap;
  }
  
  /* Mobile menu touch/active states */
  #mobile-menu .wdw-mobile-menu-link:active,
  #mobile-menu .wdw-mobile-menu-link:focus {
    background-color: rgba(252, 211, 77, 0.25);
    color: #FCD34D !important;
    transform: translateX(0.25rem);
    box-shadow: 0 2px 8px rgba(252, 211, 77, 0.3);
  }
  
  /* Mobile menu touch/active icon color */
  #mobile-menu .wdw-mobile-menu-link:active svg,
  #mobile-menu .wdw-mobile-menu-link:focus svg {
    color: #FCD34D !important;
  }
  
  /* Desktop hover states (only for larger screens) */
  @media (hover: hover) {
    #mobile-menu .wdw-mobile-menu-link:hover {
      background-color: rgba(252, 211, 77, 0.15);
      color: #FCD34D !important;
      transform: translateX(0.25rem);
      box-shadow: 0 2px 8px rgba(252, 211, 77, 0.2);
    }
    
    #mobile-menu .wdw-mobile-menu-link:hover svg {
      color: #FCD34D !important;
    }
  }
  
  /* Mobile menu active states */
  #mobile-menu .current-menu-item .wdw-mobile-menu-link,
  #mobile-menu .current_page_item .wdw-mobile-menu-link {
    background-color: rgba(252, 211, 77, 0.2);
    color: #FCD34D !important;
    box-shadow: 0 2px 8px rgba(252, 211, 77, 0.25);
  }
  
  /* Mobile menu active icon color */
  #mobile-menu .current-menu-item .wdw-mobile-menu-link svg,
  #mobile-menu .current_page_item .wdw-mobile-menu-link svg {
    color: #FCD34D !important;
  }
  
  /* Mobile menu close button improvements */
  #mobile-menu-close {
    padding: 0.5rem;
    border-radius: 0.5rem;
    transition: all 0.2s ease-in-out;
  }
  
  #mobile-menu-close:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
  }
  
  /* Mobile menu logo sizing */
  #mobile-menu .wdw-mobile-logo {
    width: 6.75rem;
    height: 5.4rem;
    max-width: 135px;
    max-height: 108px;
  }
}
/* Extra small mobile adjustments */
@media (max-width: 480px) {
  #mobile-menu {
    width: 85%;
    padding: 1.5rem 1rem;
  }
  
  #mobile-menu .wdw-mobile-menu-link {
    padding: 0.875rem 1rem;
    font-size: 1rem;
  }
  
  #mobile-menu .wdw-mobile-menu-link svg {
    width: 1.5rem;
    height: 1.5rem;
  }
  
  #mobile-menu .wdw-mobile-menu-text {
    font-size: 1rem;
  }
}
/* Prize Grid and Instant Win Ticket Styles */
/* Tilt the SVG ticket slightly to match reference */
.wdw-ticket-tilt {
  transform: rotate(10deg);
}
/* Instant Win Prize Ticket Styling */
.prize-grid .insta-prize-holder .ticket-number-hold .prize-tickets p {
  background: linear-gradient(to bottom, #6A1FFF, #5B21B6); /* wdw-purple to wdw-purple-dark */
  padding: 12px 8px;
  color: #FFFFFF;
  margin-bottom: 0;
  text-align: center;
  font-weight: 700;
  line-height: 16px;
  box-shadow: 0 4px 15px 0 rgba(0, 0, 0, .15);
  border-radius: 8px;
  font-size: 14px;
  position: relative;
  border: 2px solid #5B21B6; /* wdw-purple-dark */
  min-height: 80px;
}
.prize-grid .insta-prize-holder .ticket-number-hold p span {
  display: block;
  margin-bottom: 27px;
  font-size: 16px;
  margin-top: 13px;
}
.prize-grid .insta-prize-holder .ticket-number-hold p.claimed span {
  margin-bottom: 39px;
}
.prize-grid .insta-prize-holder .ticket-number-hold p span.reveal {
  margin-bottom: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  color: #000000 !important; /* Pure black for better contrast - force override */
  background: #FCD34D; /* wdw-yellow */
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  font-size: 12px;
  display: block;
  text-align: center;
  padding: 8px 10px;
  font-weight: 700;
  letter-spacing: -0.5px;
  border-top: 2px solid #5B21B6; /* wdw-purple-dark border */
}
.prize-grid .insta-prize-holder .ticket-number-hold .prize-tickets p.claimed span.reveal {
  background-color: #c4c9ce;
  color: #fff;
}
/* Responsive grid for tickets */
@media only screen and (max-width: 999px) {
  .prize-grid .insta-prize-holder .ticket-number-hold .page {
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 6px;
  }
}
@media only screen and (max-width: 899px) {
  .prize-grid .insta-prize-holder .ticket-number-hold .page {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }
}
@media only screen and (max-width: 799px) {
  .prize-grid .insta-prize-holder .ticket-number-hold .page {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media only screen and (max-width: 699px) {
  .prize-grid .insta-prize-holder .ticket-number-hold .page {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media only screen and (max-width: 599px) {
  .prize-grid .insta-prize-holder .ticket-number-hold .page {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media only screen and (max-width: 499px) {
  .prize-grid .insta-prize-holder .ticket-number-hold .page {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
/* Single Product Page Styles */
/* Force full width on single product pages */
.single-product .woocommerce,
.single-product .woocommerce-page,
.single-product .content-area,
.single-product .site-content,
.single-product .site-main,
.single-product .entry-content,
.single-product .entry,
.single-product .post,
.single-product .product {
  max-width: none !important;
  width: 100% !important;
}
/* Ensure ticket numbers are always white on colored backgrounds */
[data-theme="light"] .single-product .ticket-number,
[data-theme="dark"] .single-product .ticket-number {
  color: var(--theme-text-on-color) !important;
}
/* Competition page specific dark mode overrides */
.single-product .bg-wdw-black {
  background-color: var(--theme-primary) !important;
}
.single-product .text-white {
  color: var(--theme-text) !important;
}
.single-product .text-wdw-gray-medium {
  color: var(--theme-text-secondary) !important;
}
.single-product .border-wdw-gray-dark {
  border-color: var(--theme-border) !important;
}
/* Force dark mode styles to take precedence over WooCommerce */
[data-theme="dark"] .single-product * {
  color: var(--theme-text) !important;
}
[data-theme="dark"] .single-product .bg-theme-primary {
  background-color: var(--theme-primary) !important;
}
[data-theme="light"] .single-product * {
  color: var(--theme-text) !important;
}
[data-theme="light"] .single-product .bg-theme-primary {
  background-color: var(--theme-primary) !important;
}
/* Ensure dark mode works properly on single product page */
[data-theme="dark"] .single-product {
  background-color: var(--theme-bg) !important;
}
[data-theme="dark"] .single-product .min-h-screen {
  background-color: var(--theme-bg) !important;
}
[data-theme="dark"] .single-product .bg-white {
  background-color: var(--theme-card-bg) !important;
}
[data-theme="dark"] .single-product .text-black {
  color: var(--theme-text) !important;
}
[data-theme="dark"] .single-product .text-gray-600 {
  color: var(--theme-text-secondary) !important;
}
[data-theme="dark"] .single-product .border-gray-200 {
  border-color: var(--theme-border) !important;
}
/* Override text colors for specific elements that should always be white on purple */
.single-product .bg-wdw-purple,
.single-product .bg-wdw-purple *,
.single-product .bg-wdw-purple h1,
.single-product .bg-wdw-purple h2,
.single-product .bg-wdw-purple h3,
.single-product .bg-wdw-purple span,
.single-product .bg-wdw-purple div {
  color: white !important;
}
/* Force normal case for all text on competition page */
.single-product * {
  text-transform: none !important;
}
/* Center tables in competition description */
.single-product .text-theme-text table {
  margin-left: auto !important;
  margin-right: auto !important;
  display: table !important;
}
.single-product .text-theme-text table.aligncenter {
  margin-left: auto !important;
  margin-right: auto !important;
  display: table !important;
}
/* Compact countdown styling for single product page */
.single-product .lottery-time-countdown {
  font-size: 0.75rem !important;
  line-height: 1rem !important;
  display: flex !important;
  justify-content: center !important;
  flex-wrap: wrap !important;
  gap: 0.25rem !important;
}
.single-product .lottery-time-countdown .wc_lotery_countdown-section {
  display: inline-block !important;
  margin: 0 !important;
  padding: 0.375rem 0.125rem !important;
  background-color: var(--theme-primary) !important;
  color: var(--theme-text) !important;
  border: 2px solid var(--theme-border) !important;
  border-radius: 0.25rem !important;
  font-weight: 700 !important;
  min-width: 2.5rem !important;
  text-align: center !important;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1) !important;
  flex-shrink: 0 !important;
}
.single-product .lottery-time-countdown .wc_lotery_countdown-amount {
  font-size: 0.875rem !important;
  font-weight: 700 !important;
  display: block !important;
  line-height: 1.1 !important;
  margin-bottom: 0.25rem !important;
}
.single-product .lottery-time-countdown .wc_lotery_countdown-period {
  font-size: 0.625rem !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.025em !important;
  display: block !important;
  line-height: 1.1 !important;
}
/* Force purple color for price display */
.single-product .text-wdw-purple {
  color: #6A1FFF !important;
}
/* Ensure lottery info container properly inherits theme styling */
.single-product .lottery-info-container {
  background-color: var(--theme-primary) !important;
  border-color: var(--theme-border) !important;
}
.single-product .lottery-info-container .text-theme-text {
  color: var(--theme-text) !important;
}
.single-product .lottery-info-container .text-theme-text-secondary {
  color: var(--theme-text-secondary) !important;
}
/* Theme-aware lottery question styling */
.single-product .lottery-question {
  color: var(--theme-text) !important;
}
.single-product .lottery-question h3 {
  color: var(--theme-text) !important;
}
.single-product ul.lottery-pn-answers {
  margin: 0 0 1em 0 !important;
  padding-top: 0 !important;
  clear: both !important;
  width: 100% !important;
}
.single-product ul.lottery-pn-answers li {
  display: block !important;
  list-style: none !important;
  border: 1px solid var(--theme-border) !important;
  background-color: var(--theme-primary) !important;
  color: var(--theme-text) !important;
  padding: 1em !important;
  width: 100% !important;
  margin: 0 0 4px 0 !important;
  cursor: pointer !important;
  font-size: 1em !important;
  font-weight: 700 !important;
  transition: all 0.2s ease !important;
}
.single-product ul.lottery-pn-answers li:hover {
  background-color: var(--theme-secondary) !important;
  color: white !important;
  border-color: var(--theme-secondary) !important;
}
.single-product ul.lottery-pn-answers li.selected {
  background-color: var(--theme-secondary) !important;
  color: white !important;
  border-color: var(--theme-secondary) !important;
}
/* Theme-aware submit button styling */
.single-product .single_add_to_cart_button {
  background-color: var(--theme-secondary) !important;
  color: var(--theme-text-on-color) !important;
  border: 2px solid var(--theme-secondary) !important;
  padding: 12px 24px !important;
  border-radius: 8px !important;
  font-weight: 700 !important;
  font-size: 16px !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  text-transform: none !important;
  display: inline-block !important;
  text-align: center !important;
  width: 100% !important;
  margin-top: 16px !important;
}
.single-product .single_add_to_cart_button:hover {
  background-color: var(--theme-secondary) !important;
  color: white !important;
  border-color: var(--theme-secondary) !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 12px rgba(106, 31, 255, 0.3) !important;
}
.single-product .single_add_to_cart_button:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 6px rgba(106, 31, 255, 0.3) !important;
}
.single-product .single_add_to_cart_button:disabled {
  background-color: var(--theme-text-secondary) !important;
  color: var(--theme-text) !important;
  border-color: var(--theme-text-secondary) !important;
  cursor: not-allowed !important;
  transform: none !important;
  box-shadow: none !important;
}
/* Ensure price text inside button is properly styled */
.single-product .single_add_to_cart_button .woocommerce-Price-amount,
.single-product .single_add_to_cart_button .atct-price,
.single-product .single_add_to_cart_button .amount,
.single-product .single_add_to_cart_button .atct-price .woocommerce-Price-amount,
.single-product .single_add_to_cart_button .atct-price .amount,
.single-product .single_add_to_cart_button .atct-price span,
.single-product .single_add_to_cart_button .atct-price .woocommerce-Price-amount span {
  color: var(--theme-text-on-color) !important;
  font-weight: 700 !important;
}
/* Purple Badge Styling - Single Product and Product Cards */
.single-product .wdw-price-badge,
.woocommerce ul.products li.product .wdw-price-badge,
.wdw-price-badge {
  background: linear-gradient(135deg, #6A1FFF 0%, #8B5CF6 100%) !important;
  backdrop-filter: blur(10px) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  box-shadow: 0 4px 20px rgba(106, 31, 255, 0.2) !important;
  color: white !important;
  font-weight: 600 !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) !important;
  position: relative !important;
  overflow: hidden !important;
}
.single-product .wdw-price-badge::before,
.woocommerce ul.products li.product .wdw-price-badge::before,
.wdw-price-badge::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  background: linear-gradient(135deg,
    rgba(255, 255, 255, 0.15) 0%,
    rgba(255, 255, 255, 0.05) 50%,
    rgba(0, 0, 0, 0.05) 100%) !important;
  pointer-events: none !important;
}
.single-product .wdw-price-badge:hover,
.woocommerce ul.products li.product .wdw-price-badge:hover,
.wdw-price-badge:hover {
  transform: translateY(-1px) !important;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15),
              0 6px 20px rgba(106, 31, 255, 0.3),
              inset 0 1px 0 rgba(255, 255, 255, 0.4) !important;
  transition: all 0.3s ease !important;
}
/* Purple styling for product page boxes to reduce clinical white appearance */
/* Purple gradient backgrounds for main content boxes */
.single-product .wdw-purple-gradient-box {
  background: linear-gradient(135deg, #6A1FFF 0%, #8B5CF6 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  color: white !important;
}
.single-product .wdw-purple-gradient-box * {
  color: white !important;
}
.single-product .wdw-purple-gradient-box .text-theme-text,
.single-product .wdw-purple-gradient-box .text-theme-text-secondary {
  color: rgba(255, 255, 255, 0.9) !important;
}
.single-product .wdw-purple-gradient-box .text-theme-text-secondary {
  color: rgba(255, 255, 255, 0.7) !important;
}
/* Subtle purple background for content boxes */
.single-product .wdw-purple-subtle-box {
  background: linear-gradient(135deg, rgba(106, 31, 255, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%) !important;
  border: 1px solid rgba(106, 31, 255, 0.1) !important;
  backdrop-filter: blur(10px) !important;
}
/* Countdown specific styling with purple accents - for both single product and product cards */
.single-product .wdw-countdown-purple-box,
.woocommerce ul.products li.product .wdw-countdown-purple-box {
  background: linear-gradient(135deg, #6A1FFF 0%, #8B5CF6 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  color: white !important;
  box-shadow: 0 4px 20px rgba(106, 31, 255, 0.2) !important;
  backdrop-filter: blur(10px) !important;
  position: relative !important;
  overflow: hidden !important;
}
.single-product .wdw-countdown-purple-box *,
.woocommerce ul.products li.product .wdw-countdown-purple-box * {
  color: white !important;
}
/* Add liquid glass overlay effect */
.single-product .wdw-countdown-purple-box::before,
.woocommerce ul.products li.product .wdw-countdown-purple-box::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  background: linear-gradient(135deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.05) 50%,
    rgba(0, 0, 0, 0.05) 100%) !important;
  pointer-events: none !important;
}
/* Override countdown widget styling specifically - higher specificity */
.single-product .wdw-countdown-purple-box .lottery-time-countdown .wc_lotery_countdown-section,
.woocommerce ul.products li.product .wdw-countdown-purple-box .lottery-time-countdown .wc_lotery_countdown-section,
.wdw-countdown-purple-box .cwdc-countdown > div,
.wdw-countdown-purple-box .lottery-time-countdown .wc_lotery_countdown-section {
  background-color: rgba(255, 255, 255, 0.15) !important;
  color: white !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 0.375rem !important;
  position: relative !important;
  z-index: 1 !important;
  backdrop-filter: blur(4px) !important;
}
.single-product .wdw-countdown-purple-box .lottery-time-countdown .wc_lotery_countdown-amount,
.woocommerce ul.products li.product .wdw-countdown-purple-box .lottery-time-countdown .wc_lotery_countdown-amount,
.wdw-countdown-purple-box .cwdc-countdown .wc_lotery_countdown-amount,
.wdw-countdown-purple-box .lottery-time-countdown .wc_lotery_countdown-amount {
  color: white !important;
}
.single-product .wdw-countdown-purple-box .lottery-time-countdown .wc_lotery_countdown-period,
.woocommerce ul.products li.product .wdw-countdown-purple-box .lottery-time-countdown .wc_lotery_countdown-period,
.wdw-countdown-purple-box .cwdc-countdown .wc_lotery_countdown-period,
.wdw-countdown-purple-box .lottery-time-countdown .wc_lotery_countdown-period {
  color: rgba(255, 255, 255, 0.9) !important;
}
/* Override any existing cwdc-countdown styles within purple box */
.wdw-countdown-purple-box .cwdc-countdown,
.wdw-countdown-purple-box .comp-lottery-time,
.wdw-countdown-purple-box .main-lottery,
.wdw-countdown-purple-box .lottery-time-countdown,
.wdw-countdown-purple-box .is-wc_lotery_countdown,
.wdw-countdown-purple-box .countdown,
.wdw-countdown-purple-box .wc_lotery_countdown-row {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 0.25rem !important;
  margin: 0 !important;
  flex-wrap: nowrap !important;
}
/* Remove any conflicting liquid glass effects from individual countdown boxes inside purple container */
.wdw-countdown-purple-box .cwdc-countdown > div::before {
  display: none !important;
}
/* Force purple box styling with maximum specificity */
body .woocommerce ul.products li.product .wdw-countdown-purple-box {
  background: linear-gradient(135deg, #6A1FFF 0%, #8B5CF6 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  color: white !important;
  box-shadow: 0 4px 20px rgba(106, 31, 255, 0.2) !important;
  backdrop-filter: blur(10px) !important;
  position: relative !important;
  overflow: hidden !important;
  padding: 0.75rem !important;
  border-radius: 0.5rem !important;
}
/* Force white text inside purple countdown box */
body .woocommerce ul.products li.product .wdw-countdown-purple-box * {
  color: white !important;
}
/* Target ALL possible countdown wrappers from the exact HTML */
.wdw-countdown-purple-box .comp-lottery-time .wc_lotery_countdown-section,
.wdw-countdown-purple-box .main-lottery .wc_lotery_countdown-section,
.wdw-countdown-purple-box .lottery-time-countdown .wc_lotery_countdown-section,
.wdw-countdown-purple-box .is-wc_lotery_countdown .wc_lotery_countdown-section,
.wdw-countdown-purple-box .countdown .wc_lotery_countdown-section {
  background-color: rgba(255, 255, 255, 0.15) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 4px !important;
  padding: 4px 2px !important;
  margin: 1px !important;
  font-size: 0.75rem !important;
  min-width: auto !important;
  flex: 1 !important;
}
.wdw-countdown-purple-box .comp-lottery-time .wc_lotery_countdown-amount,
.wdw-countdown-purple-box .comp-lottery-time .wc_lotery_countdown-period,
.wdw-countdown-purple-box .main-lottery .wc_lotery_countdown-amount,
.wdw-countdown-purple-box .main-lottery .wc_lotery_countdown-period,
.wdw-countdown-purple-box .lottery-time-countdown .wc_lotery_countdown-amount,
.wdw-countdown-purple-box .lottery-time-countdown .wc_lotery_countdown-period,
.wdw-countdown-purple-box .countdown .wc_lotery_countdown-amount,
.wdw-countdown-purple-box .countdown .wc_lotery_countdown-period {
  color: white !important;
}
/* Override the WDW Core plugin styles with maximum specificity */
.wdw-countdown-purple-box .comp-lottery-time.countdown span.wc_lotery_countdown-section,
.wdw-countdown-purple-box span.wc_lotery_countdown-section {
  background: rgba(255, 255, 255, 0.15) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 4px !important;
  padding: 4px 2px !important;
  margin: 1px !important;
  font-size: 0.75rem !important;
  min-width: auto !important;
  flex: 1 !important;
}
.wdw-countdown-purple-box .comp-lottery-time.countdown span.wc_lotery_countdown-amount,
.wdw-countdown-purple-box span.wc_lotery_countdown-amount,
.wdw-countdown-purple-box .comp-lottery-time.countdown span.wc_lotery_countdown-period,
.wdw-countdown-purple-box span.wc_lotery_countdown-period {
  color: white !important;
  font-weight: 700 !important;
}
/* Clean countdown purple box styling */
.wdw-countdown-purple-box {
  background: linear-gradient(135deg, #6A1FFF 0%, #8B5CF6 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  color: white !important;
  box-shadow: 0 4px 20px rgba(106, 31, 255, 0.2) !important;
  backdrop-filter: blur(10px) !important;
  position: relative !important;
  overflow: hidden !important;
}
/* Ticket selection box with purple gradient */
.single-product .wdw-ticket-selection-purple {
  background: linear-gradient(135deg, rgba(106, 31, 255, 0.08) 0%, rgba(139, 92, 246, 0.08) 100%) !important;
  border: 1px solid rgba(106, 31, 255, 0.15) !important;
  backdrop-filter: blur(10px) !important;
}
/* Competition stats bar styling */
.single-product .wdw-stats-purple-box {
  background: linear-gradient(135deg, rgba(106, 31, 255, 0.06) 0%, rgba(139, 92, 246, 0.06) 100%) !important;
  border-bottom: 2px solid rgba(106, 31, 255, 0.2) !important;
  backdrop-filter: blur(5px) !important;
}
/* Social sharing box styling */
.single-product .wdw-social-purple-box {
  background: linear-gradient(135deg, rgba(106, 31, 255, 0.04) 0%, rgba(139, 92, 246, 0.04) 100%) !important;
  border: 1px solid rgba(106, 31, 255, 0.1) !important;
  backdrop-filter: blur(8px) !important;
}
/* Tabbed section styling */
.single-product .wdw-tabs-purple-box {
  background: linear-gradient(135deg, rgba(106, 31, 255, 0.03) 0%, rgba(139, 92, 246, 0.03) 100%) !important;
  border: 1px solid rgba(106, 31, 255, 0.08) !important;
  backdrop-filter: blur(6px) !important;
}
/* CART PAGE STYLES ONLY - EXTREMELY SPECIFIC TARGETING */
/* Only apply these styles when we're on the cart page */
body.woocommerce-cart .wdw-cart-page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}
body.woocommerce-cart .wdw-cart-page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e5e7eb;
}
body.woocommerce-cart .wdw-cart-page-title {
    font-size: 2rem;
    font-weight: bold;
    color: #1f2937;
    margin: 0;
}
[data-theme="dark"] body.woocommerce-cart .wdw-cart-page-title {
    color: #ffffff;
}
body.woocommerce-cart .wdw-clear-cart-btn {
    background: #ef4444;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 500;
}
body.woocommerce-cart .wdw-clear-cart-btn:hover {
    background: #dc2626;
}
body.woocommerce-cart .wdw-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    text-decoration: none;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    border: none;
    font-size: 0.875rem;
}
body.woocommerce-cart .wdw-btn-primary {
    background: #6a1fff;
    color: white;
}
body.woocommerce-cart .wdw-btn-primary:hover {
    background: #5b21b6;
}
body.woocommerce-cart .wdw-btn-secondary {
    background: #6b7280;
    color: white;
}
body.woocommerce-cart .wdw-btn-secondary:hover {
    background: #4b5563;
}
body.woocommerce-cart .wdw-cart-items {
    margin-bottom: 2rem;
}
body.woocommerce-cart .wdw-cart-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    background: white;
}
[data-theme="dark"] body.woocommerce-cart .wdw-cart-item {
    background: #374151;
    border-color: #4b5563;
}
body.woocommerce-cart .wdw-cart-item-image {
    flex-shrink: 0;
    width: 100px;
}
body.woocommerce-cart .wdw-cart-item-image img {
    width: 100%;
    height: auto;
    border-radius: 0.375rem;
}
body.woocommerce-cart .wdw-cart-item-details {
    flex: 1;
}
body.woocommerce-cart .wdw-cart-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}
body.woocommerce-cart .wdw-cart-item-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
}
[data-theme="dark"] body.woocommerce-cart .wdw-cart-item-title {
    color: #ffffff;
}
body.woocommerce-cart .wdw-cart-item-title a {
    color: #1f2937;
    text-decoration: none;
}
[data-theme="dark"] body.woocommerce-cart .wdw-cart-item-title a {
    color: #ffffff;
}
body.woocommerce-cart .wdw-cart-item-title a:hover {
    color: #6a1fff;
}
body.woocommerce-cart .wdw-remove-item {
    background: #ef4444;
    color: white;
    border: none;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    cursor: pointer;
    font-size: 0.75rem;
}
body.woocommerce-cart .wdw-remove-item:hover {
    background: #dc2626;
}
body.woocommerce-cart .wdw-cart-item-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}
body.woocommerce-cart .wdw-label {
    font-weight: 500;
    color: #6b7280;
    font-size: 0.875rem;
}
body.woocommerce-cart .wdw-price,
body.woocommerce-cart .wdw-subtotal {
    font-weight: 600;
    color: #1f2937;
}
[data-theme="dark"] body.woocommerce-cart .wdw-price,
[data-theme="dark"] body.woocommerce-cart .wdw-subtotal {
    color: #ffffff;
}
body.woocommerce-cart .wdw-quantity-input {
    width: 80px;
    padding: 0.25rem;
    border: 1px solid #d1d5db;
    border-radius: 0.25rem;
    text-align: center;
}
body.woocommerce-cart .wdw-cart-actions {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}
body.woocommerce-cart .wdw-cart-collaterals {
    margin-top: 2rem;
}
/* Responsive adjustments */
@media (max-width: 768px) {
    body.woocommerce-cart .wdw-cart-page-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    body.woocommerce-cart .wdw-cart-item {
        flex-direction: column;
    }
    
    body.woocommerce-cart .wdw-cart-item-image {
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
    }
    
    body.woocommerce-cart .wdw-cart-item-meta {
        grid-template-columns: 1fr;
    }
    
    body.woocommerce-cart .wdw-cart-actions {
        flex-direction: column;
    }
}
/* Loading states for cart functionality */
body.woocommerce-cart .wdw-removing {
    opacity: 0.6;
    pointer-events: none;
}
body.woocommerce-cart .wdw-remove-item:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
body.woocommerce-cart .wdw-remove-item:disabled:hover {
    background: #ef4444;
}
/* Block overlay for cart form */
.woocommerce-cart-form.blocked {
    position: relative;
}
.woocommerce-cart-form.blocked::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.6);
    z-index: 10;
    pointer-events: none;
}
/* Empty cart styling */
body.woocommerce-cart .wdw-empty-cart {
    text-align: center;
    padding: 0;
    background: white;
    border-radius: 0;
    box-shadow: none;
    margin: 0;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
[data-theme="dark"] body.woocommerce-cart .wdw-empty-cart {
    background: #111827;
}
body.woocommerce-cart .wdw-empty-cart h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 3rem;
    letter-spacing: -0.025em;
}
[data-theme="dark"] body.woocommerce-cart .wdw-empty-cart h2 {
    color: #ffffff;
}
body.woocommerce-cart .wdw-empty-cart .wdw-btn {
    display: inline-block !important;
    padding: 1.25rem 3rem !important;
    background: #6a1fff !important;
    color: white !important;
    text-decoration: none !important;
    border-radius: 0.5rem !important;
    font-weight: 700 !important;
    font-size: 1.125rem !important;
    letter-spacing: 0.05em !important;
    transition: all 0.2s ease !important;
    border: none !important;
    cursor: pointer !important;
}
body.woocommerce-cart .wdw-empty-cart .wdw-btn:hover {
    background: #5b21b6 !important;
    color: white !important;
    text-decoration: none !important;
    transform: translateY(-2px) !important;
}
/* Cart page specific - hide sidebar only on cart page */
body.woocommerce-cart #secondary.widget-area {
    display: none !important;
}
body.woocommerce-cart .site-main {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 1rem !important;
}
@media (min-width: 768px) {
    body.woocommerce-cart .site-main {
        padding: 0 2rem !important;
    }
}
@media (min-width: 1024px) {
    body.woocommerce-cart .site-main {
        padding: 0 4rem !important;
    }
}
/* Hide the default page header when cart is empty */
body.woocommerce-cart .entry-header {
    display: none;
}
/* Cart Totals Styling */
body.woocommerce-cart .wdw-cart-totals {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-top: 2rem;
}
[data-theme="dark"] body.woocommerce-cart .wdw-cart-totals {
    background: #1f2937;
    border-color: #374151;
}
body.woocommerce-cart .wdw-cart-totals-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e5e7eb;
}
body.woocommerce-cart .wdw-cart-totals-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
}
[data-theme="dark"] body.woocommerce-cart .wdw-cart-totals-title {
    color: #ffffff;
}
body.woocommerce-cart .wdw-cart-totals-content {
    margin-bottom: 1.5rem;
}
body.woocommerce-cart .wdw-cart-totals-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f3f4f6;
}
body.woocommerce-cart .wdw-cart-totals-row:last-child {
    border-bottom: none;
}
body.woocommerce-cart .wdw-cart-totals-label {
    font-weight: 500;
    color: #6b7280;
    font-size: 0.875rem;
}
body.woocommerce-cart .wdw-cart-totals-value {
    font-weight: 600;
    color: #1f2937;
    font-size: 0.875rem;
}
[data-theme="dark"] body.woocommerce-cart .wdw-cart-totals-value {
    color: #ffffff;
}
body.woocommerce-cart .wdw-order-total {
    border-top: 2px solid #e5e7eb;
    margin-top: 0.5rem;
    padding-top: 1rem;
}
body.woocommerce-cart .wdw-order-total .wdw-cart-totals-label {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
}
[data-theme="dark"] body.woocommerce-cart .wdw-order-total .wdw-cart-totals-label {
    color: #ffffff;
}
body.woocommerce-cart .wdw-order-total .wdw-cart-totals-value {
    font-size: 1.125rem;
    font-weight: 700;
    color: #6a1fff;
}
/* Proceed to Checkout Button */
body.woocommerce-cart .wdw-proceed-to-checkout {
    margin-top: 1.5rem;
}
body.woocommerce-cart .wdw-checkout-button {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.5rem !important;
    width: 100% !important;
    padding: 1rem 2rem !important;
    background: #6a1fff !important;
    color: white !important;
    text-decoration: none !important;
    border-radius: 0.5rem !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
    letter-spacing: 0.025em !important;
    transition: all 0.2s ease !important;
    border: none !important;
    cursor: pointer !important;
    box-shadow: 0 4px 6px -1px rgba(106, 31, 255, 0.1), 0 2px 4px -1px rgba(106, 31, 255, 0.06) !important;
}
body.woocommerce-cart .wdw-checkout-button:hover {
    background: #5b21b6 !important;
    color: white !important;
    text-decoration: none !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 10px 15px -3px rgba(106, 31, 255, 0.1), 0 4px 6px -2px rgba(106, 31, 255, 0.05) !important;
}
body.woocommerce-cart .wdw-checkout-button:active {
    transform: translateY(0) !important;
}
body.woocommerce-cart .wdw-checkout-button-text {
    font-weight: 600;
}
body.woocommerce-cart .wdw-checkout-button-icon {
    transition: transform 0.2s ease;
}
body.woocommerce-cart .wdw-checkout-button:hover .wdw-checkout-button-icon {
    transform: translateX(2px);
}
/* Responsive adjustments for cart totals */
@media (max-width: 768px) {
    body.woocommerce-cart .wdw-cart-totals {
        padding: 1rem;
    }
    
    body.woocommerce-cart .wdw-cart-totals-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
    
    body.woocommerce-cart .wdw-cart-totals-value {
        align-self: flex-end;
    }
}
/* CHECKOUT PAGE STYLES - EXTREMELY SPECIFIC TARGETING */
/* Only apply these styles when we're on the checkout page */
body.woocommerce-checkout .wdw-checkout-page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}
body.woocommerce-checkout .wdw-checkout-page-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #e5e7eb;
}
body.woocommerce-checkout .wdw-checkout-page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 0.5rem 0;
    letter-spacing: -0.025em;
}
body.woocommerce-checkout .wdw-checkout-page-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    margin: 0;
}
/* Checkout Layout */
body.woocommerce-checkout .wdw-checkout-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 3rem;
    align-items: start;
}
body.woocommerce-checkout .wdw-checkout-main {
    background: white;
    border-radius: 0.5rem;
    padding: 2rem;
    border: 1px solid #e5e7eb;
}
body.woocommerce-checkout .wdw-checkout-sidebar {
    position: sticky;
    top: 2rem;
}
/* Customer Details */
body.woocommerce-checkout .wdw-customer-details {
    margin-bottom: 2rem;
}
body.woocommerce-checkout .wdw-billing-section,
body.woocommerce-checkout .wdw-shipping-section {
    margin-bottom: 2rem;
}
/* Form Fields */
body.woocommerce-checkout .wdw-billing-fields,
body.woocommerce-checkout .wdw-shipping-fields,
body.woocommerce-checkout .wdw-additional-fields,
body.woocommerce-checkout .wdw-account-fields {
    margin-bottom: 2rem;
}
body.woocommerce-checkout .wdw-billing-fields-header,
body.woocommerce-checkout .wdw-shipping-fields-header,
body.woocommerce-checkout .wdw-additional-fields-header,
body.woocommerce-checkout .wdw-account-fields-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e5e7eb;
}
body.woocommerce-checkout .wdw-billing-fields-title,
body.woocommerce-checkout .wdw-shipping-fields-title,
body.woocommerce-checkout .wdw-additional-fields-title,
body.woocommerce-checkout .wdw-account-fields-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
}
body.woocommerce-checkout .wdw-account-optional {
    color: #6b7280;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}
/* Form Field Styling */
body.woocommerce-checkout .form-row {
    margin-bottom: 1rem;
}
body.woocommerce-checkout .form-row label {
    display: block;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}
body.woocommerce-checkout .form-row input[type="text"],
body.woocommerce-checkout .form-row input[type="email"],
body.woocommerce-checkout .form-row input[type="tel"],
body.woocommerce-checkout .form-row input[type="password"],
body.woocommerce-checkout .form-row select,
body.woocommerce-checkout .form-row textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
body.woocommerce-checkout .form-row input:focus,
body.woocommerce-checkout .form-row select:focus,
body.woocommerce-checkout .form-row textarea:focus {
    outline: none;
    border-color: #6a1fff;
    box-shadow: 0 0 0 3px rgba(106, 31, 255, 0.1);
}
body.woocommerce-checkout .form-row .required {
    color: #ef4444;
}
/* Checkbox Styling */
body.woocommerce-checkout .wdw-shipping-checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-weight: 500;
    color: #374151;
}
body.woocommerce-checkout .wdw-shipping-checkbox {
    width: 1rem;
    height: 1rem;
    accent-color: #6a1fff;
}
/* Order Review Section */
body.woocommerce-checkout .wdw-order-review-section {
    background: white;
    border-radius: 0.5rem;
    padding: 2rem;
    border: 1px solid #e5e7eb;
}
body.woocommerce-checkout .wdw-order-review-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 1.5rem 0;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e5e7eb;
}
/* Order Review Table */
body.woocommerce-checkout .wdw-order-review-table {
    margin-bottom: 2rem;
}
body.woocommerce-checkout .wdw-order-review-header {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e5e7eb;
    font-weight: 600;
    color: #374151;
    font-size: 0.875rem;
}
body.woocommerce-checkout .wdw-order-review-body {
    margin-bottom: 1rem;
}
body.woocommerce-checkout .wdw-order-review-item {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #f3f4f6;
}
body.woocommerce-checkout .wdw-order-review-product {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}
body.woocommerce-checkout .wdw-order-review-product-image {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}
body.woocommerce-checkout .wdw-order-review-product-image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 0.25rem;
}
body.woocommerce-checkout .wdw-order-review-product-details {
    flex: 1;
}
body.woocommerce-checkout .wdw-order-review-product-name {
    font-weight: 500;
    color: #1f2937;
    margin-bottom: 0.25rem;
}
body.woocommerce-checkout .wdw-order-review-product-quantity {
    font-size: 0.875rem;
    color: #6b7280;
}
body.woocommerce-checkout .wdw-order-review-subtotal {
    font-weight: 600;
    color: #1f2937;
    text-align: right;
}
/* Order Review Footer */
body.woocommerce-checkout .wdw-order-review-footer {
    border-top: 2px solid #e5e7eb;
    padding-top: 1rem;
}
body.woocommerce-checkout .wdw-order-review-footer > div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    font-size: 0.875rem;
}
body.woocommerce-checkout .wdw-order-review-label {
    color: #6b7280;
}
body.woocommerce-checkout .wdw-order-review-value {
    font-weight: 600;
    color: #1f2937;
}
body.woocommerce-checkout .wdw-order-review-total-row {
    border-top: 1px solid #e5e7eb;
    margin-top: 0.5rem;
    padding-top: 1rem;
    font-size: 1rem;
}
body.woocommerce-checkout .wdw-order-review-total-row .wdw-order-review-label {
    font-weight: 600;
    color: #1f2937;
}
body.woocommerce-checkout .wdw-order-review-total-row .wdw-order-review-value {
    font-size: 1.125rem;
    font-weight: 700;
    color: #6a1fff;
}
/* Payment Methods */
body.woocommerce-checkout .wdw-payment-methods {
    margin-bottom: 2rem;
}
body.woocommerce-checkout .wdw-payment-methods-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e5e7eb;
}
body.woocommerce-checkout .wdw-payment-methods-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
}
body.woocommerce-checkout .wdw-payment-methods-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
body.woocommerce-checkout .wdw-payment-method {
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 1rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
body.woocommerce-checkout .wdw-payment-method:hover {
    border-color: #6a1fff;
}
body.woocommerce-checkout .wdw-payment-method-radio {
    display: none;
}
body.woocommerce-checkout .wdw-payment-method-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    width: 100%;
}
body.woocommerce-checkout .wdw-payment-method-info {
    flex: 1;
}
body.woocommerce-checkout .wdw-payment-method-title {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
}
body.woocommerce-checkout .wdw-payment-method-description {
    font-size: 0.875rem;
    color: #6b7280;
}
body.woocommerce-checkout .wdw-payment-method-radio:checked + .wdw-payment-method-label .wdw-payment-method {
    border-color: #6a1fff;
    box-shadow: 0 0 0 3px rgba(106, 31, 255, 0.1);
}
body.woocommerce-checkout .wdw-payment-method-fields {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #f3f4f6;
}
/* Payment Method Cards and Icons */
body.woocommerce-checkout .wdw-payment-method-cards,
body.woocommerce-checkout .wdw-payment-method-wallets {
    margin-top: 0.75rem;
}
body.woocommerce-checkout .wdw-card-icons,
body.woocommerce-checkout .wdw-wallet-icons {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}
body.woocommerce-checkout .wdw-card-icon,
body.woocommerce-checkout .wdw-wallet-icon {
    border-radius: 0.25rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
body.woocommerce-checkout .wdw-card-text,
body.woocommerce-checkout .wdw-wallet-text {
    font-size: 0.75rem;
    color: #6b7280;
    font-weight: 500;
}
/* Wallet Balance Styling */
body.woocommerce-checkout .wdw-wallet-balance {
    margin-bottom: 0.5rem;
}
body.woocommerce-checkout .wdw-wallet-balance-amount {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    background: #f8fafc;
    border-radius: 0.375rem;
    border: 1px solid #e2e8f0;
}
body.woocommerce-checkout .wdw-wallet-balance-label {
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 500;
}
body.woocommerce-checkout .wdw-wallet-balance-value {
    font-size: 0.875rem;
    color: #059669;
    font-weight: 600;
}
/* Payment Method Selection Styling */
body.woocommerce-checkout .wdw-payment-method {
    position: relative;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 2px solid #e5e7eb;
    background: #ffffff;
}
body.woocommerce-checkout .wdw-payment-method:hover {
    border-color: #6a1fff;
    box-shadow: 0 2px 8px rgba(106, 31, 255, 0.1);
}
/* Enhanced selected state styling */
body.woocommerce-checkout .wdw-payment-method-radio:checked + .wdw-payment-method-label .wdw-payment-method {
    border-color: #6a1fff;
    border-width: 2px;
    background: #6a1fff !important;
    box-shadow: 0 4px 12px rgba(106, 31, 255, 0.3);
    transform: translateY(-1px);
}
/* Target the .wdw-payment-method div directly when radio is checked */
body.woocommerce-checkout .wdw-payment-method-radio:checked ~ .wdw-payment-method,
body.woocommerce-checkout .wdw-payment-method-radio:checked + .wdw-payment-method-label .wdw-payment-method {
    border-color: #6a1fff;
    border-width: 2px;
    background: #6a1fff !important;
    box-shadow: 0 4px 12px rgba(106, 31, 255, 0.3);
    transform: translateY(-1px);
}
/* Alternative selector to ensure we catch the .wdw-payment-method div */
body.woocommerce-checkout .wdw-payment-method-radio:checked ~ .wdw-payment-method {
    border-color: #6a1fff !important;
    border-width: 2px !important;
    background: #6a1fff !important;
    box-shadow: 0 4px 12px rgba(106, 31, 255, 0.3) !important;
    transform: translateY(-1px) !important;
}
/* JavaScript-enhanced selection styling */
body.woocommerce-checkout .wdw-payment-method.selected-payment-method {
    border-color: #6a1fff !important;
    border-width: 2px !important;
    background: #6a1fff !important;
    box-shadow: 0 4px 12px rgba(106, 31, 255, 0.3) !important;
    transform: translateY(-1px) !important;
}
/* White text for selected payment method */
body.woocommerce-checkout .wdw-payment-method.selected-payment-method .wdw-payment-method-title,
body.woocommerce-checkout .wdw-payment-method.selected-payment-method .wdw-payment-method-description,
body.woocommerce-checkout .wdw-payment-method.selected-payment-method .wdw-wallet-balance-value,
body.woocommerce-checkout .wdw-payment-method.selected-payment-method .wdw-card-text,
body.woocommerce-checkout .wdw-payment-method.selected-payment-method .wdw-wallet-text {
    color: white !important;
}
/* Special styling for wallet balance label when selected - make it purple */
body.woocommerce-checkout .wdw-payment-method.selected-payment-method .wdw-wallet-balance-label,
body.woocommerce-checkout .wdw-payment-method.selected-payment-method span.wdw-wallet-balance-label {
    color: #6a1fff !important;
    font-weight: 600 !important;
}
/* More specific targeting for the wallet balance label */
body.woocommerce-checkout .wdw-payment-method.selected-payment-method .wdw-wallet-balance .wdw-wallet-balance-label,
body.woocommerce-checkout .wdw-payment-method.selected-payment-method .wdw-wallet-balance span.wdw-wallet-balance-label {
    color: #6a1fff !important;
    font-weight: 600 !important;
}
/* White container for payment icons when selected */
body.woocommerce-checkout .wdw-payment-method.selected-payment-method .wdw-card-icons,
body.woocommerce-checkout .wdw-payment-method.selected-payment-method .wdw-wallet-icons {
    background: white !important;
    border-radius: 8px !important;
    padding: 8px 12px !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
}
/* Ensure payment icons are visible on white background */
body.woocommerce-checkout .wdw-payment-method.selected-payment-method .wdw-card-icon,
body.woocommerce-checkout .wdw-payment-method.selected-payment-method .wdw-wallet-icon {
    filter: none !important;
    opacity: 1 !important;
}
/* Enhanced text styling for selected state - WHITE TEXT */
body.woocommerce-checkout .wdw-payment-method-radio:checked + .wdw-payment-method-label {
    color: white !important;
}
body.woocommerce-checkout .wdw-payment-method-radio:checked + .wdw-payment-method-label .wdw-payment-method-title {
    color: white !important;
    font-weight: 700;
    font-size: 1.1rem;
}
/* Enhanced description styling for selected state - WHITE TEXT */
body.woocommerce-checkout .wdw-payment-method-radio:checked + .wdw-payment-method-label .wdw-payment-method-description {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
}
/* Make wallet balance text white when selected */
body.woocommerce-checkout .wdw-payment-method-radio:checked + .wdw-payment-method-label .wdw-wallet-balance-label {
    color: rgba(255, 255, 255, 0.9) !important;
}
body.woocommerce-checkout .wdw-payment-method-radio:checked + .wdw-payment-method-label .wdw-wallet-balance-value {
    color: white !important;
    font-weight: 700;
}
/* Make card icons and wallet text white when selected */
body.woocommerce-checkout .wdw-payment-method-radio:checked + .wdw-payment-method-label .wdw-card-text,
body.woocommerce-checkout .wdw-payment-method-radio:checked + .wdw-payment-method-label .wdw-wallet-text {
    color: rgba(255, 255, 255, 0.9) !important;
}
/* Place Order Button */
body.woocommerce-checkout .wdw-place-order {
    margin-top: 2rem;
}
body.woocommerce-checkout .wdw-place-order-button-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
body.woocommerce-checkout .wdw-place-order-button {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.5rem !important;
    width: 100% !important;
    padding: 1rem 2rem !important;
    background: #6a1fff !important;
    color: white !important;
    text-decoration: none !important;
    border-radius: 0.5rem !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
    letter-spacing: 0.025em !important;
    transition: all 0.2s ease !important;
    border: none !important;
    cursor: pointer !important;
    box-shadow: 0 4px 6px -1px rgba(106, 31, 255, 0.1), 0 2px 4px -1px rgba(106, 31, 255, 0.06) !important;
}
body.woocommerce-checkout .wdw-place-order-button:hover {
    background: #5b21b6 !important;
    color: white !important;
    text-decoration: none !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 10px 15px -3px rgba(106, 31, 255, 0.1), 0 4px 6px -2px rgba(106, 31, 255, 0.05) !important;
}
body.woocommerce-checkout .wdw-place-order-button:active {
    transform: translateY(0) !important;
}
body.woocommerce-checkout .wdw-place-order-button-text {
    font-weight: 600;
}
body.woocommerce-checkout .wdw-place-order-button-icon {
    transition: transform 0.2s ease;
}
body.woocommerce-checkout .wdw-place-order-button:hover .wdw-place-order-button-icon {
    transform: translateX(2px);
}
/* Terms and Conditions */
body.woocommerce-checkout .woocommerce-terms-and-conditions {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.5;
}
body.woocommerce-checkout .woocommerce-terms-and-conditions a {
    color: #6a1fff;
    text-decoration: none;
}
/* Override Cashflows payment gateway text */
body.woocommerce-checkout .payment_method_cashflows_card .wdw-payment-method-fields {
    font-size: 0.875rem;
    color: #6b7280;
    margin-top: 0.5rem;
}
/* Hide the original "Pay withCards" text from Cashflows plugin */
body.woocommerce-checkout .payment_method_cashflows_card .wdw-payment-method-fields {
    display: none !important;
}
/* Alternative: Hide specific text content */
body.woocommerce-checkout .payment_method_cashflows_card .wdw-payment-method-fields:contains("Pay withCards") {
    display: none !important;
}
/* More specific targeting */
body.woocommerce-checkout .payment_box.payment_method_cashflows_card {
    display: none !important;
}
/* Target the specific div that contains "Pay withCards" */
body.woocommerce-checkout .wdw-payment-method-fields.payment_box.payment_method_cashflows_card {
    display: none !important;
}
/* Even more specific - target by text content */
body.woocommerce-checkout .wdw-payment-method-fields:has-text("Pay withCards") {
    display: none !important;
}
/* Hide all payment fields for cashflows card */
body.woocommerce-checkout .payment_method_cashflows_card .wdw-payment-method-fields,
body.woocommerce-checkout .payment_method_cashflows_card .payment_box {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
}
/* Hide duplicate "Pay with wallet." text from wallet payment gateway */
body.woocommerce-checkout .payment_method_woo_wallet .wdw-payment-method-description,
body.woocommerce-checkout .payment_method_woo_wallet .payment_box {
    display: none !important;
}
/* Hide any remaining "Pay with wallet" text */
body.woocommerce-checkout .payment_method_woo_wallet .wdw-payment-method-fields,
body.woocommerce-checkout .payment_method_woo_wallet .payment_box {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
}
/* Hide any text containing "Pay with wallet" */
body.woocommerce-checkout .payment_method_woo_wallet *:contains("Pay with wallet") {
    display: none !important;
}
body.woocommerce-checkout .woocommerce-terms-and-conditions a:hover {
    text-decoration: underline;
}
/* Responsive Design */
@media (max-width: 1024px) {
    body.woocommerce-checkout .wdw-checkout-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    body.woocommerce-checkout .wdw-checkout-sidebar {
        position: static;
    }
}
@media (max-width: 768px) {
    body.woocommerce-checkout .wdw-checkout-page-container {
        padding: 1rem;
    }
    
    body.woocommerce-checkout .wdw-checkout-page-title {
        font-size: 2rem;
    }
    
    body.woocommerce-checkout .wdw-checkout-main,
    body.woocommerce-checkout .wdw-order-review-section {
        padding: 1.5rem;
    }
    
    body.woocommerce-checkout .wdw-order-review-item {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    body.woocommerce-checkout .wdw-order-review-subtotal {
        text-align: left;
    }
}
/* Hide sidebar on checkout page */
body.woocommerce-checkout #secondary.widget-area {
    display: none !important;
}
body.woocommerce-checkout .site-main {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 1rem !important;
}
@media (min-width: 768px) {
    body.woocommerce-checkout .site-main {
        padding: 0 2rem !important;
    }
}
@media (min-width: 1024px) {
    body.woocommerce-checkout .site-main {
        padding: 0 4rem !important;
    }
}
/* Hide the default page header on checkout */
body.woocommerce-checkout .entry-header {
    display: none;
}
/* Checkout Loading Overlay */
.wdw-checkout-loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999999;
}
.wdw-checkout-loading-overlay.active {
    display: flex;
}
.wdw-checkout-loading-content {
    background: white;
    padding: 3rem 4rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.wdw-checkout-loading-spinner {
    width: 64px;
    height: 64px;
    border: 4px solid #e5e7eb;
    border-top-color: #6a1fff;
    border-radius: 50%;
    animation: wdw-spin 1s linear infinite;
    margin: 0 auto 1.5rem auto;
}
@keyframes wdw-spin {
    to {
        transform: rotate(360deg);
    }
}
.wdw-checkout-loading-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}
.wdw-checkout-loading-message {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0;
}
/* Thank You Page Styles */
.wdw-thank-you-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}
/* Header Section */
.wdw-thank-you-header {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #6A1FFF 0%, #8B5CF6 100%);
    border-radius: 12px;
    color: white;
}
.wdw-thank-you-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}
.wdw-thank-you-subtitle {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
}
/* Content Layout */
.wdw-thank-you-content {
    display: grid;
    gap: 2rem;
}
/* Order Details */
.wdw-order-details {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.wdw-order-info h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #1f2937;
}
.wdw-order-meta {
    display: grid;
    gap: 1rem;
}
.wdw-order-meta > div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e5e7eb;
}
.wdw-order-meta > div:last-child {
    border-bottom: none;
}
.wdw-label {
    font-weight: 600;
    color: #6b7280;
}
.wdw-value {
    font-weight: 700;
    color: #1f2937;
}
/* Order Status Messages */
.wdw-order-success {
    margin-top: 1.5rem;
    padding: 1rem;
    background: #d1fae5;
    border: 1px solid #a7f3d0;
    border-radius: 8px;
}
.wdw-success-message {
    color: #065f46;
    margin: 0 0 0.5rem 0;
    font-weight: 600;
}
.wdw-processing-message {
    color: #047857;
    margin: 0;
    font-size: 0.9rem;
}
.wdw-order-failed {
    margin-top: 1.5rem;
    padding: 1rem;
    background: #fee2e2;
    border: 1px solid #fecaca;
    border-radius: 8px;
}
.wdw-error-message {
    color: #991b1b;
    margin: 0 0 1rem 0;
}
/* Instant Win Section */
.wdw-instant-win-section {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    color: #5B21B6;
}
.wdw-instant-win-header h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #5B21B6;
}
.wdw-instant-win-header p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}
/* Total Site Credit Display */
.wdw-total-site-credit {
    background: rgba(255, 255, 255, 0.25);
    border: 2px solid rgba(91, 33, 182, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    animation: fadeInScale 0.4s ease-out;
}
.wdw-total-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #5B21B6;
    margin-bottom: 0.5rem;
}
.wdw-total-amount {
    font-size: 3rem;
    font-weight: 900;
    color: #5B21B6;
    line-height: 1;
}
@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
@media (max-width: 768px) {
    .wdw-total-amount {
        font-size: 2.5rem;
    }

    .wdw-total-label {
        font-size: 1rem;
    }
}
.wdw-instant-win-products {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    text-align: left;
}
.wdw-instant-win-products h3 {
    color: #5B21B6;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}
.wdw-instant-win-products ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.wdw-instant-win-products li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(91, 33, 182, 0.2);
    color: #5B21B6;
}
.wdw-instant-win-products li:last-child {
    border-bottom: none;
}
.wdw-instant-win-not-eligible {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1.5rem;
}
.wdw-instant-win-not-eligible p {
    margin: 0;
    font-size: 1.1rem;
}
/* Order Items */
.wdw-order-items {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.wdw-order-items h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #1f2937;
}
.wdw-items-list {
    display: grid;
    gap: 1rem;
}
.wdw-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
}
.wdw-item-image {
    flex-shrink: 0;
}
.wdw-item-image img {
    width: 60px;
    height: 60px;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 6px;
}
.wdw-item-details {
    flex: 1;
}
.wdw-item-name {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
}
.wdw-item-name a {
    color: #1f2937;
    text-decoration: none;
}
.wdw-item-name a:hover {
    color: #3b82f6;
}
.wdw-item-quantity {
    color: #6b7280;
    font-size: 0.9rem;
}
/* Next Steps */
.wdw-next-steps {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.wdw-next-steps h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #1f2937;
    text-align: center;
}
.wdw-steps-list {
    display: grid;
    gap: 1.5rem;
}
.wdw-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}
.wdw-step-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: #3b82f6;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}
.wdw-step-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #1f2937;
}
.wdw-step-content p {
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
}
/* Action Buttons */
.wdw-action-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
/* Button Styles */
.wdw-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}
.wdw-btn-primary {
    background: #6A1FFF;
    color: white;
}
.wdw-btn-primary:hover {
    background: #5B21B6;
    color: white;
    transform: translateY(-1px);
}
.wdw-btn-secondary {
    background: #6b7280;
    color: white;
}
.wdw-btn-secondary:hover {
    background: #4b5563;
    color: white;
    transform: translateY(-1px);
}
.wdw-btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}
/* Instant Win Modal Styles - Override plugin styles */
#wdw-instant-win-modal.wdw-modal {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(0, 0, 0, 0.8) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 9999 !important;
    transform: none !important;
}
#wdw-instant-win-modal .wdw-modal-content {
    background: white !important;
    border-radius: 12px !important;
    width: 95vw !important;
    max-width: 1200px !important;
    height: 90vh !important;
    max-height: 800px !important;
    overflow-y: auto !important;
    position: relative !important;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    padding: 0 !important;
    animation: none !important;
}
.wdw-modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.wdw-modal-header h2 {
    margin: 0;
    color: #1f2937;
    font-size: 1.5rem;
}
.wdw-modal-close {
    font-size: 1.5rem;
    cursor: pointer;
    color: #6b7280;
    background: none;
    border: none;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.2s ease;
}
.wdw-modal-close:hover {
    background: #f3f4f6;
    color: #1f2937;
}
.wdw-modal-body {
    padding: 1.5rem;
}
/* Lottery Drum */
.wdw-lottery-drum {
    text-align: center;
    margin-bottom: 1.5rem;
}
.wdw-lottery-drum canvas {
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    max-width: 100%;
}
/* Ticket Reveal */
.wdw-ticket-reveal {
    text-align: center;
}
.wdw-ticket {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    border-radius: 12px;
    padding: 2rem;
    color: #5B21B6;
    margin-bottom: 1.5rem;
}
.wdw-ticket-header {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.wdw-ticket-number {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1f2937;
}
.wdw-ticket-prize {
    font-size: 1.1rem;
    font-weight: 600;
}
/* Responsive Design */
@media (max-width: 768px) {
    .wdw-thank-you-page {
        padding: 1rem;
    }
    
    .wdw-thank-you-title {
        font-size: 1.75rem;
    }
    
    .wdw-order-meta > div {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
    
    .wdw-action-buttons {
        flex-direction: column;
    }
    
    .wdw-modal-content {
        width: 98vw !important;
        height: 95vh !important;
        margin: 0.5rem;
    }
    
    .wdw-item {
        flex-direction: column;
        text-align: center;
    }
    
    .wdw-step {
        flex-direction: column;
        text-align: center;
    }
}
/* Loading States */
.wdw-btn-loading {
    display: none;
}
.wdw-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}
/* Animation Classes */
.wdw-fade-in {
    animation: fadeIn 0.3s ease-in;
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.wdw-bounce {
    animation: bounce 0.6s ease-in-out;
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}
/* Wallet Page Styles */
/* Wallet Container */
.wdw-wallet-container,
.wdw-wallet-transactions {
    padding: 0 1rem;
}
/* Transaction Table Styling */
#wc-wallet-transaction-details {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}
#wc-wallet-transaction-details thead {
    background: linear-gradient(135deg, #6A1FFF 0%, #8B5CF6 100%);
    color: white;
}
#wc-wallet-transaction-details thead th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    border: none;
}
#wc-wallet-transaction-details thead th:first-child {
    border-top-left-radius: 8px;
}
#wc-wallet-transaction-details thead th:last-child {
    border-top-right-radius: 8px;
}
#wc-wallet-transaction-details tbody tr {
    border-bottom: 1px solid #e5e7eb;
    transition: background-color 0.2s ease;
}
#wc-wallet-transaction-details tbody tr:hover {
    background-color: #f9fafb;
}
#wc-wallet-transaction-details tbody td {
    padding: 1rem;
    color: #1f2937;
}
#wc-wallet-transaction-details tbody tr:last-child {
    border-bottom: none;
}
/* Credit/Debit styling */
.woo-wallet-transaction-type-credit {
    color: #10b981;
    font-weight: 700;
}
.woo-wallet-transaction-type-debit {
    color: #ef4444;
    font-weight: 700;
}
/* Select2 dropdown styling for transfer */
.woo-wallet-select2 {
    width: 100%;
}
.select2-container--default .select2-selection--single {
    height: 48px;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    padding: 0.75rem 1rem;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 48px;
    padding-left: 0;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 48px;
}
.select2-container--default.select2-container--focus .select2-selection--single {
    border-color: #6A1FFF;
    outline: none;
    box-shadow: 0 0 0 3px rgba(106, 31, 255, 0.1);
}
/* Responsive wallet layout */
@media (max-width: 768px) {
    .wdw-wallet-container,
    .wdw-wallet-transactions {
        padding: 0.5rem;
    }

    #wc-wallet-transaction-details thead th,
    #wc-wallet-transaction-details tbody td {
        padding: 0.75rem 0.5rem;
        font-size: 0.875rem;
    }
}
/* Loading states */
.woo-wallet-loading {
    opacity: 0.6;
    pointer-events: none;
}
/* Animation for balance display */
@keyframes balancePulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}
.wdw-wallet-container .bg-gradient-to-r .text-5xl {
    animation: balancePulse 2s ease-in-out infinite;
}
/* Competitions Page Styles */
/* Filter Buttons */
.wdw-filter-btn {
  display: inline-flex;
  align-items: center;
  border-radius: 0.5rem;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 600;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 200ms;
}
@media only screen and (max-width: 479px) {
  
  .woocommerce ul.products li.product .wdw-filter-btn.p-3.text-center {
    background: none;
    border: none;
    padding: 0;
    box-shadow: none;
    backdrop-filter: none;
    margin: 0;
    border-radius: 0;
  }
}
@media (max-width: 1023px) {
  #mobile-menu .flex.wdw-filter-btn.justify-between {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
}
.ending-soon .wdw-filter-btn {
  position: relative;
  backdrop-filter: blur(12px);
  background: rgba(106, 31, 255, 0.8);
  border: 1px solid rgba(106, 31, 255, 0.3);
  box-shadow:
    0 8px 32px rgba(106, 31, 255, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}
.ending-soon .wdw-filter-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0.1) 50%,
    rgba(0, 0, 0, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.ending-soon .wdw-filter-btn:hover::before {
  opacity: 1;
}
.ending-soon .wdw-filter-btn:hover {
  transform: translateY(-2px);
  background: rgba(106, 31, 255, 0.9);
  box-shadow:
    0 12px 40px rgba(106, 31, 255, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}
.wdw-filter-btn {
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
  --tw-text-opacity: 1;
  color: rgb(55 65 81 / var(--tw-text-opacity, 1));
}
[data-theme="dark"] .woocommerce ul.products li.product .wdw-filter-btn {
  color: var(--theme-text);
}
[data-theme="dark"] .wdw-filter-btn {
  color: var(--theme-text);
}
.wdw-filter-btn:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(156 163 175 / var(--tw-bg-opacity, 1));
}
.wdw-filter-btn.active {
  --tw-bg-opacity: 1;
  background-color: rgb(106 31 255 / var(--tw-bg-opacity, 1));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.woocommerce ul.products li.product .wdw-filter-btn.active {
  position: relative;
  backdrop-filter: blur(12px);
  background: rgba(106, 31, 255, 0.8);
  border: 1px solid rgba(106, 31, 255, 0.3);
  box-shadow:
    0 8px 32px rgba(106, 31, 255, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  text-decoration: none;
}
.woocommerce ul.products li.product .wdw-filter-btn.active::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0.1) 50%,
    rgba(0, 0, 0, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.woocommerce ul.products li.product .wdw-filter-btn.active:hover::before {
  opacity: 1;
}
.woocommerce ul.products li.product .wdw-filter-btn.active:hover {
  transform: translateY(-2px);
  background: rgba(106, 31, 255, 0.9);
  box-shadow:
    0 12px 40px rgba(106, 31, 255, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}

.catalog-tab.wdw-filter-btn.active,
a.wdw-filter-btn.active,
button.wdw-filter-btn.active,.wdw-filter-btn.active {
  position: relative;
  backdrop-filter: blur(12px);
  background: rgba(106, 31, 255, 0.8);
  border: 1px solid rgba(106, 31, 255, 0.3);
  box-shadow:
    0 8px 32px rgba(106, 31, 255, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  text-decoration: none;
  color: white;
}

.catalog-tab.wdw-filter-btn.active::before,
a.wdw-filter-btn.active::before,
button.wdw-filter-btn.active::before,.wdw-filter-btn.active::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0.1) 50%,
    rgba(0, 0, 0, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.catalog-tab.wdw-filter-btn.active:hover::before,
a.wdw-filter-btn.active:hover::before,
button.wdw-filter-btn.active:hover::before,.wdw-filter-btn.active:hover::before {
  opacity: 1;
}

.catalog-tab.wdw-filter-btn.active:hover,
a.wdw-filter-btn.active:hover,
button.wdw-filter-btn.active:hover,.wdw-filter-btn.active:hover {
  transform: translateY(-2px);
  background: rgba(106, 31, 255, 0.9);
  box-shadow:
    0 12px 40px rgba(106, 31, 255, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}

.catalog-tab.wdw-filter-btn.active,
a.wdw-filter-btn.active,
button.wdw-filter-btn.active,.wdw-filter-btn.active,
.catalog-tab.wdw-filter-btn.active *,
a.wdw-filter-btn.active *,
button.wdw-filter-btn.active *,.wdw-filter-btn.active * {
  color: white;
}
.wdw-filter-btn.active,.wdw-filter-btn.active *,.wdw-filter-btn.active h1,.wdw-filter-btn.active h2,.wdw-filter-btn.active h3,.wdw-filter-btn.active span,.wdw-filter-btn.active div {
  color: white;
}
[data-theme="dark"] .single-product .wdw-filter-btn.active {
  background-color: var(--wdw-purple);
}
[data-theme="dark"] .bg-white:not(.wdw-filter-btn.active):not(.bg-wdw-yellow):not(.bg-wdw-red) {
  background-color: var(--theme-card-bg);
}
#masthead .wdw-filter-btn.active:hover {
  color: #FCD34D;
}
.single-product .wdw-filter-btn.active {
  color: var(--theme-text);
}
.single-product .wdw-filter-btn.active,
.single-product .wdw-filter-btn.active *,
.single-product .wdw-filter-btn.active h1,
.single-product .wdw-filter-btn.active h2,
.single-product .wdw-filter-btn.active h3,
.single-product .wdw-filter-btn.active span,
.single-product .wdw-filter-btn.active div {
  color: white;
}
.catalog-tab.wdw-filter-btn.active {
  background: rgba(106, 31, 255, 0.8);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(106, 31, 255, 0.3);
  box-shadow:
    0 8px 32px rgba(106, 31, 255, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}
.catalog-tab.wdw-filter-btn.active::before {
  background: linear-gradient(135deg,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0.1) 50%,
    rgba(0, 0, 0, 0.05) 100%);
}
.catalog-tab.wdw-filter-btn.active:hover {
  background: rgba(106, 31, 255, 0.9);
  box-shadow:
    0 12px 40px rgba(106, 31, 255, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}
.wdw-filter-btn.active:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(91 33 182 / var(--tw-bg-opacity, 1));
}
/* Competitions Grid */
.competitions-grid {
  margin-left: auto;
  margin-right: auto;
  max-width: 80rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 640px) {
  .competitions-grid {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .competitions-grid {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
/* WooCommerce product loop grid override for competitions page */
.competitions-grid .woocommerce ul.products,
.competitions-grid ul.products {
  display: grid !important;
  grid-template-columns: repeat(1, 1fr) !important;
  grid-gap: 1.5rem !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}
.competitions-grid .woocommerce ul.products li.product,
.competitions-grid ul.products li.product {
  float: none !important;
  width: 100% !important;
  margin: 0 !important;
  list-style: none !important;
  max-width: none !important;
  min-width: 250px !important;
}
/* Override the max-w-xs constraint on product cards */
.competitions-grid .woocommerce ul.products li.product > div,
.competitions-grid ul.products li.product > div {
  max-width: none !important;
  width: 100% !important;
}
/* Responsive grid for competitions page */
.competitions-grid .woocommerce ul.products,
.competitions-grid ul.products {
  display: grid !important;
  grid-template-columns: repeat(1, minmax(280px, 1fr)) !important;
  grid-gap: 1.5rem !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 auto !important;
  justify-items: center !important;
  max-width: 100% !important;
}
@media (min-width: 640px) {
  .competitions-grid .woocommerce ul.products,
  .competitions-grid ul.products {
    grid-template-columns: repeat(2, minmax(280px, 1fr)) !important;
  }
}
@media (min-width: 1024px) {
  .competitions-grid .woocommerce ul.products,
  .competitions-grid ul.products {
    grid-template-columns: repeat(3, minmax(280px, 1fr)) !important;
  }
}
@media (min-width: 1280px) {
  .competitions-grid .woocommerce ul.products,
  .competitions-grid ul.products {
    grid-template-columns: repeat(4, minmax(280px, 1fr)) !important;
  }
}
@media (min-width: 1536px) {
  .competitions-grid .woocommerce ul.products,
  .competitions-grid ul.products {
    grid-template-columns: repeat(4, minmax(300px, 1fr)) !important;
  }
}
/* Responsive adjustments for competitions page */
@media (max-width: 640px) {
  .competitions-grid {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  
  .competitions-grid .woocommerce ul.products,
  .competitions-grid ul.products {
    grid-template-columns: repeat(2, 1fr) !important;
    grid-gap: 1rem !important;
  }
  
  .competitions-grid .woocommerce ul.products li.product,
  .competitions-grid ul.products li.product {
    min-width: 250px !important;
    max-width: 350px !important;
  }
  
  .filters-section .flex {
    flex-direction: column;
  }
  
  @media (min-width: 640px) {
    .filters-section .flex {
      flex-direction: row;
    }
  }
  
  .wdw-filter-btn {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    padding-top: 0.375rem;
    padding-bottom: 0.375rem;
    font-size: 0.75rem;
    line-height: 1rem;
  }
}
/* Page-specific body class styles */
.page-template-page-competitions .site-main {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}
[data-theme="dark"] .single-product .page-template-page-competitions .site-main {
  background-color: var(--theme-card-bg);
}
[data-theme="dark"] .page-template-page-competitions .site-main:not(.bg-wdw-purple):not(.bg-wdw-yellow):not(.bg-wdw-red) {
  background-color: var(--theme-card-bg);
}
[data-theme="dark"] .single-product .page-template-page-competitions .site-main {
  background-color: var(--theme-card-bg);
}
.page-template-page-competitions .page-header h1 {
  font-size: 1.875rem;
  line-height: 2.25rem;
}
@media (min-width: 768px) {
  .page-template-page-competitions .page-header h1 {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
}
.page-template-page-competitions .page-header p {
  font-size: 1.125rem;
  line-height: 1.75rem;
}
@media (min-width: 768px) {
  .page-template-page-competitions .page-header p {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
}
/* WP Everest User Registration Forms Styling */
/* Form Container - Wider and more responsive */
.wdw-login-form,
.wdw-register-form,
.wdw-reset-password-form,
.wdw-profile-form {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 56rem;
}
/* Registration form specific - wider layout */
.wdw-register-form {
  max-width: 72rem;
}
/* Form wrapper for better spacing */
.wdw-login-form .user-registration-form,
.wdw-register-form .user-registration-form,
.wdw-reset-password-form .user-registration-form,
.wdw-profile-form .user-registration-form {
  width: 100%;
}
/* Target the exact plugin selectors */
#user-registration .ur-frontend-form .user-registration-form-login .ur-form-row .ur-form-grid > div:not(#ur-recaptcha-node) .user-registration-Button,
#user-registration .ur-frontend-form .user-registration-form-register .ur-form-row .ur-form-grid > div:not(#ur-recaptcha-node) .user-registration-Button,
#user-registration .ur-frontend-form .user-registration-form-profile .ur-form-row .ur-form-grid > div:not(#ur-recaptcha-node) .user-registration-Button {
  float: none !important;
  background-color: #6A1FFF !important;
  color: white !important;
  border: none !important;
  box-shadow: none !important;
  padding: 16px 32px !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  font-size: 16px !important;
  width: 100% !important;
  transition: background-color 0.25s ease !important;
  min-height: 56px !important;
}
#user-registration .ur-frontend-form .user-registration-form-login .ur-form-row .ur-form-grid > div:not(#ur-recaptcha-node) .user-registration-Button:hover,
#user-registration .ur-frontend-form .user-registration-form-register .ur-form-row .ur-form-grid > div:not(#ur-recaptcha-node) .user-registration-Button:hover,
#user-registration .ur-frontend-form .user-registration-form-profile .ur-form-row .ur-form-grid > div:not(#ur-recaptcha-node) .user-registration-Button:hover {
  background-color: #5B21B6 !important;
}
/* Override all plugin button styles */
.ur-frontend-form button, 
.ur-frontend-form input[type=submit], 
.ur-frontend-form button[type=submit],
.user-registration button, 
.user-registration .button, 
.ur-form-container button, 
.ur-form-container .button {
  background-color: #6A1FFF !important;
  color: white !important;
  border: none !important;
  box-shadow: none !important;
  padding: 16px 32px !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  font-size: 16px !important;
  width: 100% !important;
  transition: background-color 0.25s ease !important;
  min-height: 56px !important;
}
.ur-frontend-form button:hover, 
.ur-frontend-form input[type=submit]:hover, 
.ur-frontend-form button[type=submit]:hover,
.user-registration button:hover, 
.user-registration .button:hover, 
.ur-form-container button:hover, 
.ur-form-container .button:hover {
  background-color: #5B21B6 !important;
}
/* Remove embossed box effect and plugin styling */
.wdw-login-form .user-registration-form,
.wdw-register-form .user-registration-form,
.wdw-reset-password-form .user-registration-form,
.wdw-profile-form .user-registration-form {
  border-width: 0px;
  background-color: transparent;
  padding: 0px;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
/* Override plugin form container styling */
#user-registration .ur-frontend-form,
.user-registration-form .ur-frontend-form {
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
  padding: 0 !important;
}
/* Override form field styling */
#user-registration .ur-frontend-form input[type="text"],
#user-registration .ur-frontend-form input[type="email"],
#user-registration .ur-frontend-form input[type="password"],
#user-registration .ur-frontend-form input[type="tel"],
#user-registration .ur-frontend-form input[type="url"],
#user-registration .ur-frontend-form textarea,
#user-registration .ur-frontend-form select {
  width: 100% !important;
  padding: 14px 18px !important;
  border: 1px solid #F3F4F6 !important;
  border-radius: 8px !important;
  background-color: white !important;
  color: #1F2937 !important;
  font-size: 15px !important;
  transition: border-color 0.25s ease, box-shadow 0.25s ease !important;
  min-height: 48px !important;
}
#user-registration .ur-frontend-form input[type="text"]:focus,
#user-registration .ur-frontend-form input[type="email"]:focus,
#user-registration .ur-frontend-form input[type="password"]:focus,
#user-registration .ur-frontend-form input[type="tel"]:focus,
#user-registration .ur-frontend-form input[type="url"]:focus,
#user-registration .ur-frontend-form textarea:focus,
#user-registration .ur-frontend-form select:focus {
  outline: none !important;
  border-color: #6A1FFF !important;
  box-shadow: 0 0 0 3px rgba(106, 31, 255, 0.1) !important;
}
/* Override link colors */
#user-registration .ur-frontend-form a,
.user-registration-form a {
  color: #6A1FFF !important;
  text-decoration: none !important;
}
#user-registration .ur-frontend-form a:hover,
.user-registration-form a:hover {
  color: #5B21B6 !important;
}
/* Override plugin's default form wrapper */
.user-registration-form .ur-frontend-form {
  border-width: 0px;
  background-color: transparent;
  padding: 0px;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
/* Remove any plugin-added backgrounds and shadows */
.user-registration-form .ur-frontend-form .ur-form-row {
  border-width: 0px;
  background-color: transparent;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
/* Form Field Styling */
.user-registration-form .form-row {
  margin-bottom: 1.5rem;
}
.user-registration-form .form-row label {
  margin-bottom: 0.5rem;
  display: block;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 500;
  --tw-text-opacity: 1;
  color: rgb(31 41 55 / var(--tw-text-opacity, 1));
}
.user-registration-form .form-row input[type="text"],
.user-registration-form .form-row input[type="email"],
.user-registration-form .form-row input[type="password"],
.user-registration-form .form-row input[type="tel"],
.user-registration-form .form-row input[type="url"],
.user-registration-form .form-row textarea,
.user-registration-form .form-row select {
  width: 100%;
  border-radius: 0.375rem;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(243 244 246 / var(--tw-border-opacity, 1));
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.wdw-orders-section .user-registration-form .form-row input[type="text"],.wdw-orders-section 
.user-registration-form .form-row input[type="email"],.wdw-orders-section 
.user-registration-form .form-row input[type="password"],.wdw-orders-section 
.user-registration-form .form-row input[type="tel"],.wdw-orders-section 
.user-registration-form .form-row input[type="url"],.wdw-orders-section 
.user-registration-form .form-row textarea,.wdw-orders-section 
.user-registration-form .form-row select {
  --tw-border-opacity: 1;
  border-color: rgb(243 244 246 / var(--tw-border-opacity, 1));
}
.user-registration-form .form-row input[type="text"]:focus,
.user-registration-form .form-row input[type="email"]:focus,
.user-registration-form .form-row input[type="password"]:focus,
.user-registration-form .form-row input[type="tel"]:focus,
.user-registration-form .form-row input[type="url"]:focus,
.user-registration-form .form-row textarea:focus,
.user-registration-form .form-row select:focus {
  --tw-border-opacity: 1;
  border-color: rgb(106 31 255 / var(--tw-border-opacity, 1));
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(106 31 255 / var(--tw-ring-opacity, 1));
}
.user-registration-form .form-row input[type="text"],
.user-registration-form .form-row input[type="email"],
.user-registration-form .form-row input[type="password"],
.user-registration-form .form-row input[type="tel"],
.user-registration-form .form-row input[type="url"],
.user-registration-form .form-row textarea,
.user-registration-form .form-row select {
  --tw-text-opacity: 1;
  color: rgb(31 41 55 / var(--tw-text-opacity, 1));
}
.user-registration-form .form-row input[type="text"]::-moz-placeholder, .user-registration-form .form-row input[type="email"]::-moz-placeholder, .user-registration-form .form-row input[type="password"]::-moz-placeholder, .user-registration-form .form-row input[type="tel"]::-moz-placeholder, .user-registration-form .form-row input[type="url"]::-moz-placeholder, .user-registration-form .form-row textarea::-moz-placeholder, .user-registration-form .form-row select::-moz-placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(156 163 175 / var(--tw-placeholder-opacity, 1));
}
.user-registration-form .form-row input[type="text"]::placeholder,
.user-registration-form .form-row input[type="email"]::placeholder,
.user-registration-form .form-row input[type="password"]::placeholder,
.user-registration-form .form-row input[type="tel"]::placeholder,
.user-registration-form .form-row input[type="url"]::placeholder,
.user-registration-form .form-row textarea::placeholder,
.user-registration-form .form-row select::placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(156 163 175 / var(--tw-placeholder-opacity, 1));
}
.user-registration-form .form-row input:focus,
.user-registration-form .form-row textarea:focus,
.user-registration-form .form-row select:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}
/* Button Styling - Override plugin defaults */
.user-registration-form .ur-frontend-form .ur-submit-button,
.user-registration-form .ur-frontend-form input[type="submit"],
.user-registration-form .ur-frontend-form button[type="submit"] {
  width: 100% !important;
  border-radius: 0.375rem !important;
  --tw-bg-opacity: 1 !important;
  background-color: rgb(106 31 255 / var(--tw-bg-opacity, 1)) !important;
  padding-top: 0.75rem !important;
  padding-bottom: 0.75rem !important;
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
  font-weight: 500 !important;
  --tw-text-opacity: 1 !important;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1)) !important;
}
.woocommerce ul.products li.product .user-registration-form .ur-frontend-form .ur-submit-button,.woocommerce ul.products li.product 
.user-registration-form .ur-frontend-form input[type="submit"],.woocommerce ul.products li.product 
.user-registration-form .ur-frontend-form button[type="submit"] {
  position: relative !important;
  backdrop-filter: blur(12px) !important;
  background: rgba(106, 31, 255, 0.8) !important;
  border: 1px solid rgba(106, 31, 255, 0.3) !important;
  box-shadow:
    0 8px 32px rgba(106, 31, 255, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2) !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  overflow: hidden !important;
  text-decoration: none !important;
}
.woocommerce ul.products li.product .user-registration-form .ur-frontend-form .ur-submit-button::before,.woocommerce ul.products li.product 
.user-registration-form .ur-frontend-form input[type="submit"]::before,.woocommerce ul.products li.product 
.user-registration-form .ur-frontend-form button[type="submit"]::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  background: linear-gradient(135deg,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0.1) 50%,
    rgba(0, 0, 0, 0.05) 100%) !important;
  opacity: 0 !important;
  transition: opacity 0.3s ease !important;
  pointer-events: none !important;
}
.woocommerce ul.products li.product .user-registration-form .ur-frontend-form .ur-submit-button:hover::before,.woocommerce ul.products li.product 
.user-registration-form .ur-frontend-form input[type="submit"]:hover::before,.woocommerce ul.products li.product 
.user-registration-form .ur-frontend-form button[type="submit"]:hover::before {
  opacity: 1 !important;
}
.woocommerce ul.products li.product .user-registration-form .ur-frontend-form .ur-submit-button:hover,.woocommerce ul.products li.product 
.user-registration-form .ur-frontend-form input[type="submit"]:hover,.woocommerce ul.products li.product 
.user-registration-form .ur-frontend-form button[type="submit"]:hover {
  transform: translateY(-2px) !important;
  background: rgba(106, 31, 255, 0.9) !important;
  box-shadow:
    0 12px 40px rgba(106, 31, 255, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2) !important;
}

.catalog-tab.user-registration-form .ur-frontend-form .ur-submit-button,
a.user-registration-form .ur-frontend-form .ur-submit-button,
button.user-registration-form .ur-frontend-form .ur-submit-button,.user-registration-form .ur-frontend-form .ur-submit-button,
.catalog-tab
.user-registration-form .ur-frontend-form input[type="submit"],
a
.user-registration-form .ur-frontend-form input[type="submit"],
button
.user-registration-form .ur-frontend-form input[type="submit"],
.user-registration-form .ur-frontend-form input[type="submit"],
.catalog-tab
.user-registration-form .ur-frontend-form button[type="submit"],
a
.user-registration-form .ur-frontend-form button[type="submit"],
button
.user-registration-form .ur-frontend-form button[type="submit"],
.user-registration-form .ur-frontend-form button[type="submit"] {
  position: relative !important;
  backdrop-filter: blur(12px) !important;
  background: rgba(106, 31, 255, 0.8) !important;
  border: 1px solid rgba(106, 31, 255, 0.3) !important;
  box-shadow:
    0 8px 32px rgba(106, 31, 255, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2) !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  overflow: hidden !important;
  text-decoration: none !important;
  color: white !important;
}

.catalog-tab.user-registration-form .ur-frontend-form .ur-submit-button::before,
a.user-registration-form .ur-frontend-form .ur-submit-button::before,
button.user-registration-form .ur-frontend-form .ur-submit-button::before,.user-registration-form .ur-frontend-form .ur-submit-button::before,
.catalog-tab
.user-registration-form .ur-frontend-form input[type="submit"]::before,
a
.user-registration-form .ur-frontend-form input[type="submit"]::before,
button
.user-registration-form .ur-frontend-form input[type="submit"]::before,
.user-registration-form .ur-frontend-form input[type="submit"]::before,
.catalog-tab
.user-registration-form .ur-frontend-form button[type="submit"]::before,
a
.user-registration-form .ur-frontend-form button[type="submit"]::before,
button
.user-registration-form .ur-frontend-form button[type="submit"]::before,
.user-registration-form .ur-frontend-form button[type="submit"]::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  background: linear-gradient(135deg,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0.1) 50%,
    rgba(0, 0, 0, 0.05) 100%) !important;
  opacity: 0 !important;
  transition: opacity 0.3s ease !important;
  pointer-events: none !important;
}

.catalog-tab.user-registration-form .ur-frontend-form .ur-submit-button:hover::before,
a.user-registration-form .ur-frontend-form .ur-submit-button:hover::before,
button.user-registration-form .ur-frontend-form .ur-submit-button:hover::before,.user-registration-form .ur-frontend-form .ur-submit-button:hover::before,
.catalog-tab
.user-registration-form .ur-frontend-form input[type="submit"]:hover::before,
a
.user-registration-form .ur-frontend-form input[type="submit"]:hover::before,
button
.user-registration-form .ur-frontend-form input[type="submit"]:hover::before,
.user-registration-form .ur-frontend-form input[type="submit"]:hover::before,
.catalog-tab
.user-registration-form .ur-frontend-form button[type="submit"]:hover::before,
a
.user-registration-form .ur-frontend-form button[type="submit"]:hover::before,
button
.user-registration-form .ur-frontend-form button[type="submit"]:hover::before,
.user-registration-form .ur-frontend-form button[type="submit"]:hover::before {
  opacity: 1 !important;
}

.catalog-tab.user-registration-form .ur-frontend-form .ur-submit-button:hover,
a.user-registration-form .ur-frontend-form .ur-submit-button:hover,
button.user-registration-form .ur-frontend-form .ur-submit-button:hover,.user-registration-form .ur-frontend-form .ur-submit-button:hover,
.catalog-tab
.user-registration-form .ur-frontend-form input[type="submit"]:hover,
a
.user-registration-form .ur-frontend-form input[type="submit"]:hover,
button
.user-registration-form .ur-frontend-form input[type="submit"]:hover,
.user-registration-form .ur-frontend-form input[type="submit"]:hover,
.catalog-tab
.user-registration-form .ur-frontend-form button[type="submit"]:hover,
a
.user-registration-form .ur-frontend-form button[type="submit"]:hover,
button
.user-registration-form .ur-frontend-form button[type="submit"]:hover,
.user-registration-form .ur-frontend-form button[type="submit"]:hover {
  transform: translateY(-2px) !important;
  background: rgba(106, 31, 255, 0.9) !important;
  box-shadow:
    0 12px 40px rgba(106, 31, 255, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2) !important;
}

.catalog-tab.user-registration-form .ur-frontend-form .ur-submit-button,
a.user-registration-form .ur-frontend-form .ur-submit-button,
button.user-registration-form .ur-frontend-form .ur-submit-button,.user-registration-form .ur-frontend-form .ur-submit-button,
.catalog-tab.user-registration-form .ur-frontend-form .ur-submit-button *,
a.user-registration-form .ur-frontend-form .ur-submit-button *,
button.user-registration-form .ur-frontend-form .ur-submit-button *,.user-registration-form .ur-frontend-form .ur-submit-button *,
.catalog-tab
.user-registration-form .ur-frontend-form input[type="submit"],
a
.user-registration-form .ur-frontend-form input[type="submit"],
button
.user-registration-form .ur-frontend-form input[type="submit"],
.user-registration-form .ur-frontend-form input[type="submit"],
.catalog-tab
.user-registration-form .ur-frontend-form input[type="submit"] *,
a
.user-registration-form .ur-frontend-form input[type="submit"] *,
button
.user-registration-form .ur-frontend-form input[type="submit"] *,
.user-registration-form .ur-frontend-form input[type="submit"] *,
.catalog-tab
.user-registration-form .ur-frontend-form button[type="submit"],
a
.user-registration-form .ur-frontend-form button[type="submit"],
button
.user-registration-form .ur-frontend-form button[type="submit"],
.user-registration-form .ur-frontend-form button[type="submit"],
.catalog-tab
.user-registration-form .ur-frontend-form button[type="submit"] *,
a
.user-registration-form .ur-frontend-form button[type="submit"] *,
button
.user-registration-form .ur-frontend-form button[type="submit"] *,
.user-registration-form .ur-frontend-form button[type="submit"] * {
  color: white !important;
}
.user-registration-form .ur-frontend-form .ur-submit-button,.user-registration-form .ur-frontend-form .ur-submit-button *,.user-registration-form .ur-frontend-form .ur-submit-button h1,.user-registration-form .ur-frontend-form .ur-submit-button h2,.user-registration-form .ur-frontend-form .ur-submit-button h3,.user-registration-form .ur-frontend-form .ur-submit-button span,.user-registration-form .ur-frontend-form .ur-submit-button div,
.user-registration-form .ur-frontend-form input[type="submit"],
.user-registration-form .ur-frontend-form input[type="submit"] *,
.user-registration-form .ur-frontend-form input[type="submit"] h1,
.user-registration-form .ur-frontend-form input[type="submit"] h2,
.user-registration-form .ur-frontend-form input[type="submit"] h3,
.user-registration-form .ur-frontend-form input[type="submit"] span,
.user-registration-form .ur-frontend-form input[type="submit"] div,
.user-registration-form .ur-frontend-form button[type="submit"],
.user-registration-form .ur-frontend-form button[type="submit"] *,
.user-registration-form .ur-frontend-form button[type="submit"] h1,
.user-registration-form .ur-frontend-form button[type="submit"] h2,
.user-registration-form .ur-frontend-form button[type="submit"] h3,
.user-registration-form .ur-frontend-form button[type="submit"] span,
.user-registration-form .ur-frontend-form button[type="submit"] div {
  color: white !important;
}
[data-theme="dark"] .single-product .user-registration-form .ur-frontend-form .ur-submit-button,[data-theme="dark"] .single-product 
.user-registration-form .ur-frontend-form input[type="submit"],[data-theme="dark"] .single-product 
.user-registration-form .ur-frontend-form button[type="submit"] {
  background-color: var(--wdw-purple) !important;
}
[data-theme="dark"] .bg-white:not(.user-registration-form .ur-frontend-form .ur-submit-button):not(.bg-wdw-yellow):not(.bg-wdw-red),[data-theme="dark"] .bg-white:not(
.user-registration-form .ur-frontend-form input[type="submit"]):not(.bg-wdw-yellow):not(.bg-wdw-red),[data-theme="dark"] .bg-white:not(
.user-registration-form .ur-frontend-form button[type="submit"]):not(.bg-wdw-yellow):not(.bg-wdw-red) {
  background-color: var(--theme-card-bg) !important;
}
#masthead .user-registration-form .ur-frontend-form .ur-submit-button:hover,#masthead 
.user-registration-form .ur-frontend-form input[type="submit"]:hover,#masthead 
.user-registration-form .ur-frontend-form button[type="submit"]:hover {
  color: #FCD34D !important;
}
.single-product .user-registration-form .ur-frontend-form .ur-submit-button,.single-product 
.user-registration-form .ur-frontend-form input[type="submit"],.single-product 
.user-registration-form .ur-frontend-form button[type="submit"] {
  color: var(--theme-text) !important;
}
.single-product .user-registration-form .ur-frontend-form .ur-submit-button,
.single-product .user-registration-form .ur-frontend-form .ur-submit-button *,
.single-product .user-registration-form .ur-frontend-form .ur-submit-button h1,
.single-product .user-registration-form .ur-frontend-form .ur-submit-button h2,
.single-product .user-registration-form .ur-frontend-form .ur-submit-button h3,
.single-product .user-registration-form .ur-frontend-form .ur-submit-button span,
.single-product .user-registration-form .ur-frontend-form .ur-submit-button div,.single-product 
.user-registration-form .ur-frontend-form input[type="submit"],
.single-product 
.user-registration-form .ur-frontend-form input[type="submit"] *,
.single-product 
.user-registration-form .ur-frontend-form input[type="submit"] h1,
.single-product 
.user-registration-form .ur-frontend-form input[type="submit"] h2,
.single-product 
.user-registration-form .ur-frontend-form input[type="submit"] h3,
.single-product 
.user-registration-form .ur-frontend-form input[type="submit"] span,
.single-product 
.user-registration-form .ur-frontend-form input[type="submit"] div,.single-product 
.user-registration-form .ur-frontend-form button[type="submit"],
.single-product 
.user-registration-form .ur-frontend-form button[type="submit"] *,
.single-product 
.user-registration-form .ur-frontend-form button[type="submit"] h1,
.single-product 
.user-registration-form .ur-frontend-form button[type="submit"] h2,
.single-product 
.user-registration-form .ur-frontend-form button[type="submit"] h3,
.single-product 
.user-registration-form .ur-frontend-form button[type="submit"] span,
.single-product 
.user-registration-form .ur-frontend-form button[type="submit"] div {
  color: white !important;
}
.catalog-tab.user-registration-form .ur-frontend-form .ur-submit-button,.catalog-tab
.user-registration-form .ur-frontend-form input[type="submit"],.catalog-tab
.user-registration-form .ur-frontend-form button[type="submit"] {
  background: rgba(106, 31, 255, 0.8) !important;
  backdrop-filter: blur(12px) !important;
  border: 1px solid rgba(106, 31, 255, 0.3) !important;
  box-shadow:
    0 8px 32px rgba(106, 31, 255, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2) !important;
}
.catalog-tab.user-registration-form .ur-frontend-form .ur-submit-button::before,.catalog-tab
.user-registration-form .ur-frontend-form input[type="submit"]::before,.catalog-tab
.user-registration-form .ur-frontend-form button[type="submit"]::before {
  background: linear-gradient(135deg,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0.1) 50%,
    rgba(0, 0, 0, 0.05) 100%) !important;
}
.catalog-tab.user-registration-form .ur-frontend-form .ur-submit-button:hover,.catalog-tab
.user-registration-form .ur-frontend-form input[type="submit"]:hover,.catalog-tab
.user-registration-form .ur-frontend-form button[type="submit"]:hover {
  background: rgba(106, 31, 255, 0.9) !important;
  box-shadow:
    0 12px 40px rgba(106, 31, 255, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2) !important;
}
.user-registration-form .ur-frontend-form .ur-submit-button,
.user-registration-form .ur-frontend-form input[type="submit"],
.user-registration-form .ur-frontend-form button[type="submit"] {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke !important;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
  transition-duration: 150ms !important;
}
.user-registration-form .ur-frontend-form .ur-submit-button:hover,
.user-registration-form .ur-frontend-form input[type="submit"]:hover,
.user-registration-form .ur-frontend-form button[type="submit"]:hover {
  --tw-bg-opacity: 1 !important;
  background-color: rgb(91 33 182 / var(--tw-bg-opacity, 1)) !important;
}
.user-registration-form .ur-frontend-form .ur-submit-button:focus,
.user-registration-form .ur-frontend-form input[type="submit"]:focus,
.user-registration-form .ur-frontend-form button[type="submit"]:focus {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgb(106 31 255 / var(--tw-ring-opacity, 1)) !important;
  --tw-ring-offset-width: 2px !important;
}
.user-registration-form .ur-frontend-form .ur-submit-button:disabled,
.user-registration-form .ur-frontend-form input[type="submit"]:disabled,
.user-registration-form .ur-frontend-form button[type="submit"]:disabled {
  cursor: not-allowed !important;
  opacity: 0.5 !important;
}
.user-registration-form .ur-frontend-form .ur-submit-button,
.user-registration-form .ur-frontend-form input[type="submit"],
.user-registration-form .ur-frontend-form button[type="submit"] {
  border-width: 0px !important;
  --tw-shadow: 0 0 #0000 !important;
  --tw-shadow-colored: 0 0 #0000 !important;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
}
.user-registration-form .ur-frontend-form .ur-submit-button:hover {
  --tw-translate-y: 0px;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
/* Checkbox and Radio Styling */
.user-registration-form .form-row input[type="checkbox"],
.user-registration-form .form-row input[type="radio"] {
  height: 1rem;
  width: 1rem;
  border-radius: 0.25rem;
  --tw-border-opacity: 1;
  border-color: rgb(243 244 246 / var(--tw-border-opacity, 1));
  --tw-text-opacity: 1;
  color: rgb(106 31 255 / var(--tw-text-opacity, 1));
}
[data-theme="dark"] .text-gray-500:not(.user-registration-form .form-row input[type="checkbox"]):not(.text-wdw-yellow):not(.text-wdw-red),[data-theme="dark"] .text-gray-500:not(
.user-registration-form .form-row input[type="radio"]):not(.text-wdw-yellow):not(.text-wdw-red) {
  color: var(--theme-text-secondary);
}
.single-product .user-registration-form .form-row input[type="checkbox"],.single-product 
.user-registration-form .form-row input[type="radio"] {
  color: #6A1FFF;
}
.user-registration-form .form-row input[type="checkbox"]:focus,
.user-registration-form .form-row input[type="radio"]:focus {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(106 31 255 / var(--tw-ring-opacity, 1));
}
.user-registration-form .form-row input[type="checkbox"]:checked,
.user-registration-form .form-row input[type="radio"]:checked {
  --tw-border-opacity: 1;
  border-color: rgb(106 31 255 / var(--tw-border-opacity, 1));
  --tw-bg-opacity: 1;
  background-color: rgb(106 31 255 / var(--tw-bg-opacity, 1));
}
.woocommerce ul.products li.product .user-registration-form .form-row input[type="checkbox"]:checked,.woocommerce ul.products li.product 
.user-registration-form .form-row input[type="radio"]:checked {
  position: relative;
  backdrop-filter: blur(12px);
  background: rgba(106, 31, 255, 0.8);
  border: 1px solid rgba(106, 31, 255, 0.3);
  box-shadow:
    0 8px 32px rgba(106, 31, 255, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  text-decoration: none;
}
.woocommerce ul.products li.product .user-registration-form .form-row input[type="checkbox"]:checked::before,.woocommerce ul.products li.product 
.user-registration-form .form-row input[type="radio"]:checked::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0.1) 50%,
    rgba(0, 0, 0, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.woocommerce ul.products li.product .user-registration-form .form-row input[type="checkbox"]:checked:hover::before,.woocommerce ul.products li.product 
.user-registration-form .form-row input[type="radio"]:checked:hover::before {
  opacity: 1;
}
.woocommerce ul.products li.product .user-registration-form .form-row input[type="checkbox"]:checked:hover,.woocommerce ul.products li.product 
.user-registration-form .form-row input[type="radio"]:checked:hover {
  transform: translateY(-2px);
  background: rgba(106, 31, 255, 0.9);
  box-shadow:
    0 12px 40px rgba(106, 31, 255, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}

.catalog-tab.user-registration-form .form-row input[type="checkbox"]:checked,
a.user-registration-form .form-row input[type="checkbox"]:checked,
button.user-registration-form .form-row input[type="checkbox"]:checked,.user-registration-form .form-row input[type="checkbox"]:checked,
.catalog-tab
.user-registration-form .form-row input[type="radio"]:checked,
a
.user-registration-form .form-row input[type="radio"]:checked,
button
.user-registration-form .form-row input[type="radio"]:checked,
.user-registration-form .form-row input[type="radio"]:checked {
  position: relative;
  backdrop-filter: blur(12px);
  background: rgba(106, 31, 255, 0.8);
  border: 1px solid rgba(106, 31, 255, 0.3);
  box-shadow:
    0 8px 32px rgba(106, 31, 255, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  text-decoration: none;
  color: white;
}

.catalog-tab.user-registration-form .form-row input[type="checkbox"]:checked::before,
a.user-registration-form .form-row input[type="checkbox"]:checked::before,
button.user-registration-form .form-row input[type="checkbox"]:checked::before,.user-registration-form .form-row input[type="checkbox"]:checked::before,
.catalog-tab
.user-registration-form .form-row input[type="radio"]:checked::before,
a
.user-registration-form .form-row input[type="radio"]:checked::before,
button
.user-registration-form .form-row input[type="radio"]:checked::before,
.user-registration-form .form-row input[type="radio"]:checked::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0.1) 50%,
    rgba(0, 0, 0, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.catalog-tab.user-registration-form .form-row input[type="checkbox"]:checked:hover::before,
a.user-registration-form .form-row input[type="checkbox"]:checked:hover::before,
button.user-registration-form .form-row input[type="checkbox"]:checked:hover::before,.user-registration-form .form-row input[type="checkbox"]:checked:hover::before,
.catalog-tab
.user-registration-form .form-row input[type="radio"]:checked:hover::before,
a
.user-registration-form .form-row input[type="radio"]:checked:hover::before,
button
.user-registration-form .form-row input[type="radio"]:checked:hover::before,
.user-registration-form .form-row input[type="radio"]:checked:hover::before {
  opacity: 1;
}

.catalog-tab.user-registration-form .form-row input[type="checkbox"]:checked:hover,
a.user-registration-form .form-row input[type="checkbox"]:checked:hover,
button.user-registration-form .form-row input[type="checkbox"]:checked:hover,.user-registration-form .form-row input[type="checkbox"]:checked:hover,
.catalog-tab
.user-registration-form .form-row input[type="radio"]:checked:hover,
a
.user-registration-form .form-row input[type="radio"]:checked:hover,
button
.user-registration-form .form-row input[type="radio"]:checked:hover,
.user-registration-form .form-row input[type="radio"]:checked:hover {
  transform: translateY(-2px);
  background: rgba(106, 31, 255, 0.9);
  box-shadow:
    0 12px 40px rgba(106, 31, 255, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}

.catalog-tab.user-registration-form .form-row input[type="checkbox"]:checked,
a.user-registration-form .form-row input[type="checkbox"]:checked,
button.user-registration-form .form-row input[type="checkbox"]:checked,.user-registration-form .form-row input[type="checkbox"]:checked,
.catalog-tab.user-registration-form .form-row input[type="checkbox"]:checked *,
a.user-registration-form .form-row input[type="checkbox"]:checked *,
button.user-registration-form .form-row input[type="checkbox"]:checked *,.user-registration-form .form-row input[type="checkbox"]:checked *,
.catalog-tab
.user-registration-form .form-row input[type="radio"]:checked,
a
.user-registration-form .form-row input[type="radio"]:checked,
button
.user-registration-form .form-row input[type="radio"]:checked,
.user-registration-form .form-row input[type="radio"]:checked,
.catalog-tab
.user-registration-form .form-row input[type="radio"]:checked *,
a
.user-registration-form .form-row input[type="radio"]:checked *,
button
.user-registration-form .form-row input[type="radio"]:checked *,
.user-registration-form .form-row input[type="radio"]:checked * {
  color: white;
}
.user-registration-form .form-row input[type="checkbox"]:checked,.user-registration-form .form-row input[type="checkbox"]:checked *,.user-registration-form .form-row input[type="checkbox"]:checked h1,.user-registration-form .form-row input[type="checkbox"]:checked h2,.user-registration-form .form-row input[type="checkbox"]:checked h3,.user-registration-form .form-row input[type="checkbox"]:checked span,.user-registration-form .form-row input[type="checkbox"]:checked div,
.user-registration-form .form-row input[type="radio"]:checked,
.user-registration-form .form-row input[type="radio"]:checked *,
.user-registration-form .form-row input[type="radio"]:checked h1,
.user-registration-form .form-row input[type="radio"]:checked h2,
.user-registration-form .form-row input[type="radio"]:checked h3,
.user-registration-form .form-row input[type="radio"]:checked span,
.user-registration-form .form-row input[type="radio"]:checked div {
  color: white;
}
[data-theme="dark"] .single-product .user-registration-form .form-row input[type="checkbox"]:checked,[data-theme="dark"] .single-product 
.user-registration-form .form-row input[type="radio"]:checked {
  background-color: var(--wdw-purple);
}
[data-theme="dark"] .bg-white:not(.user-registration-form .form-row input[type="checkbox"]:checked):not(.bg-wdw-yellow):not(.bg-wdw-red),[data-theme="dark"] .bg-white:not(
.user-registration-form .form-row input[type="radio"]:checked):not(.bg-wdw-yellow):not(.bg-wdw-red) {
  background-color: var(--theme-card-bg);
}
.single-product .user-registration-form .form-row input[type="checkbox"]:checked,
.single-product .user-registration-form .form-row input[type="checkbox"]:checked *,
.single-product .user-registration-form .form-row input[type="checkbox"]:checked h1,
.single-product .user-registration-form .form-row input[type="checkbox"]:checked h2,
.single-product .user-registration-form .form-row input[type="checkbox"]:checked h3,
.single-product .user-registration-form .form-row input[type="checkbox"]:checked span,
.single-product .user-registration-form .form-row input[type="checkbox"]:checked div,.single-product 
.user-registration-form .form-row input[type="radio"]:checked,
.single-product 
.user-registration-form .form-row input[type="radio"]:checked *,
.single-product 
.user-registration-form .form-row input[type="radio"]:checked h1,
.single-product 
.user-registration-form .form-row input[type="radio"]:checked h2,
.single-product 
.user-registration-form .form-row input[type="radio"]:checked h3,
.single-product 
.user-registration-form .form-row input[type="radio"]:checked span,
.single-product 
.user-registration-form .form-row input[type="radio"]:checked div {
  color: white;
}
.catalog-tab.user-registration-form .form-row input[type="checkbox"]:checked,.catalog-tab
.user-registration-form .form-row input[type="radio"]:checked {
  background: rgba(106, 31, 255, 0.8);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(106, 31, 255, 0.3);
  box-shadow:
    0 8px 32px rgba(106, 31, 255, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}
.catalog-tab.user-registration-form .form-row input[type="checkbox"]:checked::before,.catalog-tab
.user-registration-form .form-row input[type="radio"]:checked::before {
  background: linear-gradient(135deg,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0.1) 50%,
    rgba(0, 0, 0, 0.05) 100%);
}
.catalog-tab.user-registration-form .form-row input[type="checkbox"]:checked:hover,.catalog-tab
.user-registration-form .form-row input[type="radio"]:checked:hover {
  background: rgba(106, 31, 255, 0.9);
  box-shadow:
    0 12px 40px rgba(106, 31, 255, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}
/* Error Messages */
.user-registration-form .ur-frontend-form .ur-message {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.user-registration-form .ur-frontend-form .ur-message.ur-message-error {
  border-radius: 0.375rem;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(254 202 202 / var(--tw-border-opacity, 1));
  --tw-bg-opacity: 1;
  background-color: rgb(254 242 242 / var(--tw-bg-opacity, 1));
  padding: 0.75rem;
  --tw-text-opacity: 1;
  color: rgb(220 38 38 / var(--tw-text-opacity, 1));
}
@media only screen and (max-width: 479px) {
  
  .woocommerce ul.products li.product .rounded-lg.user-registration-form .ur-frontend-form .ur-message.ur-message-error.text-center {
    background: none;
    border: none;
    padding: 0;
    box-shadow: none;
    backdrop-filter: none;
    margin: 0;
    border-radius: 0;
  }
}
.wdw-orders-section .user-registration-form .ur-frontend-form .ur-message.ur-message-error {
  --tw-border-opacity: 1;
  border-color: rgb(243 244 246 / var(--tw-border-opacity, 1));
}
.user-registration-form .ur-frontend-form .ur-message.ur-message-success {
  border-radius: 0.375rem;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(187 247 208 / var(--tw-border-opacity, 1));
  --tw-bg-opacity: 1;
  background-color: rgb(240 253 244 / var(--tw-bg-opacity, 1));
  padding: 0.75rem;
  --tw-text-opacity: 1;
  color: rgb(22 163 74 / var(--tw-text-opacity, 1));
}
@media only screen and (max-width: 479px) {
  
  .woocommerce ul.products li.product .rounded-lg.user-registration-form .ur-frontend-form .ur-message.ur-message-success.text-center {
    background: none;
    border: none;
    padding: 0;
    box-shadow: none;
    backdrop-filter: none;
    margin: 0;
    border-radius: 0;
  }
}
.wdw-orders-section .user-registration-form .ur-frontend-form .ur-message.ur-message-success {
  --tw-border-opacity: 1;
  border-color: rgb(243 244 246 / var(--tw-border-opacity, 1));
}
/* Form Row Spacing */
.user-registration-form .form-row:last-child {
  margin-bottom: 0px;
}
/* Required Field Indicator */
.user-registration-form .form-row label.required::after {
  content: " *";
  --tw-text-opacity: 1;
  color: rgb(239 68 68 / var(--tw-text-opacity, 1));
}
/* Password Strength Indicator */
.user-registration-form .ur-frontend-form .ur-password-strength {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.user-registration-form .ur-frontend-form .ur-password-strength.weak {
  --tw-text-opacity: 1;
  color: rgb(220 38 38 / var(--tw-text-opacity, 1));
}
.user-registration-form .ur-frontend-form .ur-password-strength.medium {
  --tw-text-opacity: 1;
  color: rgb(202 138 4 / var(--tw-text-opacity, 1));
}
.user-registration-form .ur-frontend-form .ur-password-strength.strong {
  --tw-text-opacity: 1;
  color: rgb(22 163 74 / var(--tw-text-opacity, 1));
}
/* Form Section Headers */
.user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row h3 {
  margin-bottom: 1rem;
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 600;
  --tw-text-opacity: 1;
  color: rgb(31 41 55 / var(--tw-text-opacity, 1));
}
/* Profile Form Specific */
.wdw-profile-form .user-registration-form > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1.5rem * var(--tw-space-y-reverse));
}
/* Login Form Specific */
.wdw-login-form .user-registration-form .form-row {
  margin-bottom: 1rem;
}
.wdw-login-form .user-registration-form .form-row:last-child {
  margin-bottom: 0px;
}
/* Remember Me Checkbox */
.wdw-login-form .user-registration-form .form-row input[type="checkbox"] + label {
  margin-left: 0.5rem;
  display: inline-block;
  font-size: 0.875rem;
  line-height: 1.25rem;
  --tw-text-opacity: 1;
  color: rgb(156 163 175 / var(--tw-text-opacity, 1));
}
.single-product .wdw-login-form .user-registration-form .form-row input[type="checkbox"] + label {
  color: var(--theme-text-secondary);
}
/* Override plugin link colors */
.wdw-login-form .user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row a,
.wdw-login-form .user-registration-form a,
.wdw-register-form .user-registration-form a,
.wdw-reset-password-form .user-registration-form a {
  font-size: 0.875rem !important;
  line-height: 1.25rem !important;
  --tw-text-opacity: 1 !important;
  color: rgb(106 31 255 / var(--tw-text-opacity, 1)) !important;
}
[data-theme="dark"] .text-gray-500:not(.wdw-login-form .user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row a):not(.text-wdw-yellow):not(.text-wdw-red),[data-theme="dark"] .text-gray-500:not(
.wdw-login-form .user-registration-form a):not(.text-wdw-yellow):not(.text-wdw-red),[data-theme="dark"] .text-gray-500:not(
.wdw-register-form .user-registration-form a):not(.text-wdw-yellow):not(.text-wdw-red),[data-theme="dark"] .text-gray-500:not(
.wdw-reset-password-form .user-registration-form a):not(.text-wdw-yellow):not(.text-wdw-red) {
  color: var(--theme-text-secondary) !important;
}
.single-product .wdw-login-form .user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row a,.single-product 
.wdw-login-form .user-registration-form a,.single-product 
.wdw-register-form .user-registration-form a,.single-product 
.wdw-reset-password-form .user-registration-form a {
  color: #6A1FFF !important;
}
.wdw-login-form .user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row a:hover,
.wdw-login-form .user-registration-form a:hover,
.wdw-register-form .user-registration-form a:hover,
.wdw-reset-password-form .user-registration-form a:hover {
  --tw-text-opacity: 1 !important;
  color: rgb(91 33 182 / var(--tw-text-opacity, 1)) !important;
}
/* Registration Form Specific */
.wdw-register-form .user-registration-form .form-row {
  margin-bottom: 1rem;
}
/* Terms and Conditions */
.wdw-register-form .user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row .ur-frontend-form .ur-form-row {
  margin-bottom: 1rem;
}
.wdw-register-form .user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row .ur-frontend-form .ur-form-row label {
  font-size: 0.875rem;
  line-height: 1.25rem;
  --tw-text-opacity: 1;
  color: rgb(156 163 175 / var(--tw-text-opacity, 1));
}
.single-product .wdw-register-form .user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row .ur-frontend-form .ur-form-row label {
  color: var(--theme-text-secondary);
}
/* Password Reset Form Specific */
.wdw-reset-password-form .user-registration-form .form-row {
  margin-bottom: 1rem;
}
/* Account Dashboard Specific */
.wdw-account-dashboard .wdw-profile-section {
  margin-bottom: 2rem;
}
.wdw-account-stats .space-y-3 > div {
  border-bottom-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(243 244 246 / var(--tw-border-opacity, 1));
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.wdw-account-stats .space-y-3 > div:last-child {
  border-bottom-width: 0px;
}
.wdw-quick-actions .space-y-3 a {
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 500;
}
/* Orders Page Specific */
.wdw-orders-section .wdw-orders-content {
  max-width: 100%;
}
.wdw-orders-section .border {
  --tw-border-opacity: 1;
  border-color: rgb(243 244 246 / var(--tw-border-opacity, 1));
}
.wdw-orders-section .hover\:shadow-md:hover {
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
/* Order Status Badges */
.wdw-orders-section .bg-green-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(240 253 244 / var(--tw-bg-opacity, 1));
}
.wdw-orders-section .bg-blue-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(239 246 255 / var(--tw-bg-opacity, 1));
}
.wdw-orders-section .bg-yellow-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(254 252 232 / var(--tw-bg-opacity, 1));
}
.wdw-orders-section .bg-red-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(254 242 242 / var(--tw-bg-opacity, 1));
}
.wdw-orders-section .bg-gray-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
}
[data-theme="dark"] .single-product .wdw-orders-section .bg-gray-100 {
  background-color: var(--theme-card-bg);
}
/* Responsive Adjustments */
@media (max-width: 1024px) {
  .wdw-login-form,
  .wdw-register-form,
  .wdw-reset-password-form,
  .wdw-profile-form {
    max-width: 64rem;
  }
  
  .wdw-register-form {
    max-width: 64rem;
  }
}
@media (max-width: 768px) {
  .wdw-login-form,
  .wdw-register-form,
  .wdw-reset-password-form,
  .wdw-profile-form {
    max-width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  .wdw-login-form .user-registration-form,
  .wdw-register-form .user-registration-form,
  .wdw-reset-password-form .user-registration-form,
  .wdw-profile-form .user-registration-form {
    padding: 1rem;
  }
  
  .wdw-account-dashboard .grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  
  .wdw-profile-section {
    padding: 1rem;
  }
  
  /* Improve mobile form field spacing */
  .user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row {
    margin-bottom: 1rem;
  }
  
  /* Stack form fields vertically on mobile */
  .user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 1rem;
  }
@media (max-width: 767px) {
  .products.grid.user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid {
    justify-items: center;
  }
  .products.grid.user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid > li {
    width: 100%;
    max-width: calc(100vw - 2rem);
  }
}
}
@media (max-width: 480px) {
  .wdw-login-form,
  .wdw-register-form,
  .wdw-reset-password-form,
  .wdw-profile-form {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  
  .wdw-login-form .user-registration-form,
  .wdw-register-form .user-registration-form,
  .wdw-reset-password-form .user-registration-form,
  .wdw-profile-form .user-registration-form {
    padding: 0.5rem;
  }
  
  /* Smaller padding for mobile inputs */
  .user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row input,
  .user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row textarea,
  .user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row select {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
  
  /* Smaller button padding on mobile */
  .user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row .ur-submit-button,
  .user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row input[type="submit"] {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
/* Loading States */
.user-registration-form .ur-frontend-form .ur-submit-button:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
/* Form Validation Styles */
.user-registration-form .form-row input.error,
.user-registration-form .form-row textarea.error,
.user-registration-form .form-row select.error {
  --tw-border-opacity: 1;
  border-color: rgb(239 68 68 / var(--tw-border-opacity, 1));
}
.user-registration-form .form-row input.error:focus,
.user-registration-form .form-row textarea.error:focus,
.user-registration-form .form-row select.error:focus {
  --tw-border-opacity: 1;
  border-color: rgb(239 68 68 / var(--tw-border-opacity, 1));
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(239 68 68 / var(--tw-ring-opacity, 1));
}
.user-registration-form .form-row .field-error {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  --tw-text-opacity: 1;
  color: rgb(220 38 38 / var(--tw-text-opacity, 1));
}
/* Success Message Styling */
.user-registration-form .ur-frontend-form .ur-message.ur-message-success {
  display: flex;
  align-items: center;
}
@media (max-width: 1023px) {
  #masthead .user-registration-form .ur-frontend-form .ur-message.ur-message-success.items-end.justify-between {
    justify-content: space-between;
    align-items: center;
  }
  #mobile-menu .user-registration-form .ur-frontend-form .ur-message.ur-message-success.items-center.justify-between {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  #mobile-menu .flex.user-registration-form .ur-frontend-form .ur-message.ur-message-success.justify-between {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
}
@media (max-width: 640px) {
  
  .filters-section .user-registration-form .ur-frontend-form .ur-message.ur-message-success {
    flex-direction: column;
  }
  
  @media (min-width: 640px) {
    .filters-section .user-registration-form .ur-frontend-form .ur-message.ur-message-success {
      flex-direction: row;
    }
  }
}
@media (max-width: 430px) {
  .user-registration-form .ur-frontend-form .ur-message.ur-message-success.justify-center.gap-3 {
    gap: 0.5rem;
    padding: 0 1rem;
    flex-wrap: nowrap;
  }
}
.user-registration-form .ur-frontend-form .ur-message.ur-message-success::before {
  content: "✓";
  margin-right: 0.5rem;
  font-weight: 700;
}
/* Additional plugin overrides to ensure theme consistency */
.user-registration-form .ur-frontend-form {
  background-color: transparent !important;
  --tw-shadow: 0 0 #0000 !important;
  --tw-shadow-colored: 0 0 #0000 !important;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  border-width: 0px !important;
  padding: 0px !important;
}
/* Add proper spacing to form containers */
.wdw-login-form,
.wdw-register-form,
.wdw-reset-password-form {
  border-radius: 0.75rem;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
  padding: 2rem;
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
[data-theme="dark"] .single-product .wdw-login-form,[data-theme="dark"] .single-product 
.wdw-register-form,[data-theme="dark"] .single-product 
.wdw-reset-password-form {
  background-color: var(--theme-card-bg);
}
[data-theme="dark"] .wdw-login-form:not(.bg-wdw-purple):not(.bg-wdw-yellow):not(.bg-wdw-red),[data-theme="dark"] 
.wdw-register-form:not(.bg-wdw-purple):not(.bg-wdw-yellow):not(.bg-wdw-red),[data-theme="dark"] 
.wdw-reset-password-form:not(.bg-wdw-purple):not(.bg-wdw-yellow):not(.bg-wdw-red) {
  background-color: var(--theme-card-bg);
}
[data-theme="dark"] .single-product .wdw-login-form,[data-theme="dark"] .single-product 
.wdw-register-form,[data-theme="dark"] .single-product 
.wdw-reset-password-form {
  background-color: var(--theme-card-bg);
}
/* Better spacing for registration form */
.wdw-register-form {
  padding: 2.5rem;
}
/* Override any plugin-added backgrounds */
.user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid {
  background-color: transparent !important;
  --tw-shadow: 0 0 #0000 !important;
  --tw-shadow-colored: 0 0 #0000 !important;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  border-width: 0px !important;
}
/* Ensure form fields use our styling */
.user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row input,
.user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row textarea,
.user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row select {
  width: 100% !important;
  border-radius: 0.375rem !important;
  border-width: 1px !important;
  --tw-border-opacity: 1 !important;
  border-color: rgb(243 244 246 / var(--tw-border-opacity, 1)) !important;
  padding-left: 1rem !important;
  padding-right: 1rem !important;
  padding-top: 0.75rem !important;
  padding-bottom: 0.75rem !important;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke !important;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
  transition-duration: 150ms !important;
}
.wdw-orders-section .user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row input,.wdw-orders-section 
.user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row textarea,.wdw-orders-section 
.user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row select {
  --tw-border-opacity: 1;
  border-color: rgb(243 244 246 / var(--tw-border-opacity, 1));
}
.user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row input:focus,
.user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row textarea:focus,
.user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row select:focus {
  --tw-border-opacity: 1 !important;
  border-color: rgb(106 31 255 / var(--tw-border-opacity, 1)) !important;
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgb(106 31 255 / var(--tw-ring-opacity, 1)) !important;
}
.user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row input,
.user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row textarea,
.user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row select {
  --tw-text-opacity: 1 !important;
  color: rgb(31 41 55 / var(--tw-text-opacity, 1)) !important;
}
.user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row input::-moz-placeholder, .user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row textarea::-moz-placeholder, .user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row select::-moz-placeholder {
  --tw-placeholder-opacity: 1 !important;
  color: rgb(156 163 175 / var(--tw-placeholder-opacity, 1)) !important;
}
.user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row input::placeholder,
.user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row textarea::placeholder,
.user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row select::placeholder {
  --tw-placeholder-opacity: 1 !important;
  color: rgb(156 163 175 / var(--tw-placeholder-opacity, 1)) !important;
}
.user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row input,
.user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row textarea,
.user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row select {
  --tw-bg-opacity: 1 !important;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1)) !important;
}
[data-theme="dark"] .single-product .user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row input,[data-theme="dark"] .single-product 
.user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row textarea,[data-theme="dark"] .single-product 
.user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row select {
  background-color: var(--theme-card-bg) !important;
}
[data-theme="dark"] .user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row input:not(.bg-wdw-purple):not(.bg-wdw-yellow):not(.bg-wdw-red),[data-theme="dark"] 
.user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row textarea:not(.bg-wdw-purple):not(.bg-wdw-yellow):not(.bg-wdw-red),[data-theme="dark"] 
.user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row select:not(.bg-wdw-purple):not(.bg-wdw-yellow):not(.bg-wdw-red) {
  background-color: var(--theme-card-bg) !important;
}
[data-theme="dark"] .single-product .user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row input,[data-theme="dark"] .single-product 
.user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row textarea,[data-theme="dark"] .single-product 
.user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row select {
  background-color: var(--theme-card-bg) !important;
}
/* Override any plugin-added button styles */
.user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row .ur-submit-button,
.user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row input[type="submit"] {
  width: 100% !important;
  border-radius: 0.375rem !important;
  --tw-bg-opacity: 1 !important;
  background-color: rgb(106 31 255 / var(--tw-bg-opacity, 1)) !important;
  padding-top: 0.75rem !important;
  padding-bottom: 0.75rem !important;
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
  font-weight: 500 !important;
  --tw-text-opacity: 1 !important;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1)) !important;
}
.woocommerce ul.products li.product .user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row .ur-submit-button,.woocommerce ul.products li.product 
.user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row input[type="submit"] {
  position: relative !important;
  backdrop-filter: blur(12px) !important;
  background: rgba(106, 31, 255, 0.8) !important;
  border: 1px solid rgba(106, 31, 255, 0.3) !important;
  box-shadow:
    0 8px 32px rgba(106, 31, 255, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2) !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  overflow: hidden !important;
  text-decoration: none !important;
}
.woocommerce ul.products li.product .user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row .ur-submit-button::before,.woocommerce ul.products li.product 
.user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row input[type="submit"]::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  background: linear-gradient(135deg,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0.1) 50%,
    rgba(0, 0, 0, 0.05) 100%) !important;
  opacity: 0 !important;
  transition: opacity 0.3s ease !important;
  pointer-events: none !important;
}
.woocommerce ul.products li.product .user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row .ur-submit-button:hover::before,.woocommerce ul.products li.product 
.user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row input[type="submit"]:hover::before {
  opacity: 1 !important;
}
.woocommerce ul.products li.product .user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row .ur-submit-button:hover,.woocommerce ul.products li.product 
.user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row input[type="submit"]:hover {
  transform: translateY(-2px) !important;
  background: rgba(106, 31, 255, 0.9) !important;
  box-shadow:
    0 12px 40px rgba(106, 31, 255, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2) !important;
}

.catalog-tab.user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row .ur-submit-button,
a.user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row .ur-submit-button,
button.user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row .ur-submit-button,.user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row .ur-submit-button,
.catalog-tab
.user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row input[type="submit"],
a
.user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row input[type="submit"],
button
.user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row input[type="submit"],
.user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row input[type="submit"] {
  position: relative !important;
  backdrop-filter: blur(12px) !important;
  background: rgba(106, 31, 255, 0.8) !important;
  border: 1px solid rgba(106, 31, 255, 0.3) !important;
  box-shadow:
    0 8px 32px rgba(106, 31, 255, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2) !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  overflow: hidden !important;
  text-decoration: none !important;
  color: white !important;
}

.catalog-tab.user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row .ur-submit-button::before,
a.user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row .ur-submit-button::before,
button.user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row .ur-submit-button::before,.user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row .ur-submit-button::before,
.catalog-tab
.user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row input[type="submit"]::before,
a
.user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row input[type="submit"]::before,
button
.user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row input[type="submit"]::before,
.user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row input[type="submit"]::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  background: linear-gradient(135deg,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0.1) 50%,
    rgba(0, 0, 0, 0.05) 100%) !important;
  opacity: 0 !important;
  transition: opacity 0.3s ease !important;
  pointer-events: none !important;
}

.catalog-tab.user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row .ur-submit-button:hover::before,
a.user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row .ur-submit-button:hover::before,
button.user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row .ur-submit-button:hover::before,.user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row .ur-submit-button:hover::before,
.catalog-tab
.user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row input[type="submit"]:hover::before,
a
.user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row input[type="submit"]:hover::before,
button
.user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row input[type="submit"]:hover::before,
.user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row input[type="submit"]:hover::before {
  opacity: 1 !important;
}

.catalog-tab.user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row .ur-submit-button:hover,
a.user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row .ur-submit-button:hover,
button.user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row .ur-submit-button:hover,.user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row .ur-submit-button:hover,
.catalog-tab
.user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row input[type="submit"]:hover,
a
.user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row input[type="submit"]:hover,
button
.user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row input[type="submit"]:hover,
.user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row input[type="submit"]:hover {
  transform: translateY(-2px) !important;
  background: rgba(106, 31, 255, 0.9) !important;
  box-shadow:
    0 12px 40px rgba(106, 31, 255, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2) !important;
}

.catalog-tab.user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row .ur-submit-button,
a.user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row .ur-submit-button,
button.user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row .ur-submit-button,.user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row .ur-submit-button,
.catalog-tab.user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row .ur-submit-button *,
a.user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row .ur-submit-button *,
button.user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row .ur-submit-button *,.user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row .ur-submit-button *,
.catalog-tab
.user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row input[type="submit"],
a
.user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row input[type="submit"],
button
.user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row input[type="submit"],
.user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row input[type="submit"],
.catalog-tab
.user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row input[type="submit"] *,
a
.user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row input[type="submit"] *,
button
.user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row input[type="submit"] *,
.user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row input[type="submit"] * {
  color: white !important;
}
.user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row .ur-submit-button,.user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row .ur-submit-button *,.user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row .ur-submit-button h1,.user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row .ur-submit-button h2,.user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row .ur-submit-button h3,.user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row .ur-submit-button span,.user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row .ur-submit-button div,
.user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row input[type="submit"],
.user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row input[type="submit"] *,
.user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row input[type="submit"] h1,
.user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row input[type="submit"] h2,
.user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row input[type="submit"] h3,
.user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row input[type="submit"] span,
.user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row input[type="submit"] div {
  color: white !important;
}
[data-theme="dark"] .single-product .user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row .ur-submit-button,[data-theme="dark"] .single-product 
.user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row input[type="submit"] {
  background-color: var(--wdw-purple) !important;
}
[data-theme="dark"] .bg-white:not(.user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row .ur-submit-button):not(.bg-wdw-yellow):not(.bg-wdw-red),[data-theme="dark"] .bg-white:not(
.user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row input[type="submit"]):not(.bg-wdw-yellow):not(.bg-wdw-red) {
  background-color: var(--theme-card-bg) !important;
}
#masthead .user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row .ur-submit-button:hover,#masthead 
.user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row input[type="submit"]:hover {
  color: #FCD34D !important;
}
.single-product .user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row .ur-submit-button,.single-product 
.user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row input[type="submit"] {
  color: var(--theme-text) !important;
}
.single-product .user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row .ur-submit-button,
.single-product .user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row .ur-submit-button *,
.single-product .user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row .ur-submit-button h1,
.single-product .user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row .ur-submit-button h2,
.single-product .user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row .ur-submit-button h3,
.single-product .user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row .ur-submit-button span,
.single-product .user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row .ur-submit-button div,.single-product 
.user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row input[type="submit"],
.single-product 
.user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row input[type="submit"] *,
.single-product 
.user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row input[type="submit"] h1,
.single-product 
.user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row input[type="submit"] h2,
.single-product 
.user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row input[type="submit"] h3,
.single-product 
.user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row input[type="submit"] span,
.single-product 
.user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row input[type="submit"] div {
  color: white !important;
}
.catalog-tab.user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row .ur-submit-button,.catalog-tab
.user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row input[type="submit"] {
  background: rgba(106, 31, 255, 0.8) !important;
  backdrop-filter: blur(12px) !important;
  border: 1px solid rgba(106, 31, 255, 0.3) !important;
  box-shadow:
    0 8px 32px rgba(106, 31, 255, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2) !important;
}
.catalog-tab.user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row .ur-submit-button::before,.catalog-tab
.user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row input[type="submit"]::before {
  background: linear-gradient(135deg,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0.1) 50%,
    rgba(0, 0, 0, 0.05) 100%) !important;
}
.catalog-tab.user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row .ur-submit-button:hover,.catalog-tab
.user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row input[type="submit"]:hover {
  background: rgba(106, 31, 255, 0.9) !important;
  box-shadow:
    0 12px 40px rgba(106, 31, 255, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2) !important;
}
.user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row .ur-submit-button,
.user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row input[type="submit"] {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke !important;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
  transition-duration: 150ms !important;
}
.user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row .ur-submit-button:hover,
.user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row input[type="submit"]:hover {
  --tw-bg-opacity: 1 !important;
  background-color: rgb(91 33 182 / var(--tw-bg-opacity, 1)) !important;
}
.user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row .ur-submit-button:focus,
.user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row input[type="submit"]:focus {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgb(106 31 255 / var(--tw-ring-opacity, 1)) !important;
  --tw-ring-offset-width: 2px !important;
}
.user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row .ur-submit-button:disabled,
.user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row input[type="submit"]:disabled {
  cursor: not-allowed !important;
  opacity: 0.5 !important;
}
.user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row .ur-submit-button,
.user-registration-form .ur-frontend-form .ur-form-row .ur-form-grid .ur-form-row input[type="submit"] {
  border-width: 0px !important;
  --tw-shadow: 0 0 #0000 !important;
  --tw-shadow-colored: 0 0 #0000 !important;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
}
/* Footer Theme-Aware Styling */
/* Newsletter Section - Theme Aware */
.wdw-footer-newsletter {
  background-color: var(--theme-secondary);
  color: white;
}
/* Ensure all text in newsletter section is white */
.wdw-footer-newsletter * {
  color: white !important;
}
.wdw-footer-newsletter h2 {
  color: white !important;
}
.wdw-footer-newsletter p {
  color: rgba(255, 255, 255, 0.9) !important;
}
.wdw-footer-newsletter a {
  color: white !important;
  text-decoration: underline;
}
.wdw-footer-newsletter a:hover {
  color: #FFD700 !important;
}
/* Extra high specificity overrides to ensure white text on purple background */
section.wdw-footer-newsletter h2.text-theme-text-on-color {
  color: white !important;
}
section.wdw-footer-newsletter p.text-theme-text-on-color {
  color: rgba(255, 255, 255, 0.9) !important;
}
/* Override any Tailwind utility classes in footer newsletter */
.wdw-footer-newsletter [class*="text-"]:not(.text-wdw-yellow) {
  color: white !important;
}
/* Navigation Section - Theme Aware */
.wdw-footer-nav {
  background-color: var(--theme-primary);
}
.wdw-footer-nav a {
  color: var(--theme-text);
  transition: color 0.3s ease;
}
.wdw-footer-nav a:hover {
  color: var(--theme-accent);
}
.wdw-footer-nav-link {
  color: var(--theme-text);
  transition: color 0.3s ease;
}
.wdw-footer-nav-link:hover {
  color: var(--theme-accent);
}
/* Company Info Section - Theme Aware */
.wdw-footer-company {
  background-color: var(--theme-bg);
  border-top: 1px solid var(--theme-border);
}
.wdw-footer-company .wdw-footer-text {
  color: var(--theme-text);
}
.wdw-footer-company .wdw-footer-text-secondary {
  color: var(--theme-text-secondary);
}
/* Payment methods styling */
.wdw-payment-methods {
  color: var(--theme-text);
}
.wdw-payment-card {
  background-color: var(--theme-card-bg);
  border: 1px solid var(--theme-border);
}
/* Logo styling */
.wdw-footer-logo {
  color: var(--theme-text);
}
.wdw-footer-logo-star {
  background-color: var(--theme-accent);
  color: var(--theme-text);
}
/* Social media icons */
.wdw-social-icon {
  background-color: var(--theme-secondary);
  transition: background-color 0.3s ease;
}
.wdw-social-icon:hover {
  background-color: #5a1ae6;
}
/* Force white text on purple backgrounds */
.wdw-footer-company .wdw-footer-logo,
.wdw-footer-company .wdw-payment-methods {
  color: white !important;
}
/* Ensure payment card text is visible */
.wdw-payment-card span {
  color: #333 !important;
  font-weight: bold;
}
/* Company info text on dark backgrounds */
.wdw-footer-company {
  background-color: var(--theme-bg);
  border-top: 1px solid var(--theme-border);
}
/* Override any dark text in footer company section */
.wdw-footer-company .wdw-footer-text,
.wdw-footer-company .wdw-footer-text-secondary,
.wdw-footer-company .wdw-payment-methods {
  color: white !important;
}
/* Scroll to top button */
.wdw-scroll-to-top {
  background-color: var(--theme-secondary);
  transition: background-color 0.3s ease;
}
.wdw-scroll-to-top:hover {
  background-color: #5a1ae6;
}
/* Front Page Theme-Aware Styling */
/* Mobile Banner Container Fix */
@media (max-width: 430px) {
  .promotional-banner {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .wdw-banner-container {
    margin-left: auto !important;
    margin-right: auto !important;
  }
}
/* Mobile Competition Grid Layout */
@media (max-width: 767px) {
  /* Remove max-width constraint on mobile for competition cards */
  .products li .bg-theme-card {
    max-width: none !important;
    width: 100% !important;
  }

  /* Ensure proper spacing and centering on mobile */
  .products.grid {
    gap: 1rem !important;
    padding: 0 !important;
  }

  /* Center single competition cards on mobile */
  .products.grid.grid-cols-1 {
    justify-items: center;
  }

  /* Ensure competition cards take full available width with margins */
  .products.grid.grid-cols-1 > li {
    width: 100%;
    max-width: calc(100vw - 2rem);
  }
}
/* Smaller phones (iPhone SE, etc.) - tighter 2x2 grid */
@media (max-width: 580px) {
  .products.grid {
    gap: 0.5rem !important;
  }

  .products li .bg-theme-card {
    padding: 0.75rem !important;
  }
}
/* How to Play Section - Theme Aware */
.wdw-how-to-play {
  background-color: var(--theme-secondary) !important;
}
.wdw-how-to-play-card {
  background-color: var(--theme-primary);
}
.wdw-step-title {
  color: var(--theme-secondary);
}
.wdw-step-description {
  color: var(--theme-text);
}
/* Category Buttons - Liquid Glass Mobile-Friendly Design */
.catalog-tab {
  position: relative;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.1) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    inset 0 -1px 0 rgba(0, 0, 0, 0.1) !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  overflow: hidden;
}
.catalog-tab::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg,
    rgba(255, 255, 255, 0.15) 0%,
    rgba(255, 255, 255, 0.05) 50%,
    rgba(0, 0, 0, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.catalog-tab:hover::before {
  opacity: 1;
}
.catalog-tab:hover {
  transform: translateY(-2px);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    inset 0 -1px 0 rgba(0, 0, 0, 0.1) !important;
  background: rgba(255, 255, 255, 0.15) !important;
}
/* Active state for catalog tabs */
.catalog-tab.bg-wdw-purple {
  background: rgba(106, 31, 255, 0.8) !important;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(106, 31, 255, 0.3) !important;
  box-shadow:
    0 8px 32px rgba(106, 31, 255, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2) !important;
}
.catalog-tab.bg-wdw-purple::before {
  background: linear-gradient(135deg,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0.1) 50%,
    rgba(0, 0, 0, 0.05) 100%);
}
.catalog-tab.bg-wdw-purple:hover {
  background: rgba(106, 31, 255, 0.9) !important;
  box-shadow:
    0 12px 40px rgba(106, 31, 255, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2) !important;
}
/* Liquid Glass Button Effect for Enter Now buttons */
.wdw-liquid-glass-btn {
  background: rgba(106, 31, 255, 0.8) !important;
  backdrop-filter: blur(12px) !important;
  border: 1px solid rgba(106, 31, 255, 0.3) !important;
  box-shadow:
    0 8px 32px rgba(106, 31, 255, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2) !important;
  color: white !important;
  font-weight: 600 !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) !important;
  position: relative !important;
  overflow: hidden !important;
  transition: all 0.3s ease !important;
}
.wdw-liquid-glass-btn::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  background: linear-gradient(135deg,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0.1) 50%,
    rgba(0, 0, 0, 0.05) 100%) !important;
  pointer-events: none !important;
}
.wdw-liquid-glass-btn:hover {
  background: rgba(106, 31, 255, 0.9) !important;
  box-shadow:
    0 12px 40px rgba(106, 31, 255, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2) !important;
  transform: translateY(-1px) !important;
}
/* Mobile responsive adjustments for buttons */
@media (max-width: 430px) {
  .catalog-tab {
    padding: 0.75rem 1rem !important;
    font-size: 0.875rem !important;
    margin: 0 0.25rem !important;
    min-width: auto !important;
    flex: 1;
    max-width: calc(33.333% - 0.5rem);
  }

  /* Container for button layout */
  .flex.justify-center.gap-3 {
    gap: 0.5rem !important;
    padding: 0 1rem !important;
    flex-wrap: nowrap !important;
  }
}
/* View All Competitions Button - Liquid Glass Effect */
.ending-soon .inline-flex {
  position: relative;
  backdrop-filter: blur(12px);
  background: rgba(106, 31, 255, 0.8) !important;
  border: 1px solid rgba(106, 31, 255, 0.3) !important;
  box-shadow:
    0 8px 32px rgba(106, 31, 255, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2) !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  overflow: hidden;
}
.ending-soon .inline-flex::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0.1) 50%,
    rgba(0, 0, 0, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.ending-soon .inline-flex:hover::before {
  opacity: 1;
}
.ending-soon .inline-flex:hover {
  transform: translateY(-2px);
  background: rgba(106, 31, 255, 0.9) !important;
  box-shadow:
    0 12px 40px rgba(106, 31, 255, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2) !important;
}
/**
 * Swiper.js Styles
 * Hero slider and catalog slider styling
 */
/* Essential Swiper styles */
.swiper {
  width: 100%;
  height: 100%;
  position: relative;
}
.swiper-wrapper {
  display: flex;
  width: 100%;
  height: 100%;
}
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
}
/* Hero slider specific styles */
.hero-slider {
  width: 100%;
  height: 600px;
}
@media (min-width: 768px) {
  .hero-slider {
    height: 880px;
  }
}
@media (min-width: 1024px) {
  .hero-slider {
    height: 990px;
  }
}
@media (min-width: 1280px) {
  .hero-slider {
    height: 1100px;
  }
}
/* Hero slider navigation positioning */
.hero-slider .swiper-button-next,
.hero-slider .swiper-button-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  color: white;
  width: 40px;
  height: 40px;
}
.hero-slider .swiper-button-next {
  right: 20px;
}
.hero-slider .swiper-button-prev {
  left: 20px;
}
.hero-slider .swiper-pagination {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}
.hero-slider .swiper-pagination-bullet {
  background: rgba(106, 31, 255, 0.8);
  opacity: 0.5;
}
.hero-slider .swiper-pagination-bullet-active {
  opacity: 1;
  background: #6A1FFF;
}
/* Catalog slider styles */
.catalog-swiper {
  width: 100%;
}
.catalog-pagination {
  margin-top: 1rem;
}
/* Swiper navigation button hover effects */
.hero-slider .swiper-button-next:hover,
.hero-slider .swiper-button-prev:hover {
  color: #FCD34D;
  transform: translateY(-50%) scale(1.1);
  transition: all 0.2s ease;
}
/* Swiper pagination bullet hover effects */
.hero-slider .swiper-pagination-bullet:hover {
  opacity: 0.8;
  transform: scale(1.2);
  transition: all 0.2s ease;
}
/* Banner container - badge-like styling */
.wdw-banner-container {
  margin-top: 16px;
}
@media (max-width: 430px) {
  .wdw-banner-container {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}
@media (min-width: 768px) {
  .wdw-banner-container {
    margin-top: 24px;
  }
}
/* Banner swiper badge styling - inspired by winwink.co.uk */
.wdw-banner-swiper {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 
    0 12px 40px rgba(0, 0, 0, 0.15),
    0 4px 16px rgba(0, 0, 0, 0.1),
    0 2px 8px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    inset 0 -2px 0 rgba(0, 0, 0, 0.05);
  position: relative;
  background: transparent;
  border: 3px solid rgba(255, 255, 255, 0.9);
  margin: 0 8px;
}
@media (max-width: 430px) {
  .wdw-banner-swiper {
    margin: 0 !important;
  }
}
@media (min-width: 768px) {
  .wdw-banner-swiper {
    border-radius: 32px;
    margin: 0 12px;
    border: 4px solid rgba(255, 255, 255, 0.95);
    box-shadow: 
      0 20px 60px rgba(0, 0, 0, 0.18),
      0 8px 24px rgba(0, 0, 0, 0.12),
      0 4px 12px rgba(0, 0, 0, 0.08),
      inset 0 2px 0 rgba(255, 255, 255, 0.2),
      inset 0 -3px 0 rgba(0, 0, 0, 0.05);
  }
}
@media (min-width: 1024px) {
  .wdw-banner-swiper {
    margin: 0 8px;
  }
}
@media (min-width: 1280px) {
  .wdw-banner-swiper {
    margin: 0 6px;
  }
}
.wdw-banner-swiper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 22px;
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.1) 0%, 
    rgba(255, 255, 255, 0.05) 50%, 
    rgba(0, 0, 0, 0.02) 100%);
  pointer-events: none;
  z-index: 2;
}
@media (min-width: 768px) {
  .wdw-banner-swiper::before {
    border-radius: 30px;
  }
}
/* SVG image handling to preserve content */
.wdw-banner-swiper .swiper-slide {
  border-radius: 20px;
  overflow: hidden;
  background: transparent;
}
@media (min-width: 768px) {
  .wdw-banner-swiper .swiper-slide {
    border-radius: 28px;
  }
}
.wdw-banner-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 20px;
  display: block;
}
@media (min-width: 768px) {
  .wdw-banner-swiper .swiper-slide img {
    border-radius: 28px;
  }
}
/* Clean navigation arrows without background circles */
.wdw-banner-swiper .swiper-button-next,
.wdw-banner-swiper .swiper-button-prev {
  background: none;
  width: 40px;
  height: 40px;
  margin-top: -20px;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  z-index: 10;
}
.wdw-banner-swiper .swiper-button-next:hover,
.wdw-banner-swiper .swiper-button-prev:hover {
  color: rgba(255, 255, 255, 1);
  transform: translateY(-50%) scale(1.1);
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.5);
}
.wdw-banner-swiper .swiper-button-next {
  right: 16px;
}
.wdw-banner-swiper .swiper-button-prev {
  left: 16px;
}
.wdw-banner-swiper .swiper-button-next:after,
.wdw-banner-swiper .swiper-button-prev:after {
  font-size: 24px;
  font-weight: bold;
}
@media (min-width: 768px) {
  .wdw-banner-swiper .swiper-button-next,
  .wdw-banner-swiper .swiper-button-prev {
    width: 48px;
    height: 48px;
    margin-top: -24px;
  }
  
  .wdw-banner-swiper .swiper-button-next {
    right: 20px;
  }

  .wdw-banner-swiper .swiper-button-prev {
    left: 20px;
  }
  
  .wdw-banner-swiper .swiper-button-next:after,
  .wdw-banner-swiper .swiper-button-prev:after {
    font-size: 28px;
  }
}
/* Lottery Notice Container Styling */
.lottery-notice-container {
  padding-top: 1rem;
  padding-bottom: 1rem;
  min-height: 0;
  transition: min-height 0.3s ease;
}
.lottery-notice-container:not(:empty) {
  min-height: 4rem;
}
.lottery-notice-container .woocommerce-message,
.lottery-notice-container .woocommerce-error,
.lottery-notice-container .woocommerce-info {
  margin: 0;
  border-radius: 0.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
/* Enhanced Lottery Notice Styling */
.lottery-add-notice { 
  display: flex; 
  gap: 0.5rem; 
  align-items: center; 
  flex-wrap: wrap;
}
.lottery-reserve-chip { 
  display: inline-flex; 
  gap: 0.35rem; 
  align-items: center; 
  padding: 0.25rem 0.5rem; 
  border-radius: 9999px; 
  border: 1px solid var(--wc-color-border, #e5e7eb);
  background-color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  font-weight: 500;
}
.lottery-view-cart-btn {
  display: inline-block;
  padding: 0.375rem 0.75rem;
  background-color: #6A1FFF;
  color: white;
  text-decoration: none;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid #6A1FFF;
  transition: all 0.2s ease;
  margin-left: 0.5rem;
}
.lottery-view-cart-btn:hover {
  background-color: #5A1BDF;
  border-color: #5A1BDF;
  color: white;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
/* Theme-specific lottery view cart button */
.wdw-lottery-view-cart {
  background-color: #6A1FFF !important;
  border-color: #6A1FFF !important;
  color: white !important;
  text-decoration: none !important;
  display: inline-block !important;
  padding: 0.375rem 0.75rem !important;
  border-radius: 0.375rem !important;
  font-size: 0.875rem !important;
  font-weight: 500 !important;
  transition: all 0.2s ease !important;
  margin-left: 0.5rem !important;
}
.wdw-lottery-view-cart:hover {
  background-color: #5A1BDF !important;
  border-color: #5A1BDF !important;
  color: white !important;
  text-decoration: none !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
}
.wdw-lottery-view-cart:visited {
  color: white !important;
}
.wdw-lottery-view-cart:active {
  color: white !important;
}
/* Styled lottery expiry notices */
.woocommerce-notices-wrapper .woocommerce-message.lottery-expiry-notice,
.woocommerce-notices-wrapper .woocommerce-info.lottery-expiry-notice,
.woocommerce-notices-wrapper .woocommerce-notice.lottery-expiry-notice {
  background-color: #6A1FFF !important;
  border-color: #5A1BDF !important;
  color: white !important;
  border-radius: 0.5rem;
  padding: 1rem 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 2px 4px rgba(106, 31, 255, 0.2);
  border-left: 4px solid #FCD34D !important;
}
.woocommerce-notices-wrapper .woocommerce-message.lottery-expiry-notice::before,
.woocommerce-notices-wrapper .woocommerce-info.lottery-expiry-notice::before,
.woocommerce-notices-wrapper .woocommerce-notice.lottery-expiry-notice::before {
  color: white !important;
}
.woocommerce-notices-wrapper .woocommerce-message.lottery-expiry-notice a,
.woocommerce-notices-wrapper .woocommerce-info.lottery-expiry-notice a,
.woocommerce-notices-wrapper .woocommerce-notice.lottery-expiry-notice a {
  color: #FCD34D !important;
  text-decoration: underline;
}
.woocommerce-notices-wrapper .woocommerce-message.lottery-expiry-notice a:hover,
.woocommerce-notices-wrapper .woocommerce-info.lottery-expiry-notice a:hover,
.woocommerce-notices-wrapper .woocommerce-notice.lottery-expiry-notice a:hover {
  color: white !important;
}
/* Ensure lottery expiry notices stand out */
.woocommerce-notices-wrapper .lottery-expiry-notice {
  background-color: #6A1FFF !important;
  border-color: #5A1BDF !important;
  color: white !important;
}
/* Individual lottery item countdown styling */
.lottery-item-countdown {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
.lottery-item-countdown .lottery-reserve-chip {
  font-size: 0.75rem;
  padding: 0.125rem 0.375rem;
  background-color: rgba(106, 31, 255, 0.1);
  border-color: rgba(106, 31, 255, 0.2);
}
.lottery-item-countdown .lottery-reserve-label {
  font-size: 0.625rem;
  color: #6A1FFF;
}
.lottery-item-countdown .lottery-reserve-timer {
  font-size: 0.75rem;
  background-color: #6A1FFF;
  color: white;
  padding: 0.125rem 0.25rem;
  border-radius: 0.125rem;
  font-weight: 600;
}
/* Disabled quantity display for lottery items */
.lottery-quantity-display {
  display: inline-block;
  padding: 0.375rem 0.75rem;
  background-color: #f3f4f6;
  border: 1px solid #d1d5db;
  border-radius: 0.375rem;
  color: #6b7280;
  font-weight: 500;
  font-size: 0.875rem;
  min-width: 3rem;
  text-align: center;
  cursor: not-allowed;
}
.lottery-view-cart-btn:active {
  transform: translateY(0);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}
.lottery-total-in-cart {
  color: #6b7280;
  font-size: 0.875rem;
  font-style: italic;
  margin-left: 0.25rem;
}
.lottery-reserve-label {
  color: #6b7280;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.lottery-reserve-timer {
  font-family: 'Courier New', monospace;
  font-weight: 700;
  color: #1f2937;
  background-color: #f3f4f6;
  padding: 0.125rem 0.25rem;
  border-radius: 0.25rem;
  min-width: 2.5rem;
  text-align: center;
}
.lottery-expired .lottery-reserve-chip { 
  opacity: 0.6; 
}
.lottery-expired .lottery-reserve-timer {
  color: #dc2626;
  background-color: #fef2f2;
}
/* Loading state for lottery add to cart button */
.single_add_to_cart_button.loading {
  position: relative;
  color: transparent !important;
}
.single_add_to_cart_button.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid transparent;
  border-top: 2px solid currentColor;
  border-radius: 50%;
  animation: wdw-spin 1s linear infinite;
}
@keyframes wdw-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
/* Success state for lottery add to cart button */
.single_add_to_cart_button.added {
  background-color: #28a745 !important;
  border-color: #28a745 !important;
  color: white !important;
}
/* Error state for lottery add to cart button */
.single_add_to_cart_button.error {
  background-color: #dc3545 !important;
  border-color: #dc3545 !important;
  color: white !important;
}
/* Lottery form validation feedback */
.lottery-form-error {
  color: #dc3545;
  font-size: 0.875rem;
  margin-top: 0.5rem;
  display: none;
}
.lottery-form-error.show {
  display: block;
}
/* Ensure lottery form maintains proper structure during AJAX */
form.cart.pick-number {
  position: relative;
}
form.cart.pick-number.loading {
  pointer-events: none;
  opacity: 0.7;
}
/* Lottery-specific button states */
.single_add_to_cart_button.lottery-must-pick:not(.disabled):not(.loading) {
  background-color: #007cba;
  border-color: #007cba;
}
.single_add_to_cart_button.lottery-must-answer:not(.disabled):not(.loading) {
  background-color: #007cba;
  border-color: #007cba;
}
/* Disabled state for lottery buttons */
.single_add_to_cart_button.disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}
/* Ensure proper spacing for lottery form elements */
form.cart.pick-number .quantity {
  margin-bottom: 1rem;
}
form.cart.pick-number .single_add_to_cart_button {
  margin-top: 1rem;
}
/* Lottery ticket number and answer field styling */
form.cart.pick-number input[name="lottery_tickets_number"],
form.cart.pick-number input[name="lottery_answer"] {
  border: 1px solid #ddd;
  padding: 8px 12px;
  border-radius: 4px;
  width: 100%;
  margin-top: 0.5rem;
}
form.cart.pick-number input[name="lottery_tickets_number"]:focus,
form.cart.pick-number input[name="lottery_answer"]:focus {
  border-color: #007cba;
  outline: none;
  box-shadow: 0 0 0 2px rgba(0, 124, 186, 0.2);
}
/* Terms & Conditions Page Styles */
/* Main Header */
.wdw-terms-header {
  margin-bottom: 2rem;
}
.wdw-terms-main-title {
  margin-bottom: 2rem;
  font-size: 1.875rem;
  line-height: 2.25rem;
  font-weight: 700;
  color: var(--theme-text);
}
[data-theme="dark"] .single-product .wdw-terms-main-title {
  color: var(--theme-text);
}
[data-theme="dark"] .wdw-terms-main-title {
  color: var(--theme-text);
}
.single-product .wdw-terms-main-title table {
  margin-left: auto;
  margin-right: auto;
  display: table;
}
.single-product .wdw-terms-main-title table.aligncenter {
  margin-left: auto;
  margin-right: auto;
  display: table;
}
.single-product .lottery-info-container .wdw-terms-main-title {
  color: var(--theme-text);
}
.single-product .wdw-purple-gradient-box .wdw-terms-main-title {
  color: rgba(255, 255, 255, 0.9);
}
@media (min-width: 768px) {
  .wdw-terms-main-title {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
}
.wdw-terms-main-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
@media (max-width: 1023px) {
  #masthead .wdw-terms-main-title.items-end.justify-between {
    justify-content: space-between;
    align-items: center;
  }
  #mobile-menu .wdw-terms-main-title.items-center.justify-between {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  #mobile-menu .flex.wdw-terms-main-title.justify-between {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
}
@media (max-width: 640px) {
  
  .filters-section .wdw-terms-main-title {
    flex-direction: column;
  }
  
  @media (min-width: 640px) {
    .filters-section .wdw-terms-main-title {
      flex-direction: row;
    }
  }
}
@media (max-width: 430px) {
  .wdw-terms-main-title.justify-center.gap-3 {
    gap: 0.5rem;
    padding: 0 1rem;
    flex-wrap: nowrap;
  }
  .flex.justify-center.wdw-terms-main-title {
    gap: 0.5rem;
    padding: 0 1rem;
    flex-wrap: nowrap;
  }
}
.wdw-terms-icon {
  font-size: 2.25rem;
  line-height: 2.5rem;
}
/* Section Containers */
.wdw-terms-section {
  margin-bottom: 1.5rem;
  border-radius: 1rem;
  background-color: rgb(243 232 255 / 0.1);
  padding: 1.5rem;
  --tw-backdrop-blur: blur(4px);
  backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}
@media (min-width: 768px) {
  .wdw-terms-section {
    padding: 2rem;
  }
}
.wdw-terms-section {
  border-width: 1px;
  border-color: rgb(216 180 254 / 0.2);
}
.wdw-orders-section .wdw-terms-section {
  --tw-border-opacity: 1;
  border-color: rgb(243 244 246 / var(--tw-border-opacity, 1));
}
/* Section Titles */
.wdw-terms-section-title {
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 700;
  color: var(--theme-text);
}
[data-theme="dark"] .single-product .wdw-terms-section-title {
  color: var(--theme-text);
}
[data-theme="dark"] .wdw-terms-section-title {
  color: var(--theme-text);
}
.single-product .wdw-terms-section-title table {
  margin-left: auto;
  margin-right: auto;
  display: table;
}
.single-product .wdw-terms-section-title table.aligncenter {
  margin-left: auto;
  margin-right: auto;
  display: table;
}
.single-product .lottery-info-container .wdw-terms-section-title {
  color: var(--theme-text);
}
.single-product .wdw-purple-gradient-box .wdw-terms-section-title {
  color: rgba(255, 255, 255, 0.9);
}
@media (min-width: 768px) {
  .wdw-terms-section-title {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}
.wdw-terms-section-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
@media (max-width: 1023px) {
  #masthead .wdw-terms-section-title.items-end.justify-between {
    justify-content: space-between;
    align-items: center;
  }
  #mobile-menu .wdw-terms-section-title.items-center.justify-between {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  #mobile-menu .flex.wdw-terms-section-title.justify-between {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
}
@media (max-width: 640px) {
  
  .filters-section .wdw-terms-section-title {
    flex-direction: column;
  }
  
  @media (min-width: 640px) {
    .filters-section .wdw-terms-section-title {
      flex-direction: row;
    }
  }
}
@media (max-width: 430px) {
  .wdw-terms-section-title.justify-center.gap-3 {
    gap: 0.5rem;
    padding: 0 1rem;
    flex-wrap: nowrap;
  }
  .flex.justify-center.wdw-terms-section-title {
    gap: 0.5rem;
    padding: 0 1rem;
    flex-wrap: nowrap;
  }
}
.wdw-terms-section-icon {
  font-size: 1.5rem;
  line-height: 2rem;
}
@media (min-width: 768px) {
  .wdw-terms-section-icon {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
}
/* Content Area */
.wdw-terms-content > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1rem * var(--tw-space-y-reverse));
}
.wdw-terms-content {
  color: var(--theme-text);
}
[data-theme="dark"] .single-product .wdw-terms-content {
  color: var(--theme-text);
}
[data-theme="dark"] .wdw-terms-content {
  color: var(--theme-text);
}
#mobile-menu .wdw-terms-content > * {
  margin-bottom: 1rem;
}
#mobile-menu .wdw-terms-content > *:last-child {
  margin-bottom: 0;
}
@media (max-width: 1023px) {
  #mobile-menu .wdw-terms-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  #mobile-menu .wdw-terms-content > li {
    margin: 0;
  }
}
.single-product .wdw-terms-content table {
  margin-left: auto;
  margin-right: auto;
  display: table;
}
.single-product .wdw-terms-content table.aligncenter {
  margin-left: auto;
  margin-right: auto;
  display: table;
}
.single-product .lottery-info-container .wdw-terms-content {
  color: var(--theme-text);
}
.single-product .wdw-purple-gradient-box .wdw-terms-content {
  color: rgba(255, 255, 255, 0.9);
}
/* Paragraph Styling */
.wdw-terms-content p {
  margin-bottom: 1rem;
  line-height: 1.625;
}
/* List Styling */
.wdw-terms-content ul > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1rem * var(--tw-space-y-reverse));
}
.wdw-terms-content ul {
  padding-left: 1.5rem;
}
#mobile-menu .wdw-terms-content ul > * {
  margin-bottom: 1rem;
}
#mobile-menu .wdw-terms-content ul > *:last-child {
  margin-bottom: 0;
}
@media (max-width: 1023px) {
  #mobile-menu .wdw-terms-content ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  #mobile-menu .wdw-terms-content ul > li {
    margin: 0;
  }
}
.wdw-terms-content ol > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1rem * var(--tw-space-y-reverse));
}
.wdw-terms-content ol {
  padding-left: 1.5rem;
}
#mobile-menu .wdw-terms-content ol > * {
  margin-bottom: 1rem;
}
#mobile-menu .wdw-terms-content ol > *:last-child {
  margin-bottom: 0;
}
@media (max-width: 1023px) {
  #mobile-menu .wdw-terms-content ol {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  #mobile-menu .wdw-terms-content ol > li {
    margin: 0;
  }
}
.wdw-terms-content li {
  font-size: 1rem;
  line-height: 1.5rem;
  line-height: 1.625;
}
@media (min-width: 768px) {
  .wdw-terms-content li {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
}
/* Unordered list bullets */
.wdw-terms-content ul li {
  position: relative;
  padding-left: 0.5rem;
}
.wdw-terms-content ul li::marker {
  --tw-text-opacity: 1;
  color: rgb(106 31 255 / var(--tw-text-opacity, 1));
}
[data-theme="dark"] .text-gray-500:not(.wdw-terms-content ul li):not(.text-wdw-yellow):not(.text-wdw-red)::marker {
  color: var(--theme-text-secondary);
}
.single-product .wdw-terms-content ul li::marker {
  color: #6A1FFF;
}
/* Ordered list numbers */
.wdw-terms-content ol li::marker {
  font-weight: 700;
  --tw-text-opacity: 1;
  color: rgb(106 31 255 / var(--tw-text-opacity, 1));
}
[data-theme="dark"] .text-gray-500:not(.wdw-terms-content ol li):not(.text-wdw-yellow):not(.text-wdw-red)::marker {
  color: var(--theme-text-secondary);
}
.single-product .wdw-terms-content ol li::marker {
  color: #6A1FFF;
}
/* Headings within content */
.wdw-terms-content h3 {
  margin-bottom: 0.75rem;
  margin-top: 1.5rem;
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 600;
  color: var(--theme-text);
}
[data-theme="dark"] .single-product .wdw-terms-content h3 {
  color: var(--theme-text);
}
[data-theme="dark"] .wdw-terms-content h3 {
  color: var(--theme-text);
}
.single-product .wdw-terms-content h3 table {
  margin-left: auto;
  margin-right: auto;
  display: table;
}
.single-product .wdw-terms-content h3 table.aligncenter {
  margin-left: auto;
  margin-right: auto;
  display: table;
}
.single-product .lottery-info-container .wdw-terms-content h3 {
  color: var(--theme-text);
}
.single-product .wdw-purple-gradient-box .wdw-terms-content h3 {
  color: rgba(255, 255, 255, 0.9);
}
@media (min-width: 768px) {
  .wdw-terms-content h3 {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
}
.wdw-terms-content h4 {
  margin-bottom: 0.5rem;
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 600;
  color: var(--theme-text);
}
[data-theme="dark"] .single-product .wdw-terms-content h4 {
  color: var(--theme-text);
}
[data-theme="dark"] .wdw-terms-content h4 {
  color: var(--theme-text);
}
.single-product .wdw-terms-content h4 table {
  margin-left: auto;
  margin-right: auto;
  display: table;
}
.single-product .wdw-terms-content h4 table.aligncenter {
  margin-left: auto;
  margin-right: auto;
  display: table;
}
.single-product .lottery-info-container .wdw-terms-content h4 {
  color: var(--theme-text);
}
.single-product .wdw-purple-gradient-box .wdw-terms-content h4 {
  color: rgba(255, 255, 255, 0.9);
}
@media (min-width: 768px) {
  .wdw-terms-content h4 {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
}
/* Strong/Bold text */
.wdw-terms-content strong {
  font-weight: 700;
  color: var(--theme-text);
}
[data-theme="dark"] .single-product .wdw-terms-content strong {
  color: var(--theme-text);
}
[data-theme="dark"] .wdw-terms-content strong {
  color: var(--theme-text);
}
.single-product .wdw-terms-content strong table {
  margin-left: auto;
  margin-right: auto;
  display: table;
}
.single-product .wdw-terms-content strong table.aligncenter {
  margin-left: auto;
  margin-right: auto;
  display: table;
}
.single-product .lottery-info-container .wdw-terms-content strong {
  color: var(--theme-text);
}
.single-product .wdw-purple-gradient-box .wdw-terms-content strong {
  color: rgba(255, 255, 255, 0.9);
}
/* Links */
.wdw-terms-content a {
  --tw-text-opacity: 1;
  color: rgb(106 31 255 / var(--tw-text-opacity, 1));
  text-decoration-line: underline;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 200ms;
}
[data-theme="dark"] .text-gray-500:not(.wdw-terms-content a):not(.text-wdw-yellow):not(.text-wdw-red) {
  color: var(--theme-text-secondary);
}
.single-product .wdw-terms-content a {
  color: #6A1FFF;
}
.wdw-terms-content a:hover {
  --tw-text-opacity: 1;
  color: rgb(192 132 252 / var(--tw-text-opacity, 1));
}
/* Entry List Page Styles */
/* Header */
.wdw-entry-list-header {
  margin-bottom: 3rem;
  text-align: center;
}
@media only screen and (max-width: 479px) {
  
  .woocommerce ul.products li.product .rounded-lg.p-3.wdw-entry-list-header {
    background: none;
    border: none;
    padding: 0;
    box-shadow: none;
    backdrop-filter: none;
    margin: 0;
    border-radius: 0;
  }
}
.wdw-entry-list-main-title {
  margin-bottom: 1rem;
  font-size: 1.875rem;
  line-height: 2.25rem;
  font-weight: 700;
  color: var(--theme-text);
}
[data-theme="dark"] .single-product .wdw-entry-list-main-title {
  color: var(--theme-text);
}
[data-theme="dark"] .wdw-entry-list-main-title {
  color: var(--theme-text);
}
.single-product .wdw-entry-list-main-title table {
  margin-left: auto;
  margin-right: auto;
  display: table;
}
.single-product .wdw-entry-list-main-title table.aligncenter {
  margin-left: auto;
  margin-right: auto;
  display: table;
}
.single-product .lottery-info-container .wdw-entry-list-main-title {
  color: var(--theme-text);
}
.single-product .wdw-purple-gradient-box .wdw-entry-list-main-title {
  color: rgba(255, 255, 255, 0.9);
}
@media (min-width: 768px) {
  .wdw-entry-list-main-title {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
}
.wdw-entry-list-main-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
@media (max-width: 1023px) {
  #masthead .wdw-entry-list-main-title.items-end.justify-between {
    justify-content: space-between;
    align-items: center;
  }
  #mobile-menu .wdw-entry-list-main-title.items-center.justify-between {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  #mobile-menu .flex.wdw-entry-list-main-title.justify-between {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
}
@media (max-width: 640px) {
  
  .filters-section .wdw-entry-list-main-title {
    flex-direction: column;
  }
  
  @media (min-width: 640px) {
    .filters-section .wdw-entry-list-main-title {
      flex-direction: row;
    }
  }
}
@media (max-width: 430px) {
  .wdw-entry-list-main-title.justify-center.gap-3 {
    gap: 0.5rem;
    padding: 0 1rem;
    flex-wrap: nowrap;
  }
  .flex.wdw-entry-list-main-title.gap-3 {
    gap: 0.5rem;
    padding: 0 1rem;
    flex-wrap: nowrap;
  }
  .flex.justify-center.wdw-entry-list-main-title {
    gap: 0.5rem;
    padding: 0 1rem;
    flex-wrap: nowrap;
  }
}
.wdw-entry-list-icon {
  font-size: 2.25rem;
  line-height: 2.5rem;
}
.wdw-entry-list-subtitle {
  font-size: 1.125rem;
  line-height: 1.75rem;
  color: var(--theme-text-secondary);
}
[data-theme="dark"] .single-product .wdw-entry-list-subtitle {
  color: var(--theme-text-secondary);
}
[data-theme="dark"] .wdw-entry-list-subtitle {
  color: var(--theme-text-secondary);
}
.single-product .lottery-info-container .wdw-entry-list-subtitle {
  color: var(--theme-text-secondary);
}

.single-product .wdw-purple-gradient-box .wdw-entry-list-subtitle {
  color: rgba(255, 255, 255, 0.9);
}
.single-product .wdw-purple-gradient-box .wdw-entry-list-subtitle {
  color: rgba(255, 255, 255, 0.7);
}
/* Grid Layout */
.wdw-entry-list-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1.5rem;
}
@media (max-width: 768px) {
  
  .wdw-account-dashboard .wdw-entry-list-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .products.wdw-entry-list-grid {
    gap: 1rem;
    padding: 0;
  }
  .products.wdw-entry-list-grid.grid-cols-1 {
    justify-items: center;
  }
  .products.grid.wdw-entry-list-grid {
    justify-items: center;
  }
  .products.wdw-entry-list-grid.grid-cols-1 > li {
    width: 100%;
    max-width: calc(100vw - 2rem);
  }
  .products.grid.wdw-entry-list-grid > li {
    width: 100%;
    max-width: calc(100vw - 2rem);
  }
}
@media (max-width: 580px) {
  .products.wdw-entry-list-grid {
    gap: 0.5rem;
  }
}
@media (min-width: 768px) {
  .wdw-entry-list-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .wdw-entry-list-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
/* Competition Cards */
.wdw-entry-list-card {
  overflow: hidden;
  border-radius: 1rem;
  background-color: rgb(243 232 255 / 0.1);
  --tw-backdrop-blur: blur(4px);
  backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
  border-width: 1px;
  border-color: rgb(216 180 254 / 0.2);
}
.wdw-orders-section .wdw-entry-list-card {
  --tw-border-opacity: 1;
  border-color: rgb(243 244 246 / var(--tw-border-opacity, 1));
}
.wdw-entry-list-card {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}
.wdw-entry-list-card:hover {
  --tw-scale-x: 1.05;
  --tw-scale-y: 1.05;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  border-color: rgb(192 132 252 / 0.4);
  --tw-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.wdw-entry-list-card-image {
  position: relative;
  height: 12rem;
  width: 100%;
  overflow: hidden;
}
.wdw-entry-list-card-image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.wdw-entry-list-no-image {
  display: flex;
  height: 100%;
  width: 100%;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1023px) {
  #masthead .wdw-entry-list-no-image.items-end.justify-between {
    justify-content: space-between;
    align-items: center;
  }
  #mobile-menu .wdw-entry-list-no-image.items-center.justify-between {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  #mobile-menu .flex.wdw-entry-list-no-image.justify-between {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
}
@media (max-width: 640px) {
  
  .filters-section .wdw-entry-list-no-image {
    flex-direction: column;
  }
  
  @media (min-width: 640px) {
    .filters-section .wdw-entry-list-no-image {
      flex-direction: row;
    }
  }
}
@media (max-width: 430px) {
  .wdw-entry-list-no-image.justify-center.gap-3 {
    gap: 0.5rem;
    padding: 0 1rem;
    flex-wrap: nowrap;
  }
  .flex.wdw-entry-list-no-image.gap-3 {
    gap: 0.5rem;
    padding: 0 1rem;
    flex-wrap: nowrap;
  }
}
.wdw-entry-list-no-image {
  background-color: rgb(233 213 255 / 0.2);
  color: var(--theme-text-secondary);
}
[data-theme="dark"] .single-product .wdw-entry-list-no-image {
  color: var(--theme-text-secondary);
}
[data-theme="dark"] .wdw-entry-list-no-image {
  color: var(--theme-text-secondary);
}
.single-product .lottery-info-container .wdw-entry-list-no-image {
  color: var(--theme-text-secondary);
}

.single-product .wdw-purple-gradient-box .wdw-entry-list-no-image {
  color: rgba(255, 255, 255, 0.9);
}
.single-product .wdw-purple-gradient-box .wdw-entry-list-no-image {
  color: rgba(255, 255, 255, 0.7);
}
/* Status Badge */
.wdw-entry-list-status-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  border-radius: 9999px;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}
.wdw-entry-list-status-active {
  --tw-bg-opacity: 1;
  background-color: rgb(34 197 94 / var(--tw-bg-opacity, 1));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
#masthead .wdw-entry-list-status-active:hover {
  color: #FCD34D;
}
.single-product .wdw-entry-list-status-active {
  color: var(--theme-text);
}
.wdw-entry-list-status-closed {
  --tw-bg-opacity: 1;
  background-color: rgb(239 68 68 / var(--tw-bg-opacity, 1));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
#masthead .wdw-entry-list-status-closed:hover {
  color: #FCD34D;
}
.single-product .wdw-entry-list-status-closed {
  color: var(--theme-text);
}
.wdw-entry-list-status-upcoming {
  --tw-bg-opacity: 1;
  background-color: rgb(59 130 246 / var(--tw-bg-opacity, 1));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
#masthead .wdw-entry-list-status-upcoming:hover {
  color: #FCD34D;
}
.single-product .wdw-entry-list-status-upcoming {
  color: var(--theme-text);
}
/* Card Content */
.wdw-entry-list-card-content {
  padding: 1.5rem;
}
.wdw-entry-list-card-title {
  margin-bottom: 1rem;
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 700;
  color: var(--theme-text);
}
[data-theme="dark"] .single-product .wdw-entry-list-card-title {
  color: var(--theme-text);
}
[data-theme="dark"] .wdw-entry-list-card-title {
  color: var(--theme-text);
}
.single-product .wdw-entry-list-card-title table {
  margin-left: auto;
  margin-right: auto;
  display: table;
}
.single-product .wdw-entry-list-card-title table.aligncenter {
  margin-left: auto;
  margin-right: auto;
  display: table;
}
.single-product .lottery-info-container .wdw-entry-list-card-title {
  color: var(--theme-text);
}
.single-product .wdw-purple-gradient-box .wdw-entry-list-card-title {
  color: rgba(255, 255, 255, 0.9);
}
.wdw-entry-list-card-title {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
/* Meta Information */
.wdw-entry-list-card-meta {
  margin-bottom: 1.5rem;
}
.wdw-entry-list-card-meta > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
}
.wdw-entry-list-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--theme-text-secondary);
}
[data-theme="dark"] .single-product .wdw-entry-list-meta-item {
  color: var(--theme-text-secondary);
}
[data-theme="dark"] .wdw-entry-list-meta-item {
  color: var(--theme-text-secondary);
}
@media (max-width: 1023px) {
  #masthead .wdw-entry-list-meta-item.items-end.justify-between {
    justify-content: space-between;
    align-items: center;
  }
  #mobile-menu .wdw-entry-list-meta-item.items-center.justify-between {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  #mobile-menu .flex.wdw-entry-list-meta-item.justify-between {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
}
.single-product .lottery-info-container .wdw-entry-list-meta-item {
  color: var(--theme-text-secondary);
}

.single-product .wdw-purple-gradient-box .wdw-entry-list-meta-item {
  color: rgba(255, 255, 255, 0.9);
}
.single-product .wdw-purple-gradient-box .wdw-entry-list-meta-item {
  color: rgba(255, 255, 255, 0.7);
}
@media (max-width: 640px) {
  
  .filters-section .wdw-entry-list-meta-item {
    flex-direction: column;
  }
  
  @media (min-width: 640px) {
    .filters-section .wdw-entry-list-meta-item {
      flex-direction: row;
    }
  }
}
@media (max-width: 430px) {
  .wdw-entry-list-meta-item.justify-center.gap-3 {
    gap: 0.5rem;
    padding: 0 1rem;
    flex-wrap: nowrap;
  }
}
.wdw-entry-list-meta-icon {
  font-size: 1.125rem;
  line-height: 1.75rem;
}
.wdw-entry-list-meta-text {
  font-size: 0.875rem;
  line-height: 1.25rem;
}
/* View Button */
.wdw-entry-list-view-button {
  display: block;
  width: 100%;
  text-align: center;
}
@media only screen and (max-width: 479px) {
  
  .woocommerce ul.products li.product .rounded-lg.p-3.wdw-entry-list-view-button {
    background: none;
    border: none;
    padding: 0;
    box-shadow: none;
    backdrop-filter: none;
    margin: 0;
    border-radius: 0;
  }
}
.wdw-entry-list-view-button {
  --tw-bg-opacity: 1;
  background-color: rgb(106 31 255 / var(--tw-bg-opacity, 1));
}
.woocommerce ul.products li.product .wdw-entry-list-view-button {
  position: relative;
  backdrop-filter: blur(12px);
  background: rgba(106, 31, 255, 0.8);
  border: 1px solid rgba(106, 31, 255, 0.3);
  box-shadow:
    0 8px 32px rgba(106, 31, 255, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  text-decoration: none;
}
.woocommerce ul.products li.product .wdw-entry-list-view-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0.1) 50%,
    rgba(0, 0, 0, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.woocommerce ul.products li.product .wdw-entry-list-view-button:hover::before {
  opacity: 1;
}
.woocommerce ul.products li.product .wdw-entry-list-view-button:hover {
  transform: translateY(-2px);
  background: rgba(106, 31, 255, 0.9);
  box-shadow:
    0 12px 40px rgba(106, 31, 255, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}

.catalog-tab.wdw-entry-list-view-button,
a.wdw-entry-list-view-button,
button.wdw-entry-list-view-button,.wdw-entry-list-view-button {
  position: relative;
  backdrop-filter: blur(12px);
  background: rgba(106, 31, 255, 0.8);
  border: 1px solid rgba(106, 31, 255, 0.3);
  box-shadow:
    0 8px 32px rgba(106, 31, 255, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  text-decoration: none;
  color: white;
}

.catalog-tab.wdw-entry-list-view-button::before,
a.wdw-entry-list-view-button::before,
button.wdw-entry-list-view-button::before,.wdw-entry-list-view-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0.1) 50%,
    rgba(0, 0, 0, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.catalog-tab.wdw-entry-list-view-button:hover::before,
a.wdw-entry-list-view-button:hover::before,
button.wdw-entry-list-view-button:hover::before,.wdw-entry-list-view-button:hover::before {
  opacity: 1;
}

.catalog-tab.wdw-entry-list-view-button:hover,
a.wdw-entry-list-view-button:hover,
button.wdw-entry-list-view-button:hover,.wdw-entry-list-view-button:hover {
  transform: translateY(-2px);
  background: rgba(106, 31, 255, 0.9);
  box-shadow:
    0 12px 40px rgba(106, 31, 255, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}

.catalog-tab.wdw-entry-list-view-button,
a.wdw-entry-list-view-button,
button.wdw-entry-list-view-button,.wdw-entry-list-view-button,
.catalog-tab.wdw-entry-list-view-button *,
a.wdw-entry-list-view-button *,
button.wdw-entry-list-view-button *,.wdw-entry-list-view-button * {
  color: white;
}
.wdw-entry-list-view-button,.wdw-entry-list-view-button *,.wdw-entry-list-view-button h1,.wdw-entry-list-view-button h2,.wdw-entry-list-view-button h3,.wdw-entry-list-view-button span,.wdw-entry-list-view-button div {
  color: white;
}
[data-theme="dark"] .single-product .wdw-entry-list-view-button {
  background-color: var(--wdw-purple);
}
[data-theme="dark"] .bg-white:not(.wdw-entry-list-view-button):not(.bg-wdw-yellow):not(.bg-wdw-red) {
  background-color: var(--theme-card-bg);
}
.single-product .wdw-entry-list-view-button,
.single-product .wdw-entry-list-view-button *,
.single-product .wdw-entry-list-view-button h1,
.single-product .wdw-entry-list-view-button h2,
.single-product .wdw-entry-list-view-button h3,
.single-product .wdw-entry-list-view-button span,
.single-product .wdw-entry-list-view-button div {
  color: white;
}
.catalog-tab.wdw-entry-list-view-button {
  background: rgba(106, 31, 255, 0.8);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(106, 31, 255, 0.3);
  box-shadow:
    0 8px 32px rgba(106, 31, 255, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}
.catalog-tab.wdw-entry-list-view-button::before {
  background: linear-gradient(135deg,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0.1) 50%,
    rgba(0, 0, 0, 0.05) 100%);
}
.catalog-tab.wdw-entry-list-view-button:hover {
  background: rgba(106, 31, 255, 0.9);
  box-shadow:
    0 12px 40px rgba(106, 31, 255, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}
.wdw-entry-list-view-button:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(147 51 234 / var(--tw-bg-opacity, 1));
}
.wdw-entry-list-view-button {
  font-weight: 700;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
#masthead .wdw-entry-list-view-button:hover {
  color: #FCD34D;
}
.single-product .wdw-entry-list-view-button {
  color: var(--theme-text);
}
.wdw-entry-list-view-button {
  border-radius: 0.5rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media only screen and (max-width: 479px) {
  
  .woocommerce ul.products li.product .wdw-entry-list-view-button.p-3.text-center {
    background: none;
    border: none;
    padding: 0;
    box-shadow: none;
    backdrop-filter: none;
    margin: 0;
    border-radius: 0;
  }
}
.wdw-entry-list-view-button {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 200ms;
  font-size: 0.875rem;
  line-height: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}
.wdw-entry-list-view-button:hover {
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
/* No Products */
.wdw-entry-list-no-products {
  grid-column: 1 / -1;
  padding-top: 3rem;
  padding-bottom: 3rem;
  text-align: center;
}
@media only screen and (max-width: 479px) {
  
  .woocommerce ul.products li.product .rounded-lg.p-3.wdw-entry-list-no-products {
    background: none;
    border: none;
    padding: 0;
    box-shadow: none;
    backdrop-filter: none;
    margin: 0;
    border-radius: 0;
  }
}
.wdw-entry-list-no-products p {
  font-size: 1.125rem;
  line-height: 1.75rem;
  color: var(--theme-text-secondary);
}
[data-theme="dark"] .single-product .wdw-entry-list-no-products p {
  color: var(--theme-text-secondary);
}
[data-theme="dark"] .wdw-entry-list-no-products p {
  color: var(--theme-text-secondary);
}
.single-product .lottery-info-container .wdw-entry-list-no-products p {
  color: var(--theme-text-secondary);
}

.single-product .wdw-purple-gradient-box .wdw-entry-list-no-products p {
  color: rgba(255, 255, 255, 0.9);
}
.single-product .wdw-purple-gradient-box .wdw-entry-list-no-products p {
  color: rgba(255, 255, 255, 0.7);
}
/* Entry List Table Styling (on product pages) */
.entry-list-title {
  text-align: center;
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 700;
}
@media only screen and (max-width: 479px) {
  
  .woocommerce ul.products li.product .rounded-lg.p-3.entry-list-title {
    background: none;
    border: none;
    padding: 0;
    box-shadow: none;
    backdrop-filter: none;
    margin: 0;
    border-radius: 0;
  }
}
@media (min-width: 768px) {
  .entry-list-title {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
}
.entry-list-title {
  --tw-bg-opacity: 1;
  background-color: rgb(106 31 255 / var(--tw-bg-opacity, 1));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.woocommerce ul.products li.product .entry-list-title {
  position: relative;
  backdrop-filter: blur(12px);
  background: rgba(106, 31, 255, 0.8);
  border: 1px solid rgba(106, 31, 255, 0.3);
  box-shadow:
    0 8px 32px rgba(106, 31, 255, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  text-decoration: none;
}
.woocommerce ul.products li.product .entry-list-title::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0.1) 50%,
    rgba(0, 0, 0, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.woocommerce ul.products li.product .entry-list-title:hover::before {
  opacity: 1;
}
.woocommerce ul.products li.product .entry-list-title:hover {
  transform: translateY(-2px);
  background: rgba(106, 31, 255, 0.9);
  box-shadow:
    0 12px 40px rgba(106, 31, 255, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}

.catalog-tab.entry-list-title,
a.entry-list-title,
button.entry-list-title,.entry-list-title {
  position: relative;
  backdrop-filter: blur(12px);
  background: rgba(106, 31, 255, 0.8);
  border: 1px solid rgba(106, 31, 255, 0.3);
  box-shadow:
    0 8px 32px rgba(106, 31, 255, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  text-decoration: none;
  color: white;
}

.catalog-tab.entry-list-title::before,
a.entry-list-title::before,
button.entry-list-title::before,.entry-list-title::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0.1) 50%,
    rgba(0, 0, 0, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.catalog-tab.entry-list-title:hover::before,
a.entry-list-title:hover::before,
button.entry-list-title:hover::before,.entry-list-title:hover::before {
  opacity: 1;
}

.catalog-tab.entry-list-title:hover,
a.entry-list-title:hover,
button.entry-list-title:hover,.entry-list-title:hover {
  transform: translateY(-2px);
  background: rgba(106, 31, 255, 0.9);
  box-shadow:
    0 12px 40px rgba(106, 31, 255, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}

.catalog-tab.entry-list-title,
a.entry-list-title,
button.entry-list-title,.entry-list-title,
.catalog-tab.entry-list-title *,
a.entry-list-title *,
button.entry-list-title *,.entry-list-title * {
  color: white;
}
.entry-list-title,.entry-list-title *,.entry-list-title h1,.entry-list-title h2,.entry-list-title h3,.entry-list-title span,.entry-list-title div {
  color: white;
}
[data-theme="dark"] .single-product .entry-list-title {
  background-color: var(--wdw-purple);
}
[data-theme="dark"] .bg-white:not(.entry-list-title):not(.bg-wdw-yellow):not(.bg-wdw-red) {
  background-color: var(--theme-card-bg);
}
#masthead .entry-list-title:hover {
  color: #FCD34D;
}
.single-product .entry-list-title {
  color: var(--theme-text);
}
.single-product .entry-list-title,
.single-product .entry-list-title *,
.single-product .entry-list-title h1,
.single-product .entry-list-title h2,
.single-product .entry-list-title h3,
.single-product .entry-list-title span,
.single-product .entry-list-title div {
  color: white;
}
.catalog-tab.entry-list-title {
  background: rgba(106, 31, 255, 0.8);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(106, 31, 255, 0.3);
  box-shadow:
    0 8px 32px rgba(106, 31, 255, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}
.catalog-tab.entry-list-title::before {
  background: linear-gradient(135deg,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0.1) 50%,
    rgba(0, 0, 0, 0.05) 100%);
}
.catalog-tab.entry-list-title:hover {
  background: rgba(106, 31, 255, 0.9);
  box-shadow:
    0 12px 40px rgba(106, 31, 255, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}
.entry-list-title {
  margin-bottom: 1.5rem;
  border-radius: 1rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  padding-left: 1rem;
  padding-right: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}
.entry-list-product-title {
  text-align: center;
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 700;
}
@media only screen and (max-width: 479px) {
  
  .woocommerce ul.products li.product .rounded-lg.p-3.entry-list-product-title {
    background: none;
    border: none;
    padding: 0;
    box-shadow: none;
    backdrop-filter: none;
    margin: 0;
    border-radius: 0;
  }
}
@media (min-width: 768px) {
  .entry-list-product-title {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}
.entry-list-product-title {
  margin-bottom: 2rem;
  color: var(--theme-text);
}
[data-theme="dark"] .single-product .entry-list-product-title {
  color: var(--theme-text);
}
[data-theme="dark"] .entry-list-product-title {
  color: var(--theme-text);
}
.single-product .entry-list-product-title table {
  margin-left: auto;
  margin-right: auto;
  display: table;
}
.single-product .entry-list-product-title table.aligncenter {
  margin-left: auto;
  margin-right: auto;
  display: table;
}
.single-product .lottery-info-container .entry-list-product-title {
  color: var(--theme-text);
}
.single-product .wdw-purple-gradient-box .entry-list-product-title {
  color: rgba(255, 255, 255, 0.9);
}
.entry-list-instant-winners-header {
  text-align: center;
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 600;
}
@media only screen and (max-width: 479px) {
  
  .woocommerce ul.products li.product .rounded-lg.p-3.entry-list-instant-winners-header {
    background: none;
    border: none;
    padding: 0;
    box-shadow: none;
    backdrop-filter: none;
    margin: 0;
    border-radius: 0;
  }
}
@media (min-width: 768px) {
  .entry-list-instant-winners-header {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
}
.entry-list-instant-winners-header {
  margin-bottom: 1.5rem;
  color: var(--theme-text);
}
[data-theme="dark"] .single-product .entry-list-instant-winners-header {
  color: var(--theme-text);
}
[data-theme="dark"] .entry-list-instant-winners-header {
  color: var(--theme-text);
}
.single-product .entry-list-instant-winners-header table {
  margin-left: auto;
  margin-right: auto;
  display: table;
}
.single-product .entry-list-instant-winners-header table.aligncenter {
  margin-left: auto;
  margin-right: auto;
  display: table;
}
.single-product .lottery-info-container .entry-list-instant-winners-header {
  color: var(--theme-text);
}
.single-product .wdw-purple-gradient-box .entry-list-instant-winners-header {
  color: rgba(255, 255, 255, 0.9);
}
.competition-status {
  text-align: center;
  font-weight: 700;
  text-transform: uppercase;
  --tw-text-opacity: 1;
  color: rgb(239 68 68 / var(--tw-text-opacity, 1));
}
@media only screen and (max-width: 479px) {
  
  .woocommerce ul.products li.product .rounded-lg.p-3.competition-status {
    background: none;
    border: none;
    padding: 0;
    box-shadow: none;
    backdrop-filter: none;
    margin: 0;
    border-radius: 0;
  }
}
.competition-status {
  margin-bottom: 1rem;
}
/* DataTable Wrapper Styling */
#entry-list-table_wrapper {
  border-radius: 1rem;
  background-color: rgb(243 232 255 / 0.1);
  padding: 1.5rem;
  --tw-backdrop-blur: blur(4px);
  backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
  margin-bottom: 1.5rem;
  border-width: 1px;
  border-color: rgb(216 180 254 / 0.2);
}
.wdw-orders-section #entry-list-table_wrapper {
  --tw-border-opacity: 1;
  border-color: rgb(243 244 246 / var(--tw-border-opacity, 1));
}
#entry-list-table_length,
#entry-list-table_filter {
  margin-bottom: 1rem;
  border-radius: 0.5rem;
  background-color: rgb(233 213 255 / 0.2);
  padding: 1rem;
}
@media only screen and (max-width: 479px) {
  
  .woocommerce ul.products li.product #entry-list-table_length.p-3.text-center,
  .woocommerce ul.products li.product 
#entry-list-table_filter.p-3.text-center {
    background: none;
    border: none;
    padding: 0;
    box-shadow: none;
    backdrop-filter: none;
    margin: 0;
    border-radius: 0;
  }
}
#entry-list-table_length,
#entry-list-table_filter {
  font-weight: 600;
  color: var(--theme-text);
}
[data-theme="dark"] .single-product #entry-list-table_length,[data-theme="dark"] .single-product 
#entry-list-table_filter {
  color: var(--theme-text);
}
[data-theme="dark"] #entry-list-table_length,[data-theme="dark"] 
#entry-list-table_filter {
  color: var(--theme-text);
}
.single-product #entry-list-table_length table,.single-product 
#entry-list-table_filter table {
  margin-left: auto;
  margin-right: auto;
  display: table;
}
.single-product #entry-list-table_length table.aligncenter,.single-product 
#entry-list-table_filter table.aligncenter {
  margin-left: auto;
  margin-right: auto;
  display: table;
}
.single-product .lottery-info-container #entry-list-table_length,.single-product .lottery-info-container 
#entry-list-table_filter {
  color: var(--theme-text);
}
.single-product .wdw-purple-gradient-box #entry-list-table_length,.single-product .wdw-purple-gradient-box 
#entry-list-table_filter {
  color: rgba(255, 255, 255, 0.9);
}
#entry-list-table_info {
  margin-top: 1rem;
  border-radius: 0.5rem;
  background-color: rgb(233 213 255 / 0.2);
  padding: 1rem;
}
@media only screen and (max-width: 479px) {
  
  .woocommerce ul.products li.product #entry-list-table_info.p-3.text-center {
    background: none;
    border: none;
    padding: 0;
    box-shadow: none;
    backdrop-filter: none;
    margin: 0;
    border-radius: 0;
  }
}
#entry-list-table_info {
  font-weight: 600;
  color: var(--theme-text);
}
[data-theme="dark"] .single-product #entry-list-table_info {
  color: var(--theme-text);
}
[data-theme="dark"] #entry-list-table_info {
  color: var(--theme-text);
}
.single-product #entry-list-table_info table {
  margin-left: auto;
  margin-right: auto;
  display: table;
}
.single-product #entry-list-table_info table.aligncenter {
  margin-left: auto;
  margin-right: auto;
  display: table;
}
.single-product .lottery-info-container #entry-list-table_info {
  color: var(--theme-text);
}
.single-product .wdw-purple-gradient-box #entry-list-table_info {
  color: rgba(255, 255, 255, 0.9);
}
/* DataTable Styling */
#entry-list-table {
  width: 100%;
  color: var(--theme-text);
}
[data-theme="dark"] .single-product #entry-list-table {
  color: var(--theme-text);
}
[data-theme="dark"] #entry-list-table {
  color: var(--theme-text);
}
.single-product #entry-list-table table {
  margin-left: auto;
  margin-right: auto;
  display: table;
}
.single-product #entry-list-table table.aligncenter {
  margin-left: auto;
  margin-right: auto;
  display: table;
}
.single-product .lottery-info-container #entry-list-table {
  color: var(--theme-text);
}
.single-product .wdw-purple-gradient-box #entry-list-table {
  color: rgba(255, 255, 255, 0.9);
}
#entry-list-table thead {
  --tw-bg-opacity: 1;
  background-color: rgb(106 31 255 / var(--tw-bg-opacity, 1));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.woocommerce ul.products li.product #entry-list-table thead {
  position: relative;
  backdrop-filter: blur(12px);
  background: rgba(106, 31, 255, 0.8);
  border: 1px solid rgba(106, 31, 255, 0.3);
  box-shadow:
    0 8px 32px rgba(106, 31, 255, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  text-decoration: none;
}
.woocommerce ul.products li.product #entry-list-table thead::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0.1) 50%,
    rgba(0, 0, 0, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.woocommerce ul.products li.product #entry-list-table thead:hover::before {
  opacity: 1;
}
.woocommerce ul.products li.product #entry-list-table thead:hover {
  transform: translateY(-2px);
  background: rgba(106, 31, 255, 0.9);
  box-shadow:
    0 12px 40px rgba(106, 31, 255, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}

.catalog-tab#entry-list-table thead,
a#entry-list-table thead,
button#entry-list-table thead,#entry-list-table thead {
  position: relative;
  backdrop-filter: blur(12px);
  background: rgba(106, 31, 255, 0.8);
  border: 1px solid rgba(106, 31, 255, 0.3);
  box-shadow:
    0 8px 32px rgba(106, 31, 255, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  text-decoration: none;
  color: white;
}

.catalog-tab#entry-list-table thead::before,
a#entry-list-table thead::before,
button#entry-list-table thead::before,#entry-list-table thead::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0.1) 50%,
    rgba(0, 0, 0, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.catalog-tab#entry-list-table thead:hover::before,
a#entry-list-table thead:hover::before,
button#entry-list-table thead:hover::before,#entry-list-table thead:hover::before {
  opacity: 1;
}

.catalog-tab#entry-list-table thead:hover,
a#entry-list-table thead:hover,
button#entry-list-table thead:hover,#entry-list-table thead:hover {
  transform: translateY(-2px);
  background: rgba(106, 31, 255, 0.9);
  box-shadow:
    0 12px 40px rgba(106, 31, 255, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}

.catalog-tab#entry-list-table thead,
a#entry-list-table thead,
button#entry-list-table thead,#entry-list-table thead,
.catalog-tab#entry-list-table thead *,
a#entry-list-table thead *,
button#entry-list-table thead *,#entry-list-table thead * {
  color: white;
}
#entry-list-table thead,#entry-list-table thead *,#entry-list-table thead h1,#entry-list-table thead h2,#entry-list-table thead h3,#entry-list-table thead span,#entry-list-table thead div {
  color: white;
}
[data-theme="dark"] .single-product #entry-list-table thead {
  background-color: var(--wdw-purple);
}
[data-theme="dark"] .bg-white:not(#entry-list-table thead):not(.bg-wdw-yellow):not(.bg-wdw-red) {
  background-color: var(--theme-card-bg);
}
#masthead #entry-list-table thead:hover {
  color: #FCD34D;
}
.single-product #entry-list-table thead {
  color: var(--theme-text);
}
.single-product #entry-list-table thead,
.single-product #entry-list-table thead *,
.single-product #entry-list-table thead h1,
.single-product #entry-list-table thead h2,
.single-product #entry-list-table thead h3,
.single-product #entry-list-table thead span,
.single-product #entry-list-table thead div {
  color: white;
}
.catalog-tab#entry-list-table thead {
  background: rgba(106, 31, 255, 0.8);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(106, 31, 255, 0.3);
  box-shadow:
    0 8px 32px rgba(106, 31, 255, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}
.catalog-tab#entry-list-table thead::before {
  background: linear-gradient(135deg,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0.1) 50%,
    rgba(0, 0, 0, 0.05) 100%);
}
.catalog-tab#entry-list-table thead:hover {
  background: rgba(106, 31, 255, 0.9);
  box-shadow:
    0 12px 40px rgba(106, 31, 255, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}
#entry-list-table thead th {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  padding-left: 1rem;
  padding-right: 1rem;
  text-align: left;
  font-weight: 700;
}
#entry-list-table tbody tr {
  border-bottom-width: 1px;
  border-color: rgb(216 180 254 / 0.2);
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
#entry-list-table tbody tr:hover {
  background-color: rgb(233 213 255 / 0.1);
}
#entry-list-table tbody td {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
/* Instant Winners Section */
.instant-winners {
  margin-bottom: 2rem;
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1rem;
}
@media (max-width: 768px) {
  
  .wdw-account-dashboard .instant-winners {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .products.instant-winners {
    gap: 1rem;
    padding: 0;
  }
  .products.instant-winners.grid-cols-1 {
    justify-items: center;
  }
  .products.grid.instant-winners {
    justify-items: center;
  }
  .products.instant-winners.grid-cols-1 > li {
    width: 100%;
    max-width: calc(100vw - 2rem);
  }
  .products.grid.instant-winners > li {
    width: 100%;
    max-width: calc(100vw - 2rem);
  }
}
@media (max-width: 580px) {
  .products.instant-winners {
    gap: 0.5rem;
  }
}
@media (min-width: 768px) {
  .instant-winners {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .instant-winners {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.instant-prize {
  border-radius: 0.5rem;
  background-color: rgb(243 232 255 / 0.1);
  padding: 1rem;
  --tw-backdrop-blur: blur(4px);
  backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}
@media only screen and (max-width: 479px) {
  
  .woocommerce ul.products li.product .instant-prize.p-3.text-center {
    background: none;
    border: none;
    padding: 0;
    box-shadow: none;
    backdrop-filter: none;
    margin: 0;
    border-radius: 0;
  }
}
.instant-prize {
  border-width: 1px;
  border-color: rgb(216 180 254 / 0.2);
}
.wdw-orders-section .instant-prize {
  --tw-border-opacity: 1;
  border-color: rgb(243 244 246 / var(--tw-border-opacity, 1));
}
.instant-prize .ticket {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
@media (max-width: 1023px) {
  #masthead .instant-prize .ticket.items-end.justify-between {
    justify-content: space-between;
    align-items: center;
  }
  #mobile-menu .instant-prize .ticket.items-center.justify-between {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  #mobile-menu .flex.instant-prize .ticket.justify-between {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
}
@media (max-width: 640px) {
  
  .filters-section .instant-prize .ticket {
    flex-direction: column;
  }
  
  @media (min-width: 640px) {
    .filters-section .instant-prize .ticket {
      flex-direction: row;
    }
  }
}
@media (max-width: 430px) {
  .instant-prize .ticket.justify-center.gap-3 {
    gap: 0.5rem;
    padding: 0 1rem;
    flex-wrap: nowrap;
  }
}
.instant-prize .ticket {
  font-weight: 600;
  color: var(--theme-text);
}
[data-theme="dark"] .single-product .instant-prize .ticket {
  color: var(--theme-text);
}
[data-theme="dark"] .instant-prize .ticket {
  color: var(--theme-text);
}
.single-product .instant-prize .ticket table {
  margin-left: auto;
  margin-right: auto;
  display: table;
}
.single-product .instant-prize .ticket table.aligncenter {
  margin-left: auto;
  margin-right: auto;
  display: table;
}
.single-product .lottery-info-container .instant-prize .ticket {
  color: var(--theme-text);
}
.single-product .wdw-purple-gradient-box .instant-prize .ticket {
  color: rgba(255, 255, 255, 0.9);
}
.instant-prize .winner {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
@media (max-width: 1023px) {
  #masthead .instant-prize .winner.items-end.justify-between {
    justify-content: space-between;
    align-items: center;
  }
  #mobile-menu .instant-prize .winner.items-center.justify-between {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  #mobile-menu .flex.instant-prize .winner.justify-between {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
}
@media (max-width: 640px) {
  
  .filters-section .instant-prize .winner {
    flex-direction: column;
  }
  
  @media (min-width: 640px) {
    .filters-section .instant-prize .winner {
      flex-direction: row;
    }
  }
}
@media (max-width: 430px) {
  .instant-prize .winner.justify-center.gap-3 {
    gap: 0.5rem;
    padding: 0 1rem;
    flex-wrap: nowrap;
  }
}
.instant-prize .winner {
  color: var(--theme-text);
}
[data-theme="dark"] .single-product .instant-prize .winner {
  color: var(--theme-text);
}
[data-theme="dark"] .instant-prize .winner {
  color: var(--theme-text);
}
.single-product .instant-prize .winner table {
  margin-left: auto;
  margin-right: auto;
  display: table;
}
.single-product .instant-prize .winner table.aligncenter {
  margin-left: auto;
  margin-right: auto;
  display: table;
}
.single-product .lottery-info-container .instant-prize .winner {
  color: var(--theme-text);
}
.single-product .wdw-purple-gradient-box .instant-prize .winner {
  color: rgba(255, 255, 255, 0.9);
}
.instant-prize .prize {
  font-weight: 700;
  --tw-text-opacity: 1;
  color: rgb(106 31 255 / var(--tw-text-opacity, 1));
}
[data-theme="dark"] .text-gray-500:not(.instant-prize .prize):not(.text-wdw-yellow):not(.text-wdw-red) {
  color: var(--theme-text-secondary);
}
.single-product .instant-prize .prize {
  color: #6A1FFF;
}
/* Responsive */
@media (max-width: 768px) {
  .wdw-entry-list-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
@media (max-width: 767px) {
  .products.grid.wdw-entry-list-grid {
    justify-items: center;
  }
  .products.grid.wdw-entry-list-grid > li {
    width: 100%;
    max-width: calc(100vw - 2rem);
  }
}

  .wdw-entry-list-card-image {
    height: 14rem;
  }
}
/**
 * Order Details Page Styles - Simple Liquid Glass
 *
 * Clean glassmorphism like add-to-cart section
 */
/* Main Prize Winner Banner - Simple Purple Gradient */
.wdw-liquid-glass-wrapper {
	background: linear-gradient(135deg, #6A1FFF 0%, #8B5CF6 100%);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(106, 31, 255, 0.2);
	backdrop-filter: blur(10px);
	position: relative;
	overflow: hidden;
	padding: 2.5rem 2rem;
}
/* Subtle glass overlay */
.wdw-gradient-bg {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg,
		rgba(255, 255, 255, 0.1) 0%,
		rgba(255, 255, 255, 0.05) 50%,
		rgba(0, 0, 0, 0.05) 100%);
	pointer-events: none;
}
/* Glass layer content */
.wdw-glass-layer {
	position: relative;
	z-index: 1;
}
/* Inner glass card */
.wdw-glass-card {
	background-color: rgba(255, 255, 255, 0.15);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 8px;
	padding: 1.5rem;
	backdrop-filter: blur(4px);
}
/* Trophy float */
.wdw-trophy-float {
	animation: wdw-trophy-bounce 2s ease-in-out infinite;
	display: inline-block;
}
@keyframes wdw-trophy-bounce {
	0%, 100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-10px);
	}
}
/* Simple text styling */
.wdw-text-glow {
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
/* Winning Ticket Badge - Simple Gold */
.wdw-winning-ticket-badge {
	display: inline-block;
	padding: 0.75rem 1.5rem;
	border-radius: 8px;
	font-weight: 900;
	font-size: 2.5rem;
	line-height: 1;
	background: linear-gradient(135deg, #FCD34D 0%, #F59E0B 100%);
	color: #1F2937;
	border: 1px solid rgba(255, 255, 255, 0.3);
	box-shadow: 0 4px 16px rgba(252, 211, 77, 0.4);
	transition: all 0.2s ease;
}
.wdw-winning-ticket-badge:hover {
	transform: scale(1.05);
	box-shadow: 0 6px 20px rgba(252, 211, 77, 0.6);
}
/* Main Prize Indicator on My Orders Page */
.wdw-main-prize-indicator {
	background: linear-gradient(135deg, #6A1FFF 0%, #8B5CF6 100%);
	border: 1px solid rgba(139, 92, 246, 0.4);
	border-radius: 8px;
	padding: 1rem;
	margin-bottom: 1rem;
}
/* Responsive adjustments */
@media (max-width: 768px) {
	.wdw-liquid-glass-wrapper {
		padding: 1.5rem 1rem;
	}

	.wdw-glass-card {
		padding: 1rem;
	}

	.wdw-text-glow {
		font-size: 2rem !important;
	}

	.wdw-trophy-float {
		font-size: 3.5rem !important;
	}

	.wdw-winning-ticket-badge {
		font-size: 2rem;
		padding: 0.5rem 1rem;
	}
}
/* Contact Us Page Styles */
/* Main Header */
.wdw-contact-header {
  margin-bottom: 2rem;
  text-align: center;
}
@media only screen and (max-width: 479px) {
  
  .woocommerce ul.products li.product .rounded-lg.p-3.wdw-contact-header {
    background: none;
    border: none;
    padding: 0;
    box-shadow: none;
    backdrop-filter: none;
    margin: 0;
    border-radius: 0;
  }
}
.wdw-contact-main-title {
  margin-bottom: 1rem;
  font-size: 1.875rem;
  line-height: 2.25rem;
  font-weight: 700;
  color: var(--theme-text);
}
[data-theme="dark"] .single-product .wdw-contact-main-title {
  color: var(--theme-text);
}
[data-theme="dark"] .wdw-contact-main-title {
  color: var(--theme-text);
}
.single-product .wdw-contact-main-title table {
  margin-left: auto;
  margin-right: auto;
  display: table;
}
.single-product .wdw-contact-main-title table.aligncenter {
  margin-left: auto;
  margin-right: auto;
  display: table;
}
.single-product .lottery-info-container .wdw-contact-main-title {
  color: var(--theme-text);
}
.single-product .wdw-purple-gradient-box .wdw-contact-main-title {
  color: rgba(255, 255, 255, 0.9);
}
@media (min-width: 768px) {
  .wdw-contact-main-title {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
}
.wdw-contact-main-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
@media (max-width: 1023px) {
  #masthead .wdw-contact-main-title.items-end.justify-between {
    justify-content: space-between;
    align-items: center;
  }
  #mobile-menu .wdw-contact-main-title.items-center.justify-between {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  #mobile-menu .flex.wdw-contact-main-title.justify-between {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
}
@media (max-width: 640px) {
  
  .filters-section .wdw-contact-main-title {
    flex-direction: column;
  }
  
  @media (min-width: 640px) {
    .filters-section .wdw-contact-main-title {
      flex-direction: row;
    }
  }
}
@media (max-width: 430px) {
  .wdw-contact-main-title.justify-center.gap-3 {
    gap: 0.5rem;
    padding: 0 1rem;
    flex-wrap: nowrap;
  }
  .flex.wdw-contact-main-title.gap-3 {
    gap: 0.5rem;
    padding: 0 1rem;
    flex-wrap: nowrap;
  }
  .flex.justify-center.wdw-contact-main-title {
    gap: 0.5rem;
    padding: 0 1rem;
    flex-wrap: nowrap;
  }
}
.wdw-contact-icon {
  font-size: 2.25rem;
  line-height: 2.5rem;
}
.wdw-contact-subtitle {
  font-size: 1.125rem;
  line-height: 1.75rem;
  opacity: 0.9;
  color: var(--theme-text);
}
[data-theme="dark"] .single-product .wdw-contact-subtitle {
  color: var(--theme-text);
}
[data-theme="dark"] .wdw-contact-subtitle {
  color: var(--theme-text);
}
.single-product .wdw-contact-subtitle table {
  margin-left: auto;
  margin-right: auto;
  display: table;
}
.single-product .wdw-contact-subtitle table.aligncenter {
  margin-left: auto;
  margin-right: auto;
  display: table;
}
.single-product .lottery-info-container .wdw-contact-subtitle {
  color: var(--theme-text);
}
.single-product .wdw-purple-gradient-box .wdw-contact-subtitle {
  color: rgba(255, 255, 255, 0.9);
}
@media (min-width: 768px) {
  .wdw-contact-subtitle {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
}
/* Section Containers */
.wdw-contact-section {
  margin-bottom: 1.5rem;
  border-radius: 1rem;
  background-color: rgb(243 232 255 / 0.1);
  padding: 1.5rem;
  --tw-backdrop-blur: blur(4px);
  backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}
@media (min-width: 768px) {
  .wdw-contact-section {
    padding: 2rem;
  }
}
.wdw-contact-section {
  border-width: 1px;
  border-color: rgb(216 180 254 / 0.2);
}
.wdw-orders-section .wdw-contact-section {
  --tw-border-opacity: 1;
  border-color: rgb(243 244 246 / var(--tw-border-opacity, 1));
}
/* Section Titles */
.wdw-contact-section-title {
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 700;
  color: var(--theme-text);
}
[data-theme="dark"] .single-product .wdw-contact-section-title {
  color: var(--theme-text);
}
[data-theme="dark"] .wdw-contact-section-title {
  color: var(--theme-text);
}
.single-product .wdw-contact-section-title table {
  margin-left: auto;
  margin-right: auto;
  display: table;
}
.single-product .wdw-contact-section-title table.aligncenter {
  margin-left: auto;
  margin-right: auto;
  display: table;
}
.single-product .lottery-info-container .wdw-contact-section-title {
  color: var(--theme-text);
}
.single-product .wdw-purple-gradient-box .wdw-contact-section-title {
  color: rgba(255, 255, 255, 0.9);
}
@media (min-width: 768px) {
  .wdw-contact-section-title {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}
.wdw-contact-section-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
@media (max-width: 1023px) {
  #masthead .wdw-contact-section-title.items-end.justify-between {
    justify-content: space-between;
    align-items: center;
  }
  #mobile-menu .wdw-contact-section-title.items-center.justify-between {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  #mobile-menu .flex.wdw-contact-section-title.justify-between {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
}
@media (max-width: 640px) {
  
  .filters-section .wdw-contact-section-title {
    flex-direction: column;
  }
  
  @media (min-width: 640px) {
    .filters-section .wdw-contact-section-title {
      flex-direction: row;
    }
  }
}
@media (max-width: 430px) {
  .wdw-contact-section-title.justify-center.gap-3 {
    gap: 0.5rem;
    padding: 0 1rem;
    flex-wrap: nowrap;
  }
  .flex.justify-center.wdw-contact-section-title {
    gap: 0.5rem;
    padding: 0 1rem;
    flex-wrap: nowrap;
  }
}
.wdw-contact-section-icon {
  font-size: 1.5rem;
  line-height: 2rem;
}
@media (min-width: 768px) {
  .wdw-contact-section-icon {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
}
/* Content Area */
.wdw-contact-content > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1rem * var(--tw-space-y-reverse));
}
.wdw-contact-content {
  color: var(--theme-text);
}
[data-theme="dark"] .single-product .wdw-contact-content {
  color: var(--theme-text);
}
[data-theme="dark"] .wdw-contact-content {
  color: var(--theme-text);
}
#mobile-menu .wdw-contact-content > * {
  margin-bottom: 1rem;
}
#mobile-menu .wdw-contact-content > *:last-child {
  margin-bottom: 0;
}
@media (max-width: 1023px) {
  #mobile-menu .wdw-contact-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  #mobile-menu .wdw-contact-content > li {
    margin: 0;
  }
}
.single-product .wdw-contact-content table {
  margin-left: auto;
  margin-right: auto;
  display: table;
}
.single-product .wdw-contact-content table.aligncenter {
  margin-left: auto;
  margin-right: auto;
  display: table;
}
.single-product .lottery-info-container .wdw-contact-content {
  color: var(--theme-text);
}
.single-product .wdw-purple-gradient-box .wdw-contact-content {
  color: rgba(255, 255, 255, 0.9);
}
/* Email Section */
.wdw-contact-email-intro {
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.5rem;
  line-height: 1.625;
}
@media (min-width: 768px) {
  .wdw-contact-email-intro {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
}
.wdw-contact-email-link {
  display: block;
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 700;
  --tw-text-opacity: 1;
  color: rgb(106 31 255 / var(--tw-text-opacity, 1));
}
[data-theme="dark"] .text-gray-500:not(.wdw-contact-email-link):not(.text-wdw-yellow):not(.text-wdw-red) {
  color: var(--theme-text-secondary);
}
.single-product .wdw-contact-email-link {
  color: #6A1FFF;
}
.wdw-contact-email-link:hover {
  --tw-text-opacity: 1;
  color: rgb(192 132 252 / var(--tw-text-opacity, 1));
}
@media (min-width: 768px) {
  .wdw-contact-email-link {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
}
.wdw-contact-email-link {
  margin-bottom: 1rem;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 200ms;
  word-break: break-all;
}
.wdw-contact-response-time {
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-style: italic;
  opacity: 0.8;
  color: var(--theme-text);
}
[data-theme="dark"] .single-product .wdw-contact-response-time {
  color: var(--theme-text);
}
[data-theme="dark"] .wdw-contact-response-time {
  color: var(--theme-text);
}
.single-product .wdw-contact-response-time table {
  margin-left: auto;
  margin-right: auto;
  display: table;
}
.single-product .wdw-contact-response-time table.aligncenter {
  margin-left: auto;
  margin-right: auto;
  display: table;
}
.single-product .lottery-info-container .wdw-contact-response-time {
  color: var(--theme-text);
}
.single-product .wdw-purple-gradient-box .wdw-contact-response-time {
  color: rgba(255, 255, 255, 0.9);
}
@media (min-width: 768px) {
  .wdw-contact-response-time {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}
/* Business Hours */
.wdw-contact-hours > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.75rem * var(--tw-space-y-reverse));
}
.wdw-account-stats .wdw-contact-hours > div {
  border-bottom-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(243 244 246 / var(--tw-border-opacity, 1));
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.wdw-account-stats .wdw-contact-hours > div:last-child {
  border-bottom-width: 0px;
}
.wdw-quick-actions .wdw-contact-hours a {
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 500;
}
.wdw-contact-hours-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1023px) {
  #masthead .wdw-contact-hours-row.items-end.justify-between {
    justify-content: space-between;
    align-items: center;
  }
  #masthead .flex.items-end.wdw-contact-hours-row {
    justify-content: space-between;
    align-items: center;
  }
  #mobile-menu .wdw-contact-hours-row.items-center.justify-between {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  #mobile-menu .flex.items-center.wdw-contact-hours-row {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  #mobile-menu .flex.wdw-contact-hours-row.justify-between {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
}
@media (max-width: 640px) {
  
  .filters-section .wdw-contact-hours-row {
    flex-direction: column;
  }
  
  @media (min-width: 640px) {
    .filters-section .wdw-contact-hours-row {
      flex-direction: row;
    }
  }
}
@media (max-width: 430px) {
  .wdw-contact-hours-row.justify-center.gap-3 {
    gap: 0.5rem;
    padding: 0 1rem;
    flex-wrap: nowrap;
  }
}
.wdw-contact-hours-row {
  border-radius: 0.5rem;
  background-color: rgb(233 213 255 / 0.1);
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media only screen and (max-width: 479px) {
  
  .woocommerce ul.products li.product .wdw-contact-hours-row.p-3.text-center {
    background: none;
    border: none;
    padding: 0;
    box-shadow: none;
    backdrop-filter: none;
    margin: 0;
    border-radius: 0;
  }
}
.wdw-contact-hours-day {
  font-weight: 600;
  color: var(--theme-text);
}
[data-theme="dark"] .single-product .wdw-contact-hours-day {
  color: var(--theme-text);
}
[data-theme="dark"] .wdw-contact-hours-day {
  color: var(--theme-text);
}
.single-product .wdw-contact-hours-day table {
  margin-left: auto;
  margin-right: auto;
  display: table;
}
.single-product .wdw-contact-hours-day table.aligncenter {
  margin-left: auto;
  margin-right: auto;
  display: table;
}
.single-product .lottery-info-container .wdw-contact-hours-day {
  color: var(--theme-text);
}
.single-product .wdw-purple-gradient-box .wdw-contact-hours-day {
  color: rgba(255, 255, 255, 0.9);
}
.wdw-contact-hours-time {
  color: var(--theme-text);
}
[data-theme="dark"] .single-product .wdw-contact-hours-time {
  color: var(--theme-text);
}
[data-theme="dark"] .wdw-contact-hours-time {
  color: var(--theme-text);
}
.single-product .wdw-contact-hours-time table {
  margin-left: auto;
  margin-right: auto;
  display: table;
}
.single-product .wdw-contact-hours-time table.aligncenter {
  margin-left: auto;
  margin-right: auto;
  display: table;
}
.single-product .lottery-info-container .wdw-contact-hours-time {
  color: var(--theme-text);
}
.single-product .wdw-purple-gradient-box .wdw-contact-hours-time {
  color: rgba(255, 255, 255, 0.9);
}
/* Company Information */
.wdw-contact-company-info > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
}
.wdw-contact-company-name {
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 700;
  color: var(--theme-text);
}
[data-theme="dark"] .single-product .wdw-contact-company-name {
  color: var(--theme-text);
}
[data-theme="dark"] .wdw-contact-company-name {
  color: var(--theme-text);
}
.single-product .wdw-contact-company-name table {
  margin-left: auto;
  margin-right: auto;
  display: table;
}
.single-product .wdw-contact-company-name table.aligncenter {
  margin-left: auto;
  margin-right: auto;
  display: table;
}
.single-product .lottery-info-container .wdw-contact-company-name {
  color: var(--theme-text);
}
.single-product .wdw-purple-gradient-box .wdw-contact-company-name {
  color: rgba(255, 255, 255, 0.9);
}
@media (min-width: 768px) {
  .wdw-contact-company-name {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
}
.wdw-contact-company-detail {
  font-size: 1rem;
  line-height: 1.5rem;
  color: var(--theme-text);
}
[data-theme="dark"] .single-product .wdw-contact-company-detail {
  color: var(--theme-text);
}
[data-theme="dark"] .wdw-contact-company-detail {
  color: var(--theme-text);
}
.single-product .wdw-contact-company-detail table {
  margin-left: auto;
  margin-right: auto;
  display: table;
}
.single-product .wdw-contact-company-detail table.aligncenter {
  margin-left: auto;
  margin-right: auto;
  display: table;
}
.single-product .lottery-info-container .wdw-contact-company-detail {
  color: var(--theme-text);
}
.single-product .wdw-purple-gradient-box .wdw-contact-company-detail {
  color: rgba(255, 255, 255, 0.9);
}
@media (min-width: 768px) {
  .wdw-contact-company-detail {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
}
/* FAQ Links Section */
.wdw-contact-faq-intro {
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.5rem;
  line-height: 1.625;
}
@media (min-width: 768px) {
  .wdw-contact-faq-intro {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
}
.wdw-contact-links {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1rem;
}
@media (max-width: 768px) {
  
  .wdw-account-dashboard .wdw-contact-links {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .products.wdw-contact-links {
    gap: 1rem;
    padding: 0;
  }
  .products.wdw-contact-links.grid-cols-1 {
    justify-items: center;
  }
  .products.grid.wdw-contact-links {
    justify-items: center;
  }
  .products.wdw-contact-links.grid-cols-1 > li {
    width: 100%;
    max-width: calc(100vw - 2rem);
  }
  .products.grid.wdw-contact-links > li {
    width: 100%;
    max-width: calc(100vw - 2rem);
  }
}
@media (max-width: 580px) {
  .products.wdw-contact-links {
    gap: 0.5rem;
  }
}
@media (min-width: 768px) {
  .wdw-contact-links {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.wdw-contact-link-item {
  display: block;
  border-radius: 0.5rem;
  background-color: rgb(233 213 255 / 0.2);
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media only screen and (max-width: 479px) {
  
  .woocommerce ul.products li.product .wdw-contact-link-item.p-3.text-center {
    background: none;
    border: none;
    padding: 0;
    box-shadow: none;
    backdrop-filter: none;
    margin: 0;
    border-radius: 0;
  }
}
.wdw-contact-link-item {
  text-align: center;
  font-weight: 600;
  color: var(--theme-text);
}
@media only screen and (max-width: 479px) {
  
  .woocommerce ul.products li.product .rounded-lg.p-3.wdw-contact-link-item {
    background: none;
    border: none;
    padding: 0;
    box-shadow: none;
    backdrop-filter: none;
    margin: 0;
    border-radius: 0;
  }
}
.wdw-contact-link-item {
  color: var(--theme-text);
}
[data-theme="dark"] .single-product .wdw-contact-link-item {
  color: var(--theme-text);
}
[data-theme="dark"] .wdw-contact-link-item {
  color: var(--theme-text);
}
.single-product .wdw-contact-link-item table {
  margin-left: auto;
  margin-right: auto;
  display: table;
}
.single-product .wdw-contact-link-item table.aligncenter {
  margin-left: auto;
  margin-right: auto;
  display: table;
}
.single-product .lottery-info-container .wdw-contact-link-item {
  color: var(--theme-text);
}
.single-product .wdw-purple-gradient-box .wdw-contact-link-item {
  color: rgba(255, 255, 255, 0.9);
}
.wdw-contact-link-item:hover {
  background-color: rgb(216 180 254 / 0.3);
  --tw-text-opacity: 1;
  color: rgb(106 31 255 / var(--tw-text-opacity, 1));
}
.wdw-contact-link-item {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 200ms;
  border-width: 1px;
  border-color: rgb(216 180 254 / 0.2);
}
.wdw-orders-section .wdw-contact-link-item {
  --tw-border-opacity: 1;
  border-color: rgb(243 244 246 / var(--tw-border-opacity, 1));
}
.wdw-contact-link-item:hover {
  border-color: rgb(192 132 252 / 0.4);
}
/* Responsive adjustments */
@media (max-width: 768px) {
  .wdw-contact-main-title {
    font-size: 1.5rem;
    line-height: 2rem;
  }

  .wdw-contact-subtitle {
    font-size: 1rem;
    line-height: 1.5rem;
  }

  .wdw-contact-section {
    padding: 1rem;
  }

  .wdw-contact-email-link {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }

  .wdw-contact-hours-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }

  .wdw-contact-links {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
@media (max-width: 767px) {
  .products.grid.wdw-contact-links {
    justify-items: center;
  }
  .products.grid.wdw-contact-links > li {
    width: 100%;
    max-width: calc(100vw - 2rem);
  }
}
}
/**
 * 404 Page Styles - Liquid Glass Effect
 */
.wdw-404-glass-container {
	background: linear-gradient(135deg,
		rgba(106, 31, 255, 0.15) 0%,
		rgba(139, 92, 246, 0.15) 100%);
	border: 2px solid rgba(106, 31, 255, 0.3);
	border-radius: 24px;
	box-shadow:
		0 8px 32px rgba(106, 31, 255, 0.25),
		inset 0 1px 1px rgba(255, 255, 255, 0.2),
		0 0 60px rgba(106, 31, 255, 0.15);
	backdrop-filter: blur(16px);
	position: relative;
	overflow: hidden;
	padding: 2rem 3rem;
	transition: all 0.3s ease;
}
.wdw-404-glass-container::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: linear-gradient(
		45deg,
		transparent 30%,
		rgba(255, 255, 255, 0.1) 50%,
		transparent 70%
	);
	animation: wdw-liquid-shine 3s ease-in-out infinite;
	pointer-events: none;
}
.wdw-404-glass-container:hover {
	box-shadow:
		0 12px 40px rgba(106, 31, 255, 0.35),
		inset 0 1px 1px rgba(255, 255, 255, 0.3),
		0 0 80px rgba(106, 31, 255, 0.25);
	transform: translateY(-4px);
}
/* Dark mode variant */
.dark .wdw-404-glass-container {
	background: linear-gradient(135deg,
		rgba(255, 207, 0, 0.15) 0%,
		rgba(255, 196, 0, 0.15) 100%);
	border: 2px solid rgba(255, 207, 0, 0.3);
	box-shadow:
		0 8px 32px rgba(255, 207, 0, 0.25),
		inset 0 1px 1px rgba(255, 255, 255, 0.1),
		0 0 60px rgba(255, 207, 0, 0.15);
}
.dark .wdw-404-glass-container:hover {
	box-shadow:
		0 12px 40px rgba(255, 207, 0, 0.35),
		inset 0 1px 1px rgba(255, 255, 255, 0.2),
		0 0 80px rgba(255, 207, 0, 0.25);
}
/* Liquid shine animation */
@keyframes wdw-liquid-shine {
	0% {
		transform: translateX(-100%) translateY(-100%) rotate(45deg);
	}
	100% {
		transform: translateX(100%) translateY(100%) rotate(45deg);
	}
}
/* Responsive adjustments */
@media (max-width: 768px) {
	.wdw-404-glass-container {
		padding: 1.5rem 2rem;
		border-radius: 16px;
	}
}
*, ::before, ::after {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}
::backdrop {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}
/* ! tailwindcss v3.4.17 | MIT License | https://tailwindcss.com */
/*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/
*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: #e5e7eb; /* 2 */
}
::before,
::after {
  --tw-content: '';
}
/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
7. Disable tap highlights on iOS
*/
html,
:host {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -moz-tab-size: 4; /* 3 */
  -o-tab-size: 4;
     tab-size: 4; /* 3 */
  font-family: Helvetica Neue, Helvetica, Arial, ui-sans-serif, system-ui, sans-serif; /* 4 */
  font-feature-settings: normal; /* 5 */
  font-variation-settings: normal; /* 6 */
  -webkit-tap-highlight-color: transparent; /* 7 */
}
/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/
body {
  margin: 0; /* 1 */
  line-height: inherit; /* 2 */
}
/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/
hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
  border-top-width: 1px; /* 3 */
}
/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/
abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}
/*
Remove the default font size and weight for headings.
*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}
/*
Reset links to optimize for opt-in styling instead of opt-out.
*/
a {
  color: inherit;
  text-decoration: inherit;
}
/*
Add the correct font weight in Edge and Safari.
*/
b,
strong {
  font-weight: bolder;
}
/*
1. Use the user's configured `mono` font-family by default.
2. Use the user's configured `mono` font-feature-settings by default.
3. Use the user's configured `mono` font-variation-settings by default.
4. Correct the odd `em` font sizing in all browsers.
*/
code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Monaco, Consolas, Liberation Mono, Courier New, monospace; /* 1 */
  font-feature-settings: normal; /* 2 */
  font-variation-settings: normal; /* 3 */
  font-size: 1em; /* 4 */
}
/*
Add the correct font size in all browsers.
*/
small {
  font-size: 80%;
}
/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/
table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
  border-collapse: collapse; /* 3 */
}
/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-feature-settings: inherit; /* 1 */
  font-variation-settings: inherit; /* 1 */
  font-size: 100%; /* 1 */
  font-weight: inherit; /* 1 */
  line-height: inherit; /* 1 */
  letter-spacing: inherit; /* 1 */
  color: inherit; /* 1 */
  margin: 0; /* 2 */
  padding: 0; /* 3 */
}
/*
Remove the inheritance of text transform in Edge and Firefox.
*/
button,
select {
  text-transform: none;
}
/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/
button,
input:where([type='button']),
input:where([type='reset']),
input:where([type='submit']) {
  -webkit-appearance: button; /* 1 */
  background-color: transparent; /* 2 */
  background-image: none; /* 2 */
}
/*
Use the modern Firefox focus style for all focusable elements.
*/
:-moz-focusring {
  outline: auto;
}
/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/
:-moz-ui-invalid {
  box-shadow: none;
}
/*
Add the correct vertical alignment in Chrome and Firefox.
*/
progress {
  vertical-align: baseline;
}
/*
Correct the cursor style of increment and decrement buttons in Safari.
*/
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}
/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/
[type='search'] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}
/*
Remove the inner padding in Chrome and Safari on macOS.
*/
::-webkit-search-decoration {
  -webkit-appearance: none;
}
/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}
/*
Add the correct display in Chrome and Safari.
*/
summary {
  display: list-item;
}
/*
Removes the default spacing and border for appropriate elements.
*/
blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}
fieldset {
  margin: 0;
  padding: 0;
}
legend {
  padding: 0;
}
ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
/*
Reset default styling for dialogs.
*/
dialog {
  padding: 0;
}
/*
Prevent resizing textareas horizontally by default.
*/
textarea {
  resize: vertical;
}
/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/
input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}
input::placeholder,
textarea::placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}
/*
Set the default cursor for buttons.
*/
button,
[role="button"] {
  cursor: pointer;
}
/*
Make sure disabled buttons don't get the pointer cursor.
*/
:disabled {
  cursor: default;
}
/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/
img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}
/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/
img,
video {
  max-width: 100%;
  height: auto;
}
/* Make elements with the HTML hidden attribute stay hidden by default */
[hidden]:where(:not([hidden="until-found"])) {
  display: none;
}
.container {
  width: 100%;
}
@media (min-width: 640px) {
  .container {
    max-width: 640px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}
@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
  }
}
@media (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}
@media (min-width: 1536px) {
  .container {
    max-width: 1536px;
  }
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
.pointer-events-none {
  pointer-events: none;
}
.visible {
  visibility: visible;
}
.fixed {
  position: fixed;
}
.absolute {
  position: absolute;
}
.relative {
  position: relative;
}
.sticky {
  position: sticky;
}
.inset-0 {
  inset: 0px;
}
.inset-y-0 {
  top: 0px;
  bottom: 0px;
}
.-right-2 {
  right: -0.5rem;
}
.-top-2 {
  top: -0.5rem;
}
.-top-6 {
  top: -1.5rem;
}
.bottom-0 {
  bottom: 0px;
}
.bottom-6 {
  bottom: 1.5rem;
}
.left-0 {
  left: 0px;
}
.left-1 {
  left: 0.25rem;
}
.left-4 {
  left: 1rem;
}
.right-0 {
  right: 0px;
}
.right-1 {
  right: 0.25rem;
}
.right-6 {
  right: 1.5rem;
}
.top-0 {
  top: 0px;
}
.top-1 {
  top: 0.25rem;
}
.top-12 {
  top: 3rem;
}
.top-4 {
  top: 1rem;
}
.z-10 {
  z-index: 10;
}
.z-20 {
  z-index: 20;
}
.z-30 {
  z-index: 30;
}
.z-40 {
  z-index: 40;
}
.z-50 {
  z-index: 50;
}
.order-1 {
  order: 1;
}
.order-2 {
  order: 2;
}
.order-3 {
  order: 3;
}
.col-span-full {
  grid-column: 1 / -1;
}
.mx-1 {
  margin-left: 0.25rem;
  margin-right: 0.25rem;
}
.mx-4 {
  margin-left: 1rem;
  margin-right: 1rem;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.my-16 {
  margin-top: 4rem;
  margin-bottom: 4rem;
}
.my-4 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.my-8 {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.mb-1 {
  margin-bottom: 0.25rem;
}
.mb-12 {
  margin-bottom: 3rem;
}
.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;
}
.ml-2 {
  margin-left: 0.5rem;
}
.ml-4 {
  margin-left: 1rem;
}
.mr-1 {
  margin-right: 0.25rem;
}
.mr-2 {
  margin-right: 0.5rem;
}
.mr-3 {
  margin-right: 0.75rem;
}
.mt-1 {
  margin-top: 0.25rem;
}
.mt-12 {
  margin-top: 3rem;
}
.mt-2 {
  margin-top: 0.5rem;
}
.mt-4 {
  margin-top: 1rem;
}
.mt-6 {
  margin-top: 1.5rem;
}
.mt-8 {
  margin-top: 2rem;
}
.line-clamp-2 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.block {
  display: block;
}
.inline-block {
  display: inline-block;
}
.inline {
  display: inline;
}
.flex {
  display: flex;
}
.inline-flex {
  display: inline-flex;
}
.table {
  display: table;
}
.grid {
  display: grid;
}
.contents {
  display: contents;
}
.hidden {
  display: none;
}
.aspect-square {
  aspect-ratio: 1 / 1;
}
.h-1\.5 {
  height: 0.375rem;
}
.h-10 {
  height: 2.5rem;
}
.h-12 {
  height: 3rem;
}
.h-16 {
  height: 4rem;
}
.h-2 {
  height: 0.5rem;
}
.h-20 {
  height: 5rem;
}
.h-24 {
  height: 6rem;
}
.h-4 {
  height: 1rem;
}
.h-48 {
  height: 12rem;
}
.h-5 {
  height: 1.25rem;
}
.h-6 {
  height: 1.5rem;
}
.h-7 {
  height: 1.75rem;
}
.h-8 {
  height: 2rem;
}
.h-\[250px\] {
  height: 250px;
}
.h-auto {
  height: auto;
}
.h-full {
  height: 100%;
}
.h-px {
  height: 1px;
}
.min-h-screen {
  min-height: 100vh;
}
.w-10 {
  width: 2.5rem;
}
.w-12 {
  width: 3rem;
}
.w-16 {
  width: 4rem;
}
.w-20 {
  width: 5rem;
}
.w-24 {
  width: 6rem;
}
.w-3\/5 {
  width: 60%;
}
.w-4 {
  width: 1rem;
}
.w-5 {
  width: 1.25rem;
}
.w-6 {
  width: 1.5rem;
}
.w-7 {
  width: 1.75rem;
}
.w-8 {
  width: 2rem;
}
.w-auto {
  width: auto;
}
.w-full {
  width: 100%;
}
.min-w-0 {
  min-width: 0px;
}
.min-w-\[24px\] {
  min-width: 24px;
}
.max-w-2xl {
  max-width: 42rem;
}
.max-w-3xl {
  max-width: 48rem;
}
.max-w-4xl {
  max-width: 56rem;
}
.max-w-5xl {
  max-width: 64rem;
}
.max-w-6xl {
  max-width: 72rem;
}
.max-w-7xl {
  max-width: 80rem;
}
.max-w-md {
  max-width: 28rem;
}
.flex-1 {
  flex: 1 1 0%;
}
.flex-shrink-0 {
  flex-shrink: 0;
}
.-translate-x-full {
  --tw-translate-x: -100%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-x-0 {
  --tw-translate-x: 0px;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.rotate-180 {
  --tw-rotate: 180deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.transform {
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.cursor-pointer {
  cursor: pointer;
}
.resize {
  resize: both;
}
.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.flex-row {
  flex-direction: row;
}
.flex-col {
  flex-direction: column;
}
.flex-wrap {
  flex-wrap: wrap;
}
.items-start {
  align-items: flex-start;
}
.items-end {
  align-items: flex-end;
}
.items-center {
  align-items: center;
}
.items-baseline {
  align-items: baseline;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.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;
}
.space-x-2 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(0.5rem * var(--tw-space-x-reverse));
  margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-x-4 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(1rem * var(--tw-space-x-reverse));
  margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-x-6 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(1.5rem * var(--tw-space-x-reverse));
  margin-left: calc(1.5rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-y-1 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.25rem * var(--tw-space-y-reverse));
}
.space-y-2 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
}
.space-y-3 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.75rem * var(--tw-space-y-reverse));
}
.space-y-4 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1rem * var(--tw-space-y-reverse));
}
.space-y-6 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1.5rem * var(--tw-space-y-reverse));
}
.space-y-8 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(2rem * var(--tw-space-y-reverse));
}
.overflow-hidden {
  overflow: hidden;
}
.break-all {
  word-break: break-all;
}
.rounded {
  border-radius: 0.25rem;
}
.rounded-full {
  border-radius: 9999px;
}
.rounded-lg {
  border-radius: 0.5rem;
}
.rounded-md {
  border-radius: 0.375rem;
}
.rounded-b-lg {
  border-bottom-right-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
}
.rounded-r-2xl {
  border-top-right-radius: 1rem;
  border-bottom-right-radius: 1rem;
}
.border {
  border-width: 1px;
}
.border-2 {
  border-width: 2px;
}
.border-b {
  border-bottom-width: 1px;
}
.border-l-4 {
  border-left-width: 4px;
}
.border-t {
  border-top-width: 1px;
}
.border-theme-border {
  border-color: var(--theme-border);
}
.border-wdw-gray-light {
  --tw-border-opacity: 1;
  border-color: rgb(243 244 246 / var(--tw-border-opacity, 1));
}
.border-wdw-yellow\/30 {
  border-color: rgb(252 211 77 / 0.3);
}
.border-wdw-yellow\/40 {
  border-color: rgb(252 211 77 / 0.4);
}
.border-white\/20 {
  border-color: rgb(255 255 255 / 0.2);
}
.border-yellow-200 {
  --tw-border-opacity: 1;
  border-color: rgb(254 240 138 / var(--tw-border-opacity, 1));
}
.border-yellow-300 {
  --tw-border-opacity: 1;
  border-color: rgb(253 224 71 / var(--tw-border-opacity, 1));
}
.border-yellow-400 {
  --tw-border-opacity: 1;
  border-color: rgb(250 204 21 / var(--tw-border-opacity, 1));
}
.bg-black {
  --tw-bg-opacity: 1;
  background-color: rgb(0 0 0 / var(--tw-bg-opacity, 1));
}
.bg-blue-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(219 234 254 / var(--tw-bg-opacity, 1));
}
.bg-blue-400 {
  --tw-bg-opacity: 1;
  background-color: rgb(96 165 250 / var(--tw-bg-opacity, 1));
}
.bg-blue-600 {
  --tw-bg-opacity: 1;
  background-color: rgb(37 99 235 / var(--tw-bg-opacity, 1));
}
.bg-gray-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
}
.bg-gray-300 {
  --tw-bg-opacity: 1;
  background-color: rgb(209 213 219 / var(--tw-bg-opacity, 1));
}
.bg-gray-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
}
.bg-green-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(220 252 231 / var(--tw-bg-opacity, 1));
}
.bg-green-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(34 197 94 / var(--tw-bg-opacity, 1));
}
.bg-red-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(254 226 226 / var(--tw-bg-opacity, 1));
}
.bg-red-600 {
  --tw-bg-opacity: 1;
  background-color: rgb(220 38 38 / var(--tw-bg-opacity, 1));
}
.bg-theme-card {
  background-color: var(--theme-card-bg);
}
.bg-theme-primary {
  background-color: var(--theme-primary);
}
.bg-wdw-black {
  --tw-bg-opacity: 1;
  background-color: rgb(31 41 55 / var(--tw-bg-opacity, 1));
}
.bg-wdw-gray-light {
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
}
.bg-wdw-purple {
  --tw-bg-opacity: 1;
  background-color: rgb(106 31 255 / var(--tw-bg-opacity, 1));
}
.bg-wdw-purple-dark {
  --tw-bg-opacity: 1;
  background-color: rgb(91 33 182 / var(--tw-bg-opacity, 1));
}
.bg-wdw-red {
  --tw-bg-opacity: 1;
  background-color: rgb(239 68 68 / var(--tw-bg-opacity, 1));
}
.bg-wdw-yellow {
  --tw-bg-opacity: 1;
  background-color: rgb(252 211 77 / var(--tw-bg-opacity, 1));
}
.bg-wdw-yellow\/20 {
  background-color: rgb(252 211 77 / 0.2);
}
.bg-white {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}
.bg-white\/10 {
  background-color: rgb(255 255 255 / 0.1);
}
.bg-yellow-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(254 249 195 / var(--tw-bg-opacity, 1));
}
.bg-yellow-200 {
  --tw-bg-opacity: 1;
  background-color: rgb(254 240 138 / var(--tw-bg-opacity, 1));
}
.bg-yellow-400 {
  --tw-bg-opacity: 1;
  background-color: rgb(250 204 21 / var(--tw-bg-opacity, 1));
}
.bg-yellow-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(254 252 232 / var(--tw-bg-opacity, 1));
}
.bg-gradient-to-br {
  background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
}
.bg-gradient-to-r {
  background-image: linear-gradient(to right, var(--tw-gradient-stops));
}
.from-gray-100 {
  --tw-gradient-from: #f3f4f6 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(243 244 246 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-wdw-purple\/20 {
  --tw-gradient-from: rgb(106 31 255 / 0.2) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(106 31 255 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-wdw-yellow {
  --tw-gradient-from: #FCD34D var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(252 211 77 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.to-gray-200 {
  --tw-gradient-to: #e5e7eb var(--tw-gradient-to-position);
}
.to-wdw-yellow-dark {
  --tw-gradient-to: #F59E0B var(--tw-gradient-to-position);
}
.to-wdw-yellow\/20 {
  --tw-gradient-to: rgb(252 211 77 / 0.2) var(--tw-gradient-to-position);
}
.object-contain {
  -o-object-fit: contain;
     object-fit: contain;
}
.object-cover {
  -o-object-fit: cover;
     object-fit: cover;
}
.object-center {
  -o-object-position: center;
     object-position: center;
}
.p-0 {
  padding: 0px;
}
.p-1 {
  padding: 0.25rem;
}
.p-2 {
  padding: 0.5rem;
}
.p-3 {
  padding: 0.75rem;
}
.p-4 {
  padding: 1rem;
}
.p-6 {
  padding: 1.5rem;
}
.p-8 {
  padding: 2rem;
}
.px-1 {
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}
.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.px-2\.5 {
  padding-left: 0.625rem;
  padding-right: 0.625rem;
}
.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;
}
.py-0\.5 {
  padding-top: 0.125rem;
  padding-bottom: 0.125rem;
}
.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
.py-1\.5 {
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
}
.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.py-5 {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}
.py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.pb-6 {
  padding-bottom: 1.5rem;
}
.pt-2 {
  padding-top: 0.5rem;
}
.pt-3 {
  padding-top: 0.75rem;
}
.pt-4 {
  padding-top: 1rem;
}
.pt-6 {
  padding-top: 1.5rem;
}
.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}
.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}
.text-4xl {
  font-size: 2.25rem;
  line-height: 2.5rem;
}
.text-6xl {
  font-size: 3.75rem;
  line-height: 1;
}
.text-7xl {
  font-size: 4.5rem;
  line-height: 1;
}
.text-\[10px\] {
  font-size: 10px;
}
.text-\[10rem\] {
  font-size: 10rem;
}
.text-\[11px\] {
  font-size: 11px;
}
.text-base {
  font-size: 1rem;
  line-height: 1.5rem;
}
.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}
.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}
.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}
.font-black {
  font-weight: 900;
}
.font-bold {
  font-weight: 700;
}
.font-medium {
  font-weight: 500;
}
.font-semibold {
  font-weight: 600;
}
.uppercase {
  text-transform: uppercase;
}
.leading-none {
  line-height: 1;
}
.leading-relaxed {
  line-height: 1.625;
}
.leading-tight {
  line-height: 1.25;
}
.tracking-wide {
  letter-spacing: 0.025em;
}
.\!text-gray-900 {
  --tw-text-opacity: 1 !important;
  color: rgb(17 24 39 / var(--tw-text-opacity, 1)) !important;
}
.\!text-yellow-800 {
  --tw-text-opacity: 1 !important;
  color: rgb(133 77 14 / var(--tw-text-opacity, 1)) !important;
}
.\!text-yellow-900 {
  --tw-text-opacity: 1 !important;
  color: rgb(113 63 18 / var(--tw-text-opacity, 1)) !important;
}
.text-black {
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity, 1));
}
.text-blue-600 {
  --tw-text-opacity: 1;
  color: rgb(37 99 235 / var(--tw-text-opacity, 1));
}
.text-blue-800 {
  --tw-text-opacity: 1;
  color: rgb(30 64 175 / var(--tw-text-opacity, 1));
}
.text-current {
  color: currentColor;
}
.text-gray-300 {
  --tw-text-opacity: 1;
  color: rgb(209 213 219 / var(--tw-text-opacity, 1));
}
.text-gray-400 {
  --tw-text-opacity: 1;
  color: rgb(156 163 175 / var(--tw-text-opacity, 1));
}
.text-gray-700 {
  --tw-text-opacity: 1;
  color: rgb(55 65 81 / var(--tw-text-opacity, 1));
}
.text-gray-800 {
  --tw-text-opacity: 1;
  color: rgb(31 41 55 / var(--tw-text-opacity, 1));
}
.text-gray-900 {
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / var(--tw-text-opacity, 1));
}
.text-green-500 {
  --tw-text-opacity: 1;
  color: rgb(34 197 94 / var(--tw-text-opacity, 1));
}
.text-green-800 {
  --tw-text-opacity: 1;
  color: rgb(22 101 52 / var(--tw-text-opacity, 1));
}
.text-red-600 {
  --tw-text-opacity: 1;
  color: rgb(220 38 38 / var(--tw-text-opacity, 1));
}
.text-red-800 {
  --tw-text-opacity: 1;
  color: rgb(153 27 27 / var(--tw-text-opacity, 1));
}
.text-theme-text {
  color: var(--theme-text);
}
.text-theme-text-on-color {
  color: var(--theme-text-on-color);
}
.text-theme-text-secondary {
  color: var(--theme-text-secondary);
}
.text-wdw-black {
  --tw-text-opacity: 1;
  color: rgb(31 41 55 / var(--tw-text-opacity, 1));
}
.text-wdw-black\/70 {
  color: rgb(31 41 55 / 0.7);
}
.text-wdw-gray-dark {
  --tw-text-opacity: 1;
  color: rgb(55 65 81 / var(--tw-text-opacity, 1));
}
.text-wdw-gray-light {
  --tw-text-opacity: 1;
  color: rgb(243 244 246 / var(--tw-text-opacity, 1));
}
.text-wdw-gray-medium {
  --tw-text-opacity: 1;
  color: rgb(156 163 175 / var(--tw-text-opacity, 1));
}
.text-wdw-purple {
  --tw-text-opacity: 1;
  color: rgb(106 31 255 / var(--tw-text-opacity, 1));
}
.text-wdw-purple-dark {
  --tw-text-opacity: 1;
  color: rgb(91 33 182 / var(--tw-text-opacity, 1));
}
.text-wdw-red {
  --tw-text-opacity: 1;
  color: rgb(239 68 68 / var(--tw-text-opacity, 1));
}
.text-wdw-yellow {
  --tw-text-opacity: 1;
  color: rgb(252 211 77 / var(--tw-text-opacity, 1));
}
.text-wdw-yellow-dark {
  --tw-text-opacity: 1;
  color: rgb(245 158 11 / var(--tw-text-opacity, 1));
}
.text-white {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.text-white\/90 {
  color: rgb(255 255 255 / 0.9);
}
.text-yellow-600 {
  --tw-text-opacity: 1;
  color: rgb(202 138 4 / var(--tw-text-opacity, 1));
}
.text-yellow-800 {
  --tw-text-opacity: 1;
  color: rgb(133 77 14 / var(--tw-text-opacity, 1));
}
.underline {
  text-decoration-line: underline;
}
.opacity-0 {
  opacity: 0;
}
.opacity-100 {
  opacity: 1;
}
.opacity-90 {
  opacity: 0.9;
}
.shadow {
  --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-2xl {
  --tw-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  --tw-shadow-colored: 0 25px 50px -12px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-lg {
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-md {
  --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-sm {
  --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-xl {
  --tw-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.blur {
  --tw-blur: blur(8px);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.filter {
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.backdrop-filter {
  backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}
.transition {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-colors {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-shadow {
  transition-property: box-shadow;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-transform {
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.duration-200 {
  transition-duration: 200ms;
}
.duration-300 {
  transition-duration: 300ms;
}
.duration-500 {
  transition-duration: 500ms;
}
.ease-in-out {
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.hover\:-translate-y-1:hover {
  --tw-translate-y: -0.25rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.hover\:-translate-y-2:hover {
  --tw-translate-y: -0.5rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.hover\:scale-105:hover {
  --tw-scale-x: 1.05;
  --tw-scale-y: 1.05;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.hover\:scale-\[1\.02\]:hover {
  --tw-scale-x: 1.02;
  --tw-scale-y: 1.02;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.hover\:bg-blue-500:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(59 130 246 / var(--tw-bg-opacity, 1));
}
.hover\:bg-blue-700:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(29 78 216 / var(--tw-bg-opacity, 1));
}
.hover\:bg-green-600:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(22 163 74 / var(--tw-bg-opacity, 1));
}
.hover\:bg-red-700:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(185 28 28 / var(--tw-bg-opacity, 1));
}
.hover\:bg-wdw-gray-medium:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(156 163 175 / var(--tw-bg-opacity, 1));
}
.hover\:bg-wdw-purple-dark:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(91 33 182 / var(--tw-bg-opacity, 1));
}
.hover\:bg-wdw-yellow:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(252 211 77 / var(--tw-bg-opacity, 1));
}
.hover\:bg-white\/10:hover {
  background-color: rgb(255 255 255 / 0.1);
}
.hover\:bg-yellow-300:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(253 224 71 / var(--tw-bg-opacity, 1));
}
.hover\:from-wdw-yellow-dark:hover {
  --tw-gradient-from: #F59E0B var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(245 158 11 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.hover\:to-wdw-yellow:hover {
  --tw-gradient-to: #FCD34D var(--tw-gradient-to-position);
}
.hover\:text-wdw-black:hover {
  --tw-text-opacity: 1;
  color: rgb(31 41 55 / var(--tw-text-opacity, 1));
}
.hover\:text-wdw-purple:hover {
  --tw-text-opacity: 1;
  color: rgb(106 31 255 / var(--tw-text-opacity, 1));
}
.hover\:text-wdw-purple-dark:hover {
  --tw-text-opacity: 1;
  color: rgb(91 33 182 / var(--tw-text-opacity, 1));
}
.hover\:text-wdw-yellow:hover {
  --tw-text-opacity: 1;
  color: rgb(252 211 77 / var(--tw-text-opacity, 1));
}
.hover\:text-white:hover {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.hover\:shadow-md:hover {
  --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.hover\:shadow-xl:hover {
  --tw-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.group:hover .group-hover\:scale-105 {
  --tw-scale-x: 1.05;
  --tw-scale-y: 1.05;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
@media (min-width: 640px) {
  .sm\:inline {
    display: inline;
  }
  .sm\:h-12 {
    height: 3rem;
  }
  .sm\:h-8 {
    height: 2rem;
  }
  .sm\:w-20 {
    width: 5rem;
  }
  .sm\:w-8 {
    width: 2rem;
  }
  .sm\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .sm\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .sm\:flex-row {
    flex-direction: row;
  }
  .sm\:items-center {
    align-items: center;
  }
  .sm\:gap-3 {
    gap: 0.75rem;
  }
  .sm\:p-2 {
    padding: 0.5rem;
  }
  .sm\:px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .sm\:text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
}
@media (min-width: 768px) {
  .md\:mb-0 {
    margin-bottom: 0px;
  }
  .md\:block {
    display: block;
  }
  .md\:inline {
    display: inline;
  }
  .md\:hidden {
    display: none;
  }
  .md\:h-10 {
    height: 2.5rem;
  }
  .md\:h-14 {
    height: 3.5rem;
  }
  .md\:h-6 {
    height: 1.5rem;
  }
  .md\:h-64 {
    height: 16rem;
  }
  .md\:h-\[430px\] {
    height: 430px;
  }
  .md\:w-10 {
    width: 2.5rem;
  }
  .md\:w-24 {
    width: 6rem;
  }
  .md\:w-6 {
    width: 1.5rem;
  }
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .md\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .md\:grid-cols-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
  .md\:flex-row {
    flex-direction: row;
  }
  .md\:items-center {
    align-items: center;
  }
  .md\:justify-between {
    justify-content: space-between;
  }
  .md\:gap-6 {
    gap: 1.5rem;
  }
  .md\:gap-8 {
    gap: 2rem;
  }
  .md\:p-12 {
    padding: 3rem;
  }
  .md\:p-3 {
    padding: 0.75rem;
  }
  .md\:px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .md\:py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
  .md\:py-24 {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
  .md\:py-6 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
  .md\:text-right {
    text-align: right;
  }
  .md\:text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
  }
  .md\:text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
  .md\:text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
  .md\:text-5xl {
    font-size: 3rem;
    line-height: 1;
  }
  .md\:text-\[16rem\] {
    font-size: 16rem;
  }
  .md\:text-base {
    font-size: 1rem;
    line-height: 1.5rem;
  }
  .md\:text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
}
@media (min-width: 1024px) {
  .lg\:top-8 {
    top: 2rem;
  }
  .lg\:order-none {
    order: 0;
  }
  .lg\:col-span-1 {
    grid-column: span 1 / span 1;
  }
  .lg\:col-span-2 {
    grid-column: span 2 / span 2;
  }
  .lg\:block {
    display: block;
  }
  .lg\:flex {
    display: flex;
  }
  .lg\:hidden {
    display: none;
  }
  .lg\:h-12 {
    height: 3rem;
  }
  .lg\:h-16 {
    height: 4rem;
  }
  .lg\:h-80 {
    height: 20rem;
  }
  .lg\:h-\[510px\] {
    height: 510px;
  }
  .lg\:w-12 {
    width: 3rem;
  }
  .lg\:w-28 {
    width: 7rem;
  }
  .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-cols-8 {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }
  .lg\:flex-row {
    flex-direction: row;
  }
  .lg\:items-center {
    align-items: center;
  }
  .lg\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .lg\:text-left {
    text-align: left;
  }
  .lg\:text-5xl {
    font-size: 3rem;
    line-height: 1;
  }
  .lg\:text-\[20rem\] {
    font-size: 20rem;
  }
  .lg\:text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
}
@media (min-width: 1280px) {
  .xl\:h-\[570px\] {
    height: 570px;
  }
  .xl\:w-32 {
    width: 8rem;
  }
  .xl\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.dark\:bg-gray-800:where([data-theme="dark"], [data-theme="dark"] *) {
  --tw-bg-opacity: 1;
  background-color: rgb(31 41 55 / var(--tw-bg-opacity, 1));
}
.dark\:bg-wdw-black:where([data-theme="dark"], [data-theme="dark"] *) {
  --tw-bg-opacity: 1;
  background-color: rgb(31 41 55 / var(--tw-bg-opacity, 1));
}
.dark\:bg-wdw-gray-dark:where([data-theme="dark"], [data-theme="dark"] *) {
  --tw-bg-opacity: 1;
  background-color: rgb(55 65 81 / var(--tw-bg-opacity, 1));
}
.dark\:text-wdw-black:where([data-theme="dark"], [data-theme="dark"] *) {
  --tw-text-opacity: 1;
  color: rgb(31 41 55 / var(--tw-text-opacity, 1));
}
.dark\:text-wdw-gray-light:where([data-theme="dark"], [data-theme="dark"] *) {
  --tw-text-opacity: 1;
  color: rgb(243 244 246 / var(--tw-text-opacity, 1));
}
.dark\:text-wdw-yellow:where([data-theme="dark"], [data-theme="dark"] *) {
  --tw-text-opacity: 1;
  color: rgb(252 211 77 / var(--tw-text-opacity, 1));
}
.dark\:text-white:where([data-theme="dark"], [data-theme="dark"] *) {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.dark\:text-white\/70:where([data-theme="dark"], [data-theme="dark"] *) {
  color: rgb(255 255 255 / 0.7);
}
.\[\&\>h1\]\:mb-4>h1 {
  margin-bottom: 1rem;
}
.\[\&\>h1\]\:text-3xl>h1 {
  font-size: 1.875rem;
  line-height: 2.25rem;
}
.\[\&\>h1\]\:font-bold>h1 {
  font-weight: 700;
}
.\[\&\>p\:last-child\]\:mb-0>p:last-child {
  margin-bottom: 0px;
}
.\[\&\>p\]\:mb-4>p {
  margin-bottom: 1rem;
}
.\[\&\>ul\>li\>p\]\:mb-0>ul>li>p {
  margin-bottom: 0px;
}
.\[\&\>ul\>li\]\:mb-2>ul>li {
  margin-bottom: 0.5rem;
}
.\[\&\>ul\]\:mb-4>ul {
  margin-bottom: 1rem;
}
.\[\&\>ul\]\:ml-0>ul {
  margin-left: 0px;
}
.\[\&\>ul\]\:list-none>ul {
  list-style-type: none;
}