/**
 * WCOT Public CSS - Professional Design
 *
 * @package WCOT
 * @author Halil Sefa Petenkaya
 */

/* ==========================================================================
   CSS VARIABLES & RESET
   ========================================================================== */

.wcot-wrap {
    /* BACS tasarim sistemi ile uyumlu renk paleti */
    --wcot-primary: #E8364F;
    --wcot-primary-rgb: 232, 54, 79;
    --wcot-btn: #E8364F;
    --wcot-text: #1a1a2e;
    --wcot-text-muted: #64748b;
    --wcot-border: #e2e8f0;
    --wcot-bg: #FAF8F6;
    --wcot-white: #ffffff;
    --wcot-success: #10b981;
    --wcot-warning: #f59e0b;
    --wcot-error: #ef4444;
    --wcot-info: #3b82f6;
    --wcot-radius: 16px;
    --wcot-radius-sm: 8px;
    --wcot-shadow: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.04);
    --wcot-shadow-lg: 0 10px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
    --wcot-transition: all 0.2s ease;
}

.wcot-wrap,
.wcot-wrap *,
.wcot-wrap *::before,
.wcot-wrap *::after {
    -webkit-box-sizing: border-box !important;
    box-sizing: border-box !important;
}

.wcot-wrap {
    display: block !important;
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
    font-size: 16px !important;
    line-height: 1.6 !important;
    color: var(--wcot-text) !important;
}

/* Sidebar uyumlu container */
.wcot-wrap.wcot-full-width {
    max-width: 100% !important;
}

.wcot-wrap.wcot-with-sidebar {
    max-width: 100% !important;
}

/* ==========================================================================
   SVG ICONS (Inline)
   ========================================================================== */

.wcot-icon {
    display: inline-block !important;
    vertical-align: middle !important;
    -webkit-flex-shrink: 0 !important;
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
    fill: currentColor !important;
}

.wcot-spin {
    -webkit-animation: wcot-spin 1s linear infinite !important;
    animation: wcot-spin 1s linear infinite !important;
}

@-webkit-keyframes wcot-spin {
    from { -webkit-transform: rotate(0deg); transform: rotate(0deg); }
    to { -webkit-transform: rotate(360deg); transform: rotate(360deg); }
}

@keyframes wcot-spin {
    from { -webkit-transform: rotate(0deg); transform: rotate(0deg); }
    to { -webkit-transform: rotate(360deg); transform: rotate(360deg); }
}

@-webkit-keyframes wcot-shake {
    0%, 100% { -webkit-transform: translateX(0); transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { -webkit-transform: translateX(-4px); transform: translateX(-4px); }
    20%, 40%, 60%, 80% { -webkit-transform: translateX(4px); transform: translateX(4px); }
}

@keyframes wcot-shake {
    0%, 100% { -webkit-transform: translateX(0); transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { -webkit-transform: translateX(-4px); transform: translateX(-4px); }
    20%, 40%, 60%, 80% { -webkit-transform: translateX(4px); transform: translateX(4px); }
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.wcot-hero {
    position: relative !important;
    text-align: center !important;
    padding: 60px 24px !important;
    margin: 0 0 32px !important;
    border-radius: var(--wcot-radius) !important;
    overflow: hidden !important;
    background-color: var(--wcot-bg) !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

/* Hero Overlay - Semi-transparent Primary Color over background image */
.wcot-hero::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: linear-gradient(135deg, rgba(var(--wcot-primary-rgb), 0.85) 0%, rgba(var(--wcot-primary-rgb), 0.75) 100%) !important;
    z-index: 1 !important;
}

.wcot-hero > * {
    position: relative !important;
    z-index: 2 !important;
}

/* Hero Icon */
.wcot-hero-icon {
    width: 72px !important;
    height: 72px !important;
    background: rgba(255, 255, 255, 0.15) !important;
    border-radius: 20px !important;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
    margin: 0 auto 20px !important;
    color: var(--wcot-white) !important;
}

.wcot-hero-icon .wcot-icon {
    width: 36px !important;
    height: 36px !important;
}

.wcot-hero-title {
    font-family: 'Inter', 'Outfit', sans-serif !important;
    font-size: 32px !important;
    font-weight: 800 !important;
    color: var(--wcot-white) !important;
    margin: 0 0 12px !important;
    padding: 0 !important;
    letter-spacing: -0.02em !important;
    line-height: 1.3 !important;
    letter-spacing: -0.01em !important;
}

.wcot-hero-desc {
    font-size: 16px !important;
    font-weight: 400 !important;
    color: rgba(255, 255, 255, 0.8) !important;
    margin: 0 !important;
    padding: 0 !important;
    max-width: 400px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    line-height: 1.6 !important;
}

/* Hero Stats */
.wcot-hero-stats {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
    gap: 32px !important;
    margin-top: 28px !important;
    padding-top: 24px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.15) !important;
}

.wcot-hero-stat {
    text-align: center !important;
}

.wcot-hero-stat-value {
    display: block !important;
    font-size: 24px !important;
    font-weight: 700 !important;
    color: var(--wcot-white) !important;
    line-height: 1 !important;
}

.wcot-hero-stat-label {
    display: block !important;
    font-size: 12px !important;
    font-weight: 500 !important;
    color: rgba(255, 255, 255, 0.6) !important;
    margin-top: 4px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

/* ==========================================================================
   SEARCH CARD
   ========================================================================== */

.wcot-search-card {
    background: var(--wcot-white) !important;
    border: 1px solid var(--wcot-border) !important;
    border-radius: var(--wcot-radius) !important;
    padding: 28px !important;
    margin: 0 0 32px !important;
    -webkit-box-shadow: var(--wcot-shadow) !important;
    box-shadow: var(--wcot-shadow) !important;
}

.wcot-form {
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* ==========================================================================
   TABS (Segmented Control)
   ========================================================================== */

.wcot-tabs-wrapper {
    margin-bottom: 24px !important;
}

.wcot-tabs {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    position: relative !important;
    background: var(--wcot-bg) !important;
    border-radius: var(--wcot-radius-sm) !important;
    padding: 4px !important;
    gap: 4px !important;
}

.wcot-tab {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 !important;
    flex: 1 !important;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
    gap: 8px !important;
    padding: 12px 16px !important;
    background: transparent !important;
    border: none !important;
    border-radius: 6px !important;
    font-family: inherit !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    color: var(--wcot-text-muted) !important;
    cursor: pointer !important;
    -webkit-transition: var(--wcot-transition) !important;
    transition: var(--wcot-transition) !important;
    position: relative !important;
    z-index: 1 !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    outline: none !important;
    margin: 0 !important;
    text-transform: capitalize !important;
}

.wcot-tab span {
    text-transform: capitalize !important;
}

.wcot-tab .wcot-icon {
    width: 18px !important;
    height: 18px !important;
    -webkit-transition: var(--wcot-transition) !important;
    transition: var(--wcot-transition) !important;
}

.wcot-tab:hover {
    color: var(--wcot-text) !important;
}

.wcot-tab.active {
    background: var(--wcot-white) !important;
    color: var(--wcot-primary) !important;
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1) !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1) !important;
}

.wcot-tab.active .wcot-icon {
    color: var(--wcot-primary) !important;
}

.wcot-tab:focus {
    outline: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

.wcot-tab-indicator {
    display: none !important;
}

/* ==========================================================================
   INPUT FIELDS
   ========================================================================== */

.wcot-fields {
    margin-bottom: 20px !important;
}

.wcot-field {
    display: none !important;
}

.wcot-field.active {
    display: block !important;
    -webkit-animation: wcot-fadeIn 0.2s ease !important;
    animation: wcot-fadeIn 0.2s ease !important;
}

@-webkit-keyframes wcot-fadeIn {
    from { opacity: 0; -webkit-transform: translateY(-4px); transform: translateY(-4px); }
    to { opacity: 1; -webkit-transform: translateY(0); transform: translateY(0); }
}

@keyframes wcot-fadeIn {
    from { opacity: 0; -webkit-transform: translateY(-4px); transform: translateY(-4px); }
    to { opacity: 1; -webkit-transform: translateY(0); transform: translateY(0); }
}

.wcot-field label {
    display: block !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: var(--wcot-text) !important;
    margin-bottom: 8px !important;
}

.wcot-input-wrapper {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
    background: var(--wcot-bg) !important;
    border: 2px solid var(--wcot-border) !important;
    border-radius: var(--wcot-radius-sm) !important;
    -webkit-transition: var(--wcot-transition) !important;
    transition: var(--wcot-transition) !important;
    overflow: hidden !important;
}

.wcot-input-wrapper:focus-within {
    border-color: var(--wcot-primary) !important;
    background: var(--wcot-white) !important;
    -webkit-box-shadow: 0 0 0 4px rgba(var(--wcot-primary-rgb), 0.1) !important;
    box-shadow: 0 0 0 4px rgba(var(--wcot-primary-rgb), 0.1) !important;
}

.wcot-input-icon {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
    width: 52px !important;
    height: 52px !important;
    color: var(--wcot-text-muted) !important;
    -webkit-flex-shrink: 0 !important;
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
    -webkit-transition: var(--wcot-transition) !important;
    transition: var(--wcot-transition) !important;
}

.wcot-input-icon .wcot-icon {
    width: 20px !important;
    height: 20px !important;
}

.wcot-input-wrapper:focus-within .wcot-input-icon {
    color: var(--wcot-primary) !important;
}

.wcot-input {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 !important;
    flex: 1 !important;
    width: 100% !important;
    height: 52px !important;
    padding: 0 16px 0 0 !important;
    border: none !important;
    background: transparent !important;
    font-family: inherit !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    color: var(--wcot-text) !important;
    outline: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    margin: 0 !important;
}

.wcot-input::-webkit-input-placeholder { color: #94a3b8 !important; }
.wcot-input::-moz-placeholder { color: #94a3b8 !important; }
.wcot-input:-ms-input-placeholder { color: #94a3b8 !important; }
.wcot-input::placeholder { color: #94a3b8 !important; }

.wcot-input-hint {
    font-size: 13px !important;
    color: var(--wcot-text-muted) !important;
    margin: 8px 0 0 !important;
    padding: 0 !important;
}

/* ==========================================================================
   SUBMIT BUTTON
   ========================================================================== */

.wcot-submit-btn {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
    width: 100% !important;
    height: 52px !important;
    padding: 0 24px !important;
    background: var(--wcot-btn) !important;
    border: none !important;
    border-radius: var(--wcot-radius-sm) !important;
    font-family: inherit !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    color: var(--wcot-white) !important;
    cursor: pointer !important;
    -webkit-transition: var(--wcot-transition) !important;
    transition: var(--wcot-transition) !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    outline: none !important;
    margin: 0 !important;
    -webkit-box-shadow: 0 2px 4px rgba(var(--wcot-primary-rgb), 0.3) !important;
    box-shadow: 0 2px 4px rgba(var(--wcot-primary-rgb), 0.3) !important;
}

.wcot-submit-btn:hover {
    -webkit-transform: translateY(-1px) !important;
    transform: translateY(-1px) !important;
    -webkit-box-shadow: 0 4px 12px rgba(var(--wcot-primary-rgb), 0.4) !important;
    box-shadow: 0 4px 12px rgba(var(--wcot-primary-rgb), 0.4) !important;
}

.wcot-submit-btn:active {
    -webkit-transform: translateY(0) !important;
    transform: translateY(0) !important;
}

.wcot-submit-btn:focus {
    outline: none !important;
    -webkit-box-shadow: 0 0 0 4px rgba(var(--wcot-primary-rgb), 0.3) !important;
    box-shadow: 0 0 0 4px rgba(var(--wcot-primary-rgb), 0.3) !important;
}

.wcot-btn-text,
.wcot-btn-loading {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
    gap: 10px !important;
      text-transform: capitalize!important;
}

.wcot-btn-text .wcot-icon,
.wcot-btn-loading .wcot-icon {
    width: 20px !important;
    height: 20px !important;
}

.wcot-btn-loading {
    display: none !important;
}

.wcot-submit-btn.loading .wcot-btn-text {
    display: none !important;
}

.wcot-submit-btn.loading .wcot-btn-loading {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
}

.wcot-submit-btn.loading {
    opacity: 0.8 !important;
    pointer-events: none !important;
}

/* ==========================================================================
   RESULT AREA
   ========================================================================== */

.wcot-result {
    display: none !important;
    margin-bottom: 32px !important;
}

.wcot-result.active {
    display: block !important;
    -webkit-animation: wcot-slideUp 0.3s ease !important;
    animation: wcot-slideUp 0.3s ease !important;
}

@-webkit-keyframes wcot-slideUp {
    from { opacity: 0; -webkit-transform: translateY(16px); transform: translateY(16px); }
    to { opacity: 1; -webkit-transform: translateY(0); transform: translateY(0); }
}

@keyframes wcot-slideUp {
    from { opacity: 0; -webkit-transform: translateY(16px); transform: translateY(16px); }
    to { opacity: 1; -webkit-transform: translateY(0); transform: translateY(0); }
}

/* Count */
.wcot-count {
    font-size: 14px !important;
    color: var(--wcot-text-muted) !important;
    margin-bottom: 16px !important;
}

.wcot-count strong {
    color: var(--wcot-text) !important;
    font-weight: 600 !important;
}

/* ==========================================================================
   ORDER CARD
   ========================================================================== */

.wcot-card {
    background: var(--wcot-white) !important;
    border: 1px solid var(--wcot-border) !important;
    border-radius: var(--wcot-radius) !important;
    overflow: hidden !important;
    margin-bottom: 16px !important;
    -webkit-box-shadow: var(--wcot-shadow) !important;
    box-shadow: var(--wcot-shadow) !important;
}

.wcot-card:last-child {
    margin-bottom: 0 !important;
}

.wcot-card-head {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
    gap: 16px !important;
    padding: 20px !important;
    color: var(--wcot-white) !important;
}

.wcot-card-head-text {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 !important;
    flex: 1 !important;
    min-width: 0 !important;
}

.wcot-status-icon {
    width: 48px !important;
    height: 48px !important;
    background: rgba(255, 255, 255, 0.2) !important;
    border-radius: 12px !important;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
    -webkit-flex-shrink: 0 !important;
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
}

.wcot-status-icon .wcot-icon {
    width: 24px !important;
    height: 24px !important;
}

.wcot-card-head h3 {
    font-size: 18px !important;
    font-weight: 600 !important;
    margin: 0 0 4px !important;
    padding: 0 !important;
    color: inherit !important;
}

.wcot-card-head p {
    font-size: 14px !important;
    font-weight: 400 !important;
    margin: 0 !important;
    padding: 0 !important;
    opacity: 0.9 !important;
    color: inherit !important;
}

.wcot-card-body {
    padding: 20px !important;
}

/* ==========================================================================
   TIMELINE
   ========================================================================== */

.wcot-tl {
    margin-bottom: 20px !important;
}

.wcot-tl-item {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    position: relative !important;
}

.wcot-tl-left {
    width: 40px !important;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
    -webkit-flex-shrink: 0 !important;
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
}

.wcot-tl-dot {
    width: 32px !important;
    height: 32px !important;
    border-radius: 50% !important;
    background: var(--wcot-bg) !important;
    border: 2px solid var(--wcot-border) !important;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
    position: relative !important;
    z-index: 2 !important;
}

.wcot-tl-dot .wcot-icon {
    width: 14px !important;
    height: 14px !important;
    color: var(--wcot-text-muted) !important;
}

.wcot-tl-line {
    width: 2px !important;
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 !important;
    flex: 1 !important;
    background: var(--wcot-border) !important;
    min-height: 20px !important;
}

.wcot-tl-item:last-child .wcot-tl-line {
    display: none !important;
}

.wcot-tl-right {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 !important;
    flex: 1 !important;
    padding: 4px 0 20px 14px !important;
}

.wcot-tl-item:last-child .wcot-tl-right {
    padding-bottom: 0 !important;
}

.wcot-tl-right h4 {
    font-size: 14px !important;
    font-weight: 600 !important;
    color: var(--wcot-text) !important;
    margin: 0 0 2px !important;
    padding: 0 !important;
}

.wcot-tl-right span {
    font-size: 13px !important;
    color: var(--wcot-text-muted) !important;
}

/* Timeline States */
.wcot-tl-item.done .wcot-tl-dot {
    background: var(--wcot-success) !important;
    border-color: var(--wcot-success) !important;
}

.wcot-tl-item.done .wcot-tl-dot .wcot-icon {
    color: var(--wcot-white) !important;
}

.wcot-tl-item.done .wcot-tl-line {
    background: var(--wcot-success) !important;
}

.wcot-tl-item.active .wcot-tl-dot {
    background: var(--wcot-primary) !important;
    border-color: var(--wcot-primary) !important;
    -webkit-box-shadow: 0 0 0 4px rgba(var(--wcot-primary-rgb), 0.2) !important;
    box-shadow: 0 0 0 4px rgba(var(--wcot-primary-rgb), 0.2) !important;
}

.wcot-tl-item.active .wcot-tl-dot .wcot-icon {
    color: var(--wcot-white) !important;
}

.wcot-tl-item:not(.done):not(.active) .wcot-tl-right h4 {
    color: var(--wcot-text-muted) !important;
}

/* ==========================================================================
   TRUCK ROAD ANIMATION
   ========================================================================== */

.wcot-road-container {
    margin-bottom: 24px !important;
    padding: 20px 0 !important;
}

/* Road Container */
.wcot-road {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
    gap: 0 !important;
    margin-bottom: 24px !important;
}

/* Road Start/End Points */
.wcot-road-point {
    width: 48px !important;
    height: 48px !important;
    border-radius: 50% !important;
    background: var(--wcot-bg) !important;
    border: 2px solid var(--wcot-border) !important;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
    -webkit-flex-shrink: 0 !important;
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
    color: var(--wcot-text-muted) !important;
    -webkit-transition: var(--wcot-transition) !important;
    transition: var(--wcot-transition) !important;
    position: relative !important;
    z-index: 3 !important;
}

.wcot-road-point .wcot-icon {
    width: 24px !important;
    height: 24px !important;
}

.wcot-road-point.active {
    background: var(--wcot-primary) !important;
    border-color: var(--wcot-primary) !important;
    color: var(--wcot-white) !important;
    -webkit-box-shadow: 0 0 0 4px rgba(var(--wcot-primary-rgb), 0.2) !important;
    box-shadow: 0 0 0 4px rgba(var(--wcot-primary-rgb), 0.2) !important;
}

.wcot-road-start.active {
    background: var(--wcot-success) !important;
    border-color: var(--wcot-success) !important;
    -webkit-box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.2) !important;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.2) !important;
}

.wcot-road-end.active {
    background: var(--wcot-success) !important;
    border-color: var(--wcot-success) !important;
    -webkit-box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.2) !important;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.2) !important;
}

/* Road Line */
.wcot-road-line {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 !important;
    flex: 1 !important;
    height: 12px !important;
    background: #e5e7eb !important;
    border-radius: 6px !important;
    position: relative !important;
    overflow: visible !important;
    margin: 0 -4px !important;
}

/* Road Progress Fill */
.wcot-road-progress {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    height: 100% !important;
    background: #22c55e !important;
    border-radius: 6px !important;
    -webkit-transition: width 0.5s ease !important;
    transition: width 0.5s ease !important;
    z-index: 1 !important;
}

/* Road Dashes */
.wcot-road-dashes {
    position: absolute !important;
    top: 50% !important;
    left: 8px !important;
    right: 8px !important;
    height: 2px !important;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
    -webkit-transform: translateY(-50%) !important;
    transform: translateY(-50%) !important;
    z-index: 1 !important;
}

.wcot-road-dashes span {
    width: 12px !important;
    height: 2px !important;
    background: rgba(255, 255, 255, 0.5) !important;
    border-radius: 1px !important;
}

/* Truck Icon */
.wcot-road-truck {
    position: absolute !important;
    top: 50% !important;
    -webkit-transform: translate(-50%, -50%) !important;
    transform: translate(-50%, -50%) !important;
    z-index: 5 !important;
    -webkit-transition: left 0.5s ease !important;
    transition: left 0.5s ease !important;
}

.wcot-truck-icon {
    width: 52px !important;
    height: 52px !important;
    background: var(--wcot-white) !important;
    border: 3px solid var(--wcot-primary) !important;
    border-radius: 50% !important;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
    color: var(--wcot-primary) !important;
    -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
    -webkit-animation: wcot-truck-bounce 1s ease-in-out infinite !important;
    animation: wcot-truck-bounce 1s ease-in-out infinite !important;
}

.wcot-truck-icon .wcot-icon {
    width: 28px !important;
    height: 28px !important;
}

@-webkit-keyframes wcot-truck-bounce {
    0%, 100% { -webkit-transform: translateY(0); transform: translateY(0); }
    50% { -webkit-transform: translateY(-3px); transform: translateY(-3px); }
}

@keyframes wcot-truck-bounce {
    0%, 100% { -webkit-transform: translateY(0); transform: translateY(0); }
    50% { -webkit-transform: translateY(-3px); transform: translateY(-3px); }
}

/* Road Steps */
.wcot-road-steps {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
    padding: 0 !important;
}

.wcot-road-step {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
    gap: 8px !important;
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 !important;
    flex: 1 !important;
    max-width: 80px !important;
}

.wcot-road-step-icon {
    width: 36px !important;
    height: 36px !important;
    border-radius: 50% !important;
    background: var(--wcot-bg) !important;
    border: 2px solid var(--wcot-border) !important;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
    color: var(--wcot-text-muted) !important;
    -webkit-transition: var(--wcot-transition) !important;
    transition: var(--wcot-transition) !important;
}

.wcot-road-step-icon .wcot-icon {
    width: 18px !important;
    height: 18px !important;
}

.wcot-road-step-label {
    font-size: 11px !important;
    font-weight: 500 !important;
    color: var(--wcot-text-muted) !important;
    text-align: center !important;
    line-height: 1.3 !important;
}

/* Step States */
.wcot-road-step.done .wcot-road-step-icon {
    background: var(--wcot-success) !important;
    border-color: var(--wcot-success) !important;
    color: var(--wcot-white) !important;
}

.wcot-road-step.done .wcot-road-step-label {
    color: var(--wcot-success) !important;
    font-weight: 600 !important;
}

.wcot-road-step.active .wcot-road-step-icon {
    background: var(--wcot-primary) !important;
    border-color: var(--wcot-primary) !important;
    color: var(--wcot-white) !important;
    -webkit-box-shadow: 0 0 0 4px rgba(var(--wcot-primary-rgb), 0.2) !important;
    box-shadow: 0 0 0 4px rgba(var(--wcot-primary-rgb), 0.2) !important;
}

.wcot-road-step.active .wcot-road-step-label {
    color: var(--wcot-primary) !important;
    font-weight: 600 !important;
}

/* ==========================================================================
   MESSAGE BOXES
   ========================================================================== */

.wcot-msg {
    padding: 16px !important;
    border-radius: var(--wcot-radius-sm) !important;
    margin-bottom: 16px !important;
}

.wcot-msg h5 {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
    gap: 8px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    margin: 0 0 6px !important;
    padding: 0 !important;
}

.wcot-msg h5 .wcot-icon {
    width: 18px !important;
    height: 18px !important;
}

.wcot-msg p {
    font-size: 14px !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1.6 !important;
}

.wcot-msg-warning {
    background: #fffbeb !important;
    border: 1px solid #fde68a !important;
}

.wcot-msg-warning h5 { color: #92400e !important; }
.wcot-msg-warning p { color: #78350f !important; }

.wcot-msg-error {
    background: #fef2f2 !important;
    border: 1px solid #fecaca !important;
}

.wcot-msg-error h5 { color: #991b1b !important; }
.wcot-msg-error p { color: #7f1d1d !important; }

.wcot-msg-success {
    background: #f0fdf4 !important;
    border: 1px solid #bbf7d0 !important;
}

.wcot-msg-success h5 { color: #166534 !important; }
.wcot-msg-success p { color: #14532d !important; }

.wcot-msg-info {
    background: #eff6ff !important;
    border: 1px solid #bfdbfe !important;
}

.wcot-msg-info h5 { color: #1e40af !important; }
.wcot-msg-info p { color: #1e3a8a !important; }

/* ==========================================================================
   GRID (Order Details)
   ========================================================================== */

.wcot-grid {
    display: -ms-grid !important;
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
    margin-bottom: 16px !important;
}

.wcot-grid-item {
    background: var(--wcot-bg) !important;
    border-radius: var(--wcot-radius-sm) !important;
    padding: 14px !important;
}

.wcot-grid-item label {
    display: block !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    color: var(--wcot-text-muted) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    margin-bottom: 4px !important;
}

.wcot-grid-item span {
    font-size: 14px !important;
    font-weight: 600 !important;
    color: var(--wcot-text) !important;
}

/* ==========================================================================
   TRACKING INFO
   ========================================================================== */

.wcot-tracking {
    background: #f0fdf4 !important;
    border: 1px solid #bbf7d0 !important;
    border-radius: var(--wcot-radius-sm) !important;
    padding: 16px !important;
}

.wcot-tracking h4 {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
    gap: 8px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #166534 !important;
    margin: 0 0 12px !important;
    padding: 0 !important;
}

.wcot-tracking h4 .wcot-icon {
    width: 18px !important;
    height: 18px !important;
}

.wcot-tracking-number {
    font-size: 14px !important;
    color: #166534 !important;
    margin-bottom: 12px !important;
}

.wcot-tracking-number strong {
    font-weight: 600 !important;
}

.wcot-tracking a {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
    gap: 8px !important;
    background: var(--wcot-success) !important;
    color: var(--wcot-white) !important;
    padding: 10px 16px !important;
    border-radius: 6px !important;
    text-decoration: none !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    -webkit-transition: var(--wcot-transition) !important;
    transition: var(--wcot-transition) !important;
}

.wcot-tracking a:hover {
    background: #059669 !important;
}

.wcot-tracking a .wcot-icon {
    width: 16px !important;
    height: 16px !important;
}

/* Carrier Info in Tracking */
.wcot-tracking-carrier {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
    gap: 10px !important;
    margin-bottom: 12px !important;
    padding: 10px !important;
    background: rgba(255, 255, 255, 0.6) !important;
    border-radius: 6px !important;
}

.wcot-carrier-logo {
    width: 32px !important;
    height: 32px !important;
    max-width: 32px !important;
    -o-object-fit: contain !important;
    object-fit: contain !important;
    border-radius: 4px !important;
}

.wcot-carrier-name {
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #166534 !important;
}

.wcot-tracking-link {
    margin-top: 4px !important;
}

/* ==========================================================================
   ERROR STATE
   ========================================================================== */

.wcot-error {
    text-align: center !important;
    padding: 48px 24px !important;
    background: #fef2f2 !important;
    border: 1px solid #fecaca !important;
    border-radius: var(--wcot-radius) !important;
}

.wcot-error .wcot-icon {
    width: 56px !important;
    height: 56px !important;
    color: var(--wcot-error) !important;
    margin-bottom: 16px !important;
}

.wcot-error h3 {
    font-size: 18px !important;
    font-weight: 600 !important;
    color: #991b1b !important;
    margin: 0 0 8px !important;
    padding: 0 !important;
}

.wcot-error p {
    font-size: 14px !important;
    color: #b91c1c !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* ==========================================================================
   FEATURES SECTION
   ========================================================================== */

.wcot-features {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
    gap: 16px !important;
    margin-bottom: 40px !important;
}

.wcot-feature {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
    gap: 16px !important;
    padding: 20px !important;
    background: var(--wcot-white) !important;
    border: 1px solid var(--wcot-border) !important;
    border-radius: var(--wcot-radius) !important;
    text-align: left !important;
}

.wcot-feature-icon {
    width: 48px !important;
    height: 48px !important;
    background: rgba(var(--wcot-primary-rgb), 0.1) !important;
    border-radius: 12px !important;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
    -webkit-flex-shrink: 0 !important;
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
    color: var(--wcot-primary) !important;
}

.wcot-feature-icon .wcot-icon {
    width: 24px !important;
    height: 24px !important;
}

.wcot-feature-content {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 !important;
    flex: 1 !important;
    min-width: 0 !important;
}

.wcot-feature h3 {
    font-size: 16px !important;
    font-weight: 600 !important;
    color: var(--wcot-text) !important;
    margin: 0 0 4px !important;
    padding: 0 !important;
}

.wcot-feature p {
    font-size: 14px !important;
    color: var(--wcot-text-muted) !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1.5 !important;
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */

/* FAQ Container */
.wcot-faq {
    margin-bottom: 32px !important;
}

/* FAQ Title */
.wcot-faq-title {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
    gap: 12px !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    color: #1e293b !important;
    margin: 0 0 20px !important;
    padding: 0 !important;
    text-align: left !important;
}

.wcot-faq-title .wcot-icon {
    width: 24px !important;
    height: 24px !important;
    color: var(--wcot-primary) !important;
}

/* FAQ List - Grid with gaps */
.wcot-faq-list {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
    gap: 12px !important;
    border: none !important;
    border-radius: 0 !important;
    overflow: visible !important;
    background: transparent !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

/* FAQ Item - Individual Card */
.wcot-faq-item {
    background: #fff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04) !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04) !important;
    -webkit-transition: all 0.2s ease !important;
    transition: all 0.2s ease !important;
}

.wcot-faq-item:hover {
    border-color: rgba(var(--wcot-primary-rgb), 0.3) !important;
    -webkit-box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08) !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08) !important;
}

.wcot-faq-item:last-child {
    border-bottom: 1px solid #e2e8f0 !important;
}

/* Question Button */
.wcot-faq-question {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
    gap: 14px !important;
    width: 100% !important;
    padding: 18px 20px !important;
    background: transparent !important;
    border: none !important;
    font-family: inherit !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #1e293b !important;
    text-align: left !important;
    cursor: pointer !important;
    -webkit-transition: all 0.2s ease !important;
    transition: all 0.2s ease !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    outline: none !important;
    margin: 0 !important;
}

.wcot-faq-question:hover {
    background: #f8fafc !important;
}

/* Question Icon */
.wcot-faq-q-icon {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
    width: 36px !important;
    height: 36px !important;
    background: rgba(var(--wcot-primary-rgb), 0.1) !important;
    border-radius: 10px !important;
    -webkit-flex-shrink: 0 !important;
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
    -webkit-transition: all 0.2s ease !important;
    transition: all 0.2s ease !important;
}

.wcot-faq-q-icon .wcot-icon {
    width: 18px !important;
    height: 18px !important;
    color: var(--wcot-primary) !important;
}

/* Question Text */
.wcot-faq-q-text {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 !important;
    flex: 1 !important;
    line-height: 1.5 !important;
    text-align: left !important;
    text-transform: capitalize!important;
}

/* Toggle Arrow */
.wcot-faq-toggle {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
    width: 28px !important;
    height: 28px !important;
    background: #f1f5f9 !important;
    border-radius: 8px !important;
    -webkit-flex-shrink: 0 !important;
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
    -webkit-transition: all 0.2s ease !important;
    transition: all 0.2s ease !important;
}

.wcot-faq-toggle .wcot-icon {
    width: 14px !important;
    height: 14px !important;
    color: #64748b !important;
    -webkit-transition: all 0.2s ease !important;
    transition: all 0.2s ease !important;
    -webkit-transform: rotate(0deg) !important;
    transform: rotate(0deg) !important;
}

/* Open State */
.wcot-faq-item.open {
    border-color: var(--wcot-primary) !important;
    -webkit-box-shadow: 0 4px 16px rgba(var(--wcot-primary-rgb), 0.15) !important;
}

.wcot-faq-item.open .wcot-faq-question {
    background: transparent !important;
}

.wcot-faq-item.open .wcot-faq-q-icon {
    background: var(--wcot-primary) !important;
}

.wcot-faq-item.open .wcot-faq-q-icon .wcot-icon {
    color: #fff !important;
}

.wcot-faq-item.open .wcot-faq-toggle {
    background: var(--wcot-primary) !important;
}

.wcot-faq-item.open .wcot-faq-toggle .wcot-icon {
    -webkit-transform: rotate(180deg) !important;
    transform: rotate(180deg) !important;
    color: #fff !important;
}

/* Answer - Left aligned */
.wcot-faq-answer {
    max-height: 0 !important;
    overflow: hidden !important;
    padding: 0 20px !important;
    background: #f8fafc !important;
    border-top: none !important;
    -webkit-transition: max-height 0.3s ease, padding 0.3s ease, border 0.3s ease !important;
    transition: max-height 0.3s ease, padding 0.3s ease, border 0.3s ease !important;
}

.wcot-faq-item.open .wcot-faq-answer {
    max-height: 500px !important;
    padding: 16px 20px !important;
    border-top: 1px solid #e2e8f0 !important;
}

.wcot-faq-answer p {
    font-size: 14px !important;
    color: #475569 !important;
    line-height: 1.7 !important;
    margin: 0 !important;
    padding: 0 !important;
    text-align: left !important;
}

/* ==========================================================================
   HELP SECTION
   ========================================================================== */

.wcot-help {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
    gap: 20px !important;
    padding: 24px !important;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%) !important;
    border: 1px solid #bfdbfe !important;
    border-radius: var(--wcot-radius) !important;
}

.wcot-help-icon {
    width: 64px !important;
    height: 64px !important;
    background: var(--wcot-white) !important;
    border-radius: 50% !important;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
    -webkit-flex-shrink: 0 !important;
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
    color: var(--wcot-info) !important;
    -webkit-box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15) !important;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15) !important;
}

.wcot-help-icon .wcot-icon {
    width: 32px !important;
    height: 32px !important;
}

.wcot-help-content h3 {
    font-size: 16px !important;
    font-weight: 600 !important;
    color: #1e40af !important;
    margin: 0 0 6px !important;
    padding: 0 !important;
}

.wcot-help-content p {
    font-size: 14px !important;
    color: #3b82f6 !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* ==========================================================================
   CARRIERS SECTION
   ========================================================================== */

.wcot-carriers {
    background: var(--wcot-white) !important;
    border: 1px solid var(--wcot-border) !important;
    border-radius: var(--wcot-radius) !important;
    padding: 32px !important;
    margin-bottom: 32px !important;
    text-align: center !important;
}

.wcot-carriers-header {
    margin-bottom: 24px !important;
}

.wcot-carriers-badge {
    display: inline-block !important;
    background: rgba(var(--wcot-primary-rgb), 0.1) !important;
    color: var(--wcot-primary) !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    padding: 4px 10px !important;
    border-radius: 20px !important;
    margin-bottom: 12px !important;
}

.wcot-carriers-header h3 {
    font-size: 20px !important;
    font-weight: 600 !important;
    color: var(--wcot-text) !important;
    margin: 0 0 8px !important;
    padding: 0 !important;
}

.wcot-carriers-header p {
    font-size: 14px !important;
    color: var(--wcot-text-muted) !important;
    margin: 0 !important;
    padding: 0 !important;
}

.wcot-carriers-grid {
    display: -ms-grid !important;
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)) !important;
    gap: 16px !important;
    width: 100% !important;
}

.wcot-carrier-item {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
    gap: 8px !important;
    padding: 16px 20px !important;
    background: var(--wcot-bg) !important;
    border-radius: var(--wcot-radius-sm) !important;
    -webkit-transition: var(--wcot-transition) !important;
    transition: var(--wcot-transition) !important;
    min-height: 100px !important;
}

.wcot-carrier-item:hover {
    background: #f1f5f9 !important;
    -webkit-transform: translateY(-2px) !important;
    transform: translateY(-2px) !important;
}

.wcot-carrier-item img {
    width: 80px !important;
    height: 32px !important;
    -o-object-fit: contain !important;
    object-fit: contain !important;
}

.wcot-carrier-item span {
    font-size: 12px !important;
    font-weight: 500 !important;
    color: var(--wcot-text-muted) !important;
}

/* ==========================================================================
   INNOVATIONS SECTION (Yenilikler) - Premium Design
   ========================================================================== */

/* Innovations Section - Clean Light Design */
.wcot-innovations {
    background: #fff !important;
    border-radius: 16px !important;
    margin-bottom: 32px !important;
    -webkit-box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06) !important;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06) !important;
    overflow: hidden !important;
}

/* Background Shapes - Hidden in light theme */
.wcot-innovations-bg {
    display: none !important;
}

.wcot-innovations-content {
    padding: 32px !important;
}

/* Header */
.wcot-innovations-header {
    text-align: left !important;
    margin-bottom: 24px !important;
    padding-bottom: 20px !important;
    border-bottom: 1px solid #e2e8f0 !important;
}

.wcot-innovations-badge {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
    gap: 6px !important;
    background: rgba(var(--wcot-primary-rgb), 0.1) !important;
    color: var(--wcot-primary) !important;
    padding: 6px 12px !important;
    border-radius: 6px !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    margin-bottom: 16px !important;
    border: none !important;
}

.wcot-innovations-badge .wcot-icon {
    width: 14px !important;
    height: 14px !important;
}

.wcot-innovations-header h2 {
    font-size: 22px !important;
    font-weight: 700 !important;
    color: #1e293b !important;
    margin: 0 0 8px !important;
    padding: 0 !important;
    line-height: 1.3 !important;
}

.wcot-innovations-header h2 span {
    color: var(--wcot-primary) !important;
}

.wcot-innovations-header h2 br {
    display: none !important;
}

.wcot-innovations-header p {
    font-size: 14px !important;
    color: #64748b !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Cards Grid - 2x2 Layout */
.wcot-innovations-grid {
    display: -ms-grid !important;
    display: grid !important;
    -ms-grid-columns: 1fr 16px 1fr !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
}

/* Innovation Card - Light Clean Style */
.wcot-innovation-card {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
    gap: 14px !important;
    background: #f8fafc !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 12px !important;
    padding: 18px !important;
    -webkit-transition: all 0.2s ease !important;
    transition: all 0.2s ease !important;
    cursor: default !important;
}

.wcot-innovation-card:hover {
    background: #f1f5f9 !important;
    border-color: rgba(var(--wcot-primary-rgb), 0.2) !important;
    -webkit-transform: translateY(-2px) !important;
    transform: translateY(-2px) !important;
    -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06) !important;
}

/* Card Number - Hidden */
.wcot-innovation-number {
    display: none !important;
}

/* Card Icon */
.wcot-innovation-icon {
    width: 44px !important;
    height: 44px !important;
    border-radius: 10px !important;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
    -webkit-flex-shrink: 0 !important;
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
    -webkit-transition: all 0.2s ease !important;
    transition: all 0.2s ease !important;
}

.wcot-innovation-card[data-color="blue"] .wcot-innovation-icon {
    background: rgba(59, 130, 246, 0.1) !important;
    color: #3b82f6 !important;
}

.wcot-innovation-card[data-color="purple"] .wcot-innovation-icon {
    background: rgba(139, 92, 246, 0.1) !important;
    color: #8b5cf6 !important;
}

.wcot-innovation-card[data-color="orange"] .wcot-innovation-icon {
    background: rgba(var(--wcot-primary-rgb), 0.1) !important;
    color: var(--wcot-primary) !important;
}

.wcot-innovation-card[data-color="green"] .wcot-innovation-icon {
    background: rgba(34, 197, 94, 0.1) !important;
    color: #22c55e !important;
}

.wcot-innovation-icon .wcot-icon {
    width: 22px !important;
    height: 22px !important;
}

/* Card Text */
.wcot-innovation-text {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 !important;
    flex: 1 !important;
    min-width: 0 !important;
}

.wcot-innovation-card h3 {
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #1e293b !important;
    margin: 0 0 4px !important;
    padding: 0 !important;
}

.wcot-innovation-card p {
    font-size: 12px !important;
    color: #64748b !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1.5 !important;
}

/* Card Arrow - Hidden */
.wcot-innovation-arrow {
    display: none !important;
}

/* Footer Stats */
.wcot-innovations-footer {
    margin-top: 24px !important;
    padding-top: 20px !important;
    border-top: 1px solid #e2e8f0 !important;
}

.wcot-innovations-stats {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
    gap: 32px !important;
}

.wcot-innovations-stat {
    text-align: left !important;
}

.wcot-stat-value {
    display: block !important;
    font-size: 24px !important;
    font-weight: 700 !important;
    color: var(--wcot-primary) !important;
    line-height: 1.2 !important;
}

.wcot-stat-label {
    display: block !important;
    font-size: 11px !important;
    color: #64748b !important;
    margin-top: 2px !important;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 640px) {
    .wcot-hero {
        padding: 32px 16px !important;
    }

    .wcot-hero-title {
        font-size: 26px !important;
    }

    .wcot-hero-desc {
        font-size: 15px !important;
    }

    .wcot-trust-badges {
        gap: 12px !important;
    }

    .wcot-badge {
        font-size: 12px !important;
    }

    .wcot-search-card {
        padding: 20px !important;
        border-radius: 10px !important;
    }

    .wcot-tab span {
        display: none !important;
    }

    .wcot-tab {
        padding: 12px !important;
    }

    .wcot-tab .wcot-icon {
        width: 20px !important;
        height: 20px !important;
    }

    .wcot-features {
        gap: 12px !important;
    }

    .wcot-feature {
        padding: 16px !important;
    }

    .wcot-feature-icon {
        width: 44px !important;
        height: 44px !important;
    }

    .wcot-grid {
        grid-template-columns: 1fr !important;
    }

    .wcot-help {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
        flex-direction: column !important;
        text-align: center !important;
    }

    /* FAQ Mobile */
    .wcot-faq-list {
        gap: 10px !important;
    }

    .wcot-faq-title {
        font-size: 18px !important;
        gap: 10px !important;
        margin-bottom: 16px !important;
    }

    .wcot-faq-title .wcot-icon {
        width: 20px !important;
        height: 20px !important;
    }

    .wcot-faq-item {
        border-radius: 10px !important;
    }

    .wcot-faq-question {
        padding: 14px 16px !important;
        gap: 12px !important;
    }

    .wcot-faq-q-icon {
        width: 32px !important;
        height: 32px !important;
        border-radius: 8px !important;
    }

    .wcot-faq-q-icon .wcot-icon {
        width: 16px !important;
        height: 16px !important;
    }

    .wcot-faq-q-text {
        font-size: 13px !important;
    }

    .wcot-faq-toggle {
        width: 24px !important;
        height: 24px !important;
        border-radius: 6px !important;
    }

    .wcot-faq-toggle .wcot-icon {
        width: 12px !important;
        height: 12px !important;
    }

    .wcot-faq-answer {
        padding: 0 16px !important;
    }

    .wcot-faq-item.open .wcot-faq-answer {
        padding: 14px 16px !important;
    }

    .wcot-faq-answer p {
        font-size: 13px !important;
        line-height: 1.6 !important;
    }

    /* Road Animation - Vertical Timeline for Mobile */
    .wcot-road-container {
        padding: 0 !important;
    }

    /* Hide horizontal road on mobile */
    .wcot-road {
        display: none !important;
    }

    /* Vertical steps layout */
    .wcot-road-steps {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
        flex-direction: column !important;
        gap: 0 !important;
        padding: 0 !important;
    }

    .wcot-road-step {
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
        flex-direction: row !important;
        -webkit-box-align: start !important;
        -ms-flex-align: start !important;
        align-items: flex-start !important;
        max-width: 100% !important;
        gap: 0 !important;
        position: relative !important;
    }

    /* Left side with icon and line */
    .wcot-road-step-icon {
        width: 36px !important;
        height: 36px !important;
        -webkit-flex-shrink: 0 !important;
        -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
        position: relative !important;
        z-index: 2 !important;
    }

    .wcot-road-step-icon .wcot-icon {
        width: 18px !important;
        height: 18px !important;
    }

    /* Vertical connecting line */
    .wcot-road-step::before {
        content: '' !important;
        position: absolute !important;
        left: 17px !important;
        top: 36px !important;
        width: 2px !important;
        height: calc(100% - 36px + 16px) !important;
        background: var(--wcot-border) !important;
        z-index: 1 !important;
    }

    .wcot-road-step:last-child::before {
        display: none !important;
    }

    .wcot-road-step.done::before {
        background: var(--wcot-success) !important;
    }

    /* Label on the right */
    .wcot-road-step-label {
        font-size: 14px !important;
        font-weight: 500 !important;
        text-align: left !important;
        padding: 8px 0 24px 14px !important;
        line-height: 1.4 !important;
    }

    .wcot-road-step:last-child .wcot-road-step-label {
        padding-bottom: 0 !important;
    }

    .wcot-road-step.done .wcot-road-step-label {
        color: var(--wcot-success) !important;
        font-weight: 600 !important;
    }

    .wcot-road-step.active .wcot-road-step-label {
        color: var(--wcot-primary) !important;
        font-weight: 600 !important;
    }

    /* Carriers responsive */
    .wcot-carriers {
        padding: 24px 16px !important;
    }

    .wcot-carriers-header h3 {
        font-size: 18px !important;
    }

    .wcot-carrier-item {
        padding: 12px 16px !important;
        min-width: 80px !important;
    }

    .wcot-carrier-item img {
        width: 60px !important;
        height: 24px !important;
    }

    .wcot-carrier-item span {
        font-size: 11px !important;
    }

    /* Innovations responsive - Mobile */
    .wcot-innovations {
        margin-bottom: 24px !important;
        border-radius: 12px !important;
    }

    .wcot-innovations-content {
        padding: 20px 16px !important;
    }

    .wcot-innovations-header {
        margin-bottom: 16px !important;
        padding-bottom: 14px !important;
    }

    .wcot-innovations-badge {
        padding: 4px 10px !important;
        font-size: 10px !important;
        margin-bottom: 12px !important;
    }

    .wcot-innovations-header h2 {
        font-size: 18px !important;
    }

    .wcot-innovations-header p {
        font-size: 13px !important;
    }

    /* Mobile: Single column layout */
    .wcot-innovations-grid {
        -ms-grid-columns: 1fr !important;
        grid-template-columns: 1fr !important;
        gap: 10px !important;
    }

    .wcot-innovation-card {
        padding: 14px !important;
        gap: 12px !important;
        border-radius: 10px !important;
    }

    .wcot-innovation-card:hover {
        -webkit-transform: none !important;
        transform: none !important;
    }

    .wcot-innovation-icon {
        width: 40px !important;
        height: 40px !important;
        border-radius: 8px !important;
    }

    .wcot-innovation-icon .wcot-icon {
        width: 20px !important;
        height: 20px !important;
    }

    .wcot-innovation-card h3 {
        font-size: 13px !important;
    }

    .wcot-innovation-card p {
        font-size: 11px !important;
        line-height: 1.4 !important;
    }

    .wcot-innovations-footer {
        margin-top: 16px !important;
        padding-top: 14px !important;
    }

    .wcot-innovations-stats {
        -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
        justify-content: space-between !important;
        gap: 0 !important;
    }

    .wcot-innovations-stat {
        text-align: center !important;
    }

    .wcot-stat-value {
        font-size: 20px !important;
    }

    .wcot-stat-label {
        font-size: 10px !important;
    }
}

/* ─── Delivery Estimate ─── */
.wcot-delivery-estimate {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 16px;
    background: #f0f9ff;
    border-radius: 10px;
    margin-bottom: 16px;
    border: 1px solid #bae6fd;
}
.wcot-delivery-estimate > .wcot-icon {
    flex-shrink: 0;
    color: #0ea5e9;
    margin-top: 2px;
}
.wcot-delivery-estimate strong {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #0c4a6e;
    margin-bottom: 2px;
}
.wcot-delivery-estimate span,
.wcot-delivery-estimate p {
    font-size: 13px;
    color: #0369a1;
    line-height: 1.5;
    margin: 0;
}
.wcot-delivery-delayed {
    color: #92400e !important;
}
.wcot-delivery-delayed strong {
    color: #92400e !important;
}
.wcot-delivery-delayed p {
    color: #a16207 !important;
}
.wcot-delivery-estimate:has(.wcot-delivery-delayed) {
    background: #fffbeb;
    border-color: #fde68a;
}

/* ─── Documents Section ─── */
.wcot-documents {
    margin-bottom: 16px;
    padding: 14px 16px;
    background: #f0fdf4;
    border-radius: 10px;
    border: 1px solid #bbf7d0;
}
.wcot-documents h4 {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: #166534;
    margin: 0 0 12px;
}
.wcot-doc-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.wcot-doc-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none !important;
    transition: all 0.2s ease;
}
.wcot-doc-invoice {
    background: #dbeafe;
    color: #1e40af !important;
    border: 1px solid #93c5fd;
}
.wcot-doc-invoice:hover {
    background: #bfdbfe;
}
.wcot-doc-warranty {
    background: #dcfce7;
    color: #166534 !important;
    border: 1px solid #86efac;
}
.wcot-doc-warranty:hover {
    background: #bbf7d0;
}
/* ─── Belge Modalları (BACS modal birebir) ─── */
.wcbc-inv-overlay{position:fixed;inset:0;z-index:100000;background:rgba(0,0,0,0.45);display:flex;align-items:center;justify-content:center;padding:24px;-webkit-backdrop-filter:blur(3px);backdrop-filter:blur(3px);}
.wcbc-inv-modal-box{background:#fff!important;border-radius:12px!important;width:100%!important;max-width:750px!important;max-height:85vh!important;display:flex!important;flex-direction:column!important;box-shadow:0 24px 80px rgba(0,0,0,0.18)!important;overflow:hidden!important;position:relative!important;}
.wcbc-inv-modal-head{display:flex;align-items:center;justify-content:space-between;padding:16px 20px;border-bottom:1px solid #eee;flex-shrink:0;}
.wcbc-inv-modal-x{background:none!important;border:none!important;padding:5px!important;margin:0!important;cursor:pointer;color:#bbb;display:flex;align-items:center;border-radius:6px;transition:all 0.15s;min-height:auto!important;min-width:auto!important;box-shadow:none!important;outline:none!important;line-height:1!important;}
.wcbc-inv-modal-x:hover{background:#f5f5f5!important;color:#666;}
.wcbc-inv-modal-scroll{flex:1;overflow-y:auto;overflow-x:auto;padding:0;-webkit-overflow-scrolling:touch;}
.wcbc-inv-modal-content{min-width:600px;}
.wcbc-inv-modal-content .wcbc-inv{border:none;min-width:auto;width:100%;}
.wcbc-inv-modal-foot{display:flex!important;align-items:center!important;justify-content:space-between!important;padding:12px 20px!important;border-top:1px solid #eee!important;flex-shrink:0!important;gap:12px!important;position:relative!important;background:#fff!important;z-index:1!important;margin:0!important;float:none!important;width:100%!important;box-sizing:border-box!important;}
.wcbc-inv-modal-close-btn{background:#111!important;color:#fff!important;border:none!important;padding:9px 20px!important;border-radius:6px!important;font-size:13px!important;font-weight:600!important;cursor:pointer!important;white-space:nowrap!important;transition:background 0.15s!important;box-shadow:none!important;outline:none!important;min-height:auto!important;line-height:1.4!important;}
.wcbc-inv-modal-close-btn:hover{background:#333!important;}
@keyframes wcbcISlide{from{transform:translateY(100%);}to{transform:translateY(0);}}
@media (max-width: 768px) {
    .wcbc-inv-overlay{padding:0;align-items:flex-end;}
    .wcbc-inv-modal-box{max-width:100%!important;max-height:92vh!important;border-radius:14px 14px 0 0!important;animation:wcbcISlide 0.25s ease;margin:0!important;}
    .wcbc-inv-modal-head{padding:14px 16px;position:sticky;top:0;background:#fff;z-index:2;}
    .wcbc-inv-modal-scroll{overflow-x:hidden;overflow-y:auto;}
    .wcbc-inv-modal-content{min-width:700px;transform-origin:top left;}
    .wcbc-inv-modal-foot{padding:12px 16px!important;margin:0!important;}
    .wcbc-inv-modal-close-btn{width:100%!important;text-align:center!important;padding:13px 20px!important;font-size:14px!important;}
}
