/**
 * WCT Merch Ordering System - Frontend Styles
 * Light Theme - Matches World Chase Tag brand
 * All styles use !important to prevent theme overrides
 * WCAG 2.1 AA compliant contrast ratios
 */

/* ============================================
   CSS RESET FOR PLUGIN SCOPE
   ============================================ */
.wct-merch-wrapper,
.wct-merch-wrapper *,
.wct-merch-wrapper *::before,
.wct-merch-wrapper *::after {
    box-sizing: border-box !important;
    margin: 0 !important;
    padding: 0 !important;
}

.wct-merch-wrapper {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    font-size: 16px !important;
    line-height: 1.6 !important;
    color: #1a1a1a !important;
    background: #f5f5f5 !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
}

.wct-merch-wrapper a {
    color: #c1121f !important;
    text-decoration: none !important;
}

.wct-merch-wrapper a:hover {
    text-decoration: underline !important;
}

.wct-merch-wrapper strong {
    font-weight: 700 !important;
    color: #1a1a1a !important;
}

.wct-merch-wrapper input,
.wct-merch-wrapper select,
.wct-merch-wrapper button {
    font-family: inherit !important;
}

.wct-merch-wrapper input[type="number"]::-webkit-inner-spin-button,
.wct-merch-wrapper input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none !important;
    margin: 0 !important;
}

.wct-merch-wrapper input[type="number"] {
    -moz-appearance: textfield !important;
}

/* ============================================
   HERO SECTION
   ============================================ */
.wct-merch-hero {
    text-align: center !important;
    padding: 60px 5% 50px !important;
    background: linear-gradient(180deg, #fff, #f5f5f5) !important;
    border-bottom: 1px solid #d0d0d0 !important;
}

.wct-hero-badge {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    background: #c1121f !important;
    border: none !important;
    border-radius: 50px !important;
    padding: 10px 20px !important;
    font-size: 0.8rem !important;
    font-weight: 600 !important;
    color: #fff !important;
    margin-bottom: 24px !important;
}

.wct-hero-badge-dot {
    width: 8px !important;
    height: 8px !important;
    background: #fff !important;
    border-radius: 50% !important;
    display: inline-block !important;
    animation: wct-pulse 2s infinite !important;
}

@keyframes wct-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.wct-hero-title {
    margin-bottom: 20px !important;
}

.wct-hero-title-main {
    display: block !important;
    font-size: clamp(2rem, 6vw, 3.5rem) !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.02em !important;
    line-height: 1.1 !important;
    color: #1a1a1a !important;
}

.wct-hero-title-accent {
    display: block !important;
    font-size: clamp(0.9rem, 2vw, 1.2rem) !important;
    color: #c1121f !important;
    letter-spacing: 0.15em !important;
    text-transform: uppercase !important;
    font-weight: 600 !important;
    margin-top: 10px !important;
}

.wct-hero-subtitle {
    font-size: 1rem !important;
    color: #4a4a4a !important;
    max-width: 600px !important;
    margin: 0 auto 20px !important;
}

.wct-hero-meta {
    font-size: 0.9rem !important;
    color: #5a5a5a !important;
}

.wct-hero-meta strong {
    color: #1a1a1a !important;
}

.wct-text-red {
    color: #c1121f !important;
}

.wct-hero-divider {
    margin: 0 12px !important;
    color: #999 !important;
}

/* ============================================
   RESTRICTED VIEW (Login Required)
   ============================================ */
.wct-restricted-section {
    padding: 60px 20px !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    min-height: 80vh !important;
    background: #f5f5f5 !important;
}

.wct-restricted-card {
    background: #fff !important;
    border: 1px solid #d0d0d0 !important;
    border-radius: 12px !important;
    padding: 50px !important;
    max-width: 500px !important;
    text-align: center !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08) !important;
}

.wct-restricted-logo {
    margin-bottom: 24px !important;
}

.wct-restricted-title {
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    color: #1a1a1a !important;
    margin-bottom: 12px !important;
}

.wct-restricted-text {
    color: #4a4a4a !important;
    margin-bottom: 30px !important;
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
}

.wct-restricted-text strong {
    color: #1a1a1a !important;
}

.wct-restricted-steps {
    margin-bottom: 30px !important;
    text-align: left !important;
}

.wct-restricted-step {
    display: flex !important;
    gap: 16px !important;
    margin-bottom: 20px !important;
    align-items: flex-start !important;
}

.wct-restricted-step:last-child {
    margin-bottom: 0 !important;
}

.wct-step-number {
    width: 32px !important;
    height: 32px !important;
    background: #c1121f !important;
    color: #fff !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-weight: 700 !important;
    font-size: 0.85rem !important;
    flex-shrink: 0 !important;
}

.wct-step-content {
    display: flex !important;
    flex-direction: column !important;
    gap: 2px !important;
}

.wct-step-content strong {
    color: #1a1a1a !important;
    font-size: 0.9rem !important;
}

.wct-step-content span {
    color: #5a5a5a !important;
    font-size: 0.85rem !important;
}

.wct-restricted-no-access {
    background: #fef2f2 !important;
    color: #7f1d1d !important;
    padding: 14px !important;
    border-radius: 6px !important;
    font-size: 0.9rem !important;
    margin-bottom: 20px !important;
}

.wct-restricted-note {
    font-size: 0.85rem !important;
    color: #5a5a5a !important;
    margin-top: 20px !important;
}

.wct-restricted-note a {
    color: #c1121f !important;
    font-weight: 500 !important;
}

/* Login Button - force white text */
.wct-login-btn,
.wct-login-btn:link,
.wct-login-btn:visited,
.wct-login-btn:hover,
.wct-login-btn:active,
.wct-login-btn span,
.wct-login-btn:link span,
.wct-login-btn:visited span,
.wct-login-btn:hover span,
.wct-login-btn:active span {
    color: #fff !important;
    text-decoration: none !important;
}

.wct-login-btn svg {
    stroke: #fff !important;
}

.wct-login-btn {
    margin-top: 10px !important;
    margin-bottom: 0 !important;
}

/* ============================================
   BUTTONS
   ============================================ */
.wct-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    padding: 14px 28px !important;
    border-radius: 6px !important;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    border: none !important;
}

.wct-btn-primary {
    background: #c1121f !important;
    color: #fff !important;
}

.wct-btn-primary:hover {
    background: #a00d1a !important;
    text-decoration: none !important;
}

.wct-btn-primary:disabled {
    background: #9ca3af !important;
    cursor: not-allowed !important;
}

.wct-btn-full {
    width: 100% !important;
}

.wct-btn-large {
    padding: 16px 32px !important;
    font-size: 1rem !important;
}

/* ============================================
   STATS SECTION
   ============================================ */
.wct-stats-section {
    padding: 0 5% !important;
    margin-top: -30px !important;
    position: relative !important;
    z-index: 10 !important;
}

.wct-stats-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 16px !important;
    max-width: 900px !important;
    margin: 0 auto !important;
}

.wct-stat {
    background: #fff !important;
    border: 1px solid #d0d0d0 !important;
    border-radius: 8px !important;
    padding: 20px !important;
    text-align: center !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06) !important;
}

.wct-stat-value {
    font-size: 2rem !important;
    font-weight: 800 !important;
    color: #c1121f !important;
    line-height: 1 !important;
}

.wct-stat-label {
    font-size: 0.8rem !important;
    font-weight: 600 !important;
    color: #1a1a1a !important;
    margin-top: 6px !important;
}

.wct-stat-sub {
    font-size: 0.75rem !important;
    color: #5a5a5a !important;
    margin-top: 2px !important;
}

/* ============================================
   MAIN LAYOUT
   ============================================ */
.wct-main-layout {
    display: grid !important;
    grid-template-columns: 320px 1fr !important;
    gap: 30px !important;
    padding: 40px 5% !important;
    max-width: 1600px !important;
    margin: 0 auto !important;
}

/* ============================================
   SIDEBAR
   ============================================ */
.wct-sidebar {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
    position: sticky !important;
    top: 20px !important;
    height: fit-content !important;
}

.wct-order-card,
.wct-moq-card {
    background: #fff !important;
    border: 1px solid #d0d0d0 !important;
    border-radius: 8px !important;
    padding: 24px !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06) !important;
}

.wct-card-eyebrow {
    font-size: 0.7rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.15em !important;
    color: #5a5a5a !important;
    margin-bottom: 6px !important;
}

.wct-card-title {
    font-size: 1.2rem !important;
    font-weight: 700 !important;
    color: #1a1a1a !important;
    margin-bottom: 20px !important;
}

.wct-empty-state {
    color: #5a5a5a !important;
    font-size: 0.9rem !important;
    text-align: center !important;
    padding: 20px 0 !important;
}

/* Order Summary */
.wct-order-stats {
    margin-bottom: 16px !important;
}

.wct-order-stat-row {
    display: flex !important;
    justify-content: space-between !important;
    padding: 8px 0 !important;
    border-bottom: 1px solid #e5e5e5 !important;
}

.wct-order-stat-label {
    color: #4a4a4a !important;
    font-size: 0.85rem !important;
}

.wct-order-stat-value {
    color: #1a1a1a !important;
    font-weight: 600 !important;
    font-size: 0.85rem !important;
}

/* Profit Box */
.wct-profit-box {
    position: relative !important;
    background: #ecfdf5 !important;
    border: 1px solid #86efac !important;
    border-radius: 6px !important;
    padding: 20px !important;
    text-align: center !important;
    margin-bottom: 20px !important;
    overflow: hidden !important;
}

.wct-profit-box::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 3px !important;
    background: #16a34a !important;
}

.wct-profit-label {
    font-size: 0.7rem !important;
    font-weight: 700 !important;
    color: #166534 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.12em !important;
    margin-bottom: 6px !important;
}

.wct-profit-value {
    font-size: 2.2rem !important;
    font-weight: 800 !important;
    color: #166534 !important;
    line-height: 1 !important;
}

.wct-profit-margin {
    font-size: 0.8rem !important;
    color: #166534 !important;
    margin-top: 6px !important;
}

/* Breakdown */
.wct-breakdown-section {
    margin-top: 16px !important;
}

.wct-breakdown-title {
    font-size: 0.7rem !important;
    font-weight: 700 !important;
    color: #5a5a5a !important;
    text-transform: uppercase !important;
    letter-spacing: 0.1em !important;
    margin-bottom: 10px !important;
}

.wct-breakdown-list {
    max-height: 160px !important;
    overflow-y: auto !important;
}

.wct-breakdown-item {
    display: grid !important;
    grid-template-columns: 1fr auto auto !important;
    gap: 8px !important;
    align-items: center !important;
    padding: 8px 0 !important;
    border-bottom: 1px solid #e5e5e5 !important;
    font-size: 0.8rem !important;
}

.wct-breakdown-name {
    color: #4a4a4a !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

.wct-breakdown-qty {
    color: #5a5a5a !important;
}

.wct-breakdown-profit {
    color: #166534 !important;
    font-weight: 600 !important;
}

/* MOQ Alerts */
.wct-moq-card {
    background: #fffbeb !important;
    border-color: #fbbf24 !important;
}

.wct-moq-card .wct-card-title {
    color: #78350f !important;
}

.wct-moq-subtitle {
    color: #92400e !important;
    font-size: 0.8rem !important;
    margin: 4px 0 16px !important;
}

.wct-moq-list {
    max-height: 300px !important;
    overflow-y: auto !important;
}

.wct-moq-item {
    margin-bottom: 14px !important;
    padding-bottom: 14px !important;
    border-bottom: 1px solid rgba(251,191,36,0.4) !important;
}

.wct-moq-item:last-child {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    border-bottom: none !important;
}

.wct-moq-item-header {
    display: flex !important;
    justify-content: space-between !important;
    align-items: flex-start !important;
    margin-bottom: 6px !important;
}

.wct-moq-item-info {
    display: flex !important;
    flex-direction: column !important;
    gap: 2px !important;
}

.wct-moq-item-name {
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    color: #78350f !important;
}

.wct-moq-item-team {
    font-size: 0.75rem !important;
    color: #92400e !important;
    font-weight: 600 !important;
}

.wct-moq-item-variant {
    font-size: 0.75rem !important;
    color: #c1121f !important;
    font-weight: 600 !important;
    background: rgba(193,18,31,0.1) !important;
    padding: 1px 5px !important;
    border-radius: 3px !important;
}

.wct-moq-item-count {
    font-size: 0.8rem !important;
    font-weight: 700 !important;
    color: #78350f !important;
}

.wct-moq-bar {
    height: 4px !important;
    background: rgba(251,191,36,0.3) !important;
    border-radius: 2px !important;
    overflow: hidden !important;
    margin-bottom: 6px !important;
}

.wct-moq-bar-fill {
    height: 100% !important;
    background: #d97706 !important;
    border-radius: 2px !important;
}

.wct-moq-item-note {
    font-size: 0.75rem !important;
    color: #92400e !important;
}

/* ============================================
   MAIN CONTENT
   ============================================ */
.wct-main {
    min-width: 0 !important;
}

.wct-section-header {
    margin-bottom: 30px !important;
}

.wct-section-title {
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    color: #1a1a1a !important;
    margin-bottom: 6px !important;
}

.wct-section-subtitle {
    color: #4a4a4a !important;
    font-size: 0.9rem !important;
}

/* ============================================
   FILTER BAR
   ============================================ */
.wct-filter-bar {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
    margin-bottom: 30px !important;
}

.wct-filter-btn {
    padding: 10px 18px !important;
    background: #fff !important;
    border: 1px solid #d0d0d0 !important;
    border-radius: 6px !important;
    color: #4a4a4a !important;
    font-size: 0.85rem !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
}

.wct-filter-btn:hover {
    border-color: #c1121f !important;
    color: #c1121f !important;
}

.wct-filter-btn.active {
    background: #c1121f !important;
    border-color: #c1121f !important;
    color: #fff !important;
}

/* ============================================
   PRODUCTS GRID
   ============================================ */
.wct-products-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)) !important;
    gap: 24px !important;
}

.wct-product-card {
    background: #fff !important;
    border: 1px solid #d0d0d0 !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    position: relative !important;
    transition: all 0.2s ease !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06) !important;
}

.wct-product-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.1) !important;
    transform: translateY(-2px) !important;
}

.wct-product-card.moq-reached {
    border-color: #16a34a !important;
}

.wct-product-card.close-to-moq {
    border-color: #d97706 !important;
}

.wct-product-card.hidden {
    display: none !important;
}

/* Badges */
.wct-badge {
    position: absolute !important;
    top: 12px !important;
    right: 12px !important;
    padding: 5px 10px !important;
    border-radius: 4px !important;
    font-size: 0.7rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    z-index: 2 !important;
}

.wct-badge-moq {
    background: #16a34a !important;
    color: #fff !important;
}

.wct-badge-close {
    background: #d97706 !important;
    color: #fff !important;
}

.wct-badge-tc {
    position: absolute !important;
    top: 12px !important;
    left: 12px !important;
    right: auto !important;
    background: #4f46e5 !important;
    color: #fff !important;
}

/* Product Image */
.wct-product-image {
    height: 180px !important;
    background: #f0f0f0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
}

.wct-product-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

.wct-image-placeholder {
    color: #9ca3af !important;
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
}

/* Product Content */
.wct-product-content {
    padding: 20px !important;
}

.wct-product-meta {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
    margin-bottom: 8px !important;
}

.wct-product-sub {
    font-size: 0.75rem !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    color: #5a5a5a !important;
}

.wct-product-team {
    font-size: 0.75rem !important;
    font-weight: 700 !important;
    color: #c1121f !important;
    background: rgba(193,18,31,0.1) !important;
    padding: 2px 8px !important;
    border-radius: 3px !important;
}

.wct-product-name {
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    color: #1a1a1a !important;
    margin-bottom: 4px !important;
}

.wct-product-desc {
    font-size: 0.8rem !important;
    color: #5a5a5a !important;
    margin-bottom: 14px !important;
}

/* Pricing Block */
.wct-pricing-block {
    background: #f9fafb !important;
    border: 1px solid #d0d0d0 !important;
    border-radius: 6px !important;
    padding: 14px !important;
    margin-bottom: 14px !important;
}

.wct-pricing-row {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    margin-bottom: 10px !important;
}

.wct-price-col {
    text-align: center !important;
}

.wct-price-label {
    font-size: 0.65rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.08em !important;
    color: #5a5a5a !important;
    margin-bottom: 3px !important;
}

.wct-price-wholesale {
    font-size: 1.2rem !important;
    font-weight: 800 !important;
    color: #1a1a1a !important;
}

.wct-price-retail {
    font-size: 1.2rem !important;
    font-weight: 800 !important;
    color: #6b7280 !important;
}

.wct-price-arrow {
    color: #9ca3af !important;
    font-size: 1rem !important;
}

.wct-profit-line {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
}

.wct-profit-amount {
    font-size: 1rem !important;
    font-weight: 800 !important;
    color: #166534 !important;
}

.wct-profit-badge {
    background: #dcfce7 !important;
    color: #166534 !important;
    padding: 3px 8px !important;
    border-radius: 3px !important;
    font-size: 0.7rem !important;
    font-weight: 600 !important;
}

/* Volume Pricing */
.wct-volume-row {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 6px !important;
    align-items: center !important;
    margin-bottom: 14px !important;
    font-size: 0.75rem !important;
}

.wct-volume-label {
    color: #5a5a5a !important;
}

.wct-volume-tier {
    background: rgba(193,18,31,0.1) !important;
    color: #b91c1c !important;
    padding: 2px 6px !important;
    border-radius: 3px !important;
    font-size: 0.7rem !important;
}

/* MOQ Progress */
.wct-moq-section {
    margin-bottom: 14px !important;
}

.wct-moq-header {
    display: flex !important;
    justify-content: space-between !important;
    font-size: 0.75rem !important;
    color: #5a5a5a !important;
    margin-bottom: 5px !important;
}

.wct-moq-numbers {
    font-weight: 600 !important;
    color: #4a4a4a !important;
}

.wct-progress-bar {
    height: 6px !important;
    background: #d1d5db !important;
    border-radius: 3px !important;
    overflow: hidden !important;
}

.wct-progress-fill {
    height: 100% !important;
    border-radius: 3px !important;
    transition: width 0.3s ease !important;
    background: #c1121f !important;
}

.wct-progress-fill.reached {
    background: #16a34a !important;
}

.wct-progress-fill.close {
    background: #d97706 !important;
}

/* Variants */
.wct-variants-row {
    display: flex !important;
    gap: 6px !important;
    margin-bottom: 14px !important;
}

.wct-variant-select {
    flex: 1 !important;
    padding: 10px 12px !important;
    background: #fff !important;
    border: 1px solid #d0d0d0 !important;
    border-radius: 4px !important;
    color: #1a1a1a !important;
    font-size: 0.85rem !important;
    cursor: pointer !important;
}

.wct-variant-select:focus {
    border-color: #c1121f !important;
    outline: none !important;
}

/* Color Variants with Individual MOQ */
.wct-color-variants {
    margin-top: 14px !important;
    border: 1px solid #d0d0d0 !important;
    border-radius: 6px !important;
    overflow: hidden !important;
}

.wct-color-variants-title {
    font-size: 0.7rem !important;
    font-weight: 600 !important;
    color: #5a5a5a !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    padding: 10px 14px !important;
    margin: 0 !important;
    background: #f3f4f6 !important;
    border-bottom: 1px solid #d0d0d0 !important;
}

.wct-color-variant-row {
    padding: 12px 14px !important;
    border-bottom: 1px solid #e5e5e5 !important;
    background: #fff !important;
}

.wct-color-variant-row:last-of-type {
    border-bottom: none !important;
}

.wct-color-variant-row.moq-reached {
    background: #f0fdf4 !important;
}

.wct-color-variant-row.close {
    background: #fffbeb !important;
}

.wct-color-info {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    margin-bottom: 10px !important;
}

.wct-color-name {
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    color: #1a1a1a !important;
    margin: 0 !important;
    padding: 0 !important;
}

.wct-color-moq-status {
    font-size: 0.75rem !important;
    margin: 0 !important;
    padding: 0 !important;
}

.wct-color-moq-status .moq-reached-badge {
    color: #166534 !important;
    font-weight: 700 !important;
}

.wct-color-moq-status .moq-close-badge {
    color: #92400e !important;
    font-weight: 600 !important;
}

.wct-color-moq-status .moq-progress-text {
    color: #5a5a5a !important;
}

.wct-color-qty {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #f3f4f6 !important;
    border-radius: 6px !important;
    border: 1px solid #d0d0d0 !important;
    overflow: hidden !important;
    margin-bottom: 10px !important;
}

.wct-color-qty .wct-qty-btn {
    width: 40px !important;
    height: 36px !important;
    font-size: 1.1rem !important;
    background: #fff !important;
    color: #4a4a4a !important;
}

.wct-color-qty .wct-qty-btn:hover {
    background: #f3f4f6 !important;
    color: #c1121f !important;
}

.wct-color-qty .wct-qty-input {
    width: 60px !important;
    height: 36px !important;
    font-size: 0.9rem !important;
    background: #fff !important;
    color: #1a1a1a !important;
    border: none !important;
    border-left: 1px solid #d0d0d0 !important;
    border-right: 1px solid #d0d0d0 !important;
}

.wct-color-progress {
    height: 5px !important;
    background: #d1d5db !important;
    border-radius: 3px !important;
    overflow: hidden !important;
}

.wct-color-progress-fill {
    height: 100% !important;
    background: #c1121f !important;
    border-radius: 3px !important;
    transition: width 0.3s ease !important;
}

.wct-color-progress-fill.reached {
    background: #16a34a !important;
}

.wct-color-progress-fill.close {
    background: #d97706 !important;
}

.wct-size-select-row {
    padding: 12px 14px !important;
    background: #f3f4f6 !important;
    border-top: 1px solid #d0d0d0 !important;
}

.wct-size-select-row .wct-variant-select {
    width: 100% !important;
}

/* Quantity Controls */
.wct-action-row {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 12px !important;
}

.wct-qty-controls {
    display: flex !important;
    align-items: center !important;
    background: #f3f4f6 !important;
    border-radius: 6px !important;
    border: 1px solid #d0d0d0 !important;
    overflow: hidden !important;
}

.wct-qty-btn {
    width: 40px !important;
    height: 40px !important;
    border: none !important;
    background: #fff !important;
    color: #4a4a4a !important;
    font-size: 1.2rem !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.15s ease !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.wct-qty-btn:hover {
    background: #f3f4f6 !important;
    color: #c1121f !important;
}

.wct-qty-input {
    width: 60px !important;
    height: 40px !important;
    border: none !important;
    border-left: 1px solid #d0d0d0 !important;
    border-right: 1px solid #d0d0d0 !important;
    background: #fff !important;
    color: #1a1a1a !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    text-align: center !important;
}

.wct-line-profit {
    font-size: 0.85rem !important;
    color: #166534 !important;
}

.wct-line-profit strong {
    color: #166534 !important;
}

/* ============================================
   FOOTER
   ============================================ */
.wct-merch-footer {
    text-align: center !important;
    padding: 40px 20px !important;
    border-top: 1px solid #d0d0d0 !important;
    background: #fff !important;
}

.wct-merch-footer p {
    font-size: 0.85rem !important;
    color: #5a5a5a !important;
    line-height: 1.6 !important;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
    .wct-main-layout {
        grid-template-columns: 280px 1fr !important;
    }
}

@media (max-width: 1024px) {
    .wct-main-layout {
        grid-template-columns: 1fr !important;
    }
    
    .wct-sidebar {
        position: relative !important;
        top: 0 !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
    }
    
    .wct-order-card,
    .wct-moq-card {
        flex: 1 1 300px !important;
    }
}

@media (max-width: 768px) {
    .wct-merch-hero {
        padding: 50px 20px 40px !important;
    }
    
    .wct-stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .wct-products-grid {
        grid-template-columns: 1fr !important;
    }
    
    .wct-filter-bar {
        justify-content: center !important;
    }
    
    .wct-sidebar {
        flex-direction: column !important;
    }
    
    .wct-order-card,
    .wct-moq-card {
        flex: 1 1 100% !important;
    }
}

@media (max-width: 480px) {
    .wct-stats-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 10px !important;
    }
    
    .wct-stat {
        padding: 15px !important;
    }
    
    .wct-stat-value {
        font-size: 1.5rem !important;
    }
}
