/** Shopify CDN: Minification failed

Line 1340:0 Expected "}" to go with "{"

**/
/* ===============================================
   TEA IN TEXAS - FRONT-END REDESIGN STYLES
   Added: October 2025
   Purpose: Visual redesign - color palette, typography, badges, indicators
   =============================================== */

/* ========== COLOR PALETTE ========== */
:root {
  --tea-brown: #5C4033;
  --burnt-orange: #BF5700;
  --sage-green: #9CAF88;
  --warm-gold: #D4AF37;
  --cream-beige: #F5F1E8;
  --charcoal: #3A3A3A;

  /* Tea Type Colors */
  --black-tea: #4A2511;
  --green-tea: #7FB069;
  --herbal-tea: #9B59B6;
  --iced-tea: #5DADE2;
  --rooibos: #C14533;
}

/* ========== TYPOGRAPHY IMPROVEMENTS ========== */
body {
  font-size: 16px;
  line-height: 1.7;
  color: var(--charcoal);
}

h1, h2, h3, h4, h5, h6 {
  color: var(--tea-brown);
  font-weight: 600;
  line-height: 1.3;
}

h1 { font-size: 48px; }
h2 { font-size: 36px; }
h3 { font-size: 28px; }
h4 { font-size: 22px; }

@media (max-width: 767px) {
  h1 { font-size: 32px; }
  h2 { font-size: 28px; }
  h3 { font-size: 24px; }
  h4 { font-size: 20px; }
}

/* ========== TEA TYPE BADGE ========== */
.tea-type-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  padding: 6px 12px;
  color: white;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 2px;
  z-index: 10;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* ========== CAFFEINE INDICATOR ========== */
.caffeine-indicator {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  margin-top: 8px;
  font-weight: 500;
}

.caffeine-icon {
  font-size: 16px;
  line-height: 1;
}

.caffeine-text {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

/* ========== PRODUCT CARD ENHANCEMENTS ========== */
.product-block {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-block:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.product-block .image {
  position: relative;
  overflow: hidden;
}

.product-block .image img {
  transition: transform 0.3s ease;
}

.product-block:hover .image img {
  transform: scale(1.05);
}

/* ========== BUTTON STYLING ========== */
.btn,
button[type="submit"],
.button,
.product-add {
  background-color: #be1e1e;
  color: white;
  border: none;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 4px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn:hover,
button[type="submit"]:hover,
.button:hover,
.product-add:hover {
  background-color: #8b1515;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(190, 30, 30, 0.3);
}

.btn.alt,
.btn.secondary {
  background-color: var(--sage-green);
}

.btn.alt:hover,
.btn.secondary:hover {
  background-color: #89a077;
}

/* ========== ANNOUNCEMENT BAR ========== */
.announcement-bar {
  background-color: #fff;
  color: #be1e1e;
  text-align: center;
  padding: 12px 0;
  font-size: 16px;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  width: 100%;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Make container full-width for announcement bar */
.announcement-bar .container {
  max-width: 100%;
  width: 100%;
  padding: 0;
  margin: 0;
}

.announcement-bar a {
  color: #be1e1e;
  text-decoration: none;
  font-weight: 600;
}

.announcement-bar__close {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #be1e1e;
  font-size: 20px;
  cursor: pointer;
  padding: 0;
  width: 24px;
  height: 24px;
  line-height: 24px;
}

/* ========== SCROLLING ANNOUNCEMENT BAR ========== */
.announcement-bar__text--scrolling {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.announcement-bar__message {
  display: inline-block;
  white-space: nowrap;
  animation: scroll-left 30s linear infinite;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-20%);
  }
}

/* Pause scrolling on hover */
.announcement-bar__message:hover {
  animation-play-state: paused;
}

/* Make sure social icons don't interfere with scrolling */
.announcement-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 100%;
}

.announcement-bar__text--scrolling {
  flex: 1;
  min-width: 0;
  width: 100%;
  max-width: 100%;
}

/* ========== HERO SECTION STYLING ========== */
.hero-section {
  position: relative;
  height: 550px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  background-size: cover;
  background-position: center;
  margin-bottom: 64px;
}

.hero-section__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(92, 64, 51, 0.5);
  z-index: 1;
}

.hero-section__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}

.hero-section__headline {
  font-size: 54px;
  font-weight: 700;
  margin-bottom: 16px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
  line-height: 1.2;
}

.hero-section__subheadline {
  font-size: 22px;
  margin-bottom: 40px;
  font-weight: 400;
  opacity: 0.95;
}

.hero-section__buttons {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-section__button {
  padding: 16px 32px;
  font-size: 16px;
  min-width: 180px;
  text-decoration: none;
  display: inline-block;
}

.hero-section__trust {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  padding: 16px 32px;
  border-radius: 4px;
  display: flex;
  gap: 32px;
  font-size: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-section__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

@media (max-width: 767px) {
  .hero-section {
    height: 400px;
  }

  .hero-section__headline {
    font-size: 32px;
  }

  .hero-section__subheadline {
    font-size: 16px;
  }

  .hero-section__buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-section__button {
    width: 100%;
    max-width: 280px;
  }

  .hero-section__trust {
    flex-direction: column;
    gap: 12px;
    padding: 12px 20px;
    font-size: 12px;
  }
}

/* ========== TRUST SIGNALS ========== */
.trust-signals {
  display: flex;
  gap: 32px;
  justify-content: center;
  align-items: center;
  padding: 24px 0;
  flex-wrap: wrap;
}

.trust-signal {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--tea-brown);
}

.trust-signal__icon {
  font-size: 24px;
  color: var(--sage-green);
}

/* ========== COLLECTION FILTERS ENHANCEMENT ========== */
.collection-filters {
  background-color: var(--cream-beige);
  padding: 24px;
  border-radius: 4px;
  margin-bottom: 32px;
}

.collection-filters h4 {
  font-size: 18px;
  margin-bottom: 16px;
  color: var(--tea-brown);
}

/* ========== PRODUCT GRID SPACING ========== */
.product-grid {
  gap: 24px;
  margin-bottom: 48px;
}

/* ========== STAR RATING STYLING ========== */
.shopify-product-reviews-badge .spr-badge-starrating {
  color: var(--warm-gold) !important;
}

.spr-icon-star {
  color: var(--warm-gold) !important;
}

/* ========== PRICE STYLING ========== */
.product-block .price {
  font-size: 20px;
  font-weight: 600;
  color: var(--tea-brown);
  margin-top: 8px;
}

.product-block .price.on-sale {
  color: #C14533;
}

.product-block .price del {
  color: #999;
  font-size: 16px;
  margin-left: 8px;
}

/* ========== FOOTER ENHANCEMENTS ========== */
.site-footer {
  background-color: var(--tea-brown);
  color: var(--cream-beige);
}

.site-footer a {
  color: var(--cream-beige);
  transition: color 0.3s ease;
}

.site-footer a:hover {
  color: var(--burnt-orange);
}

.site-footer h4 {
  color: var(--cream-beige);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

/* ========== BACK TO TOP BUTTON ========== */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background-color: var(--burnt-orange);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: #A34D00;
  transform: translateY(-4px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.3);
}

/* ========== SECTION SPACING ========== */
.section {
  padding: 64px 0;
}

.section--tight {
  padding: 48px 0;
}

.section--loose {
  padding: 80px 0;
}

@media (max-width: 767px) {
  .section {
    padding: 48px 0;
  }

  .section--tight {
    padding: 32px 0;
  }

  .section--loose {
    padding: 56px 0;
  }
}

/* ========== CART IMPROVEMENTS ========== */
.cart-summary {
  background-color: var(--cream-beige);
  padding: 24px;
  border-radius: 4px;
}

.cart-summary__total {
  font-size: 24px;
  font-weight: 700;
  color: var(--tea-brown);
}

/* ========== FORM STYLING ========== */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="search"],
textarea,
select {
  border: 1px solid #ddd;
  padding: 12px 16px;
  font-size: 16px;
  border-radius: 4px;
  transition: border-color 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="search"]:focus,
textarea:focus,
select:focus {
  border-color: var(--burnt-orange);
  outline: none;
}

/* ========== SEARCH BAR ENHANCEMENT ========== */
.main-search__input {
  border: 1px solid #ddd;
  padding: 12px 16px;
  font-size: 16px;
  border-radius: 4px;
}

.main-search__input:focus {
  border-color: var(--burnt-orange);
  outline: none;
}

/* ========== MOBILE OPTIMIZATIONS ========== */
@media (max-width: 767px) {
  /* Larger touch targets for mobile */
  .btn,
  button,
  a.button {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  /* Improved mobile spacing */
  .product-grid {
    gap: 16px;
  }

  /* Stack elements on mobile */
  .hero-section__trust {
    flex-direction: column;
    gap: 8px;
  }
}

/* ========== ACCESSIBILITY ========== */
/* Skip to content link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--burnt-orange);
  color: white;
  padding: 8px 16px;
  text-decoration: none;
  z-index: 100;
}

.skip-link:focus {
  top: 0;
}

/* Focus states */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--burnt-orange);
  outline-offset: 2px;
}

/* ========== LOADING STATES ========== */
.loading {
  opacity: 0.6;
  pointer-events: none;
}

.loading-spinner {
  border: 3px solid rgba(191, 87, 0, 0.1);
  border-radius: 50%;
  border-top: 3px solid var(--burnt-orange);
  width: 24px;
  height: 24px;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ========== UTILITY CLASSES ========== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-48 { margin-top: 48px; }
.mt-64 { margin-top: 64px; }

.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-48 { margin-bottom: 48px; }
.mb-64 { margin-bottom: 64px; }

.color-tea-brown { color: var(--tea-brown); }
.color-burnt-orange { color: var(--burnt-orange); }
.color-sage-green { color: var(--sage-green); }

.bg-cream { background-color: var(--cream-beige); }
.bg-tea-brown { background-color: var(--tea-brown); color: var(--cream-beige); }

/* ========== PRODUCT PAGE OVERRIDES ========== */
/* Override general styles for product detail pages with red accents */

/* Hide reviews */
.product-container .themed-product-reviews,
.product-container .theme-product-reviews-full {
  display: none !important;
}

/* Hide grey line under product box */
.product-container .product-mob-collection-links.border-top {
  border-top: none !important;
}

.product-container .section.border-top {
  border-top: none !important;
}

/* Remove border from You May Also Like section */
.product-recommendations {
  border-top: none !important;
  margin-top: 40px !important;
}

/* Product title - Black, reduced size */
.product-container .product-details h1.product-title {
  color: #000 !important;
  font-weight: 700 !important;
  font-size: 26px !important;
  line-height: 1.2 !important;
  margin-bottom: 16px !important;
  text-transform: none !important;
}

/* Brand and type - RED instead of brown */
.product-container .product-details .brand-and-type {
  color: #be1e1e !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.8px !important;
  margin-bottom: 8px !important;
}

.product-container .product-details .brand-and-type .brand,
.product-container .product-details .brand-and-type .type {
  color: #be1e1e !important;
}

.product-container .product-details .brand-and-type a {
  color: #be1e1e !important;
  text-decoration: none !important;
  transition: color 0.3s ease !important;
}

.product-container .product-details .brand-and-type a:hover {
  color: #8b1515 !important;
  text-decoration: underline !important;
}

/* Price styling */
.product-container .product-details #price.product-price {
  margin: 16px 0 !important;
}

.product-container .product-details #price .current-price {
  color: #000 !important;
  font-size: 22px !important;
  font-weight: 700 !important;
}

.product-container .product-details #price.on-sale .current-price {
  color: #be1e1e !important;
}

.product-container .product-details #price .was-price {
  color: #999 !important;
  font-size: 18px !important;
  text-decoration: line-through !important;
  margin-left: 8px !important;
}

/* Product weight */
.product-container .product-weight {
  color: #666 !important;
  font-size: 12px !important;
  margin-bottom: 12px !important;
}

/* SKU */
.product-container .product-details .sku {
  color: #666 !important;
  font-size: 11px !important;
}

/* Option labels */
.product-container .product-details .selector-wrapper label {
  color: #000 !important;
  font-weight: 600 !important;
  font-size: 12px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.4px !important;
}

/* Select dropdowns */
.product-container .product-details .selector-wrapper select {
  border: 2px solid #e0e0e0 !important;
  border-radius: 4px !important;
  padding: 10px !important;
  font-size: 13px !important;
  color: #000 !important;
  background: #fff !important;
  transition: border-color 0.3s ease !important;
}

.product-container .product-details .selector-wrapper select:hover,
.product-container .product-details .selector-wrapper select:focus {
  border-color: #be1e1e !important;
  outline: none !important;
}

/* Inventory notice */
.product-container .product-inventory-notice {
  color: #be1e1e !important;
  font-weight: 600 !important;
  font-size: 15px !important;
  margin-bottom: 12px !important;
}

/* Quantity adjuster - Compact, auto width */
.product-container .qty-adjuster {
  border: 2px solid #e0e0e0 !important;
  border-radius: 4px !important;
  width: auto !important;
  max-width: none !important;
  min-width: 0 !important;
}

.product-container .qty-adjuster__inner {
  display: flex !important;
  align-items: center !important;
  height: 48px !important;
}

.product-container .qty-adjuster button {
  color: #000 !important;
  transition: background 0.3s ease !important;
  width: 48px !important;
  height: 48px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
}

.product-container .qty-adjuster button svg {
  display: block !important;
  margin: auto !important;
}

.product-container .qty-adjuster button:hover:not(:disabled) {
  background: #f5f5f5 !important;
}

.product-container .qty-adjuster__value {
  color: #000 !important;
  font-weight: 600 !important;
  font-size: 16px !important;
  height: 48px !important;
  line-height: 48px !important;
  text-align: center !important;
  flex: 1 !important;
  border: none !important;
  padding: 0 !important;
}

/* Add to cart button - Red with white text */
.product-container .product-details button.product-add.btn {
  background: #be1e1e !important;
  color: #fff !important;
  border: 2px solid #be1e1e !important;
  font-weight: 700 !important;
  font-size: 13px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.8px !important;
  padding: 13px 26px !important;
  border-radius: 4px !important;
  transition: all 0.3s ease !important;
  cursor: pointer !important;
}

.product-container .product-details button.product-add.btn:hover {
  background: #8b1515 !important;
  border-color: #8b1515 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 12px rgba(190, 30, 30, 0.3) !important;
}

.product-container .product-details button.product-add.btn:active {
  transform: translateY(0) !important;
}

/* Product description */
.product-container .product-description.rte {
  color: #333 !important;
  font-size: 13px !important;
  line-height: 1.7 !important;
  margin-top: 24px !important;
}

.product-container .product-description.rte h1,
.product-container .product-description.rte h2,
.product-container .product-description.rte h3,
.product-container .product-description.rte h4 {
  color: #be1e1e !important;
  font-weight: 700 !important;
  margin-top: 24px !important;
  margin-bottom: 12px !important;
}

.product-container .product-description.rte p {
  margin-bottom: 12px !important;
  color: #333 !important;
}

.product-container .product-description.rte a {
  color: #be1e1e !important;
  text-decoration: underline !important;
}

.product-container .product-description.rte a:hover {
  color: #8b1515 !important;
}

/* Product policies */
.product-container .product-policies.rte {
  color: #666 !important;
  font-size: 11px !important;
  margin-top: 8px !important;
}

.product-container .product-policies.rte a {
  color: #be1e1e !important;
}

/* Back links */
.product-container .back-link a,
.product-container .standard-link {
  color: #be1e1e !important;
  text-decoration: none !important;
  transition: color 0.3s ease !important;
}

.product-container .back-link a:hover,
.product-container .standard-link:hover {
  color: #8b1515 !important;
  text-decoration: underline !important;
}

/* Section spacing */
.product-container .product-section {
  padding: 16px 0 !important;
}

.product-container .product-title-row {
  padding-bottom: 16px !important;
}

/* Store availability */
.product-container .store-availability-container {
  margin-top: 16px !important;
  padding: 12px !important;
  background: #f9f9f9 !important;
  border-radius: 4px !important;
  border-left: 3px solid #be1e1e !important;
}

/* Social sharing - HIDDEN */
.product-container .social-sharing {
  display: none !important;
}

/* Product layout - Everything in one container - NARROWER */
.product-container .row.product-page-space-above {
  display: block !important;
  width: 90% !important;
  max-width: 1400px !important;
  margin: 0 auto !important;
  background: #fff !important;
  padding: 30px !important;
  border: 1px solid #e8e8e8 !important;
  border-radius: 6px !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06) !important;
}

/* Image column - move inside container on left, 25% width */
.product-container .product-gallery.half.column {
  float: left !important;
  width: 25% !important;
  max-width: 25% !important;
  min-width: 25% !important;
  margin-right: 30px !important;
  margin-bottom: 20px !important;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
}

/* Product details column - flow to right of image, 70% width */
.product-container .product-details.half.column {
  float: none !important;
  width: auto !important;
  max-width: none !important;
  min-width: 0 !important;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  overflow: hidden !important;
}

/* Product container theming - Ensure full width */
.product-container.container {
  background: #fafafa !important;
  padding: 40px 20px !important;
  max-width: 100% !important;
  width: 100% !important;
}

/* Product title row with accent border */
.product-container .product-title-row.border-bottom {
  border-bottom: 2px solid #be1e1e !important;
  padding-bottom: 20px !important;
  margin-bottom: 20px !important;
}

/* Product sections with better spacing */
.product-container .product-section.border-bottom {
  border-bottom: 1px solid #e8e8e8 !important;
  padding: 20px 0 !important;
  margin-bottom: 20px !important;
}

/* Payment and quantity section styling - Tight layout */
.product-container .payment-and-quantity {
  background: transparent !important;
  padding: 0 !important;
  border-radius: 0 !important;
  margin-top: 15px !important;
  display: flex !important;
  flex-direction: row !important;
  gap: 10px !important;
  align-items: center !important;
}

/* Quantity section - compact grey box */
.product-container .payment-and-quantity .quantity {
  flex: 0 0 auto !important;
  width: auto !important;
  min-width: 0 !important;
  background: #f9f9f9 !important;
  padding: 10px !important;
  border-radius: 6px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

/* Add button - auto width, sits right next to quantity */
.product-container .payment-and-quantity .payment-and-quantity__add {
  flex: 0 0 auto !important;
  display: flex !important;
  align-items: center !important;
}

/* Increase font sizes for product information */
.product-container .product-details h1.product-title {
  font-size: 32px !important;
  margin-bottom: 20px !important;
}

.product-container .product-details .brand-and-type {
  font-size: 13px !important;
  margin-bottom: 12px !important;
}

.product-container .product-details #price .current-price {
  font-size: 28px !important;
}

.product-container .product-details #price .was-price {
  font-size: 22px !important;
}

.product-container .product-details .selector-wrapper label {
  font-size: 14px !important;
}

.product-container .product-details .selector-wrapper select {
  font-size: 15px !important;
  padding: 12px !important;
}

.product-container .product-description.rte {
  font-size: 15px !important;
  line-height: 1.8 !important;
}

.product-container .product-description.rte h1,
.product-container .product-description.rte h2,
.product-container .product-description.rte h3,
.product-container .product-description.rte h4 {
  font-size: 22px !important;
}

/* Add to cart button - auto width */
.product-container .product-details button.product-add.btn {
  font-size: 15px !important;
  padding: 16px 32px !important;
  width: auto !important;
  white-space: nowrap !important;
}

/* Mobile responsive */
@media (max-width: 767px) {
  /* Stack layout on mobile */
  .product-container .row.product-page-space-above {
    padding: 20px !important;
  }

  .product-container .product-gallery.half.column {
    float: none !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-right: 0 !important;
    margin-bottom: 20px !important;
  }

  .product-container .product-details.half.column {
    width: 100% !important;
  }

  .product-container {
    padding: 20px 10px !important;
  }

  .product-container .product-details h1.product-title {
    font-size: 24px !important;
  }

  .product-container .product-details #price .current-price {
    font-size: 22px !important;
  }

  .product-container .product-details #price .was-price {
    font-size: 18px !important;
  }

  .product-container .payment-and-quantity {
    flex-direction: column !important;
    padding: 12px !important;
  }

  .product-container .payment-and-quantity .quantity {
    flex: 0 0 auto !important;
    width: 100% !important;
    min-width: 100% !important;
  }

  .product-container .qty-adjuster {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 100% !important;
  }

  .product-container .product-details button.product-add.btn {
    font-size: 14px !important;
    padding: 14px 24px !important;
  }
}

/* ========== CUSTOMER ACCOUNT MOBILE FIX ========== */
@media (max-width: 767px) {
  /* Ensure containers don't overflow */
  #customer-order.container,
  #customer-account.container {
    padding-left: 15px !important;
    padding-right: 15px !important;
    overflow-x: hidden !important;
  }

  .reading-column {
    overflow-x: hidden !important;
  }

  /* Stack billing/shipping addresses on mobile */
  #customer-order .row .half.column {
    width: 100% !important;
    float: none !important;
    margin-bottom: 20px !important;
  }

  /* Stack customer account sidebar on mobile */
  #customer-account .row .column {
    width: 100% !important;
    float: none !important;
    margin-bottom: 20px !important;
  }

  /* ===== CUSTOMER ACCOUNT ORDER HISTORY TABLE ===== */
  #customer_orders table.fullwidth {
    border: 0 !important;
    display: block !important;
  }

  #customer_orders table.fullwidth thead {
    display: none !important;
  }

  #customer_orders table.fullwidth tbody {
    display: block !important;
  }

  #customer_orders table.fullwidth tbody tr {
    display: block !important;
    margin-bottom: 15px !important;
    border: 2px solid #e0e0e0 !important;
    border-left: 5px solid #be1e1e !important;
    border-radius: 8px !important;
    padding: 15px !important;
    background: #fff !important;
  }

  #customer_orders table.fullwidth tbody td {
    display: block !important;
    text-align: left !important;
    padding: 8px 0 !important;
    border: none !important;
    width: 100% !important;
  }

  #customer_orders table.fullwidth tbody td::before {
    content: attr(data-label);
    font-weight: bold !important;
    color: #be1e1e !important;
    display: block !important;
    margin-bottom: 5px !important;
    font-size: 12px !important;
    text-transform: uppercase !important;
  }

  /* Order number */
  #customer_orders table.fullwidth tbody td:nth-child(1)::before {
    content: "Order Number";
  }

  /* Date */
  #customer_orders table.fullwidth tbody td:nth-child(2)::before {
    content: "Date";
  }

  /* Payment status */
  #customer_orders table.fullwidth tbody td:nth-child(3)::before {
    content: "Payment Status";
  }

  /* Fulfillment status */
  #customer_orders table.fullwidth tbody td:nth-child(4)::before {
    content: "Fulfillment Status";
  }

  /* Total */
  #customer_orders table.fullwidth tbody td:nth-child(5)::before {
    content: "Total";
  }

  /* Restructure order table vertically on mobile */
  #order_details {
    border: 0 !important;
    display: block !important;
  }

  /* Hide table header on mobile */
  #order_details thead {
    display: none !important;
  }

  #order_details tbody {
    display: block !important;
  }

  /* Make each row a card */
  #order_details tbody tr {
    display: block !important;
    margin-bottom: 20px !important;
    border: 2px solid #e0e0e0 !important;
    border-radius: 8px !important;
    padding: 15px !important;
    background: #fff !important;
  }

  /* Stack table cells vertically */
  #order_details tbody td {
    display: block !important;
    text-align: left !important;
    padding: 8px 0 !important;
    border: none !important;
    width: 100% !important;
  }

  /* Add labels to each cell using ::before */
  #order_details tbody td::before {
    content: attr(data-label);
    font-weight: bold !important;
    color: #be1e1e !important;
    display: block !important;
    margin-bottom: 5px !important;
    font-size: 12px !important;
    text-transform: uppercase !important;
  }

  /* Product cell */
  #order_details tbody td:nth-child(1)::before {
    content: "Product";
  }

  /* SKU cell */
  #order_details tbody td:nth-child(2)::before {
    content: "SKU";
  }

  /* Price cell */
  #order_details tbody td:nth-child(3)::before {
    content: "Price";
  }

  /* Quantity cell */
  #order_details tbody td:nth-child(4)::before {
    content: "Quantity";
  }

  /* Total cell */
  #order_details tbody td:nth-child(5)::before {
    content: "Total";
  }

  /* Footer rows (subtotal, shipping, tax, total) */
  #order_details tfoot {
    display: block !important;
  }

  #order_details tfoot tr {
    display: block !important;
    padding: 10px 0 !important;
    border-bottom: 1px solid #e0e0e0 !important;
  }

  #order_details tfoot td {
    display: inline-block !important;
    border: none !important;
    padding: 5px 0 !important;
  }

  #order_details tfoot td.label {
    width: 60% !important;
    text-align: left !important;
  }

  #order_details tfoot td.total {
    width: 38% !important;
    text-align: right !important;
  }

  #order_details tfoot .order_total {
    border-top: 2px solid #be1e1e !important;
    padding-top: 15px !important;
    margin-top: 10px !important;
    font-weight: bold !important;
  }

  #order_details tfoot .order_total td {
    font-size: 16px !important;
  }
}
/* ========== WHOLESALE WIDGET CUSTOMIZATION ========== */
  /* Hide wholesale widget button completely */
.cb-wholesale-container {
    display: none !important;

