/**
 * Clean Mobile Styles for VVSOutlet Product Pages
 * Version 1.20.1 - Simplified, mobile-first design
 */

/* Reset and Base Styles */
.vvsoutlet-mobile-clean {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #333;
    line-height: 1.6;
    background: #fff;
    min-height: 100vh;
}

.vvsoutlet-mobile-clean * {
    box-sizing: border-box;
}

/* Hide desktop elements */
@media (max-width: 768px) {
    body.single-vvsoutlet-product .site-header,
    body.single-vvsoutlet-product .site-footer,
    body.single-vvsoutlet-product .breadcrumbs,
    body.single-vvsoutlet-product .desktop-only {
        display: none !important;
    }
}

/* Mobile Header */
.vvsoutlet-mobile-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 56px;
    background: #fff;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    padding: 0 16px;
    gap: 12px;
    z-index: 100;
}

.vvsoutlet-back-btn,
.vvsoutlet-share-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    color: #333;
}

.vvsoutlet-mobile-title {
    flex: 1;
    font-size: 16px;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin: 0;
}

/* Main Content */
.vvsoutlet-mobile-content {
    padding-top: 0; /* Remove extra padding */
}

/* Breadcrumbs */
.vvsoutlet-breadcrumbs-mobile {
    padding: 8px 12px; /* Reduced padding for mobile */
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
    font-size: 11px; /* Smaller font for mobile */
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0; /* Ensure no extra margins */
}

.vvsoutlet-breadcrumbs-mobile ul {
    display: flex;
    align-items: center;
    gap: 4px; /* Reduced gap for mobile */
    margin: 0;
    padding: 0;
    list-style: none;
    white-space: nowrap;
}

.vvsoutlet-breadcrumbs-mobile li {
    display: flex;
    align-items: center;
    color: #6c757d;
    max-width: 150px; /* Limit width on mobile */
}

.vvsoutlet-breadcrumbs-mobile li:not(:last-child)::after {
    content: '›';
    margin-left: 4px; /* Reduced spacing */
    color: #adb5bd;
    font-size: 14px;
}

.vvsoutlet-breadcrumbs-mobile a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.2s;
    display: inline-block;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.vvsoutlet-breadcrumbs-mobile a:hover {
    color: #0056b3;
    text-decoration: underline;
}

.vvsoutlet-breadcrumbs-mobile li:last-child {
    color: #495057;
    font-weight: 500;
}

/* Product Image */
.vvsoutlet-product-image-mobile {
    width: 100%;
    height: 375px;
    background: #f8f8f8;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.vvsoutlet-product-image-mobile img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.vvsoutlet-no-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #999;
}

/* Discount Badge */
.vvsoutlet-discount-badge-mobile {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(231, 76, 60, 0.3);
}

.vvsoutlet-discount-badge-mega {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 24px;
    font-weight: 800;
    box-shadow: 0 4px 12px rgba(238, 90, 36, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Outlet Badge */
.vvsoutlet-outlet-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, #ff7979, #eb4d4b);
    color: white;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(235, 77, 75, 0.3);
}

/* Condition Badge */
.vvsoutlet-condition-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(255, 255, 255, 0.95);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.vvsoutlet-condition-new {
    color: #27ae60;
    border: 1px solid #27ae60;
}

.vvsoutlet-condition-bstock {
    color: #f39c12;
    border: 1px solid #f39c12;
}

/* Info Tags */
.vvsoutlet-info-tags-mobile {
    position: absolute;
    bottom: 12px;
    left: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    max-width: calc(100% - 24px);
}

.vvsoutlet-info-tag {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

/* Product Info */
.vvsoutlet-product-info-mobile {
    padding: 20px 16px;
}

/* Brand Section with Logo */
.vvsoutlet-brand-section-mobile {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.vvsoutlet-brand-link-mobile {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s;
}

.vvsoutlet-brand-link-mobile:hover {
    opacity: 0.8;
}

.vvsoutlet-brand-logo-mobile {
    max-height: 40px;
    max-width: 120px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.vvsoutlet-brand-text-mobile {
    font-size: 14px;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Legacy support */
.vvsoutlet-brand-mobile {
    font-size: 14px;
    color: #666;
    margin-bottom: 4px;
}

.vvsoutlet-title-mobile {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
    margin: 0 0 8px 0;
}

.vvsoutlet-meta-mobile {
    font-size: 13px;
    color: #666;
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

/* Clean Price Display */
.vvsoutlet-price-mobile {
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 16px;
    background: #fff;
    margin-bottom: 20px;
}

.vvsoutlet-price-current {
    font-size: 32px;
    font-weight: 700;
    color: #dc3545 !important; /* Red color for sale price as attention signal */
    line-height: 1;
    background: linear-gradient(135deg, #fff5f5 0%, #ffebeb 100%);
    border: 2px solid #ffcdd2;
    border-radius: 8px;
    padding: 10px 14px;
    box-shadow: 0 2px 8px rgba(220, 53, 69, 0.1);
    display: inline-block;
    transition: all 0.3s ease;
}

.vvsoutlet-price-original {
    font-size: 16px;
    color: #999;
    text-decoration: line-through;
    margin-left: 8px;
}

.vvsoutlet-price-vat {
    font-size: 13px;
    color: #666;
    margin-top: 4px;
}

/* Stock Status */
.vvsoutlet-stock-mobile {
    font-size: 14px;
    cursor: pointer;
    user-select: none;
    margin-bottom: 20px;
}

.vvsoutlet-stock-label {
    margin-right: 8px;
    color: #666;
}

.vvsoutlet-stock-indicator {
    display: inline-block;
    font-weight: 600;
    margin-right: 8px;
}

.vvsoutlet-stock-indicator.vvsoutlet-stock-green {
    color: #27ae60;
}

.vvsoutlet-stock-indicator.vvsoutlet-stock-yellow {
    color: #f39c12;
}

.vvsoutlet-stock-indicator.vvsoutlet-stock-red {
    color: #e74c3c;
}

.vvsoutlet-stock-text {
    font-size: 13px;
    color: #666;
    margin-left: 8px;
}

/* Clean Info Tags */
.vvsoutlet-clean-tags-mobile {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 16px 0;
}

.vvsoutlet-tag-urgency {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #fff5f5;
    color: #e74c3c;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid #fadbd8;
    animation: urgency-pulse 2s infinite;
}

@keyframes urgency-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.vvsoutlet-tag-extra-discount {
    background: #e8f8f5;
    color: #27ae60;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid #a9dfbf;
}

.vvsoutlet-tag-savings {
    background: #f8f9fa;
    color: #333;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid #e9ecef;
}


/* Product Disclaimer */
.vvsoutlet-disclaimer-mobile {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 20px;
    font-size: 13px;
    line-height: 1.5;
    display: flex;
    gap: 8px;
}

.vvsoutlet-disclaimer-mobile svg {
    flex-shrink: 0;
    color: #f39c12;
}

.vvsoutlet-disclaimer-link {
    color: #0066cc;
    text-decoration: none;
    display: block;
    margin-top: 4px;
}

/* Sticky Add to Cart */
.vvsoutlet-cart-mobile {
    background: #fff;
    border-top: 1px solid #eee;
    padding: 16px;
    position: sticky;
    bottom: 0;
    z-index: 90;
}

/* Grey variant for inner cart box inside green frame */
.vvsoutlet-cart-mobile-grey {
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    position: relative;
    border-top: 1px solid #e0e0e0;
}

.vvsoutlet-quantity-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.vvsoutlet-quantity-row label {
    font-size: 14px;
    color: #666;
}

.vvsoutlet-quantity-selector {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.vvsoutlet-qty-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: #f8f8f8;
    cursor: pointer;
    font-size: 18px;
    color: #666;
}

.vvsoutlet-qty-btn:active {
    background: #e0e0e0;
}

.vvsoutlet-qty-input {
    width: 50px;
    height: 40px;
    border: none;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
}

.vvsoutlet-add-btn {
    width: 100%;
    height: 48px;
    background: #27ae60;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.vvsoutlet-add-btn:active {
    background: #219a52;
}

/* Collapsible Sections */
.vvsoutlet-sections-mobile {
    border-top: 1px solid #eee;
}

.vvsoutlet-section {
    border-bottom: 1px solid #eee;
}

.vvsoutlet-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    cursor: pointer;
    user-select: none;
    font-size: 16px;
    font-weight: 500;
}

.vvsoutlet-section-header svg {
    transition: transform 0.2s;
}

.vvsoutlet-section-header.active svg {
    transform: rotate(180deg);
}

.vvsoutlet-section-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.vvsoutlet-section-content.active {
    max-height: 500px;
}

.vvsoutlet-section-inner {
    padding: 0 16px 16px;
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

/* Product Grid Sections */
.vvsoutlet-linked-mobile,
.vvsoutlet-brand-mobile,
.vvsoutlet-related-mobile {
    padding: 24px 16px;
    border-top: 1px solid #eee;
}

.vvsoutlet-linked-mobile {
    background: #fff3cd;
}

/* Brand section with light blue/gray background */
.vvsoutlet-brand-mobile {
    background: #f0f4f8;
}

/* Related products section with light gray background */
.vvsoutlet-related-mobile {
    background: #f8f9fa;
}

/* Brand header with logo */
.vvsoutlet-brand-header {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 20px;
}

/* Brand logo container with highlighting */
.vvsoutlet-brand-logo-container {
    background: linear-gradient(135deg, #ffffff 0%, #e3f2fd 100%);
    border: 2px solid #1976d2;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 4px 12px rgba(25, 118, 210, 0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.vvsoutlet-brand-logo-container::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #1976d2, #42a5f5, #1976d2);
    border-radius: 12px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.vvsoutlet-brand-logo-container:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(25, 118, 210, 0.25);
}

.vvsoutlet-brand-logo-container:hover::before {
    opacity: 0.3;
}

.vvsoutlet-brand-logo-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
}

.vvsoutlet-brand-section-logo {
    max-height: 80px;
    max-width: 200px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

/* Call-to-action text */
.vvsoutlet-brand-cta {
    color: #1976d2;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    position: relative;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 6px;
    transition: all 0.2s ease;
}

.vvsoutlet-brand-logo-link:hover .vvsoutlet-brand-cta {
    background: #1976d2;
    color: white;
    transform: scale(1.05);
}

/* Pulse animation for attention */
@keyframes brandPulse {
    0% {
        box-shadow: 0 4px 12px rgba(25, 118, 210, 0.15);
    }
    50% {
        box-shadow: 0 4px 20px rgba(25, 118, 210, 0.3);
    }
    100% {
        box-shadow: 0 4px 12px rgba(25, 118, 210, 0.15);
    }
}

.vvsoutlet-brand-logo-container {
    animation: brandPulse 3s ease-in-out infinite;
}

.vvsoutlet-section-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
}

.vvsoutlet-product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.vvsoutlet-product-card {
    background: white;
    border-radius: 8px;
    padding: 12px;
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.2s;
}

.vvsoutlet-product-card:active {
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.vvsoutlet-card-image {
    width: 100%;
    height: 120px;
    background: #f8f8f8;
    border-radius: 4px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #999;
    position: relative;
    overflow: hidden;
}

.vvsoutlet-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.vvsoutlet-card-badge {
    position: absolute;
    top: 4px;
    right: 4px;
    background: #333;
    color: white;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 500;
}

.vvsoutlet-card-name {
    font-size: 13px;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.vvsoutlet-card-price {
    font-size: 14px;
    font-weight: 600;
    color: #dc3545 !important;
}

.vvsoutlet-price-old {
    font-size: 12px;
    color: #999;
    text-decoration: line-through;
    margin-left: 4px;
    font-weight: normal;
}

/* Trust Section */
.vvsoutlet-trust-mobile {
    padding: 24px 16px;
    background: #f8f8f8;
    text-align: center;
}

.vvsoutlet-trust-badges {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 16px;
}

.vvsoutlet-trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: #666;
}

.vvsoutlet-trust-item svg {
    opacity: 0.6;
}

.vvsoutlet-trust-text {
    font-size: 13px;
    color: #666;
    margin: 0;
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    /* Ensure full width usage */
    .vvsoutlet-mobile-clean {
        margin: 0;
        padding: 0;
    }
    
    /* Prevent horizontal scroll */
    body {
        overflow-x: hidden;
    }
    
    /* Improve touch targets */
    button, a, .vvsoutlet-section-header {
        min-height: 44px;
    }
    
    /* Optimize for smaller screens */
    @media (max-width: 375px) {
        .vvsoutlet-title-mobile {
            font-size: 18px;
        }
        
        .vvsoutlet-price-current {
            font-size: 28px;
            padding: 8px 12px;
        }
        
        .vvsoutlet-product-grid {
            gap: 8px;
        }
    }
}

/* Loading states */
.vvsoutlet-add-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Focus states for accessibility */
button:focus,
a:focus {
    outline: 2px solid #0066cc;
    outline-offset: 2px;
}

/* Smooth transitions */
* {
    -webkit-tap-highlight-color: transparent;
}

/* Hardware acceleration for smooth scrolling */
.vvsoutlet-mobile-content {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

/* Delivery Badges */
.vvsoutlet-delivery-badges {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.vvsoutlet-badge-free-shipping,
.vvsoutlet-badge-shipping,
.vvsoutlet-badge-pickup {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

.vvsoutlet-badge-free-shipping {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.vvsoutlet-badge-shipping {
    background: #f8f9fa;
    color: #6c757d;
    border: 1px solid #dee2e6;
}

.vvsoutlet-badge-pickup {
    background: #cce5ff;
    color: #004085;
    border: 1px solid #b8daff;
}

.vvsoutlet-badge-pickup svg,
.vvsoutlet-badge-pickup i {
    color: #004085;
    font-size: 16px;
}

/* Document Links */
.vvsoutlet-documents-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.vvsoutlet-document-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px;
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    transition: all 0.2s;
}

.vvsoutlet-document-link:hover,
.vvsoutlet-document-link:active {
    background: #e9ecef;
    border-color: #adb5bd;
    text-decoration: none;
}

.vvsoutlet-document-link svg {
    flex-shrink: 0;
    color: #6c757d;
}

/* Mobile Deactivated Product Message */
.vvsoutlet-deactivated-mobile {
    margin: 20px 16px;
    padding: 24px 16px;
    border-radius: 8px;
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    border: 1px solid #fca5a5;
}

.vvsoutlet-deactivated-mobile .vvsoutlet-deactivated-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 12px;
}

.vvsoutlet-deactivated-mobile h3 {
    font-size: 16px;
    margin-bottom: 8px;
}

.vvsoutlet-deactivated-mobile p {
    font-size: 14px;
    line-height: 1.4;
}
/* Deactivated tag style for mobile */
.vvsoutlet-tag.tag-deactivated {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff4757 100%);
    color: white;
    font-weight: 600;
    border: none;
    padding: 6px 12px;
    font-size: 12px;
}

.vvsoutlet-tag.tag-deactivated svg {
    color: white;
}

/* Quote Request Styles - v1.31.3 */
.vvsoutlet-quote-request {
    text-align: center;
    padding: 16px;
    background: #f8f9fa;
    border-radius: 8px;
}

.vvsoutlet-quote-text {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    display: block;
    margin-bottom: 4px;
}

.vvsoutlet-quote-info {
    font-size: 14px;
    color: #666;
}

.vvsoutlet-quote-section {
    padding: 20px 16px;
    background: #fff;
    border-top: 1px solid #eee;
}

.vvsoutlet-quote-container {
    text-align: center;
    max-width: 400px;
    margin: 0 auto;
}

.vvsoutlet-quote-title {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
}

.vvsoutlet-quote-description {
    font-size: 16px;
    color: #666;
    margin-bottom: 24px;
    line-height: 1.5;
}

.vvsoutlet-quote-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #28a745;
    color: white;
    padding: 14px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.2s;
}

.vvsoutlet-quote-btn:hover {
    background: #218838;
    color: white;
    text-decoration: none;
}

.vvsoutlet-quote-contact {
    margin-top: 20px;
    font-size: 14px;
    color: #666;
}

.vvsoutlet-quote-contact a {
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
}

.vvsoutlet-quote-contact a:hover {
    text-decoration: underline;
}

/* Quote Modal Styles */
.vvsoutlet-quote-form-container {
    padding: 20px;
}

.vvsoutlet-product-info-quote {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.vvsoutlet-product-info-quote h4 {
    margin: 0 0 8px 0;
    font-size: 16px;
    color: #333;
}

.vvsoutlet-sku-info {
    margin: 0;
    color: #666;
    font-size: 14px;
}

.vvsoutlet-quote-form {
    margin-bottom: 20px;
}

.vvsoutlet-form-group {
    margin-bottom: 16px;
}

.vvsoutlet-form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    font-size: 14px;
    color: #333;
}

.vvsoutlet-form-group input,
.vvsoutlet-form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.2s;
}

.vvsoutlet-form-group input:focus,
.vvsoutlet-form-group textarea:focus {
    outline: none;
    border-color: #28a745;
}

.vvsoutlet-submit-quote-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #28a745;
    color: white;
    padding: 14px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.vvsoutlet-submit-quote-btn:hover {
    background: #218838;
}

.vvsoutlet-quote-success {
    text-align: center;
    padding: 30px;
}

.vvsoutlet-quote-success h4 {
    margin: 16px 0 8px 0;
    font-size: 20px;
    color: #28a745;
}

.vvsoutlet-quote-success p {
    margin: 0;
    color: #666;
}

.vvsoutlet-quote-contact-info {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
}

.vvsoutlet-quote-contact-info p {
    margin: 5px 0;
    font-size: 14px;
    color: #666;
}

.vvsoutlet-quote-contact-info a {
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
}

.vvsoutlet-quote-contact-info a:hover {
    text-decoration: underline;
}
