@charset "UTF-8";
/* CSS Variables and Base Styles */
:root {
  --stdvmvl-primary: #A88030;
  --stdvmvl-primary-dark: #8A6B28;
  --stdvmvl-primary-light: #C4A15C;
  --stdvmvl-secondary: #2D2D2D;
  --stdvmvl-accent: #F5F5F5;
  --stdvmvl-gradient-main: linear-gradient(135deg, #A88030 0%, #C4A15C 100%);
  --stdvmvl-gradient-hero: linear-gradient(135deg, #A88030 0%, #C4A15C 50%, #E6D18A 100%);
  --stdvmvl-gradient-card: linear-gradient(145deg, #ffffff 0%, #fdfcf8 100%);
  --stdvmvl-bg-light: #fdfcf8;
  --stdvmvl-bg-surface: #ffffff;
  --stdvmvl-border: #e8e5dc;
  --stdvmvl-text: #2D2D2D;
  --stdvmvl-text-muted: #6B6B6B;
  --stdvmvl-shadow-sm: 0 4px 12px rgba(168, 128, 48, 0.08);
  --stdvmvl-shadow: 0 10px 40px rgba(168, 128, 48, 0.12);
  --stdvmvl-shadow-lg: 0 25px 60px rgba(168, 128, 48, 0.15);
  --stdvmvl-radius: 16px;
  --stdvmvl-radius-sm: 8px;
  --stdvmvl-spacing: clamp(16px, 4vw, 32px);
}

/* Modern Button System */
.stdvmvl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 50px;
  background: var(--stdvmvl-gradient-main);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
  text-transform: none;
  letter-spacing: 0.025em;
}

.stdvmvl-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

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

.stdvmvl-btn:hover,
.stdvmvl-btn:focus {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
  color: #fff;
  text-decoration: none;
}

.stdvmvl-btn--ghost {
  background: transparent !important;
  color: #A88030 !important;
  border: 3px solid #A88030 !important;
  backdrop-filter: none;
  box-shadow: none !important;
}

.stdvmvl-btn--ghost:hover {
  background: rgba(168, 128, 48, 0.1) !important;
  border-color: #A88030 !important;
  color: #A88030 !important;
}

/* Brown variant for product page calendar button */
.stdvmvl-btn--brown {
  background: #A88030 !important;
  color: white !important;
  border: 3px solid #A88030 !important;
  box-shadow: none !important;
}

.stdvmvl-btn--brown:hover {
  background: #8B6B28 !important;
  border-color: #8B6B28 !important;
  color: white !important;
}

/* Special styling for transmission page ghost buttons */
.stdvmvl-live-wrapper .stdvmvl-live-hero .stdvmvl-btn--ghost {
  background: white !important;
  color: #A88030 !important;
  border: 3px solid #A88030 !important;
  box-shadow: none !important;
}

.stdvmvl-live-wrapper .stdvmvl-live-hero .stdvmvl-btn--ghost:hover,
.stdvmvl-live-wrapper .stdvmvl-live-hero .stdvmvl-btn--ghost:active {
  background: white !important;
  border-color: #A88030 !important;
  color: #A88030 !important;
}

/* Special styling for transmission page countdown label */
.stdvmvl-live-hero .stdvmvl-countdown-label {
  background: white !important;
  color: #333 !important;
  padding: 8px 16px !important;
  border-radius: 20px !important;
  display: inline-block !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
}

.stdvmvl-live-hero .stdvmvl-countdown-label.stdvmvl-hidden {
  display: none !important;
}

.stdvmvl-btn--outline {
  background: transparent;
  color: var(--stdvmvl-primary);
  border: 3px solid var(--stdvmvl-primary);
  box-shadow: none;
}

.stdvmvl-btn--outline:hover {
  background: var(--stdvmvl-gradient-main);
  color: #fff;
  border-color: transparent;
}

/* Live Page Wrapper */
.stdvmvl-live-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: var(--stdvmvl-spacing);
  display: grid;
  grid-template-columns: minmax(0, 2.5fr) minmax(0, 1fr);
  gap: var(--stdvmvl-spacing);
  min-height: 80vh;
}

/* Hero Section with Enhanced Gradient */
.stdvmvl-live-hero {
  grid-column: 1/-1;
  background: var(--stdvmvl-gradient-hero);
  color: #fff;
  padding: clamp(32px, 6vw, 60px);
  border-radius: var(--stdvmvl-radius);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: clamp(24px, 4vw, 40px);
  position: relative;
  overflow: hidden;
  box-shadow: var(--stdvmvl-shadow-lg);
}

.stdvmvl-live-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(240, 147, 251, 0.2) 0%, transparent 50%);
  pointer-events: none;
}

.stdvmvl-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.stdvmvl-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  animation: stdvmvl-float 6s infinite linear;
}

.stdvmvl-hero-notice {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 12px;
  margin-top: 14px;
  background: rgba(168, 128, 48, 0.12);
  color: #A88030;
  font-weight: 600;
}

.stdvmvl-hero-notice svg {
  flex: 0 0 auto;
}

.stdvmvl-live-hero .stdvmvl-hero-notice {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
}

.stdvmvl-live-timezone {
  margin-left: 12px;
  font-size: 14px;
  opacity: 0.85;
}

.stdvmvl-live-series-notice {
  margin: 12px 0 0;
  font-weight: 600;
  color: #fff;
  opacity: 0.9;
}

.stdvmvl-countdown-finished {
  margin: 12px 0 0;
  font-weight: 600;
  color: var(--stdvmvl-text-muted);
}

.stdvmvl-countdown-status.stdvmvl-live-now {
  color: white;
  font-weight: 700;
  font-size: 24px;
  animation: pulse-live 2s ease-in-out infinite;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

@keyframes pulse-live {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.8;
  }
}
@keyframes stdvmvl-float {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100px) rotate(360deg);
    opacity: 0;
  }
}
.stdvmvl-particle:nth-child(odd) {
  animation-duration: 8s;
  animation-delay: -2s;
}

.stdvmvl-particle:nth-child(3n) {
  animation-duration: 10s;
  animation-delay: -4s;
  background: rgba(240, 147, 251, 0.4);
}

.stdvmvl-particle:nth-child(4n) {
  width: 6px;
  height: 6px;
  animation-duration: 12s;
  animation-delay: -1s;
}

.stdvmvl-particle:nth-child(5n) {
  width: 3px;
  height: 3px;
  background: rgba(102, 126, 234, 0.5);
  animation-duration: 7s;
  animation-delay: -3s;
}

.stdvmvl-live-meta {
  flex: 1 1 400px;
  position: relative;
  z-index: 2;
}

.stdvmvl-live-title {
  margin: 0 0 16px 0;
  font-size: clamp(28px, 5vw, 42px);
  line-height: 1.2;
  font-weight: 800;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.9) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stdvmvl-live-datetime {
  margin: 0 0 24px 0;
  font-size: 18px;
  opacity: 0.9;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.stdvmvl-live-datetime::before {
  content: "🗓️";
  font-size: 20px;
}

.stdvmvl-live-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

/* Enhanced Countdown */
.stdvmvl-countdown {
  flex: 1 1 280px;
  align-self: center;
  background: rgba(255, 255, 255, 0.15);
  padding: 28px;
  border-radius: 20px;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  z-index: 2;
}

.stdvmvl-countdown.stdvmvl-live-active {
  background: transparent;
  backdrop-filter: none;
  border: none;
  padding: 0;
}

.stdvmvl-countdown-label {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  opacity: 0.9;
  font-weight: 600;
}

.stdvmvl-countdown-values {
  display: flex;
  gap: 16px;
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 800;
  justify-content: center;
}

.stdvmvl-countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 60px;
}

.stdvmvl-countdown-number {
  display: block;
  line-height: 1;
}

.stdvmvl-countdown-unit {
  font-size: 12px;
  opacity: 0.8;
  font-weight: 500;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.stdvmvl-countdown-status {
  margin-top: 12px;
  font-weight: 600;
  text-align: center;
  font-size: 18px;
}

/* Video Player Section */
.stdvmvl-live-player {
  grid-column: 1/2;
}
.stdvmvl-live-player .live-files {
  background: var(--stdvmvl-primary);
  margin-top: 30px;
  border-radius: 10px;
  padding: 15px;
}
.stdvmvl-live-player .live-files .product-files {
  background: #fff;
  border-radius: 10px;
  padding: 15px;
}
.stdvmvl-live-player .live-files .product-files .title {
  font-size: 18px;
  font-weight: bold;
  font-family: "Abril Fatface", cursive;
}
.stdvmvl-live-player .live-files .product-files .elements {
  margin-bottom: 20px;
}
.stdvmvl-live-player .live-files .product-files .elements:last-of-type {
  margin-bottom: 0;
}
.stdvmvl-live-player .live-files .product-files .elements .element, .stdvmvl-live-player .live-files .product-files .elements .element.doc {
  padding-bottom: 10px;
}
.stdvmvl-live-player .live-files .product-files .elements .element a, .stdvmvl-live-player .live-files .product-files .elements .element.doc a {
  color: var(--stdvmvl-primary);
}

.stdvmvl-live-iframe {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--stdvmvl-radius);
  box-shadow: var(--stdvmvl-shadow-lg);
  background: #000;
  border: 8px solid var(--stdvmvl-bg-surface);
  transition: all 0.3s ease;
}

.stdvmvl-live-iframe:hover {
  transform: translateY(-4px);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.2);
}

.stdvmvl-live-iframe::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 8px;
  right: 8px;
  bottom: 8px;
  border-radius: calc(var(--stdvmvl-radius) - 8px);
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 50%, rgba(240, 147, 251, 0.1) 100%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.stdvmvl-live-iframe:hover::after {
  opacity: 1;
}

.stdvmvl-live-iframe iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: calc(var(--stdvmvl-radius) - 8px);
}

.stdvmvl-live-placeholder {
  padding: 40px;
  border-radius: var(--stdvmvl-radius);
  background: var(--stdvmvl-gradient-card);
  color: var(--stdvmvl-text);
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  border: 2px dashed var(--stdvmvl-border);
  box-shadow: var(--stdvmvl-shadow-sm);
}

/* Sidebar */
.stdvmvl-live-sidebar {
  grid-column: 2/3;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.stdvmvl-live-box {
  background: var(--stdvmvl-gradient-card);
  border: 1px solid var(--stdvmvl-border);
  border-radius: var(--stdvmvl-radius);
  padding: 28px;
  box-shadow: var(--stdvmvl-shadow);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

.stdvmvl-live-box:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
  border-color: rgba(102, 126, 234, 0.3);
}

.stdvmvl-live-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--stdvmvl-gradient-main);
}

.stdvmvl-live-box h2 {
  margin: 0 0 16px 0;
  font-size: 30px !important;
  font-weight: 700;
  color: var(--stdvmvl-text);
}

.stdvmvl-series-info {
  margin: 12px 0;
  padding: 12px 16px;
  border-radius: 12px;
  background: rgba(168, 128, 48, 0.08);
  color: #A88030;
  font-weight: 600;
}

.stdvmvl-schedule {
  margin-top: 12px;
  margin-bottom: 40px;
}

.stdvmvl-schedule-title {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 12px 0;
}

.stdvmvl-schedule-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.stdvmvl-schedule-list--compact {
  gap: 8px;
}

.stdvmvl-schedule-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid var(--stdvmvl-border);
  background: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.stdvmvl-schedule-list--compact .stdvmvl-schedule-item {
  padding: 10px 14px;
}

.stdvmvl-schedule-item.is-next {
  border-color: var(--stdvmvl-primary);
  box-shadow: 0 12px 28px rgba(168, 128, 48, 0.18);
}

.stdvmvl-schedule-item.is-live {
  border-color: #d93025;
  background: rgba(217, 48, 37, 0.1);
  color: #d93025;
  font-weight: 600;
}

.stdvmvl-schedule-item.is-past {
  opacity: 0.6;
}

.stdvmvl-schedule-date-value {
  font-weight: 600;
  font-size: 16px;
}

.stdvmvl-schedule-time-value {
  font-size: 15px;
  color: var(--stdvmvl-text-muted);
  margin-left: 8px;
}

.stdvmvl-schedule-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(168, 128, 48, 0.18);
  color: #A88030;
}

.stdvmvl-schedule-badge--next {
  background: rgba(168, 128, 48, 0.18);
  color: #A88030;
}

.stdvmvl-schedule-badge--past {
  background: rgba(109, 109, 109, 0.12);
  color: #6d6d6d;
}

.stdvmvl-schedule-badge--upcoming {
  background: rgba(35, 164, 84, 0.15);
  color: #218838;
}

.stdvmvl-live-description p {
  margin-bottom: 16px;
  line-height: 1.6;
  color: var(--stdvmvl-text-muted);
}

/* No Access Page */
.stdvmvl-live-no-access {
  max-width: 800px;
  margin: 80px auto;
  padding: 0 var(--stdvmvl-spacing);
}

.stdvmvl-live-no-access__card {
  background: var(--stdvmvl-gradient-card);
  border-radius: var(--stdvmvl-radius);
  padding: clamp(40px, 6vw, 60px);
  text-align: center;
  box-shadow: var(--stdvmvl-shadow-lg);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--stdvmvl-border);
}

.stdvmvl-live-no-access__card::before {
  content: "🔒";
  font-size: 80px;
  display: block;
  margin-bottom: 24px;
  opacity: 0.7;
}

.stdvmvl-live-no-access__card h1 {
  margin: 0 0 16px 0;
  font-size: 32px;
  font-weight: 800;
  color: var(--stdvmvl-text);
  background: var(--stdvmvl-gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stdvmvl-live-no-access__card p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--stdvmvl-text-muted);
  margin-bottom: 32px;
}

.stdvmvl-live-no-access__actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 32px 0;
  flex-wrap: wrap;
}

.stdvmvl-live-no-access__hint {
  color: var(--stdvmvl-text-muted);
  font-size: 14px;
  line-height: 1.5;
}

/* New Product Page Styles */
.stdvmvl-product-live {
  margin: 0;
  padding: 0;
}

/* Hero Banner */
.stdvmvl-hero-banner {
  background: var(--stdvmvl-gradient-hero);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.stdvmvl-hero-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(168, 128, 48, 0.9) 0%, rgba(196, 161, 92, 0.8) 100%);
  z-index: 1;
}

.stdvmvl-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
}

.stdvmvl-hero-title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  margin: 0 0 16px 0;
  text-shadow: 0 2px 8px rgba(255, 255, 255, 0.8), 0 0 20px rgba(255, 255, 255, 0.4);
  line-height: 1.2;
}

.stdvmvl-hero-subtitle {
  font-size: clamp(18px, 3vw, 24px);
  margin: 0 0 40px 0;
  opacity: 0.95;
  font-weight: 400;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.4;
}

.stdvmvl-hero-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin: 40px 0;
  flex-wrap: wrap;
}

.stdvmvl-hero-date {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 500;
}

.stdvmvl-hero-price {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}

.stdvmvl-price-badge {
  background: #ff4757;
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  animation: stdvmvl-pulse 2s infinite;
}

.stdvmvl-price-sale {
  font-size: 32px;
  color: white;
}

.stdvmvl-price-regular {
  font-size: 20px;
  text-decoration: line-through;
  opacity: 0.7;
}

.stdvmvl-price-current {
  font-size: 32px;
  color: white;
}

.stdvmvl-hero-actions {
  margin-top: 40px;
}

.stdvmvl-btn--hero {
  font-size: 20px;
  padding: 20px 40px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  text-transform: none;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.stdvmvl-btn--hero:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  color: white;
}

/* Countdown Section */
.stdvmvl-countdown-section {
  padding: 80px 0;
  background: var(--stdvmvl-bg-light);
  text-align: center;
}

.stdvmvl-countdown-title {
  font-size: 32px;
  margin: 0 0 40px 0;
  color: var(--stdvmvl-text);
  font-weight: 700;
}

.stdvmvl-countdown-timer {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin: 40px 0;
  flex-wrap: wrap;
}

.stdvmvl-countdown-item {
  background: white;
  border-radius: var(--stdvmvl-radius);
  padding: 24px;
  min-width: 120px;
  box-shadow: var(--stdvmvl-shadow);
  border: 2px solid var(--stdvmvl-border);
  transition: all 0.3s ease;
}

.stdvmvl-countdown-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--stdvmvl-shadow-lg);
  border-color: var(--stdvmvl-primary);
}

.stdvmvl-countdown-number {
  display: block;
  font-size: 48px;
  font-weight: 800;
  color: var(--stdvmvl-primary);
  line-height: 1;
  margin-bottom: 8px;
}

.stdvmvl-countdown-unit {
  font-size: 14px;
  color: var(--stdvmvl-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.stdvmvl-countdown-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

/* Featured Image */
.stdvmvl-featured-image {
  margin: 0 0 80px 0;
}

.stdvmvl-hero-image {
  width: 100%;
  max-height: 500px;
  height: auto;
  object-fit: cover;
  border-radius: 0;
  display: block;
}

/* Content Grid */
.stdvmvl-content-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  margin-bottom: 80px;
  align-items: start;
}

.stdvmvl-content-main {
  max-width: none;
}

.stdvmvl-description {
  font-size: 18px;
  line-height: 1.7;
  color: var(--stdvmvl-text);
  margin-bottom: 60px;
}

.stdvmvl-description h2,
.stdvmvl-description h3,
.stdvmvl-description h4 {
  color: var(--stdvmvl-primary);
  margin-top: 40px;
  margin-bottom: 20px;
}

.stdvmvl-description p {
  margin-bottom: 20px;
}

/* Sidebar Purchase Box */
.stdvmvl-purchase-box {
  background: white;
  border-radius: var(--stdvmvl-radius);
  padding: 32px;
  box-shadow: var(--stdvmvl-shadow-lg);
  border: 2px solid var(--stdvmvl-border);
  position: sticky;
  top: 40px;
  transition: all 0.3s ease;
}

.stdvmvl-purchase-box:hover {
  border-color: var(--stdvmvl-primary);
  box-shadow: 0 20px 50px rgba(168, 128, 48, 0.15);
}

.stdvmvl-purchase-box h3 {
  margin: 0 0 20px 0;
  font-size: 24px;
  color: var(--stdvmvl-primary);
  font-weight: 700;
  text-align: center;
}

.stdvmvl-purchase-price {
  text-align: center;
  margin: 20px 0;
  font-size: 32px;
  font-weight: 800;
  color: var(--stdvmvl-primary);
}

.stdvmvl-btn--full {
  width: 100%;
  padding: 16px 24px;
  font-size: 18px;
  font-weight: 700;
  margin: 20px 0;
  border-radius: 50px;
  background: var(--stdvmvl-gradient-main);
  border: none;
  color: white;
  transition: all 0.3s ease;
  box-shadow: var(--stdvmvl-shadow);
}

.stdvmvl-btn--full:hover {
  transform: translateY(-2px);
  box-shadow: var(--stdvmvl-shadow-lg);
  color: white;
}

.stdvmvl-purchase-note {
  font-size: 14px;
  line-height: 1.6;
  color: var(--stdvmvl-text-muted);
  text-align: center;
  margin: 20px 0;
  padding: 16px;
  background: var(--stdvmvl-bg-light);
  border-radius: var(--stdvmvl-radius-sm);
}

.stdvmvl-access-info {
  margin-top: 24px;
  padding: 20px;
  background: rgba(168, 128, 48, 0.05);
  border-radius: var(--stdvmvl-radius-sm);
  border: 1px solid rgba(168, 128, 48, 0.2);
}

.stdvmvl-access-info h4 {
  margin: 0 0 8px 0;
  font-size: 16px;
  color: var(--stdvmvl-primary);
  font-weight: 700;
}

.stdvmvl-access-info p {
  margin: 0;
  font-size: 14px;
  color: var(--stdvmvl-text-muted);
}

/* Fixed Purchase Panel */
.stdvmvl-fixed-panel {
  position: fixed;
  bottom: -100px;
  left: 0;
  right: 0;
  background: white;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
  border-top: 2px solid var(--stdvmvl-border);
  padding: 20px;
  z-index: 1000;
  transition: bottom 0.3s ease;
}

.stdvmvl-fixed-panel.stdvmvl-show {
  bottom: 0;
}

.stdvmvl-fixed-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 20px;
}

.stdvmvl-fixed-info h4 {
  margin: 0 0 4px 0;
  font-size: 18px !important;
  line-height: 24px !important;
  color: var(--stdvmvl-text);
  font-weight: 700;
}

.stdvmvl-fixed-price {
  font-size: 20px;
  font-weight: 700;
  color: var(--stdvmvl-primary);
}

.stdvmvl-btn--fixed {
  padding: 12px 32px;
  border-radius: 50px;
  background: var(--stdvmvl-gradient-main);
  color: white;
  border: none;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.stdvmvl-btn--fixed:hover {
  transform: translateY(-2px);
  box-shadow: var(--stdvmvl-shadow);
  color: white;
}

/* Button Variants */
.stdvmvl-btn--outline {
  background: transparent;
  color: var(--stdvmvl-primary);
  border: 3px solid var(--stdvmvl-primary);
  box-shadow: none;
}

.stdvmvl-btn--outline:hover {
  background: var(--stdvmvl-gradient-main);
  color: white;
  border-color: transparent;
}

.stdvmvl-btn--ghost {
  background: transparent !important;
  color: #A88030 !important;
  border: 3px solid #A88030 !important;
  backdrop-filter: none;
  text-decoration: none !important;
  box-shadow: none !important;
}

.stdvmvl-btn--ghost:hover,
.stdvmvl-btn--ghost:focus,
.stdvmvl-btn--ghost:visited {
  background: rgba(168, 128, 48, 0.1) !important;
  border-color: #A88030 !important;
  color: #A88030 !important;
  text-decoration: none !important;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .stdvmvl-content-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .stdvmvl-purchase-box {
    position: static;
  }

  .stdvmvl-hero-meta {
    gap: 20px;
  }

  .stdvmvl-countdown-timer {
    gap: 16px;
  }

  .stdvmvl-countdown-item {
    min-width: 100px;
    padding: 20px;
  }

  .stdvmvl-countdown-number {
    font-size: 36px;
  }
}
@media (max-width: 768px) {
  .stdvmvl-hero-banner {
    padding: 60px 0;
  }

  .stdvmvl-hero-meta {
    flex-direction: column;
    gap: 16px;
  }

  .stdvmvl-hero-date {
    flex-direction: column;
  }

  .stdvmvl-live-datetime {
    flex-direction: column;
  }

  .stdvmvl-countdown-section {
    padding: 60px 0;
  }

  .stdvmvl-countdown-timer {
    gap: 12px;
  }

  .stdvmvl-countdown-item {
    min-width: 80px;
    padding: 16px;
  }

  .stdvmvl-countdown-number {
    font-size: 28px;
  }

  .stdvmvl-countdown-actions {
    flex-direction: column;
    align-items: center;
  }

  .stdvmvl-countdown-actions .stdvmvl-btn {
    width: 100%;
    max-width: 300px;
  }

  .stdvmvl-fixed-content {
    flex-direction: column;
    text-align: center;
  }

  .stdvmvl-fixed-panel {
    padding: 16px;
  }

  .stdvmvl-btn--fixed {
    width: 98%;
    max-width: none;
  }

  .stdvmvl-hero-image {
    max-height: 300px;
    height: auto;
  }

  .stdvmvl-content-grid {
    gap: 30px;
  }
}
@media (min-width: 1025px) {
  .stdvmvl-fixed-panel .stdvmvl-fixed-content {
    max-width: 600px;
    margin: 0 auto;
    border-radius: var(--stdvmvl-radius);
    box-shadow: var(--stdvmvl-shadow-lg);
    background: white;
    padding: 20px;
    position: relative;
    bottom: 20px;
  }

  .stdvmvl-fixed-panel {
    background: transparent;
    border: none;
    box-shadow: none;
  }
}
/* Host Section */
.stdvmvl-host-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--stdvmvl-bg-light) 0%, var(--stdvmvl-bg-surface) 100%);
  position: relative;
  overflow: hidden;
}

.stdvmvl-host-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 20% 20%, rgba(168, 128, 48, 0.03) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(168, 128, 48, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.stdvmvl-host-wrapper {
  position: relative;
  z-index: 2;
}

.stdvmvl-host-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.stdvmvl-host-title {
  font-size: 36px;
  font-weight: 800;
  color: var(--stdvmvl-primary);
  margin: 0 0 40px 0;
  position: relative;
}

.stdvmvl-host-title::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--stdvmvl-gradient-main);
  border-radius: 2px;
}

.stdvmvl-host-info {
  display: flex;
  align-items: center;
  gap: 40px;
  background: white;
  padding: 40px;
  border-radius: var(--stdvmvl-radius);
  box-shadow: var(--stdvmvl-shadow-lg);
  border: 2px solid var(--stdvmvl-border);
  transition: all 0.3s ease;
}

.stdvmvl-host-info:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 60px rgba(168, 128, 48, 0.15);
  border-color: var(--stdvmvl-primary);
}

.stdvmvl-host-avatar {
  position: relative;
  flex-shrink: 0;
}

.stdvmvl-host-avatar img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--stdvmvl-primary);
  box-shadow: 0 8px 24px rgba(168, 128, 48, 0.2);
  transition: all 0.3s ease;
}

.stdvmvl-host-avatar:hover img {
  transform: scale(1.05);
  box-shadow: 0 12px 32px rgba(168, 128, 48, 0.3);
}

.stdvmvl-host-avatar-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(168, 128, 48, 0.9);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  opacity: 0;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
}

.stdvmvl-host-avatar:hover .stdvmvl-host-avatar-overlay {
  opacity: 1;
}

.stdvmvl-host-details {
  text-align: left;
  flex: 1;
}

.stdvmvl-host-name {
  font-size: 28px;
  font-weight: 700;
  color: var(--stdvmvl-text);
  margin: 0 0 16px 0;
  line-height: 1.2;
}

.stdvmvl-host-description {
  font-size: 18px;
  line-height: 1.6;
  color: var(--stdvmvl-text-muted);
  margin: 0;
}

/* Host Section Responsive */
@media (max-width: 768px) {
  .stdvmvl-host-section {
    padding: 60px 0;
  }

  .stdvmvl-host-info {
    flex-direction: column;
    text-align: center;
    gap: 24px;
    padding: 32px 24px;
  }

  .stdvmvl-host-details {
    text-align: center;
  }

  .stdvmvl-host-avatar img {
    width: 100px;
    height: 100px;
  }

  .stdvmvl-host-name {
    font-size: 24px;
  }

  .stdvmvl-host-description {
    font-size: 16px;
  }
}
/* Related Live Events Slider */
.stdvmvl-related-section {
  padding: 80px 0;
  background: var(--stdvmvl-bg-surface);
}

.stdvmvl-related-title {
  font-size: 36px;
  font-weight: 800;
  color: var(--stdvmvl-primary);
  text-align: center;
  margin: 0 0 50px 0;
  position: relative;
}

.stdvmvl-related-title::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--stdvmvl-gradient-main);
  border-radius: 2px;
}

.stdvmvl-slider-wrapper {
  position: relative;
  overflow: hidden;
}

.stdvmvl-slider {
  display: flex;
  gap: 24px;
  transition: transform 0.3s ease;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 20px 0;
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE/Edge */
}

.stdvmvl-slider::-webkit-scrollbar {
  display: none;
  /* Chrome/Safari/WebKit */
}

.stdvmvl-slide {
  flex: 0 0 320px;
  scroll-snap-align: start;
}

.stdvmvl-slide-card {
  background: white;
  border-radius: var(--stdvmvl-radius);
  box-shadow: var(--stdvmvl-shadow);
  border: 2px solid var(--stdvmvl-border);
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.stdvmvl-slide-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--stdvmvl-shadow-lg);
  border-color: var(--stdvmvl-primary);
}

.stdvmvl-slide-image {
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
}

.stdvmvl-slide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.stdvmvl-slide-image:hover img {
  transform: scale(1.05);
}

.stdvmvl-slide-content {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.stdvmvl-slide-title {
  margin: 0 0 12px 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
}

.stdvmvl-slide-title a {
  color: var(--stdvmvl-text);
  text-decoration: none;
  transition: color 0.2s ease;
}

.stdvmvl-slide-title a:hover {
  color: var(--stdvmvl-primary);
}

.stdvmvl-slide-excerpt {
  font-size: 14px;
  color: var(--stdvmvl-text-muted);
  line-height: 1.5;
  margin: 0 0 16px 0;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.stdvmvl-slide-date {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--stdvmvl-primary);
  margin: 0 0 12px 0;
  font-weight: 500;
}

.stdvmvl-slide-price {
  font-size: 18px;
  font-weight: 700;
  color: var(--stdvmvl-primary);
  margin: 0 0 16px 0;
}

.stdvmvl-btn--small {
  padding: 10px 20px;
  font-size: 14px;
  align-self: flex-start;
}

.stdvmvl-slider-nav {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.stdvmvl-slider-prev,
.stdvmvl-slider-next {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--stdvmvl-gradient-main);
  border: none;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: var(--stdvmvl-shadow);
}

.stdvmvl-slider-prev:hover,
.stdvmvl-slider-next:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: var(--stdvmvl-shadow-lg);
}

.stdvmvl-slider-prev:disabled,
.stdvmvl-slider-next:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

/* Slider Responsive */
@media (max-width: 1200px) {
  .stdvmvl-slide {
    flex: 0 0 280px;
  }
}
@media (max-width: 768px) {
  .stdvmvl-related-section {
    padding: 60px 0;
  }

  .stdvmvl-slide {
    flex: 0 0 260px;
  }

  .stdvmvl-slider {
    gap: 16px;
    padding: 16px 0;
  }

  .stdvmvl-slide-content {
    padding: 20px;
  }

  .stdvmvl-related-title {
    font-size: 28px;
  }
}
@media (max-width: 480px) {
  .stdvmvl-slide {
    flex: 0 0 240px;
  }

  .stdvmvl-slider {
    gap: 12px;
  }
}
.stdvmvl-product-hero {
  display: flex;
  flex-wrap: wrap;
  gap: var(--stdvmvl-spacing);
  margin-bottom: 40px;
  align-items: flex-start;
}

.stdvmvl-product-info {
  flex: 1 1 400px;
  background: var(--stdvmvl-gradient-card);
  padding: 36px;
  border-radius: var(--stdvmvl-radius);
  box-shadow: var(--stdvmvl-shadow);
  border: 1px solid var(--stdvmvl-border);
  position: relative;
}

.stdvmvl-product-info::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--stdvmvl-gradient-main);
  border-radius: var(--stdvmvl-radius) var(--stdvmvl-radius) 0 0;
}

.stdvmvl-product-info .product_title {
  margin-top: 0;
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 800;
  color: var(--stdvmvl-text);
  line-height: 1.2;
}

.stdvmvl-product-datetime {
  font-size: 18px;
  color: var(--stdvmvl-text-muted);
  margin: 16px 0 24px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.stdvmvl-product-datetime::before {
  content: "📅";
  font-size: 20px;
}

.stdvmvl-product-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 24px 0;
}

.stdvmvl-product-countdown {
  background: rgba(102, 126, 234, 0.05);
  border-radius: var(--stdvmvl-radius-sm);
  padding: 24px;
  border: 2px dashed rgba(102, 126, 234, 0.3);
  text-align: center;
}

.stdvmvl-countdown-label {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  color: var(--stdvmvl-primary);
  font-weight: 600;
}

.stdvmvl-product-gallery {
  flex: 1 1 400px;
}

.stdvmvl-product-content {
  display: flex;
  flex-wrap: wrap;
  gap: var(--stdvmvl-spacing);
}

.stdvmvl-product-main {
  flex: 1 1 600px;
}

.stdvmvl-product-description p {
  line-height: 1.7;
  color: var(--stdvmvl-text-muted);
  font-size: 16px;
  margin-bottom: 16px;
}

.stdvmvl-product-preview {
  position: relative;
  padding-bottom: 56.25%;
  margin: 32px 0;
  border-radius: var(--stdvmvl-radius);
  overflow: hidden;
  box-shadow: var(--stdvmvl-shadow-lg);
  border: 8px solid var(--stdvmvl-bg-surface);
  transition: all 0.3s ease;
}

.stdvmvl-product-preview:hover {
  transform: translateY(-4px);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.2);
}

.stdvmvl-product-preview iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: calc(var(--stdvmvl-radius) - 8px);
}

.stdvmvl-product-sidebar {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.stdvmvl-product-purchase {
  background: var(--stdvmvl-gradient-card);
  border-radius: var(--stdvmvl-radius);
  padding: 32px;
  border: 1px solid var(--stdvmvl-border);
  box-shadow: var(--stdvmvl-shadow);
  position: relative;
}

.stdvmvl-product-purchase::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--stdvmvl-gradient-main);
  border-radius: var(--stdvmvl-radius) var(--stdvmvl-radius) 0 0;
}

.stdvmvl-product-access {
  background: rgba(102, 126, 234, 0.05);
  border-radius: var(--stdvmvl-radius-sm);
  padding: 24px;
  border: 1px solid rgba(102, 126, 234, 0.2);
}

.stdvmvl-product-access h3 {
  margin: 0 0 12px 0;
  color: var(--stdvmvl-primary);
  font-weight: 700;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .stdvmvl-live-wrapper {
    grid-template-columns: 1fr;
    gap: clamp(24px, 4vw, 32px);
  }

  .stdvmvl-live-player,
.stdvmvl-live-sidebar {
    grid-column: 1/-1;
  }

  .stdvmvl-product-content {
    flex-direction: column;
  }

  .stdvmvl-product-sidebar {
    width: 100%;
  }
}
@media (max-width: 768px) {
  :root {
    --stdvmvl-spacing: 20px;
  }

  .stdvmvl-live-hero {
    padding: 32px;
    text-align: center;
  }

  .stdvmvl-live-hero,
.stdvmvl-product-hero {
    flex-direction: column;
  }

  .stdvmvl-countdown {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }

  .stdvmvl-countdown-values {
    font-size: 24px;
    gap: 12px;
  }

  .stdvmvl-live-actions,
.stdvmvl-product-actions,
.stdvmvl-live-no-access__actions {
    flex-direction: column;
    align-items: center;
  }

  .stdvmvl-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .stdvmvl-live-iframe {
    border-width: 4px;
  }

  .stdvmvl-product-preview {
    border-width: 4px;
  }
}
@media (max-width: 480px) {
  .stdvmvl-live-hero,
.stdvmvl-product-info,
.stdvmvl-live-box,
.stdvmvl-product-purchase {
    padding: 24px;
  }

  .stdvmvl-live-no-access__card {
    padding: 32px 20px;
  }

  .stdvmvl-countdown-values {
    font-size: 20px;
    gap: 8px;
  }

  .stdvmvl-countdown-item {
    min-width: 45px;
  }
}
/* My Account Orders Table */
.woocommerce-account .woocommerce-MyAccount-content table.woocommerce-orders-table .stdvmvl-no-transmission {
  color: var(--stdvmvl-text-muted);
  font-style: italic;
}
.woocommerce-account .woocommerce-MyAccount-content table.woocommerce-orders-table .stdvmvl-transmission-info .stdvmvl-transmission-item {
  padding: 8px 0;
  border-bottom: 1px solid rgba(168, 128, 48, 0.1);
}
.woocommerce-account .woocommerce-MyAccount-content table.woocommerce-orders-table .stdvmvl-transmission-info .stdvmvl-transmission-item:last-child {
  border-bottom: none;
}
.woocommerce-account .woocommerce-MyAccount-content table.woocommerce-orders-table .stdvmvl-transmission-info .stdvmvl-transmission-item .stdvmvl-transmission-product {
  font-size: 12px;
  color: var(--stdvmvl-text-muted);
  margin-bottom: 4px;
  font-weight: 500;
}
.woocommerce-account .woocommerce-MyAccount-content table.woocommerce-orders-table .stdvmvl-transmission-info .stdvmvl-transmission-item .stdvmvl-transmission-link {
  display: inline-block;
  background: var(--stdvmvl-gradient-main);
  color: white;
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-bottom: 8px;
}
.woocommerce-account .woocommerce-MyAccount-content table.woocommerce-orders-table .stdvmvl-transmission-info .stdvmvl-transmission-item .stdvmvl-transmission-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(168, 128, 48, 0.3);
  color: white;
  text-decoration: none;
}
.woocommerce-account .woocommerce-MyAccount-content table.woocommerce-orders-table .stdvmvl-transmission-info .stdvmvl-transmission-item .stdvmvl-transmission-date {
  font-size: 11px;
  line-height: 1.3;
}
.woocommerce-account .woocommerce-MyAccount-content table.woocommerce-orders-table .stdvmvl-transmission-info .stdvmvl-transmission-item .stdvmvl-transmission-date.stdvmvl-upcoming .stdvmvl-transmission-date-label {
  color: var(--stdvmvl-text-muted);
}
.woocommerce-account .woocommerce-MyAccount-content table.woocommerce-orders-table .stdvmvl-transmission-info .stdvmvl-transmission-item .stdvmvl-transmission-date.stdvmvl-upcoming .stdvmvl-transmission-date-value {
  color: var(--stdvmvl-primary);
  font-weight: 600;
}
.woocommerce-account .woocommerce-MyAccount-content table.woocommerce-orders-table .stdvmvl-transmission-info .stdvmvl-transmission-item .stdvmvl-transmission-date.stdvmvl-finished .stdvmvl-transmission-status {
  color: var(--stdvmvl-text-muted);
  font-style: italic;
}

@media (max-width: 768px) {
  .woocommerce-account .woocommerce-MyAccount-content table.woocommerce-orders-table .stdvmvl-transmission-info .stdvmvl-transmission-item .stdvmvl-transmission-link {
    padding: 4px 8px;
    font-size: 11px;
  }
  .woocommerce-account .woocommerce-MyAccount-content table.woocommerce-orders-table .stdvmvl-transmission-info .stdvmvl-transmission-item .stdvmvl-transmission-date {
    font-size: 10px;
  }
}
/* Animation Classes */
@keyframes stdvmvl-fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes stdvmvl-pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}
.stdvmvl-animate-in {
  animation: stdvmvl-fadeIn 0.6s ease-out;
}

.stdvmvl-countdown-status.stdvmvl-live-now {
  animation: pulse-live 2s ease-in-out infinite;
  color: white !important;
  font-weight: 700;
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* WooCommerce Integration Styles */
.stdvmvl-product-live .price {
  font-size: 24px !important;
  font-weight: 800 !important;
  color: var(--stdvmvl-primary) !important;
}

/* Promotional Price Styling */
.stdvmvl-purchase-box .price del,
.stdvmvl-purchase-box .woocommerce-Price-amount del,
.stdvmvl-fixed-panel .price del,
.stdvmvl-fixed-panel .woocommerce-Price-amount del,
.stdvmvl-purchase-price del,
.stdvmvl-fixed-price del {
  font-size: 50% !important;
  opacity: 0.7;
}

.stdvmvl-product-live .single_add_to_cart_button {
  background: var(--stdvmvl-gradient-main) !important;
  border: none !important;
  border-radius: 50px !important;
  padding: 16px 32px !important;
  font-weight: 600 !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3) !important;
  width: 100% !important;
  text-transform: none !important;
  font-size: 16px !important;
}

.stdvmvl-product-live .single_add_to_cart_button:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4) !important;
}

/* Loading States */
.stdvmvl-loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
/* Access Check Loader */
.stdvmvl-access-loader {
  display: none;
  text-align: center;
  padding: 40px 20px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 2px solid var(--stdvmvl-primary);
  margin: 20px 0;
  animation: stdvmvl-slideIn 0.5s ease;
}

.stdvmvl-access-loader.show {
  display: block;
}

.stdvmvl-loader-spinner {
  width: 48px;
  height: 48px;
  border: 4px solid rgba(168, 128, 48, 0.2);
  border-top: 4px solid var(--stdvmvl-primary);
  border-radius: 50%;
  margin: 0 auto 20px;
  animation: spin 1s linear infinite;
}

.stdvmvl-loader-text {
  font-size: 18px;
  font-weight: 600;
  color: var(--stdvmvl-text);
  margin-bottom: 8px;
}

.stdvmvl-loader-subtext {
  font-size: 14px;
  color: #666;
  opacity: 0.8;
}

/* Access Status Messages */
.stdvmvl-access-status {
  display: none;
  text-align: center;
  padding: 32px 20px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  margin: 20px 0;
  animation: stdvmvl-slideIn 0.5s ease;
}

.stdvmvl-access-status.show {
  display: block;
}

.stdvmvl-access-status.success {
  border: 2px solid var(--stdvmvl-primary);
  background: white;
}

.stdvmvl-access-status.error {
  border: 2px solid #ef4444;
  background: linear-gradient(135deg, #fef2f2 0%, #fef7f7 100%);
}

.stdvmvl-status-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  animation: stdvmvl-bounceIn 0.6s ease;
}

.stdvmvl-access-status.success .stdvmvl-status-icon {
  background: var(--stdvmvl-primary);
  color: white;
}

.stdvmvl-access-status.error .stdvmvl-status-icon {
  background: #ef4444;
  color: white;
}

.stdvmvl-status-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}

.stdvmvl-access-status.success .stdvmvl-status-title {
  color: var(--stdvmvl-primary);
}

.stdvmvl-access-status.error .stdvmvl-status-title {
  color: #ef4444;
}

.stdvmvl-status-message {
  font-size: 16px;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.5;
}

.stdvmvl-status-button {
  display: inline-block;
  background: var(--stdvmvl-primary);
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  margin-top: 8px;
}

.stdvmvl-status-button:hover {
  background: #926B39;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(168, 128, 48, 0.3);
}

.stdvmvl-status-button:active {
  transform: translateY(0);
}

/* Disabled Button States */
.stdvmvl-btn--disabled {
  opacity: 0.5 !important;
  cursor: not-allowed !important;
  pointer-events: auto !important;
  /* Allow clicks for modal */
}

.stdvmvl-btn--disabled:hover {
  transform: none !important;
  box-shadow: none !important;
  background: var(--stdvmvl-primary) !important;
  /* Keep original color */
}

/* Expired Event Modal */
.stdvmvl-expired-content {
  text-align: center;
  padding: 20px;
}

.stdvmvl-expired-icon {
  margin-bottom: 16px;
}

.stdvmvl-expired-content h3 {
  color: #ef4444;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.stdvmvl-expired-content p {
  color: #666;
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
}

/* Redirect Countdown */
.stdvmvl-redirect-countdown {
  display: none;
  font-size: 18px;
  font-weight: 600;
  color: var(--stdvmvl-primary);
  background: rgba(168, 128, 48, 0.1);
  padding: 16px 24px;
  border-radius: 12px;
  border: 2px solid rgba(168, 128, 48, 0.3);
  margin-top: 20px;
  text-align: center;
  animation: stdvmvl-pulse 2s infinite;
}

.stdvmvl-redirect-countdown.show {
  display: block;
}

.stdvmvl-redirect-number {
  font-size: 24px;
  font-weight: 800;
  color: var(--stdvmvl-primary);
  display: inline-block;
  min-width: 30px;
  animation: stdvmvl-scale 1s ease;
}

@keyframes stdvmvl-bounceIn {
  0% {
    transform: scale(0.3);
    opacity: 0;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes stdvmvl-scale {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}
/* Login Modal Styles */
.stdvmvl-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
}

.stdvmvl-modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: stdvmvl-fadeIn 0.3s ease;
}

.stdvmvl-modal-content {
  background: white;
  border-radius: 12px;
  max-width: 450px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: stdvmvl-slideIn 0.3s ease;
}

@keyframes stdvmvl-slideIn {
  from {
    transform: translateY(-30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.stdvmvl-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 24px 0;
  border-bottom: 1px solid #f0f0f0;
  margin-bottom: 24px;
}

.stdvmvl-modal-header h2 {
  margin: 0;
  font-size: 20px;
  color: var(--stdvmvl-text);
  font-weight: 700;
}

.stdvmvl-modal-close {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #999;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.stdvmvl-modal-close:hover {
  background: #f5f5f5;
  color: var(--stdvmvl-text);
}

.stdvmvl-modal-body {
  padding: 0 24px 24px;
}

.stdvmvl-login-tabs {
  display: flex;
  margin-bottom: 24px;
  border-bottom: 1px solid #e5e5e5;
}

.stdvmvl-tab-btn {
  flex: 1;
  padding: 12px 16px;
  background: none;
  border: none;
  cursor: pointer;
  font-weight: 600;
  color: #666;
  border-bottom: 2px solid transparent;
  transition: all 0.2s ease;
}

.stdvmvl-tab-btn.active,
.stdvmvl-tab-btn:hover {
  color: var(--stdvmvl-primary);
  border-bottom-color: var(--stdvmvl-primary);
}

.stdvmvl-tab-content {
  display: none;
}

.stdvmvl-tab-content.active {
  display: block;
}

.stdvmvl-form-group {
  margin-bottom: 20px;
}

.stdvmvl-form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: var(--stdvmvl-text);
  font-size: 14px;
}

.stdvmvl-form-group input[type=text],
.stdvmvl-form-group input[type=email],
.stdvmvl-form-group input[type=password] {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e5e5e5;
  border-radius: 8px;
  font-size: 16px;
  transition: border-color 0.2s ease;
  box-sizing: border-box;
}

.stdvmvl-form-group input:focus {
  outline: none;
  border-color: var(--stdvmvl-primary);
}

.stdvmvl-form-group input[type=checkbox] {
  margin-right: 8px;
}

.stdvmvl-form-message {
  margin-top: 16px;
  padding: 12px;
  border-radius: 6px;
  font-size: 14px;
  display: none;
}

.stdvmvl-form-message.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.stdvmvl-form-message.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

@media (max-width: 480px) {
  .stdvmvl-modal-content {
    margin: 20px;
    width: calc(100% - 40px);
  }

  .stdvmvl-modal-header,
.stdvmvl-modal-body {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.stdvmvl-transmission-info .stdvmvl-transmission-item {
  text-align: center;
}
.stdvmvl-transmission-info .stdvmvl-transmission-item .stdvmvl-transmission-product {
  font-size: 17px !important;
  text-decoration: underline;
}
.stdvmvl-transmission-info .stdvmvl-transmission-item .stdvmvl-transmission-link {
  background: var(--stdvmvl-primary);
  color: #fff;
  padding: 5px;
  margin: 6px 0;
}