@charset "UTF-8";
/* Frontend Wholesale Pricing Styles */
.wholesale-pricing-table {
  margin: 0 0 20px;
  padding: 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.wholesale-pricing-table h4 {
  margin-top: 0;
  margin-bottom: 15px;
  color: #495057 !important;
  font-size: 26px !important;
  font-weight: 600 !important;
  text-align: center;
  border-bottom: 2px solid rgba(73, 80, 87, 0.1490196078);
  text-transform: uppercase;
  padding-bottom: 10px;
  font-family: "Cormorant Garamond", Verdana, Arial, sans-serif !important;
}

.wholesale-tiers-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 15px;
  background: white;
  overflow: hidden;
}

.wholesale-tiers-table th {
  background-color: rgba(73, 80, 87, 0.1490196078);
  color: #495057 !important;
  font-weight: 600 !important;
  padding: 15px 12px;
  text-align: center !important;
  font-size: 14px !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.wholesale-tiers-table td {
  padding: 12px;
  text-align: center !important;
  border-bottom: 1px solid #f1f3f4;
}

.wholesale-tiers-table td,
.wholesale-tiers-table td span,
.wholesale-tiers-table td span bdi,
.wholesale-tiers-table td span bdi .woocommerce-Price-currencySymbol {
  font-size: 15px !important;
  color: #454545 !important;
  font-weight: 600 !important;
}

.wholesale-tiers-table tbody tr {
  transition: all 0.3s ease;
}

.wholesale-tiers-table tbody tr:hover {
  background: #f8f9fa;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.wholesale-tiers-table tbody tr:last-child td {
  border-bottom: none;
}

/* Quantity Notice Styles */
.wholesale-quantity-notice {
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
  border: 1px solid #2196f3;
  border-left: 4px solid #1976d2;
  padding: 20px;
  margin: 20px 0;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.wholesale-quantity-notice::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #1976d2, #2196f3, #1976d2);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
.wholesale-quantity-notice h4 {
  margin-top: 0;
  margin-bottom: 10px;
  color: #1565c0;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
}

.wholesale-quantity-notice h4::before {
  content: "🏷️";
  margin-right: 10px;
  font-size: 20px;
}

.wholesale-quantity-notice p {
  margin-bottom: 0;
  color: #1976d2;
  font-weight: 500;
  line-height: 1.5;
}

/* Cart Savings Styles */
.wholesale-savings-notice {
  margin-top: 8px;
  padding: 8px 12px;
  background: linear-gradient(135deg, #e8f5e8 0%, #c8e6c9 100%);
  border: 1px solid #4caf50;
  border-radius: 6px;
  display: inline-block;
}

.wholesale-savings-notice small {
  color: #2e7d32 !important;
  font-weight: 600 !important;
  font-size: 12px;
  display: flex;
  align-items: center;
}

.wholesale-savings-notice small::before {
  content: "💰";
  margin-right: 6px;
}

/* Cart Total Savings */
.wholesale-total-savings th,
.wholesale-total-savings td {
  border-top: 3px solid #4caf50 !important;
  background: linear-gradient(135deg, #e8f5e8 0%, #c8e6c9 100%) !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  color: #2e7d32 !important;
  padding: 15px !important;
}

.wholesale-total-savings th::before {
  content: "🎉 ";
  font-size: 18px;
}

/* Product Page Price Display */
.price del {
  text-decoration: line-through;
  font-size: 0.9em;
}

.price ins {
  background: none !important;
  color: #ff0010 !important;
  font-weight: 700;
  text-decoration: none;
  font-size: 1.1em;
}

.wholesale-notice {
  color: #1976d2 !important;
  font-style: italic;
  font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
  .wholesale-pricing-table {
    margin: 15px -10px;
    padding: 15px;
    border-radius: 0;
  }
  .wholesale-tiers-table {
    font-size: 12px;
  }
  .wholesale-tiers-table th,
  .wholesale-tiers-table td {
    padding: 8px 6px;
  }
  .wholesale-tiers-table th {
    font-size: 11px;
  }
  .wholesale-quantity-notice {
    margin: 15px -10px;
    padding: 15px;
    border-radius: 0;
  }
  .wholesale-quantity-notice h4 {
    font-size: 16px;
  }
  .wholesale-savings-notice {
    display: block;
    margin-top: 5px;
    padding: 6px 10px;
  }
  .wholesale-savings-notice small {
    font-size: 11px;
  }
}
@media (max-width: 480px) {
  .wholesale-tiers-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
  .wholesale-pricing-table h4 {
    font-size: 16px;
  }
  .wholesale-quantity-notice h4::before {
    display: none;
  }
  .wholesale-savings-notice small::before {
    display: none;
  }
}
/* Print Styles */
@media print {
  .wholesale-pricing-table,
  .wholesale-quantity-notice,
  .wholesale-savings-notice {
    background: white !important;
    border: 1px solid #000 !important;
    box-shadow: none !important;
    color: #000 !important;
  }
  .wholesale-tiers-table th {
    background: #f0f0f0 !important;
    color: #000 !important;
  }
  .wholesale-quantity-notice::before {
    display: none !important;
  }
  .wholesale-quantity-notice h4::before,
  .wholesale-savings-notice small::before {
    display: none !important;
  }
}
/* High Contrast Mode */
@media (prefers-contrast: high) {
  .wholesale-pricing-table {
    border: 2px solid #000;
    background: #fff;
  }
  .wholesale-tiers-table th {
    background: #000;
    color: #fff;
  }
  .wholesale-tiers-table td {
    border-bottom: 1px solid #000;
  }
  .wholesale-quantity-notice {
    border: 2px solid #000;
    background: #fff;
    color: #000;
  }
  .wholesale-savings-notice {
    border: 2px solid #000;
    background: #fff;
  }
  .wholesale-savings-notice small {
    color: #000 !important;
  }
}
/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .wholesale-tiers-table tbody tr,
  .wholesale-quantity-notice::before {
    transition: none;
    animation: none;
  }
}
/* Focus Styles for Accessibility */
.wholesale-tiers-table:focus-within {
  outline: 2px solid #007cba;
  outline-offset: 2px;
}

/* Loading State */
.wholesale-pricing-table.loading {
  opacity: 0.6;
  pointer-events: none;
  position: relative;
}

.wholesale-pricing-table.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 30px;
  margin: -15px 0 0 -15px;
  border: 3px solid #f3f3f3;
  border-top: 3px solid #007cba;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Success Animation */
.wholesale-savings-notice.animate {
  animation: pulse 0.6s ease-in-out;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
/* Tooltip Enhancement */
.wholesale-pricing-table [title] {
  cursor: help;
  border-bottom: 1px dotted #007cba;
}

/* Badge Styles */
.wholesale-badge {
  display: inline-block;
  padding: 4px 8px;
  background: #007cba;
  color: white;
  font-size: 11px;
  font-weight: 600;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-left: 8px;
}

.wholesale-badge.savings {
  background: #4caf50;
}

.wholesale-badge.new {
  background: #ff9800;
  animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
  from {
    box-shadow: 0 0 5px #ff9800;
  }
  to {
    box-shadow: 0 0 15px #ff9800, 0 0 20px #ff9800;
  }
}
.wholesale-badge.limited {
  background: #e91e63;
  position: relative;
  overflow: hidden;
}

.wholesale-badge.limited::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shine 2s infinite;
}

@keyframes shine {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}
/* Quantity Input Enhancement */
.wholesale-quantity-selector {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 15px 0;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #dee2e6;
}

.wholesale-quantity-selector label {
  font-weight: 600;
  color: #495057;
  margin-bottom: 0;
}

.wholesale-quantity-selector .quantity-buttons {
  display: flex;
  align-items: center;
  gap: 5px;
}

.wholesale-quantity-selector .qty-btn {
  background: #007cba;
  color: white;
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease;
}

.wholesale-quantity-selector .qty-btn:hover {
  background: #005a8b;
  transform: scale(1.1);
}

.wholesale-quantity-selector .qty-btn:active {
  transform: scale(0.95);
}

.wholesale-quantity-selector input[type=number] {
  width: 80px;
  text-align: center;
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-weight: 600;
}

/* Tier Highlight Animation */
.wholesale-tiers-table tbody tr.active-tier {
  background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
  border-left: 4px solid #ffc107;
  animation: highlight 1s ease-in-out;
}

@keyframes highlight {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
  100% {
    transform: scale(1);
  }
}
.wholesale-tiers-table tbody tr.active-tier td {
  font-weight: 600;
  color: #856404;
}

/* Progress Bar for Next Tier */
.wholesale-progress-container {
  margin: 15px 0;
  padding: 15px;
  background: white;
  border-radius: 8px;
  border: 1px solid #dee2e6;
}

.wholesale-progress-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  font-size: 14px;
  color: #495057;
}

.wholesale-progress-bar {
  width: 100%;
  height: 12px;
  background: #e9ecef;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.wholesale-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #007cba, #28a745);
  border-radius: 6px;
  transition: width 0.8s ease;
  position: relative;
}

.wholesale-progress-fill::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: progress-shine 2s infinite;
}

@keyframes progress-shine {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
/* Bulk Order Form */
.wholesale-bulk-order {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border: 2px dashed #007cba;
  border-radius: 12px;
  padding: 25px;
  margin: 20px 0;
  text-align: center;
}

.wholesale-bulk-order h4 {
  color: #007cba;
  margin-bottom: 15px;
  font-size: 20px;
}

.wholesale-bulk-order p {
  color: #6c757d;
  margin-bottom: 20px;
  line-height: 1.6;
}

.wholesale-bulk-order .bulk-order-btn {
  background: linear-gradient(135deg, #007cba 0%, #28a745 100%);
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.wholesale-bulk-order .bulk-order-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 124, 186, 0.3);
}

/* Comparison Table */
.wholesale-comparison {
  margin: 25px 0;
  overflow-x: auto;
}

.wholesale-comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.wholesale-comparison-table th {
  background: linear-gradient(135deg, #495057 0%, #343a40 100%);
  color: white;
  padding: 15px;
  text-align: center;
  font-weight: 600;
}

.wholesale-comparison-table td {
  padding: 12px 15px;
  text-align: center;
  border-bottom: 1px solid #f1f3f4;
}

.wholesale-comparison-table .regular-price {
  color: #dc3545;
  font-weight: 600;
}

.wholesale-comparison-table .wholesale-price {
  color: #28a745;
  font-weight: 700;
  font-size: 1.1em;
}

.wholesale-comparison-table .savings-amount {
  color: #007cba;
  font-weight: 600;
  background: #e3f2fd;
  border-radius: 4px;
  padding: 4px 8px;
}

/* Testimonial Section */
.wholesale-testimonial {
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
  border-left: 4px solid #28a745;
  padding: 20px;
  margin: 20px 0;
  border-radius: 0 8px 8px 0;
  position: relative;
}

.wholesale-testimonial::before {
  content: '"';
  font-size: 60px;
  color: #28a745;
  position: absolute;
  top: -10px;
  left: 15px;
  font-family: serif;
  opacity: 0.3;
}

.wholesale-testimonial blockquote {
  margin: 0;
  font-style: italic;
  color: #495057;
  line-height: 1.6;
  padding-left: 30px;
}

.wholesale-testimonial cite {
  display: block;
  text-align: right;
  margin-top: 10px;
  font-weight: 600;
  color: #007cba;
}

/* FAQ Section */
.wholesale-faq {
  margin: 25px 0;
}

.wholesale-faq-item {
  border: 1px solid #dee2e6;
  border-radius: 8px;
  margin-bottom: 10px;
  overflow: hidden;
}

.wholesale-faq-question {
  background: #f8f9fa;
  padding: 15px 20px;
  cursor: pointer;
  font-weight: 600;
  color: #495057;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
}

.wholesale-faq-question:hover {
  background: #e9ecef;
}

.wholesale-faq-question::after {
  content: "+";
  font-size: 20px;
  font-weight: bold;
  color: #007cba;
  transition: transform 0.3s ease;
}

.wholesale-faq-question.active::after {
  transform: rotate(45deg);
}

.wholesale-faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  background: white;
}

.wholesale-faq-answer.active {
  padding: 15px 20px;
  max-height: 200px;
}

.wholesale-faq-answer p {
  margin: 0;
  color: #6c757d;
  line-height: 1.6;
}

/* Contact CTA */
.wholesale-contact-cta {
  background: linear-gradient(135deg, #007cba 0%, #28a745 100%);
  color: white;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  margin: 30px 0;
  position: relative;
  overflow: hidden;
}

.wholesale-contact-cta::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.wholesale-contact-cta h3 {
  margin-bottom: 15px;
  font-size: 24px;
  position: relative;
  z-index: 1;
}

.wholesale-contact-cta p {
  margin-bottom: 20px;
  font-size: 16px;
  opacity: 0.9;
  position: relative;
  z-index: 1;
}

.wholesale-contact-cta .contact-btn {
  background: white;
  color: #007cba;
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.wholesale-contact-cta .contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Mobile Enhancements */
@media (max-width: 768px) {
  .wholesale-quantity-selector {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
  }
  .wholesale-quantity-selector .quantity-buttons {
    justify-content: center;
  }
  .wholesale-bulk-order {
    padding: 20px 15px;
  }
  .wholesale-bulk-order h4 {
    font-size: 18px;
  }
  .wholesale-comparison {
    margin: 20px -15px;
  }
  .wholesale-contact-cta {
    margin: 20px -15px;
    border-radius: 0;
  }
  .wholesale-testimonial {
    margin: 15px -10px;
    border-radius: 0 4px 4px 0;
  }
}
/* Accessibility Improvements */
.wholesale-tiers-table th[scope=col] {
  text-align: center;
}

.wholesale-tiers-table td[data-label]::before {
  content: attr(data-label) ": ";
  font-weight: bold;
  display: none;
}

@media (max-width: 600px) {
  .wholesale-tiers-table,
  .wholesale-tiers-table thead,
  .wholesale-tiers-table tbody,
  .wholesale-tiers-table th,
  .wholesale-tiers-table td,
  .wholesale-tiers-table tr {
    display: block;
  }
  .wholesale-tiers-table thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }
  .wholesale-tiers-table tr {
    border: 1px solid #ccc;
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 8px;
    background: white;
  }
  .wholesale-tiers-table td {
    border: none;
    position: relative;
    padding: 8px 8px 8px 50%;
    text-align: left;
  }
  .wholesale-tiers-table td[data-label]::before {
    display: inline;
    position: absolute;
    left: 6px;
    width: 45%;
    padding-right: 10px;
    white-space: nowrap;
    color: #007cba;
  }
}/*# sourceMappingURL=jlessentials-wholesale-frontend.css.map */