/**
 * Marketplace Page Styles
 * 
 * @package Loraic
 */

/* Prevent horizontal scroll */
.pxl-marketplace-page {
    overflow-x: hidden;
    max-width: 100vw;
}

.pxl-marketplace-page * {
    box-sizing: border-box;
}

/* Elementor Kit 7 h1 styles */
.elementor-kit-7 h1 {
    color: #ffffff;
    font-family: "Roboto", Sans-serif;
    font-size: 70px;
    font-weight: 600;
    font-style: normal;
    line-height: 95px;
}

/* Page Container */
.pxl-marketplace-page {
    background: #e3e3e31c;
    min-height: 100vh;
    padding-bottom: 80px;
}

/* Hero Banner - like reference design */
.pxl-marketplace-hero {
    position: relative;
    padding: 56px 0 72px;
    overflow: hidden;
    background-image: url('../img/bg-marketplace.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.pxl-marketplace-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
}

/* Floating blurred shapes */
.pxl-hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
}

.pxl-hero-shape-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(30, 144, 255, 0.8), rgba(30, 144, 255, 0.3));
    top: -150px;
    left: -100px;
    animation: floatShape1 20s ease-in-out infinite;
}

.pxl-hero-shape-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(0, 200, 83, 0.7), rgba(0, 200, 83, 0.3));
    bottom: -120px;
    right: -80px;
    animation: floatShape2 18s ease-in-out infinite;
}

.pxl-hero-shape-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.6), rgba(59, 130, 246, 0.2));
    top: 50%;
    right: 15%;
    animation: floatShape3 22s ease-in-out infinite;
}

.pxl-hero-shape-4 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.5), rgba(16, 185, 129, 0.2));
    bottom: 30%;
    left: 20%;
    animation: floatShape4 25s ease-in-out infinite;
}

/* Animations for shapes */
@keyframes floatShape1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -40px) scale(1.1); }
    66% { transform: translate(-20px, 30px) scale(0.9); }
}

@keyframes floatShape2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-40px, 30px) scale(0.95); }
    66% { transform: translate(25px, -35px) scale(1.05); }
}

@keyframes floatShape3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(20px, 30px) scale(1.08); }
    66% { transform: translate(-30px, -20px) scale(0.92); }
}

@keyframes floatShape4 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-25px, -30px) scale(1.05); }
    66% { transform: translate(30px, 25px) scale(0.95); }
}

.pxl-marketplace-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Hero Content - 2 columns */
.pxl-marketplace-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.pxl-hero-left {
    max-width: 540px;
}

.pxl-marketplace-title {
    color: #ffffff;
    font-family: "Roboto", Sans-serif;
    font-size: 70px;
    font-weight: 600;
    font-style: normal;
    line-height: 95px;
    margin-bottom: 24px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.pxl-marketplace-subtitle {
    font-size: 18px;
    color: #ffffff;
    margin: 0;
    line-height: 1.7;
}

.pxl-hero-right {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.pxl-hero-card {
    max-width: 80%;
    max-height: 420px;
    border-radius: 32px;
    background: transparent;
    border: none;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.35);
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.pxl-hero-right:hover .pxl-hero-card {
    transform: translateY(-6px);
    box-shadow: 0 26px 70px rgba(15, 23, 42, 0.45);
}

.pxl-hero-image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: inherit;
}

/* Progress Steps */
.pxl-marketplace-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    position: relative;
}

.pxl-marketplace-steps::before {
    content: '';
    position: absolute;
    top: 24px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: #e5e7eb;
    z-index: 0;
}

.pxl-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 1;
    flex: 1;
}

.pxl-step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #e5e7eb;
    color: #9ca3af;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
}

.pxl-step.active .pxl-step-number {
    background: linear-gradient(135deg, #1e90ff, #00c853);
    color: #ffffff;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(30, 144, 255, 0.3);
}

.pxl-step.completed .pxl-step-number {
    background: #10b981;
    color: #ffffff;
}

.pxl-step.completed .pxl-step-number::after {
    content: '✓';
}

.pxl-step-label {
    font-size: 14px;
    font-weight: 600;
    color: #6b7280;
    text-align: center;
}

.pxl-step.active .pxl-step-label {
    color: #111827;
}

/* Form Wrapper */
.pxl-marketplace-form-wrapper {
    background: #ffffff;
    border-radius: 16px;
    padding: 48px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    margin-top: -40px;
    position: relative;
    z-index: 10;
}

.pxl-form-step {
    display: none;
}

.pxl-form-step.active {
    display: block;
}

.pxl-step-content {
    min-height: 400px;
}

.pxl-step-title {
    font-size: 22px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 28px;
    text-align: center;
}

/* Company selection error notification */
.pxl-company-error {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 24px;
    background: #fef2f2;
    border: 2px solid #ef4444;
    border-radius: 8px;
    color: #dc2626;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 24px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.pxl-company-error svg {
    flex-shrink: 0;
    stroke: #dc2626;
}

.pxl-company-error.shake {
    animation: shakeError 0.5s ease;
}

@keyframes shakeError {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-10px); }
    50% { transform: translateX(10px); }
    75% { transform: translateX(-10px); }
}

/* Company Cards - Grid Layout */
.pxl-companies-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
    max-width: 100%;
    margin: 0 auto;
}

.pxl-company-card {
    position: relative;
    cursor: pointer;
}

.pxl-company-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.pxl-company-card label {
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    background: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pxl-company-card label:hover {
    border-color: #1e90ff;
    box-shadow: 0 8px 24px rgba(30, 144, 255, 0.15);
    transform: translateY(-4px);
}

.pxl-company-card.selected label,
.pxl-company-card input:checked + label {
    border-color: #1e90ff;
    border-width: 3px;
    background: linear-gradient(135deg, rgba(30, 144, 255, 0.03), rgba(0, 200, 83, 0.03));
    box-shadow: 0 8px 28px rgba(30, 144, 255, 0.25);
}

/* Badge */
.pxl-company-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 12px;
    background: linear-gradient(135deg, #1e90ff, #00c853);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: 6px;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(30, 144, 255, 0.3);
}

/* Company Header */
.pxl-company-header {
    position: relative;
    padding: 24px 24px 16px;
    text-align: center;
}

.pxl-company-logo {
    margin: 0 auto 16px;
}

.pxl-company-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--brand-bg, linear-gradient(135deg, #1e90ff, #00c853));
    border-radius: 50%;
    color: var(--brand-color, #ffffff);
    transition: all 0.3s ease;
    box-shadow: 0 8px 18px var(--brand-shadow, rgba(30, 144, 255, 0.25));
    border: 3px solid rgba(255, 255, 255, 0.25);
    position: relative;
    overflow: hidden;
}

.pxl-company-card.selected .pxl-company-icon,
.pxl-company-card input:checked + label .pxl-company-icon {
    transform: scale(1.05) rotate(3deg);
    box-shadow: 0 10px 26px var(--brand-shadow, rgba(30, 144, 255, 0.4));
}

.pxl-company-icon svg {
    stroke: currentColor;
    width: 36px;
    height: 36px;
}

/* Company Body */
.pxl-company-body {
    padding: 0 24px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pxl-company-name {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    text-align: center;
    line-height: 1.3;
}

/* Rating */
.pxl-company-rating {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
    position: relative;
    cursor: pointer;
}

.pxl-stars {
    display: flex;
    gap: 2px;
}

.pxl-star {
    font-size: 18px;
    line-height: 1;
}

.pxl-star-full {
    color: #fbbf24;
}

.pxl-star-half {
    background: linear-gradient(90deg, #fbbf24 50%, #d1d5db 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pxl-star-empty {
    color: #d1d5db;
}

.pxl-rating-number {
    font-size: 15px;
    font-weight: 700;
    color: #111827;
}

.pxl-reviews-count {
    font-size: 13px;
    color: #6b7280;
}

.pxl-rating-tooltip {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    width: 220px;
    padding: 16px;
    border-radius: 12px;
    background: rgba(17, 24, 39, 0.95);
    color: #f9fafb;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.35);
    opacity: 0;
    pointer-events: none;
    transition: all 0.25s ease;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(148, 163, 184, 0.25);
    z-index: 5;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pxl-rating-tooltip::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    background: rgba(17, 24, 39, 0.95);
    border-left: 1px solid rgba(148, 163, 184, 0.25);
    border-top: 1px solid rgba(148, 163, 184, 0.25);
    transform: translateX(-50%) rotate(45deg);
}

.pxl-rating-tooltip .metric-label-en,
.pxl-rating-tooltip .metric-label-ru,
.pxl-rating-tooltip .metric-label-ro {
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(226, 232, 240, 0.75);
    font-weight: 600;
}

.pxl-rating-tooltip .pxl-tooltip-value {
    font-size: 18px;
    font-weight: 700;
    color: #e2e8f0;
}

.pxl-rating-tooltip svg {
    display: none;
}

.pxl-tooltip-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column;
    gap: 0;
}

.pxl-tooltip-label {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.pxl-company-rating:hover .pxl-rating-tooltip {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

/* Description */
.pxl-company-description {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
    text-align: center;
    flex: 1;
}

/* Footer Action */
.pxl-company-footer {
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid #f3f4f6;
}

.pxl-company-action {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #1e90ff;
    transition: all 0.2s ease;
}

.pxl-company-card.selected .pxl-company-action,
.pxl-company-card input:checked + label .pxl-company-action {
    color: #10b981;
}

.pxl-company-action svg {
    stroke: currentColor;
}

.pxl-company-rating:hover .pxl-rating-tooltip {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

/* Order Now Button */
.pxl-company-action-btn {
    width: 100%;
    padding: 12px 20px;
    background: #111827;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(17, 24, 39, 0.35);
}

.pxl-company-action-btn:hover {
    background: #000000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(17, 24, 39, 0.45);
}

.pxl-company-card.selected .pxl-company-action-btn {
    background: #000000;
    box-shadow: 0 4px 14px rgba(17, 24, 39, 0.45);
}

.pxl-company-card.selected .pxl-company-action-btn:hover {
    box-shadow: 0 6px 22px rgba(17, 24, 39, 0.55);
}

/* Checkmark */
.pxl-company-checkmark {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #10b981;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
    z-index: 3;
}

.pxl-company-card.selected .pxl-company-checkmark,
.pxl-company-card input:checked + label .pxl-company-checkmark {
    opacity: 1;
    transform: scale(1);
}

/* Form Fields */
.pxl-form-fields {
    max-width: 800px;
    margin: 0 auto;
}

.pxl-form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 24px;
}

.pxl-form-field.full-width {
    grid-column: 1 / -1;
}

.pxl-form-field label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
}

.pxl-input,
.pxl-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
    color: #111827;
    transition: all 0.3s ease;
    outline: none;
}

.pxl-input:focus,
.pxl-textarea:focus {
    border-color: #1e90ff;
    box-shadow: 0 0 0 3px rgba(30, 144, 255, 0.1);
}

.pxl-input.error,
.pxl-textarea.error {
    border-color: #ef4444;
    background-color: #fef2f2;
}

.pxl-field-error {
    display: block;
    color: #dc2626;
    font-size: 13px;
    margin-top: 6px;
    font-weight: 500;
    animation: slideDown 0.2s ease;
}

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

.pxl-textarea {
    resize: vertical;
    min-height: 100px;
}

/* File Upload */
.pxl-upload-area {
    max-width: 800px;
    margin: 0 auto;
}

.pxl-upload-zone {
    border: 2px dashed #d1d5db;
    border-radius: 12px;
    padding: 48px 24px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #f9fafb;
}

.pxl-upload-zone:hover,
.pxl-upload-zone.dragover {
    border-color: #1e90ff;
    background: rgba(30, 144, 255, 0.05);
}

.pxl-upload-icon {
    color: #9ca3af;
    margin-bottom: 16px;
}

.pxl-upload-zone.dragover .pxl-upload-icon {
    color: #1e90ff;
}

.pxl-upload-text {
    font-size: 16px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
}

.pxl-upload-hint {
    font-size: 14px;
    color: #6b7280;
    margin: 0 0 20px 0;
}

.pxl-upload-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    background: #222;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pxl-upload-btn:hover {
    background: #000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.pxl-file-input {
    display: none;
}

.pxl-file-list {
    margin-top: 24px;
}

.pxl-file-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    margin-bottom: 12px;
}

.pxl-file-icon {
    font-size: 24px;
}

.pxl-file-info {
    flex: 1;
}

.pxl-file-name {
    font-size: 14px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 4px;
}

.pxl-file-size {
    font-size: 12px;
    color: #6b7280;
}

.pxl-file-remove {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: #fee2e2;
    color: #dc2626;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.pxl-file-remove:hover {
    background: #dc2626;
    color: #ffffff;
}

/* Order Summary */
.pxl-order-summary {
    max-width: 800px;
    margin: 0 auto;
}

.pxl-summary-section {
    padding: 24px;
    background: #f9fafb;
    border-radius: 8px;
    margin-bottom: 24px;
}

.pxl-summary-heading {
    font-size: 18px !important;
    font-weight: 700;
    color: #374151;
    margin-bottom: 8px;
    line-height: 1.3;
}

.pxl-summary-value {
    font-size: 15px;
    color: #111827;
    line-height: 1.6;
}

/* Step Subtitle */
.pxl-step-subtitle {
    font-size: 14px;
    color: #6b7280;
    text-align: center;
    margin-bottom: 32px;
    font-style: italic;
}

/* Person Type Selector */
.pxl-person-type-selector {
    display: flex;
    gap: 16px;
    margin-top: 12px;
}

.pxl-person-type-option {
    flex: 1;
    position: relative;
    cursor: pointer;
}

.pxl-person-type-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.pxl-person-type-label {
    display: block;
    padding: 16px 20px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    background: #ffffff;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    color: #374151;
    transition: all 0.3s ease;
}

.pxl-person-type-option input[type="radio"]:checked + .pxl-person-type-label {
    border-color: #1e90ff;
    background: #eff6ff;
    color: #1e40af;
    box-shadow: 0 0 0 3px rgba(30, 144, 255, 0.1);
}

.pxl-person-type-option:hover .pxl-person-type-label {
    border-color: #93c5fd;
    background: #f0f9ff;
}

/* Broker Contact */
.pxl-broker-contact {
    background: #eff6ff !important;
    border: 2px solid #bfdbfe;
}

.pxl-broker-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pxl-broker-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #ffffff;
    border-radius: 6px;
    font-size: 14px;
}

.pxl-broker-item strong {
    color: #1e40af;
    min-width: 100px;
}

.pxl-broker-link {
    color: #1e90ff;
    text-decoration: none;
    font-weight: 600;
}

.pxl-broker-link:hover {
    text-decoration: underline;
}

.pxl-summary-files {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pxl-summary-files li {
    padding: 8px 0;
    border-bottom: 1px solid #e5e7eb;
}

.pxl-summary-files li:last-child {
    border-bottom: none;
}

.pxl-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    color: #374151;
}

.pxl-checkbox-label input[type="checkbox"] {
    margin-top: 3px;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

/* Form Navigation */
.pxl-form-navigation {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid #e5e7eb;
}

.pxl-btn {
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.pxl-btn-prev {
    background: #f3f4f6;
    color: #374151;
}

.pxl-btn-prev:hover {
    background: #e5e7eb;
}

.pxl-btn-next,
.pxl-btn-submit {
    background: linear-gradient(135deg, #1e90ff, #00c853);
    color: #ffffff;
    margin-left: auto;
}

.pxl-btn-next:hover,
.pxl-btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 144, 255, 0.3);
}

.pxl-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Success Message */
.pxl-marketplace-success {
    text-align: center;
    padding: 60px 20px 80px;
    max-width: 600px;
    margin: 0 auto;
}

.pxl-success-animation {
    margin-bottom: 32px;
}

.pxl-success-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1e90ff, #00c853);
    color: #ffffff;
    font-size: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(30, 144, 255, 0.3);
    animation: successPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes successPop {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.pxl-success-title {
    font-size: 32px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
    animation: fadeInUp 0.6s ease 0.2s both;
}

.pxl-success-message {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 40px;
    animation: fadeInUp 0.6s ease 0.3s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pxl-success-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease 0.4s both;
}

.pxl-btn-primary {
    background: linear-gradient(135deg, #1e90ff, #00c853) !important;
    color: #ffffff !important;
    border: none !important;
}

.pxl-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 144, 255, 0.4);
}

.pxl-btn-secondary {
    background: #ffffff !important;
    color: #111827 !important;
    border: 2px solid #e5e7eb !important;
}

.pxl-btn-secondary:hover {
    background: #f9fafb !important;
    border-color: #d1d5db !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 968px) {
    .pxl-marketplace-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .pxl-hero-left {
        max-width: 100%;
        text-align: center;
    }

    .pxl-hero-right {
        order: -1;
    }
}

@media (max-width: 768px) {
    .pxl-marketplace-form-wrapper {
        padding: 32px 24px;
    }

    .pxl-marketplace-hero {
        padding: 60px 0 70px;
    }

    .pxl-marketplace-title {
        font-size: 36px;
        line-height: 48px;
        font-family: "Roboto", Sans-serif;
        font-weight: 600;
    }

    .pxl-marketplace-subtitle {
        font-size: 16px;
    }

    .pxl-step-title {
        font-size: 24px;
    }

    .pxl-form-row {
        grid-template-columns: 1fr;
    }

    .pxl-company-content {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
    }

    .pxl-company-checkmark {
        position: absolute;
        top: 20px;
        right: 20px;
    }

    .pxl-marketplace-steps {
        flex-wrap: wrap;
        gap: 16px;
    }

    .pxl-marketplace-steps::before {
        display: none;
    }

    .pxl-form-navigation {
        flex-direction: column;
    }

    .pxl-btn-next,
    .pxl-btn-submit {
        margin-left: 0;
    }
}

/* Elementor Kit 7 h2 override - global for all Elementor headings with specific classes */
/* Maximum specificity to override 32px !important rule */
html body .elementor-kit-7 h2.elementor-heading-title.elementor-size-default,
body .elementor-kit-7 h2.elementor-heading-title.elementor-size-default,
.elementor-kit-7 h2.elementor-heading-title.elementor-size-default,
.elementor-kit-7 .elementor-heading-title.elementor-size-default,
.elementor-kit-7 h2 {
    font-size: 60px !important;
}

/* Accordion SVG fill fix for mobile - maximum specificity to override fill: #151515 */
@media (max-width: 768px) {
    html body .elementor-15072 .elementor-element.elementor-element-37a1969e .pp-advanced-accordion .pp-accordion-tab-title svg,
    body .elementor-15072 .elementor-element.elementor-element-37a1969e .pp-advanced-accordion .pp-accordion-tab-title svg,
    .elementor-15072 .elementor-element.elementor-element-37a1969e .pp-advanced-accordion .pp-accordion-tab-title svg path,
    .elementor-15072 .elementor-element.elementor-element-37a1969e .pp-advanced-accordion .pp-accordion-tab-title svg * {
        fill: none !important;
    }
}

/* Elementor heading title styles */

/* Elementor h2 heading default size */
h2.elementor-heading-title.elementor-size-default {
    font-size: 32px !important;
}
