/* VVSOutlet B2C Product Page Styles */

/* Page Container */
.vvsoutlet-product-page {
    background: #f5f5f5;
    /* min-height: 100vh; - Removed to prevent excessive white space on product pages */
}

/* Breadcrumbs */
.vvsoutlet-breadcrumbs {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 20px 0;
}

.vvsoutlet-breadcrumbs ul {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 14px;
}

.vvsoutlet-breadcrumbs li::after {
    content: "›";
    margin-left: 10px;
    color: #999;
}

.vvsoutlet-breadcrumbs li:last-child::after {
    display: none;
}

.vvsoutlet-breadcrumbs a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.vvsoutlet-breadcrumbs a:hover {
    color: #3498db;
}

.vvsoutlet-breadcrumbs span {
    color: #333;
}

/* Stock Level Indicators */
.vvsoutlet-stock-section {
    margin: 20px 0;
}

.vvsoutlet-stock-status {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 16px;
    flex-wrap: wrap;
}

.vvsoutlet-stock-label-prefix,
.vvsoutlet-stock-label-suffix {
    color: #666;
    font-weight: 500;
}

.vvsoutlet-stock-indicator {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    padding: 6px 10px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 18px;
    margin: 0 6px;
}

.vvsoutlet-stock-quantity {
    font-size: 20px;
    line-height: 1;
}

.vvsoutlet-stock-label {
    font-size: 14px;
    margin-left: 3px;
    font-weight: 400;
}

/* Stock Colors */
.vvsoutlet-stock-green {
    background-color: #e6f4ea;
    color: #1a7f37;
    border: 2px solid #34a853;
}

.vvsoutlet-stock-yellow {
    background-color: #fef3c7;
    color: #92400e;
    border: 2px solid #fbcf33;
}

.vvsoutlet-stock-red {
    background-color: #fee;
    color: #991b1b;
    border: 2px solid #dc2626;
}

/* Stock text styling */
.vvsoutlet-stock-status.in-stock .vvsoutlet-stock-text {
    color: #1a7f37;
    font-weight: 500;
}

.vvsoutlet-stock-status.low-stock .vvsoutlet-stock-text {
    color: #92400e;
    font-weight: 500;
}

.vvsoutlet-stock-status.out-of-stock .vvsoutlet-stock-text {
    color: #991b1b;
    font-weight: 500;
}

/* Brand Block - Desktop Only */
.vvsoutlet-brand-block-desktop {
    display: none;
    margin-bottom: 15px;
}

@media (min-width: 768px) {
    .vvsoutlet-brand-block-desktop {
        display: block;
    }
}

.vvsoutlet-brand-link {
    display: inline-block;
    padding: 12px 20px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.vvsoutlet-brand-text {
    color: #333;
    font-weight: 500;
    font-size: 14px;
}

.vvsoutlet-brand-link:hover {
    background: #f8f9fa;
    border-color: #3498db;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(52, 152, 219, 0.15);
}

.vvsoutlet-brand-link:hover .vvsoutlet-brand-text {
    color: #3498db;
}

/* Hide original brand in product meta on desktop */
@media (min-width: 768px) {
    .vvsoutlet-product-info .vvsoutlet-product-meta .vvsoutlet-brand,
    .vvsoutlet-product-meta > .vvsoutlet-brand,
    .vvsoutlet-product-header .vvsoutlet-brand {
        display: none !important;
        visibility: hidden !important;
        position: absolute !important;
        left: -9999px !important;
    }
}

/* Mobile only sections */
.vvsoutlet-mobile-only {
    display: block;
}

@media (min-width: 768px) {
    .vvsoutlet-mobile-only {
        display: none !important;
    }
}

/* Add to Cart Section Styling */
.vvsoutlet-add-to-cart {
    margin: 30px 0;
}

.vvsoutlet-add-to-cart form.cart {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 15px !important;
    flex-wrap: nowrap !important;
}

.vvsoutlet-add-to-cart .quantity {
    display: flex !important;
    align-items: center !important;
    margin: 0 !important;
}

.vvsoutlet-add-to-cart .quantity input {
    width: 60px !important;
    height: 50px !important;
    text-align: center !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    border: 2px solid #e0e0e0 !important;
    border-radius: 8px !important;
    transition: border-color 0.3s !important;
}

.vvsoutlet-add-to-cart .quantity input:focus {
    outline: none;
    border-color: #3498db;
}

/* Main Add to Cart Button */
.vvsoutlet-add-to-cart .single_add_to_cart_button {
    flex: 1 !important;
    min-height: 50px !important;
    padding: 15px 30px !important;
    background: #27ae60 !important;
    background-color: #27ae60 !important;
    color: white !important;
    border: none !important;
    border-radius: 8px !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.2) !important;
}

.vvsoutlet-add-to-cart .single_add_to_cart_button:before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='white' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z'%3E%3C/path%3E%3C/svg%3E");
    background-size: contain;
}

.vvsoutlet-add-to-cart .single_add_to_cart_button:hover {
    background: #219a52 !important;
    background-color: #219a52 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.3) !important;
}

.vvsoutlet-add-to-cart .single_add_to_cart_button:active {
    transform: translateY(0);
}

/* Loading state */
.vvsoutlet-add-to-cart .single_add_to_cart_button.loading {
    color: transparent;
}

.vvsoutlet-add-to-cart .single_add_to_cart_button.loading:before {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

/* Added to cart state */
.vvsoutlet-add-to-cart .single_add_to_cart_button.added {
    background: #2ecc71;
}

.vvsoutlet-add-to-cart .single_add_to_cart_button.added:before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='white' stroke-width='3'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M5 13l4 4L19 7'%3E%3C/path%3E%3C/svg%3E");
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Hide the "View Cart" text that appears after adding */
.vvsoutlet-add-to-cart .added_to_cart {
    display: none !important;
}

/* View Cart Button - Custom replacement */
.vvsoutlet-view-cart-wrapper {
    margin-top: 15px;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.vvsoutlet-view-cart-wrapper.show {
    opacity: 1;
    transform: translateY(0);
}

.vvsoutlet-view-cart-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.vvsoutlet-view-cart-btn:hover {
    background: #2980b9;
    transform: translateX(5px);
    color: white;
    text-decoration: none;
}

.vvsoutlet-view-cart-btn svg {
    width: 18px;
    height: 18px;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .vvsoutlet-add-to-cart form.cart {
        flex-direction: column;
        align-items: stretch;
    }
    
    .vvsoutlet-add-to-cart .quantity {
        justify-content: center;
    }
    
    .vvsoutlet-add-to-cart .single_add_to_cart_button {
        width: 100%;
    }
}

/* Mobile Sticky Footer */
@media (max-width: 768px) {
    /* Add padding to body to make room for sticky footer */
    body.single-vvsoutlet-product {
        padding-bottom: 100px;
    }
    
    /* Sticky footer container */
    .vvsoutlet-mobile-sticky-footer {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
        padding: 8px 12px;
        z-index: 999;
        display: flex;
        align-items: center;
        gap: 10px;
        transform: translateY(0);
        transition: transform 0.3s ease;
    }
    
    /* Hide when scrolling up */
    .vvsoutlet-mobile-sticky-footer.hidden {
        transform: translateY(100%);
    }
    
    /* Adjust for HubSpot chat - add margin to left side */
    .vvsoutlet-mobile-sticky-footer {
        margin-left: 80px; /* Space for HubSpot chat icon */
    }
    
    /* Price in sticky footer */
    .vvsoutlet-sticky-price {
        flex-shrink: 0;
        font-weight: 600;
        font-size: 18px;
        color: #333;
    }
    
    /* Sticky add to cart button */
    .vvsoutlet-sticky-add-btn {
        flex: 1;
        background: #27ae60;
        color: white;
        border: none;
        border-radius: 6px;
        padding: 12px 20px;
        font-size: 16px;
        font-weight: 600;
        text-transform: uppercase;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        cursor: pointer;
        transition: background 0.3s;
        text-decoration: none;
    }
    
    .vvsoutlet-sticky-add-btn:hover,
    .vvsoutlet-sticky-add-btn:focus {
        background: #219a52;
        color: white;
        text-decoration: none;
    }
    
    .vvsoutlet-sticky-add-btn svg {
        width: 18px;
        height: 18px;
    }
    
    /* Hide regular add to cart on mobile when sticky is shown */
    /* DISABLED - This was hiding the cart button on mobile
    body.vvsoutlet-sticky-visible .vvsoutlet-add-to-cart {
        visibility: hidden;
        height: 0;
        margin: 0;
    }
    */
    
    /* Adjust for smaller screens */
    @media (max-width: 400px) {
        .vvsoutlet-mobile-sticky-footer {
            margin-left: 70px;
            padding: 12px;
        }
        
        .vvsoutlet-sticky-price {
            font-size: 16px;
        }
        
        .vvsoutlet-sticky-add-btn {
            font-size: 14px;
            padding: 10px 15px;
        }
    }
}

/* Desktop - hide sticky footer */
@media (min-width: 769px) {
    .vvsoutlet-mobile-sticky-footer {
        display: none !important;
    }
}

/* Sticky footer spinning animation */
@keyframes spin {
    to { transform: rotate(360deg); }
}

.vvsoutlet-sticky-add-btn .spin {
    animation: spin 1s linear infinite;
}

/* Mobile cart integrated design */
@media (max-width: 768px) {
    /* Make the whole form a unified component */
    .vvsoutlet-add-to-cart form.cart {
        display: flex;
        gap: 0;
        background: #27ae60;
        border-radius: 8px;
        overflow: hidden;
        padding: 0;
        height: 44px;
    }
    
    /* Quantity section as integrated part */
    .vvsoutlet-add-to-cart .quantity {
        background: rgba(255, 255, 255, 0.2);
        display: flex;
        align-items: center;
        padding: 0 4px;
        gap: 2px;
    }
    
    /* Smaller quantity controls */
    .vvsoutlet-add-to-cart .quantity input {
        width: 40px;
        height: 100%;
        background: transparent;
        border: none;
        color: white;
        text-align: center;
        font-weight: 600;
        font-size: 16px;
    }
    
    /* Button as part of the unified component */
    .vvsoutlet-add-to-cart .single_add_to_cart_button {
        flex: 1;
        height: 100%;
        background: transparent;
        border: none;
        border-radius: 0;
        box-shadow: none;
        margin: 0;
        padding: 0 16px;
        font-size: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
    }
    
    .vvsoutlet-add-to-cart .single_add_to_cart_button:before {
        width: 18px;
        height: 18px;
    }
    
    /* Divider between quantity and button */
    .vvsoutlet-add-to-cart .quantity::after {
        content: '';
        position: absolute;
        right: 0;
        top: 20%;
        bottom: 20%;
        width: 1px;
        background: rgba(255, 255, 255, 0.3);
    }
    
    .vvsoutlet-add-to-cart .quantity {
        position: relative;
    }
}

/* Container */
.vvsoutlet-product-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

/* Product Grid */
.vvsoutlet-product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px; /* Reduced from 60px to minimize white space when no documents */
}

@media (max-width: 768px) {
    .vvsoutlet-product-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Product Images */
.vvsoutlet-product-images {
    position: sticky;
    top: 20px;
    align-self: start;
}

.vvsoutlet-product-main-image {
    position: relative;
    background: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
    max-height: 70vh; /* Limit to 70% of viewport height */
    display: flex;
    align-items: center;
    justify-content: center;
}

.vvsoutlet-main-image {
    width: 100%;
    height: auto;
    max-height: 70vh; /* Limit image height to 70% of viewport */
    max-width: 100%;
    object-fit: contain; /* Maintain aspect ratio while fitting within container */
    display: block;
}

/* Discount badge on image */
.vvsoutlet-product-main-image .vvsoutlet-discount-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #e74c3c;
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 14px;
}

.vvsoutlet-no-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 400px;
    background: #f9f9f9;
    color: #999;
}

.vvsoutlet-no-image .dashicons {
    font-size: 64px;
    width: 64px;
    height: 64px;
    margin-bottom: 10px;
}

.vvsoutlet-no-image p {
    margin: 0;
    font-size: 16px;
}

/* Gallery */
.vvsoutlet-product-gallery {
    display: grid;
    grid-template-columns: repeat(4, 120px);
    gap: 10px;
    justify-content: start;
}

.vvsoutlet-gallery-thumb {
    width: 120px;
    height: 120px;
    background: #f9f9f9;
    border: 2px solid transparent;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.3s;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* First gallery thumb (main image) special styling */
.vvsoutlet-gallery-thumb:first-child {
    border-color: #e0e0e0;
    background: #fff;
}

.vvsoutlet-gallery-thumb:first-child::after {
    content: "Huvudbild";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    font-size: 10px;
    padding: 2px 4px;
    text-align: center;
    opacity: 0.8;
    z-index: 1;
}

.vvsoutlet-gallery-thumb:hover,
.vvsoutlet-gallery-thumb.active {
    border-color: #3498db;
}

.vvsoutlet-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Product Info */
.vvsoutlet-product-info {
    padding: 0;
}

/* Product Header */
.vvsoutlet-product-header {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.vvsoutlet-product-title {
    font-size: 32px;
    font-weight: 600;
    margin: 0 0 10px 0;
    color: #333;
    line-height: 1.2;
}

.vvsoutlet-product-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    margin-top: 10px;
}

.vvsoutlet-brand {
    font-size: 18px;
    color: #666;
    font-weight: 500;
}

.vvsoutlet-product-ids {
    display: flex;
    gap: 15px;
    font-size: 14px;
    color: #888;
}

/* Product Tags */
.vvsoutlet-product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
}

.vvsoutlet-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
}

.vvsoutlet-tag svg,
.vvsoutlet-tag i {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    font-size: 14px;
}

/* Tag styles by type */
.vvsoutlet-tag.tag-outlet {
    background: #3498db;
    color: white;
}

.vvsoutlet-tag.tag-discount {
    background: #feca57;
    color: #2d3436;
}

.vvsoutlet-tag.tag-total-discount {
    background: #ee5a6f;
    color: white;
}

.vvsoutlet-tag.tag-new {
    background: #0be881;
    color: #2d3436;
}

.vvsoutlet-tag.tag-demo {
    background: #4834d4;
    color: white;
}

.vvsoutlet-tag.tag-refurbished {
    background: #686de0;
    color: white;
}

.vvsoutlet-tag.tag-returned {
    background: #30336b;
    color: white;
}

.vvsoutlet-tag.tag-low-stock {
    background: #ff9ff3;
    color: #2d3436;
    animation: pulse 2s infinite;
}

.vvsoutlet-tag.tag-used {
    background: #fd79a8;
    color: white;
}

.vvsoutlet-tag.tag-bstock {
    background: #fdcb6e;
    color: #2d3436;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}

.vvsoutlet-tag:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

/* Enhanced Outlet Tag Styling - Light Red (v1.48.1) */
.vvsoutlet-tag.tag-outlet {
    background: #ffe5e5;
    color: #dc3545;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 1px 6px rgba(220, 53, 69, 0.15);
    position: relative;
}

/* Bidding Tag Styling - Blue (v1.48.1) */
.vvsoutlet-tag.tag-bidding {
    background: #e7f3ff;
    color: #3b82f6;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 1px 6px rgba(59, 130, 246, 0.15);
    position: relative;
}

.vvsoutlet-tag.tag-bidding i {
    font-size: 12px;
    margin-right: 4px;
}

/* Enhanced Condition (Produktskick) Tag Styling - Smaller Size */
.vvsoutlet-tag.tag-new,
.vvsoutlet-tag.tag-demo,
.vvsoutlet-tag.tag-refurbished,
.vvsoutlet-tag.tag-returned,
.vvsoutlet-tag.tag-used,
.vvsoutlet-tag.tag-bstock {
    position: relative;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 600;
    border: 1.5px solid transparent;
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

/* New condition - light green (v1.48.1) */
.vvsoutlet-tag.tag-new {
    background: #d4edda;
    color: #28a745;
    box-shadow: 0 1px 6px rgba(40, 167, 69, 0.15);
}

/* Demo condition - blue gradient */
.vvsoutlet-tag.tag-demo {
    background-image: linear-gradient(white, white),
                      linear-gradient(135deg, #2196F3 0%, #21CBF3 100%);
    color: #2196F3;
    box-shadow: 0 1px 6px rgba(33, 150, 243, 0.15);
}

/* Refurbished condition - purple gradient */
.vvsoutlet-tag.tag-refurbished {
    background-image: linear-gradient(white, white),
                      linear-gradient(135deg, #8E2DE2 0%, #4A00E0 100%);
    color: #8E2DE2;
    box-shadow: 0 1px 6px rgba(142, 45, 226, 0.15);
}

/* Used condition - orange gradient */
.vvsoutlet-tag.tag-used {
    background-image: linear-gradient(white, white),
                      linear-gradient(135deg, #f2994a 0%, #f2c94c 100%);
    color: #f2994a;
    box-shadow: 0 1px 6px rgba(242, 153, 74, 0.15);
}

/* B-stock condition - coral gradient */
.vvsoutlet-tag.tag-bstock {
    background-image: linear-gradient(white, white),
                      linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    color: #fa709a;
    box-shadow: 0 1px 6px rgba(250, 112, 154, 0.15);
}

/* Returned condition - dark gradient */
.vvsoutlet-tag.tag-returned {
    background-image: linear-gradient(white, white),
                      linear-gradient(135deg, #434343 0%, #000000 100%);
    color: #434343;
    box-shadow: 0 1px 6px rgba(67, 67, 67, 0.15);
}

/* Hover effects for condition tags */
.vvsoutlet-tag.tag-new:hover,
.vvsoutlet-tag.tag-demo:hover,
.vvsoutlet-tag.tag-refurbished:hover,
.vvsoutlet-tag.tag-used:hover,
.vvsoutlet-tag.tag-bstock:hover,
.vvsoutlet-tag.tag-returned:hover {
    transform: translateY(-1px) scale(1.02);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Product Tags Frame - Desktop (Top Section) */
.vvsoutlet-product-tags-frame-desktop {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 20px;
    display: flex;
    justify-content: flex-start;
}

.vvsoutlet-product-tags-frame-desktop .vvsoutlet-product-tags {
    margin: 0;
    gap: 8px;
    justify-content: flex-start;
}

/* Product Title and Meta Frame - Desktop */
.vvsoutlet-title-meta-frame-desktop {
    background: transparent;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    position: relative;
}

.vvsoutlet-title-meta-frame-desktop .vvsoutlet-product-title {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 28px;
    color: #212529;
    font-weight: 600;
}

/* Meta Tags Containers */
.vvsoutlet-product-ids-tags,
.vvsoutlet-meta-tags-mobile,
.vvsoutlet-meta-tags-desktop {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.vvsoutlet-meta-tags-mobile {
    justify-content: flex-start;
    margin: 15px 0;
}

/* Meta Tag Styles - Exact Mobile Styling */
.vvsoutlet-meta-tag {
    display: inline-flex;
    align-items: center;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.2s ease;
    line-height: 1.4;
    letter-spacing: 0.3px;
}

/* Art.nr Tag (GSN) */
.vvsoutlet-meta-tag.vvsoutlet-tag-gsn {
    background: #d4edda;
    border: 1px solid #c3e6cb;
}

/* RSK Tag */
.vvsoutlet-meta-tag.vvsoutlet-tag-rsk {
    background: #cce5ff;
    border: 1px solid #b8daff;
}

/* Tag Labels and Values */
.vvsoutlet-meta-tag .tag-label {
    color: #495057;
    font-weight: 700;
    margin-right: 5px;
    text-transform: uppercase;
    font-size: 11px;
}

.vvsoutlet-meta-tag.vvsoutlet-tag-gsn .tag-value {
    color: #155724;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 12px;
}

.vvsoutlet-meta-tag.vvsoutlet-tag-rsk .tag-value {
    color: #004085;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 12px;
}

/* Hover Effects */
.vvsoutlet-meta-tag:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.vvsoutlet-id-tag {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.vvsoutlet-id-tag-artnr {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.vvsoutlet-id-tag-rsk {
    background: #d1ecf1;
    border: 1px solid #bee5eb;
    color: #0c5460;
}

.vvsoutlet-id-label {
    font-weight: 600;
    margin-right: 6px;
}

.vvsoutlet-id-value {
    font-weight: 500;
    font-family: 'SF Mono', Monaco, 'Cascadia Code', monospace;
    letter-spacing: 0.5px;
}

/* Hover effects for ID tags */
.vvsoutlet-id-tag:hover {
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

.vvsoutlet-id-tag-artnr:hover {
    background: #c3e6cb;
    border-color: #b1dfbb;
}

.vvsoutlet-id-tag-rsk:hover {
    background: #bee5eb;
    border-color: #abdde5;
}

/* Short Description */
.vvsoutlet-short-description {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

/* Quick Documents Section */
.vvsoutlet-quick-documents {
    margin-bottom: 20px;
    padding: 15px;
    background: #fafafa;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
}

.vvsoutlet-quick-docs-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: #555;
    margin-bottom: 10px;
}

.vvsoutlet-quick-docs-label svg {
    width: 16px;
    height: 16px;
    color: #666;
}

.vvsoutlet-quick-docs-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.vvsoutlet-quick-doc-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-decoration: none;
    font-size: 13px;
    color: #333;
    transition: all 0.2s ease;
}

.vvsoutlet-quick-doc-item:hover {
    background: #f0f0f0;
    border-color: #bbb;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.vvsoutlet-quick-doc-item svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.vvsoutlet-quick-doc-name {
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.vvsoutlet-more-docs {
    font-size: 13px;
    color: #666;
    font-style: italic;
    padding: 6px 12px;
}

/* Brand Section */
.vvsoutlet-brand-section {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vvsoutlet-brand-logo {
    max-width: 200px;
    text-align: center;
}

.vvsoutlet-brand-logo img {
    max-width: 100%;
    height: auto;
    max-height: 80px;
    object-fit: contain;
}

.vvsoutlet-brand-name {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

.vvsoutlet-brand-label {
    font-weight: 600;
    color: #666;
}

.vvsoutlet-brand-text {
    color: #333;
    font-weight: 500;
}

/* Price Section */
.vvsoutlet-price-section {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
}

.vvsoutlet-prices {
    text-align: left;
}

/* Three Layer Pricing */
.vvsoutlet-three-layer-prices {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.vvsoutlet-price-layer {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

/* Tablet/Medium Desktop: Compact layout between 769px-1024px */
@media (min-width: 769px) and (max-width: 1024px) {
    .vvsoutlet-price-section {
        padding: 20px;
    }

    /* Keep SEO info but visually hide the strikethrough prices */
    .vvsoutlet-three-layer-prices .vvsoutlet-regular-price,
    .vvsoutlet-three-layer-prices .vvsoutlet-sales-price {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border-width: 0;
    }

    /* Make final price more prominent */
    .vvsoutlet-final-price {
        background: #fff;
        border: none;
        padding: 15px;
    }

    .vvsoutlet-price-highlight {
        flex-wrap: wrap;
        gap: 8px;
    }

    .vvsoutlet-price-yellow {
        font-size: 32px;
    }

    .vvsoutlet-price-amount {
        font-size: 32px;
    }

    .vvsoutlet-price-vat {
        font-size: 14px;
    }

    /* Show savings as a compact badge */
    .vvsoutlet-total-savings {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        background: #e8f8e8;
        color: #27ae60;
        font-weight: 600;
        font-size: 14px;
        padding: 6px 12px;
        border-radius: 6px;
        margin-top: 8px;
    }

    .vvsoutlet-shipping-inline {
        font-size: 12px;
        margin-left: 0;
        width: 100%;
        margin-top: 6px;
    }

    .vvsoutlet-click-collect-inline {
        font-size: 11px;
    }

    .vvsoutlet-price-footer-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
}

/* Large Desktop: Keep inline on large screens */
@media (min-width: 1025px) {
    .vvsoutlet-price-layer {
        flex-wrap: nowrap;
    }
}

/* Regular Price (Layer 1) */
.vvsoutlet-regular-price .vvsoutlet-price-strikethrough {
    font-size: 20px;
    color: #999;
    text-decoration: line-through;
    font-weight: 500;
}

.vvsoutlet-price-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

/* Sales Price (Layer 2 - Red) */
.vvsoutlet-sales-price .vvsoutlet-price-strikethrough {
    font-size: 24px;
    font-weight: 600;
}

.vvsoutlet-price-red {
    color: #e74c3c;
    text-decoration: line-through;
}

.vvsoutlet-label-red {
    color: #e74c3c;
}

/* Discount badge in pricing section */
.vvsoutlet-discount-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    margin-left: 8px;
    position: relative;
    vertical-align: middle;
}

.vvsoutlet-badge-red {
    background: #fef0f0;
    color: #e74c3c;
    border: 1px solid #e74c3c;
}

/* Final Price (Layer 3 - Yellow) */
.vvsoutlet-final-price {
    flex-direction: column;
    align-items: flex-start;
    background: #fffef0;
    padding: 10px 12px;
    border-radius: 6px;
    border: 2px solid #f9c74f;
}

/* Mobile optimizations for final price */
@media (max-width: 768px) {
    .vvsoutlet-final-price {
        padding: 8px 10px;
    }
    
    .vvsoutlet-price-highlight {
        flex-wrap: wrap;
        gap: 6px;
    }
    
    .vvsoutlet-shipping-inline {
        margin-left: 0;
        width: 100%;
        font-size: 12px;
        margin-top: 4px;
    }
    
    .vvsoutlet-shipping-inline svg {
        width: 14px;
        height: 14px;
    }
    
    .vvsoutlet-price-footer-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
    
    .vvsoutlet-click-collect-inline {
        font-size: 11px;
    }
}

.vvsoutlet-price-highlight {
    display: flex;
    align-items: baseline;
    gap: 10px;
    flex-wrap: wrap;
}

.vvsoutlet-price-yellow {
    font-size: 36px;
    font-weight: 800;
    color: #f9c74f;
    text-shadow: 1px 1px 0 rgba(0,0,0,0.1);
    text-decoration: underline;
    text-decoration-color: #f9c74f;
    text-decoration-thickness: 3px;
    text-underline-offset: 4px;
}

.vvsoutlet-label-yellow {
    font-size: 18px;
    font-weight: 600;
    color: #f77f00;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.vvsoutlet-extra-discount-label {
    font-size: 14px;
    color: #f77f00;
    font-weight: 600;
    margin-top: 8px;
}

.vvsoutlet-final-price .vvsoutlet-price-excl-vat {
    font-size: 12px;
    color: #666;
    margin-top: 2px;
}

.vvsoutlet-shipping-notice {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    border: 1px solid rgba(249, 199, 79, 0.3);
    font-size: 14px;
    color: #795548;
    font-weight: 500;
}

.vvsoutlet-shipping-notice svg {
    width: 18px;
    height: 18px;
    color: #f9a825;
    flex-shrink: 0;
}

.vvsoutlet-shipping-notice span {
    font-style: normal;
}

/* Inline shipping notice for price section */
.vvsoutlet-shipping-inline {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    color: #f57c00;
    margin-left: 12px;
}

.vvsoutlet-shipping-inline svg {
    width: 16px;
    height: 16px;
}

/* Compact price footer info */
.vvsoutlet-price-footer-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid rgba(249, 199, 79, 0.3);
}

.vvsoutlet-click-collect-inline {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #1976D2;
    cursor: pointer;
}

.vvsoutlet-click-collect-inline:hover {
    text-decoration: underline;
}

.vvsoutlet-click-collect-inline svg {
    width: 16px;
    height: 16px;
}

/* Compact Click & Collect in yellow box */
.vvsoutlet-click-collect-compact {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    padding: 6px 10px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    border: 1px solid rgba(249, 199, 79, 0.2);
    font-size: 12px;
    color: #6d4c41;
}

.vvsoutlet-click-collect-compact svg {
    width: 14px;
    height: 14px;
    color: #ef6c00;
    flex-shrink: 0;
}

.vvsoutlet-click-collect-compact span {
    font-weight: 500;
}

.vvsoutlet-click-collect-link {
    color: #e65100;
    text-decoration: underline;
    font-weight: 600;
    margin-left: auto;
    font-size: 11px;
    white-space: nowrap;
}

.vvsoutlet-click-collect-link:hover {
    color: #bf360c;
    text-decoration: none;
}

/* Mobile optimizations for yellow price section */
@media (max-width: 768px) {
    .vvsoutlet-extra-discount-label {
        font-size: 12px;
        margin-top: 4px;
    }
    
    .vvsoutlet-final-price .vvsoutlet-price-excl-vat {
        font-size: 11px;
        margin-top: 2px;
    }
    
    .vvsoutlet-click-collect-compact {
        font-size: 11px;
        padding: 5px 8px;
        gap: 4px;
    }
    
    .vvsoutlet-click-collect-compact svg {
        width: 12px;
        height: 12px;
    }
    
    .vvsoutlet-click-collect-link {
        font-size: 10px;
    }
}

/* Legacy styles for backward compatibility */
.vvsoutlet-original-price {
    font-size: 18px;
    color: #999;
    margin-bottom: 5px;
}

.vvsoutlet-current-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 5px;
}

.vvsoutlet-price-amount {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
}

.vvsoutlet-price-vat {
    font-size: 14px;
    color: #666;
}

.vvsoutlet-price-excl-vat {
    font-size: 14px;
    color: #888;
}

.vvsoutlet-savings,
.vvsoutlet-total-savings {
    margin-top: 10px;
    padding: 10px 15px;
    background: #e8f4fd;
    border-radius: 4px;
    color: #1976d2;
    font-weight: 500;
    display: inline-block;
}

.vvsoutlet-total-savings {
    background: #e8f8e8;
    color: #27ae60;
    font-weight: 600;
}

.vvsoutlet-price-awaiting,
.vvsoutlet-no-price {
    text-align: center;
    padding: 20px;
}

.vvsoutlet-price-message {
    font-size: 20px;
    font-weight: 600;
    color: #f39c12;
    margin: 0 0 10px 0;
}

.vvsoutlet-price-description,
.vvsoutlet-call-to-action {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* Stock Section */
.vvsoutlet-stock-section {
    margin-bottom: 20px;
}

.vvsoutlet-stock-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 500;
}

.vvsoutlet-stock-status.in-stock {
    color: #27ae60;
}

.vvsoutlet-stock-status.low-stock {
    color: #f39c12;
}

.vvsoutlet-stock-status.out-of-stock {
    color: #e74c3c;
}

.vvsoutlet-stock-icon::before {
    content: "•";
    font-size: 24px;
}

/* Add to Cart */
.vvsoutlet-add-to-cart {
    margin-bottom: 20px;
}

.vvsoutlet-cart-form {
    display: flex;
    gap: 12px;
    align-items: center;
}

.vvsoutlet-quantity-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f8f9fa;
    padding: 6px;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.vvsoutlet-quantity-wrapper label {
    font-size: 14px;
    font-weight: 500;
    color: #555;
}

/* Mobile: Compact label */
@media (max-width: 768px) {
    .vvsoutlet-quantity-wrapper label {
        font-size: 12px;
        color: #666;
        white-space: nowrap;
    }
}

.vvsoutlet-quantity-input {
    width: 60px;
    padding: 8px 4px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    -moz-appearance: textfield;
}

/* Remove spinner buttons on desktop too */
.vvsoutlet-quantity-input::-webkit-outer-spin-button,
.vvsoutlet-quantity-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Desktop quantity buttons */
.vvsoutlet-quantity-decrease,
.vvsoutlet-quantity-increase {
    width: 36px;
    height: 36px;
    background: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    color: #666;
    transition: all 0.2s ease;
}

.vvsoutlet-quantity-decrease:hover,
.vvsoutlet-quantity-increase:hover {
    background: #e9ecef;
    border-color: #adb5bd;
}

.vvsoutlet-quantity-decrease:disabled,
.vvsoutlet-quantity-increase:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.vvsoutlet-add-to-cart-button {
    flex: 1;
    padding: 14px 30px;
    background: #27ae60;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.vvsoutlet-add-to-cart-button:hover {
    background: #219a52;
}

/* Product Actions */
.vvsoutlet-product-actions {
    display: flex;
    gap: 15px;
}

.vvsoutlet-action-button {
    flex: 1;
    padding: 12px 20px;
    background: white;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.vvsoutlet-action-button:hover {
    border-color: #3498db;
    color: #3498db;
}

.vvsoutlet-action-button .dashicons {
    font-size: 18px;
    width: 18px;
    height: 18px;
}

/* Product Details Container */
.vvsoutlet-product-details {
    margin-top: 0;
    margin-bottom: 40px;
}

/* Tabs */
.vvsoutlet-tabs {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-top: 0;
}

.vvsoutlet-tab-nav {
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
    border-bottom: 2px solid #eee;
}

.vvsoutlet-tab-item {
    padding: 20px 30px;
    font-size: 16px;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: all 0.3s;
}

.vvsoutlet-tab-item:hover {
    color: #3498db;
}

.vvsoutlet-tab-item.active {
    color: #3498db;
    border-bottom-color: #3498db;
}

.vvsoutlet-tab-content {
    padding: 40px;
}

.vvsoutlet-tab-pane {
    display: none;
}

.vvsoutlet-tab-pane.active {
    display: block;
}

/* Specifications Table */
/* Enhanced Specifications Table */
.vvsoutlet-specifications-container {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 24px;
    border: 1px solid #e9ecef;
}

.vvsoutlet-specs-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.vvsoutlet-specs-table tr {
    transition: background-color 0.2s ease;
}

.vvsoutlet-specs-table tr:hover {
    background-color: #f8f9fa;
}

.vvsoutlet-specs-table th,
.vvsoutlet-specs-table td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid #e9ecef;
}

.vvsoutlet-specs-table tr:last-child th,
.vvsoutlet-specs-table tr:last-child td {
    border-bottom: none;
}

.vvsoutlet-specs-table th {
    font-weight: 600;
    color: #495057;
    background: #f8f9fa;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 35%;
    position: relative;
}

.vvsoutlet-specs-table th::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60%;
    background: #dee2e6;
}

.vvsoutlet-specs-table td {
    color: #212529;
    font-size: 15px;
    font-weight: 500;
    background: white;
}

/* Alternate row styling */
.vvsoutlet-specs-table tr:nth-child(even) {
    background-color: rgba(248, 249, 250, 0.5);
}

/* Special styling for certain spec types */
.vvsoutlet-specs-table tr[data-spec-type="dimension"] td,
.vvsoutlet-specs-table tr[data-spec-type="measurement"] td {
    font-family: 'SF Mono', 'Monaco', 'Consolas', monospace;
    color: #0066cc;
}

.vvsoutlet-specs-table tr[data-spec-type="material"] td {
    color: #28a745;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .vvsoutlet-specifications-container {
        padding: 16px;
        margin: 0 -15px;
        border-radius: 0;
    }
    
    .vvsoutlet-specs-table th,
    .vvsoutlet-specs-table td {
        padding: 12px 16px;
        font-size: 14px;
    }
    
    .vvsoutlet-specs-table th {
        width: 40%;
        font-size: 12px;
    }
    
    .vvsoutlet-specs-table th::after {
        display: none;
    }
}

/* Documents Grid */
.vvsoutlet-documents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

@media (max-width: 768px) {
    .vvsoutlet-documents-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

.vvsoutlet-document-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: white;
    border: 2px solid #e3f2fd;
    border-radius: 12px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.vvsoutlet-document-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2196f3 0%, #64b5f6 100%);
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.vvsoutlet-document-item:hover {
    background: #f8f9fa;
    border-color: #2196f3;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(33, 150, 243, 0.15);
}

.vvsoutlet-document-item:hover::before {
    transform: translateY(0);
}

.vvsoutlet-document-item:hover .vvsoutlet-document-arrow {
    transform: translateX(4px);
}

.vvsoutlet-document-item .dashicons {
    font-size: 20px;
    width: 20px;
    height: 20px;
    color: #3498db;
}

/* Document Icon */
.vvsoutlet-document-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    border-radius: 8px;
    position: relative;
}

.vvsoutlet-document-icon svg {
    width: 48px;
    height: 48px;
}

/* Document Info */
.vvsoutlet-document-info {
    flex: 1;
    min-width: 0;
}

.vvsoutlet-document-title {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 4px 0;
    line-height: 1.3;
}

.vvsoutlet-document-description {
    font-size: 13px;
    color: #666;
    margin: 0 0 8px 0;
    line-height: 1.4;
}

.vvsoutlet-document-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
}

.vvsoutlet-document-size {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #888;
}

.vvsoutlet-document-size svg {
    width: 14px;
    height: 14px;
    opacity: 0.6;
}

.vvsoutlet-document-type {
    padding: 2px 8px;
    background: #e3f2fd;
    color: #1976d2;
    border-radius: 4px;
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 0.5px;
}

/* Document Arrow */
.vvsoutlet-document-arrow {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: #e3f2fd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.vvsoutlet-document-arrow svg {
    width: 20px;
    height: 20px;
    color: #2196f3;
}

/* Description Content */
.vvsoutlet-description-content {
    line-height: 1.8;
    color: #444;
}

.vvsoutlet-description-content h2,
.vvsoutlet-description-content h3,
.vvsoutlet-description-content h4 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: #333;
}

.vvsoutlet-description-content ul,
.vvsoutlet-description-content ol {
    margin: 15px 0;
    padding-left: 30px;
}

.vvsoutlet-description-content li {
    margin-bottom: 8px;
}

/* Product Unavailable Notice */
.vvsoutlet-product-unavailable-notice {
    padding: 20px;
    background: #fff3e0;
    border: 1px solid #ffb74d;
    border-radius: 8px;
    text-align: center;
    margin: 15px 0;
}

.vvsoutlet-product-unavailable-notice svg {
    display: inline-block;
    margin-bottom: 10px;
}

.vvsoutlet-product-unavailable-notice h4 {
    margin: 10px 0;
    color: #333;
    font-size: 18px;
    font-weight: 600;
}

.vvsoutlet-product-unavailable-notice p {
    margin: 0;
    color: #666;
    font-size: 15px;
}

/* Prominent Quote Button when product unavailable */
.vvsoutlet-quote-button.vvsoutlet-quote-prominent {
    background: #ff9800 !important;
    color: white !important;
    border-color: #ff9800 !important;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(255, 152, 0, 0.3);
    transition: all 0.3s ease;
}

.vvsoutlet-quote-button.vvsoutlet-quote-prominent:hover {
    background: #f57c00 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 152, 0, 0.4);
}

.vvsoutlet-quote-button.vvsoutlet-quote-prominent .dashicons {
    color: white !important;
}

/* Responsive - Mobile First Enhancements */
@media (max-width: 768px) {
    /* Mobile page layout optimization */
    .vvsoutlet-product-page {
        background: white;
        /* min-height: 100vh; - Removed to prevent excessive white space */
    }
    
    .vvsoutlet-breadcrumbs {
        padding: 15px 15px 0;
        font-size: 12px;
    }
    
    .vvsoutlet-product-container {
        padding: 15px;
        margin: 0;
        border-radius: 0;
        box-shadow: none;
    }
    
    .vvsoutlet-product-grid {
        gap: 15px;
        margin-bottom: 30px;
    }
    
    /* Mobile Image Gallery - Swipeable */
    .vvsoutlet-product-images {
        position: relative;
        margin: 0 -15px;
    }
    
    .vvsoutlet-product-main-image {
        margin-bottom: 10px;
        border-radius: 0;
        position: relative;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        max-height: 50vh; /* Even more restrictive on mobile */
        -webkit-overflow-scrolling: touch;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .vvsoutlet-main-image {
        max-height: 50vh; /* Restrict image height on mobile */
        width: auto;
        max-width: 100%;
        object-fit: contain;
    }
    
    .vvsoutlet-gallery-swipe-container {
        display: flex;
        gap: 10px;
    }
    
    .vvsoutlet-gallery-swipe-item {
        flex: 0 0 100%;
        scroll-snap-align: start;
    }
    
    /* Gallery Thumbnails - Horizontal scroll */
    .vvsoutlet-product-gallery {
        display: flex;
        gap: 8px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding: 0 15px;
        margin: 0 -15px;
        scroll-behavior: smooth;
        grid-template-columns: none; /* Override desktop grid */
    }
    
    .vvsoutlet-gallery-thumb {
        flex: 0 0 80px;
        width: 80px;
        height: 80px;
    }
    
    .vvsoutlet-gallery-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    /* Mobile Product Title */
    .vvsoutlet-product-title {
        font-size: 22px;
        line-height: 1.3;
    }
    
    /* Mobile Pricing - Better hierarchy */
    .vvsoutlet-price-section {
        position: sticky;
        bottom: 0;
        left: 0;
        right: 0;
        background: white;
        z-index: 10;
        padding: 15px;
        margin: 0 -15px;
        box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    }
    
    .vvsoutlet-price-yellow {
        font-size: 28px;
    }
    
    .vvsoutlet-three-layer-prices {
        gap: 8px;
    }
    
    .vvsoutlet-regular-price .vvsoutlet-price-strikethrough {
        font-size: 16px;
    }
    
    .vvsoutlet-sales-price .vvsoutlet-price-strikethrough {
        font-size: 20px;
    }
    
    /* Mobile Add to Cart - Sticky bottom */
    .vvsoutlet-add-to-cart {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: white;
        padding: 8px 8px 8px 55px; /* Reduced padding, space for chat widget */
        box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
        z-index: 100;
        margin: 0;
    }
    
    .vvsoutlet-cart-form {
        display: flex;
        gap: 6px;
        align-items: stretch;
        width: 100%;
    }
    
    .vvsoutlet-quantity-wrapper {
        display: flex;
        flex-direction: row;
        align-items: center;
        background: #f8f9fa;
        border-radius: 8px;
        padding: 4px;
        border: 1px solid #e9ecef;
    }
    
    .vvsoutlet-quantity-wrapper label {
        display: none; /* Hide label on mobile for cleaner look */
    }
    
    .vvsoutlet-quantity-input {
        width: 40px;
        height: 32px;
        font-size: 14px;
        font-weight: 600;
        text-align: center;
        border: none;
        background: transparent;
        padding: 0;
        -moz-appearance: textfield;
    }
    
    /* Remove spinner buttons for cleaner look */
    .vvsoutlet-quantity-input::-webkit-outer-spin-button,
    .vvsoutlet-quantity-input::-webkit-inner-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }
    
    /* Custom quantity buttons */
    .vvsoutlet-quantity-decrease,
    .vvsoutlet-quantity-increase {
        width: 30px;
        height: 30px;
        background: white;
        border: none;
        border-radius: 4px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        font-size: 16px;
        font-weight: 600;
        color: #666;
        transition: all 0.2s ease;
        user-select: none;
        box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    }
    
    .vvsoutlet-quantity-decrease:hover,
    .vvsoutlet-quantity-increase:hover {
        background: #f0f0f0;
        transform: scale(1.05);
    }
    
    .vvsoutlet-quantity-decrease:active,
    .vvsoutlet-quantity-increase:active {
        transform: scale(0.95);
        box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
    }
    
    .vvsoutlet-quantity-decrease:disabled,
    .vvsoutlet-quantity-increase:disabled {
        opacity: 0.5;
        cursor: not-allowed;
        transform: none;
    }
    
    .vvsoutlet-add-to-cart-button {
        flex: 1;
        height: 40px;
        font-size: 14px;
        font-weight: 600;
        border-radius: 6px;
        border: none;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        background: #27ae60;
        color: white;
        box-shadow: 0 2px 4px rgba(39, 174, 96, 0.2);
        transition: all 0.2s ease;
        padding: 0 16px;
    }
    
    .vvsoutlet-add-to-cart-button:active {
        transform: scale(0.98);
        box-shadow: 0 1px 2px rgba(39, 174, 96, 0.2);
    }
    
    /* Add padding to content to account for sticky cart */
    .vvsoutlet-product-info {
        padding-bottom: 70px;
    }
    
    /* Mobile Product Actions */
    .vvsoutlet-product-actions {
        grid-template-columns: 1fr 1fr;
        display: grid;
        gap: 10px;
        margin-bottom: 20px;
    }
    
    .vvsoutlet-action-button {
        padding: 12px 10px;
        font-size: 13px;
        min-height: 48px;
    }
    
    /* Mobile Tabs - Better UX */
    .vvsoutlet-tabs {
        margin: 0 -15px;
        border-radius: 0;
        box-shadow: none;
    }
    
    .vvsoutlet-tab-nav {
        display: flex;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
        padding: 0 15px;
    }
    
    .vvsoutlet-tab-nav::-webkit-scrollbar {
        display: none;
    }
    
    .vvsoutlet-tab-item {
        padding: 15px 20px;
        white-space: nowrap;
        flex-shrink: 0;
        font-size: 15px;
    }
    
    .vvsoutlet-tab-content {
        padding: 20px 15px;
    }
    
    /* Mobile Quick Documents */
    .vvsoutlet-quick-documents {
        padding: 12px;
        margin: 0 -15px 15px;
        border-radius: 0;
    }
    
    .vvsoutlet-quick-doc-item {
        font-size: 12px;
        padding: 6px 10px;
        min-height: 36px;
    }
    
    .vvsoutlet-quick-doc-name {
        max-width: 100px;
    }
    
    .vvsoutlet-quick-docs-list {
        gap: 8px;
    }
    
    /* Mobile Tags */
    .vvsoutlet-product-tags {
        gap: 6px;
        margin-top: 10px;
    }
    
    .vvsoutlet-tag {
        font-size: 11px;
        padding: 4px 10px;
        min-height: 28px;
    }
    
    .vvsoutlet-tag svg {
        width: 12px;
        height: 12px;
    }
    
    /* Mobile Stock Status */
    .vvsoutlet-stock-status {
        font-size: 14px;
        padding: 8px 12px;
        background: #f8f9fa;
        border-radius: 6px;
        display: inline-flex;
    }
    
    /* Mobile Description - Collapsible sections */
    .vvsoutlet-description-content h2,
    .vvsoutlet-description-content h3 {
        font-size: 18px;
        margin-top: 20px;
        margin-bottom: 10px;
    }
    
    /* Mobile Specifications Table */
    .vvsoutlet-specs-table {
        font-size: 14px;
    }
    
    .vvsoutlet-specs-table th,
    .vvsoutlet-specs-table td {
        padding: 10px 0;
    }
    
    /* Mobile Documents Grid */
    .vvsoutlet-documents-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .vvsoutlet-document-item {
        padding: 16px;
        gap: 12px;
    }
    
    .vvsoutlet-document-icon {
        width: 48px;
        height: 48px;
    }
    
    .vvsoutlet-document-icon svg {
        width: 40px;
        height: 40px;
    }
    
    .vvsoutlet-document-title {
        font-size: 15px;
    }
    
    .vvsoutlet-document-description {
        font-size: 12px;
    }
    
    .vvsoutlet-document-arrow {
        width: 28px;
        height: 28px;
    }
}

/* Touch-friendly enhancements */
@media (hover: none) and (pointer: coarse) {
    /* Increase all touch targets */
    button, a, .vvsoutlet-gallery-thumb {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Remove hover effects on touch devices */
    .vvsoutlet-add-to-cart-button:hover,
    .vvsoutlet-action-button:hover {
        transform: none;
    }
}

/* Landscape mobile optimization */
@media (max-width: 812px) and (orientation: landscape) {
    .vvsoutlet-product-main-image {
        max-height: 50vh;
    }
    
    .vvsoutlet-add-to-cart {
        position: static;
        box-shadow: none;
        padding: 15px 0;
    }
}

/* High resolution mobile screens */
@media (max-width: 768px) and (-webkit-min-device-pixel-ratio: 2) {
    .vvsoutlet-product-title {
        font-weight: 600;
        -webkit-font-smoothing: antialiased;
    }
    
    .vvsoutlet-price-yellow {
        font-weight: 700;
    }
}

/* iOS specific fixes */
@supports (-webkit-touch-callout: none) {
    /* Fix for iOS Safari bottom bar */
    .vvsoutlet-add-to-cart {
        padding-bottom: calc(10px + env(safe-area-inset-bottom));
    }
    
    .vvsoutlet-mobile-sticky-footer {
        padding-bottom: calc(8px + env(safe-area-inset-bottom));
    }
}

/* Extra small mobile devices */
@media (max-width: 360px) {
    .vvsoutlet-add-to-cart {
        padding-left: 55px; /* Less space on very small screens */
        padding: 8px;
        padding-left: 55px;
    }
    
    .vvsoutlet-cart-form {
        grid-template-columns: 70px 1fr;
        gap: 8px;
    }
    
    .vvsoutlet-price-yellow {
        font-size: 24px;
    }
}

/* Ensure chat widget doesn't overlap */
@media (max-width: 768px) {
    .vvsoutlet-add-to-cart::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 70px;
        background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
        pointer-events: none;
    }
}

/* Loading states for better perceived performance */
.vvsoutlet-product-loading {
    opacity: 0.6;
    pointer-events: none;
}

.vvsoutlet-skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Click & Collect Section */
.vvsoutlet-click-collect {
    background: #E3F2FD; /* Light pastel blue */
    border: 1px solid #BBDEFB;
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.vvsoutlet-click-collect:hover {
    background: #BBDEFB;
    border-color: #90CAF9;
}

.vvsoutlet-click-collect-icon {
    flex-shrink: 0;
    color: #1976D2;
}

.vvsoutlet-click-collect-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.vvsoutlet-click-collect-text strong {
    font-size: 14px;
    font-weight: 600;
    color: #1565C0;
}

.vvsoutlet-click-collect-text span {
    font-size: 13px;
    color: #424242;
}

/* Shipping Info Section */
.vvsoutlet-shipping-info {
    border-radius: 8px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

/* Parcel shipping (package) */
.vvsoutlet-shipping-info.parcel {
    background: #E8F5E9; /* Light pastel green */
    border: 1px solid #C8E6C9;
}

.vvsoutlet-shipping-info.parcel:hover {
    background: #C8E6C9;
    border-color: #A5D6A7;
}

.vvsoutlet-shipping-info.parcel .vvsoutlet-shipping-icon {
    color: #388E3C;
}

/* Pallet shipping (truck) */
.vvsoutlet-shipping-info.pallet {
    background: #FFF3E0; /* Light pastel orange */
    border: 1px solid #FFE0B2;
}

.vvsoutlet-shipping-info.pallet:hover {
    background: #FFE0B2;
    border-color: #FFCC80;
}

.vvsoutlet-shipping-info.pallet .vvsoutlet-shipping-icon {
    color: #F57C00;
}

/* Unknown shipping */
.vvsoutlet-shipping-info.unknown {
    background: #F3E5F5; /* Light pastel purple */
    border: 1px solid #E1BEE7;
}

.vvsoutlet-shipping-info.unknown:hover {
    background: #E1BEE7;
    border-color: #CE93D8;
}

.vvsoutlet-shipping-info.unknown .vvsoutlet-shipping-icon {
    color: #7B1FA2;
}

/* Shipping Tab Content */
.vvsoutlet-shipping-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 20px 0 15px;
    color: #212121;
}

.vvsoutlet-shipping-content h3:first-child {
    margin-top: 0;
}

.vvsoutlet-shipping-content .vvsoutlet-shipping-info {
    margin: 15px 0;
}

.vvsoutlet-shipping-content .vvsoutlet-shipping-text p {
    margin: 0;
    font-size: 14px;
    color: #424242;
}

.vvsoutlet-shipping-notice {
    background: #F5F5F5;
    border-left: 4px solid #2196F3;
    padding: 15px;
    margin-top: 25px;
    border-radius: 4px;
}

.vvsoutlet-shipping-notice p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #424242;
}

.vvsoutlet-shipping-icon {
    flex-shrink: 0;
}

.vvsoutlet-shipping-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.vvsoutlet-shipping-text strong {
    font-size: 14px;
    font-weight: 600;
    color: #212121;
}

.vvsoutlet-shipping-text span {
    font-size: 13px;
    color: #424242;
    line-height: 1.4;
}

/* Shipping dimensions */
.vvsoutlet-shipping-dimensions {
    margin-top: 8px;
    font-size: 12px;
    color: #616161;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.vvsoutlet-dimension-item {
    display: block;
}

/* Enhanced Shipping Box Styles */
.vvsoutlet-shipping-styled {
    background: #e3f2fd !important;
    border: 1px solid #90caf9 !important;
    border-radius: 12px !important;
    padding: 0 !important;
    overflow: hidden;
}

/* Inline Dimensions Style */
.vvsoutlet-shipping-dimensions-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 13px;
    color: #424242;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 6px;
    border: 1px solid rgba(33, 150, 243, 0.15);
}

.vvsoutlet-dimension-inline {
    position: relative;
    padding-right: 12px;
}

.vvsoutlet-dimension-inline:not(:last-child)::after {
    content: "|";
    position: absolute;
    right: 0;
    color: #90caf9;
    font-weight: 300;
}

.vvsoutlet-dimension-inline strong {
    color: #1976d2;
    font-weight: 600;
    font-size: 12px;
}

.vvsoutlet-shipping-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(33, 150, 243, 0.08);
    border-bottom: 1px solid rgba(33, 150, 243, 0.15);
}

.vvsoutlet-shipping-styled .vvsoutlet-shipping-icon {
    width: 36px;
    height: 36px;
    background: #2196f3;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.vvsoutlet-shipping-styled .vvsoutlet-shipping-icon svg {
    width: 22px;
    height: 22px;
    color: white;
}

.vvsoutlet-shipping-title {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.vvsoutlet-shipping-title strong {
    font-size: 16px;
    color: #1565c0;
    font-weight: 600;
    line-height: 1.2;
}

.vvsoutlet-shipping-type {
    font-size: 12px;
    color: #42a5f5;
    font-weight: 500;
}

.vvsoutlet-shipping-content {
    padding: 14px 16px;
}

.vvsoutlet-shipping-message {
    font-size: 14px;
    color: #424242;
    line-height: 1.4;
    margin-bottom: 12px;
}

.vvsoutlet-shipping-dimensions-box {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 6px;
    padding: 12px;
    border: 1px solid rgba(33, 150, 243, 0.2);
}

.vvsoutlet-dimensions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 8px;
}

.vvsoutlet-dimension-card {
    background: white;
    border-radius: 4px;
    padding: 8px 10px;
    text-align: center;
    border: 1px solid rgba(33, 150, 243, 0.15);
    transition: all 0.2s ease;
}

.vvsoutlet-dimension-card:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(33, 150, 243, 0.15);
}

.vvsoutlet-dimension-card svg {
    width: 16px;
    height: 16px;
    color: #2196f3;
    margin-bottom: 4px;
}

.vvsoutlet-dimension-label {
    font-size: 10px;
    color: #64b5f6;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-bottom: 2px;
    font-weight: 600;
}

.vvsoutlet-dimension-value {
    font-size: 13px;
    color: #1565c0;
    font-weight: 600;
    line-height: 1.2;
}

/* Mobile styles for enhanced shipping box */
@media (max-width: 768px) {
    .vvsoutlet-shipping-header {
        padding: 10px 14px;
    }
    
    .vvsoutlet-shipping-styled .vvsoutlet-shipping-icon {
        width: 32px;
        height: 32px;
    }
    
    .vvsoutlet-shipping-styled .vvsoutlet-shipping-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .vvsoutlet-shipping-title strong {
        font-size: 15px;
    }
    
    .vvsoutlet-shipping-type {
        font-size: 11px;
    }
    
    .vvsoutlet-shipping-content {
        padding: 12px 14px;
    }
    
    .vvsoutlet-shipping-message {
        font-size: 13px;
        margin-bottom: 10px;
    }
    
    .vvsoutlet-shipping-dimensions-inline {
        padding: 8px 10px;
        font-size: 12px;
        gap: 8px;
    }
    
    .vvsoutlet-dimension-inline {
        padding-right: 10px;
    }
    
    .vvsoutlet-dimension-inline strong {
        font-size: 11px;
    }
}

/* USP Section */
.vvsoutlet-usp-section {
    margin: 60px 0;
    padding: 40px 0;
    background: #f8f9fa;
}

.vvsoutlet-usp-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.vvsoutlet-usp-section h3 {
    font-size: 28px;
    font-weight: 600;
    color: #333;
    margin-bottom: 30px;
}

.vvsoutlet-usp-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.vvsoutlet-usp-item {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.vvsoutlet-usp-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: #27ae60;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.vvsoutlet-usp-icon svg {
    width: 24px;
    height: 24px;
    stroke-width: 2;
}

.vvsoutlet-usp-item p {
    margin: 0;
    font-size: 16px;
    color: #555;
    text-align: left;
    line-height: 1.5;
}

.vvsoutlet-usp-divider {
    width: 2px;
    height: 60px;
    background: #e0e0e0;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .vvsoutlet-usp-section {
        margin: 40px 0;
        padding: 30px 0;
    }
    
    .vvsoutlet-usp-section h3 {
        font-size: 22px;
        margin-bottom: 25px;
    }
    
    .vvsoutlet-usp-grid {
        flex-direction: column;
        gap: 25px;
    }
    
    .vvsoutlet-usp-divider {
        width: 60px;
        height: 2px;
    }
    
    .vvsoutlet-usp-item p {
        font-size: 15px;
        text-align: center;
    }
}

/* Click & Collect Modal Styles */
.vvsoutlet-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    overflow-y: auto;
    padding: 20px;
}

.vvsoutlet-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.vvsoutlet-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    cursor: pointer;
}

.vvsoutlet-modal-content {
    position: relative;
    background: white;
    border-radius: 12px;
    max-width: 600px;
    width: 90%;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    animation: modalSlideIn 0.3s ease-out;
    margin: auto;
}

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

.vvsoutlet-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #e0e0e0;
    gap: 10px;
}

.vvsoutlet-modal-header h3 {
    margin: 0;
    font-size: 22px;
    color: #1565c0;
    font-weight: 600;
    flex: 1;
    line-height: 1.3;
}

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

.vvsoutlet-modal-close:hover {
    background: #f5f5f5;
    color: #333;
}

.vvsoutlet-modal-body {
    padding: 20px;
}

.vvsoutlet-modal-icon {
    text-align: center;
    margin-bottom: 20px;
}

.vvsoutlet-modal-icon svg {
    width: 64px;
    height: 64px;
    color: #2196f3;
}

.vvsoutlet-modal-body > p {
    font-size: 16px;
    line-height: 1.6;
    color: #424242;
    margin-bottom: 30px;
    text-align: center;
}

.vvsoutlet-modal-steps {
    margin: 30px 0;
}

.vvsoutlet-modal-step {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.vvsoutlet-step-number {
    width: 40px;
    height: 40px;
    background: #2196f3;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.vvsoutlet-step-content {
    flex: 1;
}

.vvsoutlet-step-content strong {
    display: block;
    font-size: 18px;
    color: #1565c0;
    margin-bottom: 8px;
}

.vvsoutlet-step-content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: #616161;
}

.vvsoutlet-modal-footer {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
    margin-top: 30px;
}

.vvsoutlet-modal-tagline {
    font-size: 20px;
    font-weight: 600;
    color: #27ae60;
    margin-bottom: 16px;
}

.vvsoutlet-modal-location {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #e3f2fd;
    border-radius: 20px;
    font-size: 14px;
    color: #1565c0;
}

.vvsoutlet-modal-location svg {
    width: 16px;
    height: 16px;
}

/* Mobile Modal Styles */
@media (max-width: 768px) {
    .vvsoutlet-modal {
        padding: 10px;
    }
    
    .vvsoutlet-modal-content {
        width: calc(100% - 20px);
        margin: auto;
        max-height: calc(100vh - 20px);
    }
    
    .vvsoutlet-modal-header {
        padding: 16px;
    }
    
    .vvsoutlet-modal-header h3 {
        font-size: 18px;
        padding-right: 5px;
    }
    
    .vvsoutlet-modal-body {
        padding: 16px;
    }
    
    .vvsoutlet-modal-step {
        padding: 14px;
        gap: 14px;
    }
    
    .vvsoutlet-step-number {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }
    
    .vvsoutlet-step-content strong {
        font-size: 16px;
    }
    
    .vvsoutlet-modal-tagline {
        font-size: 18px;
    }
}

/* Enhanced Mobile Modal Styles - Removed for better centering */
@media (max-width: 480px) {
    .vvsoutlet-modal {
        padding: 10px;
    }
    
    .vvsoutlet-modal-content {
        width: calc(100% - 20px);
        max-width: 100%;
        margin: 10px auto;
        border-radius: 8px;
    }
    
    .vvsoutlet-modal-header {
        padding: 14px;
    }
    
    .vvsoutlet-modal-header h3 {
        font-size: 16px;
    }
    
    .vvsoutlet-modal-body {
        padding: 14px;
    }
    
    .vvsoutlet-modal-close {
        font-size: 28px;
        width: 40px;
        height: 40px;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .vvsoutlet-modal-icon {
        margin-bottom: 16px;
    }
    
    .vvsoutlet-modal-icon svg {
        width: 48px;
        height: 48px;
    }
    
    .vvsoutlet-store-item {
        padding: 12px;
        margin-bottom: 12px;
    }
    
    .vvsoutlet-store-item h4 {
        font-size: 16px;
        margin-bottom: 6px;
    }
    
    .vvsoutlet-store-item p {
        font-size: 14px;
        margin-bottom: 4px;
        line-height: 1.4;
    }
    
    .vvsoutlet-click-collect-info {
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid #e0e0e0;
    }
    
    .vvsoutlet-click-collect-info h4 {
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .vvsoutlet-click-collect-info ol {
        font-size: 14px;
        padding-left: 20px;
    }
    
    .vvsoutlet-click-collect-info li {
        margin-bottom: 8px;
        line-height: 1.5;
    }
}

/* Product Disclaimer Section */
.vvsoutlet-product-disclaimer {
    margin-top: 20px;
    padding: 16px;
    background-color: #FEF3C7;
    border: 1px solid #F59E0B;
    border-radius: 8px;
    scroll-margin-top: 80px; /* For smooth scroll with header */
}

.vvsoutlet-disclaimer-content {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.vvsoutlet-disclaimer-content > svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: #F59E0B;
    margin-top: 2px;
}

.vvsoutlet-disclaimer-text {
    flex: 1;
}

.vvsoutlet-disclaimer-text p {
    margin: 0 0 12px 0;
    font-size: 14px;
    line-height: 1.5;
    color: #92400E;
}

.vvsoutlet-disclaimer-text p:last-of-type {
    margin-bottom: 8px;
}

.vvsoutlet-disclaimer-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #92400E;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
}

.vvsoutlet-disclaimer-link:hover {
    color: #F59E0B;
}

.vvsoutlet-disclaimer-link svg {
    width: 16px;
    height: 16px;
}

/* Info Tags Overlay */
.vvsoutlet-info-tags-overlay {
    position: absolute;
    bottom: 10px;
    left: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    z-index: 10;
}

.vvsoutlet-info-tag {
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    backdrop-filter: blur(4px);
}

/* Linked Products Section */
.vvsoutlet-linked-products {
    max-width: 1200px;
    margin: 60px auto 40px;
    padding: 0 20px;
    scroll-margin-top: 80px; /* For smooth scroll with header */
}

.vvsoutlet-linked-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.vvsoutlet-linked-header h3 {
    font-size: 24px;
    margin: 0;
    color: #333;
    font-weight: 600;
}

.vvsoutlet-back-to-disclaimer {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.vvsoutlet-back-to-disclaimer:hover {
    color: #3498db;
}

.vvsoutlet-back-to-disclaimer svg {
    width: 16px;
    height: 16px;
}

.vvsoutlet-linked-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

.vvsoutlet-linked-item {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #e0e0e0;
}

.vvsoutlet-linked-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.vvsoutlet-linked-item a {
    display: block;
    text-decoration: none;
    color: inherit;
}

.vvsoutlet-linked-item img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    padding: 10px;
    background: #f8f8f8;
}

.vvsoutlet-linked-no-image {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f8f8;
}

.vvsoutlet-linked-no-image .dashicons {
    font-size: 48px;
    color: #ccc;
}

.vvsoutlet-linked-item h4 {
    padding: 0 16px;
    margin: 12px 0 8px;
    font-size: 15px;
    line-height: 1.4;
    color: #333;
    font-weight: 500;
    min-height: 42px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.vvsoutlet-linked-price {
    padding: 0 16px;
    font-size: 18px;
    font-weight: 600;
    color: #F59E0B;
    margin-bottom: 8px;
}

.vvsoutlet-linked-brand {
    display: block;
    padding: 0 16px 12px;
    font-size: 13px;
    color: #666;
}

/* Mobile Responsive Updates */
@media (max-width: 768px) {
    .vvsoutlet-info-tags-overlay {
        bottom: 5px;
        left: 5px;
        gap: 4px;
    }
    
    .vvsoutlet-info-tag {
        font-size: 11px;
        padding: 3px 8px;
    }
    
    .vvsoutlet-linked-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 12px;
    }
    
    .vvsoutlet-linked-item img,
    .vvsoutlet-linked-no-image {
        height: 150px;
    }
    
    .vvsoutlet-linked-item h4 {
        font-size: 14px;
        padding: 0 12px;
    }
    
    .vvsoutlet-linked-price {
        font-size: 16px;
        padding: 0 12px;
    }
    
    .vvsoutlet-linked-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .vvsoutlet-back-to-disclaimer {
        font-size: 13px;
    }
}

/* Ensure main image container has relative positioning for overlay */
.vvsoutlet-product-main-image {
    position: relative;
}

/* Brand Products Section */
.vvsoutlet-brand-products {
    max-width: 1200px;
    margin: 60px auto 40px;
    padding: 0 20px;
}

.vvsoutlet-brand-products h3 {
    font-size: 24px;
    margin-bottom: 24px;
    color: #333;
    font-weight: 600;
}

.vvsoutlet-brand-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

.vvsoutlet-brand-item {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #e0e0e0;
}

.vvsoutlet-brand-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.vvsoutlet-brand-item a {
    display: block;
    text-decoration: none;
    color: inherit;
}

.vvsoutlet-brand-item img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    padding: 10px;
    background: #f8f8f8;
}

.vvsoutlet-brand-no-image {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f8f8;
}

.vvsoutlet-brand-no-image .dashicons {
    font-size: 48px;
    color: #ccc;
}

.vvsoutlet-brand-item h4 {
    padding: 0 16px;
    margin: 12px 0 8px;
    font-size: 15px;
    line-height: 1.4;
    color: #333;
    font-weight: 500;
    min-height: 42px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.vvsoutlet-brand-price {
    padding: 0 16px 16px;
    font-size: 18px;
    font-weight: 600;
    color: #dc3545 !important;
}

/* Related Products Section (Automatic) */
.vvsoutlet-related-products {
    max-width: 1200px;
    margin: 60px auto 40px;
    padding: 0 20px;
}

.vvsoutlet-related-products h3 {
    font-size: 24px;
    margin-bottom: 24px;
    color: #333;
    font-weight: 600;
}

.vvsoutlet-related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

.vvsoutlet-related-item {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #e0e0e0;
}

.vvsoutlet-related-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.vvsoutlet-related-item a {
    display: block;
    text-decoration: none;
    color: inherit;
}

.vvsoutlet-related-item img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    padding: 10px;
    background: #f8f8f8;
}

.vvsoutlet-related-no-image {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f8f8;
}

.vvsoutlet-related-no-image .dashicons {
    font-size: 48px;
    color: #ccc;
}

.vvsoutlet-related-item h4 {
    padding: 0 16px;
    margin: 12px 0 8px;
    font-size: 15px;
    line-height: 1.4;
    color: #333;
    font-weight: 500;
    min-height: 42px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.vvsoutlet-related-price {
    padding: 0 16px;
    font-size: 18px;
    font-weight: 600;
    color: #dc3545 !important;
    margin-bottom: 8px;
}

.vvsoutlet-related-brand {
    display: block;
    padding: 0 16px 12px;
    font-size: 13px;
    color: #666;
}

/* Mobile adjustments for brand products */
@media (max-width: 768px) {
    .vvsoutlet-brand-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 12px;
    }
    
    .vvsoutlet-brand-item img,
    .vvsoutlet-brand-no-image {
        height: 150px;
    }
    
    .vvsoutlet-brand-item h4 {
        font-size: 14px;
        padding: 0 12px;
    }
    
    .vvsoutlet-brand-price {
        font-size: 16px;
        padding: 0 12px 12px;
    }
}

/* Mobile adjustments for related products */
@media (max-width: 768px) {
    .vvsoutlet-related-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 12px;
    }
    
    .vvsoutlet-related-item img,
    .vvsoutlet-related-no-image {
        height: 150px;
    }
    
    .vvsoutlet-related-item h4 {
        font-size: 14px;
        padding: 0 12px;
    }
    
    .vvsoutlet-related-price {
        font-size: 16px;
        padding: 0 12px;
    }
}

/* Deactivated tag style */
.vvsoutlet-tag.tag-deactivated {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff4757 100%);
    color: white;
    font-weight: 600;
    border: none;
    padding: 8px 16px;
    font-size: 14px;
}

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

/* Deactivated Product Message */
.vvsoutlet-deactivated-message {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    border: 2px solid #fca5a5;
    border-radius: 12px;
    padding: 32px;
    margin: 24px 0;
    text-align: center;
    box-shadow: 0 4px 6px rgba(239, 68, 68, 0.1);
}

.vvsoutlet-deactivated-content {
    max-width: 500px;
    margin: 0 auto;
}

.vvsoutlet-deactivated-icon {
    color: #dc2626;
    margin-bottom: 16px;
    width: 48px;
    height: 48px;
}

.vvsoutlet-deactivated-message h3 {
    color: #dc2626;
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.vvsoutlet-deactivated-message p {
    color: #991b1b;
    font-size: 16px;
    margin: 0;
    line-height: 1.5;
}

.vvsoutlet-deactivated-link {
    color: #dc2626;
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.3s ease;
}

.vvsoutlet-deactivated-link:hover {
    color: #b91c1c;
    text-decoration: none;
}

@media (max-width: 768px) {
    .vvsoutlet-deactivated-message {
        padding: 24px;
        margin: 16px 0;
    }
    
    .vvsoutlet-deactivated-icon {
        width: 40px;
        height: 40px;
    }
    
    .vvsoutlet-deactivated-message h3 {
        font-size: 18px;
    }
    
    .vvsoutlet-deactivated-message p {
        font-size: 14px;
    }
}

/* ============================================
   Clean Desktop 3-Column Price Display
   ============================================ */

/* Price Area Wrapper */
.vvsoutlet-price-wrapper-desktop {
    margin: 24px 0;
}

.vvsoutlet-price-desktop {
    border: 1.5px solid #e5e5e5;
    border-radius: 12px;
    padding: 0;
    background: #ffffff;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: box-shadow 0.3s ease;
}

.vvsoutlet-price-desktop:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

/* 3-Column Price Grid Layout - Desktop Optimized */
.vvsoutlet-price-grid-desktop {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1.3fr; /* More space for price columns */
    align-items: stretch;
    min-height: 120px; /* Taller for desktop */
    gap: 0;
}

/* Responsive: Tablet/Medium Desktop (769px-1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .vvsoutlet-price-grid-desktop {
        grid-template-columns: 1fr; /* Single column on medium screens */
        grid-template-rows: auto auto;
        gap: 0;
        min-height: auto;
    }

    /* Hide "Ord. pris" column visually but keep in DOM for SEO */
    .vvsoutlet-price-column-desktop.vvsoutlet-column-divider-desktop {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border-width: 0;
    }

    /* "Ditt pris" - Full width, prominent */
    .vvsoutlet-price-column-desktop:first-child {
        padding: 16px;
        border-bottom: 1px solid #e5e5e5;
    }

    /* "Du sparar" - Full width below */
    .vvsoutlet-price-column-desktop.vvsoutlet-column-savings-desktop {
        padding: 12px 16px;
        background: rgba(40, 167, 69, 0.08);
    }

    /* Reduce font sizes for compact view */
    .vvsoutlet-price-sale-desktop {
        font-size: 28px;
    }

    .vvsoutlet-price-savings-desktop {
        font-size: 24px;
    }

    .vvsoutlet-price-label-desktop {
        font-size: 12px;
    }
}

.vvsoutlet-price-column-desktop {
    padding: 20px 16px; /* Generous padding for desktop */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

/* Column dividers */
.vvsoutlet-price-column-desktop.vvsoutlet-column-divider-desktop::before {
    content: '';
    position: absolute;
    left: 0;
    top: 15%;
    bottom: 15%;
    width: 1px;
    background: #e5e5e5;
}

/* Savings column with subtle background */
.vvsoutlet-price-column-desktop.vvsoutlet-column-savings-desktop {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.06), rgba(40, 167, 69, 0.02));
}

/* Price Labels - Consistent across columns */
.vvsoutlet-price-label-desktop {
    font-size: 13px;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 8px;
    display: block;
}

/* Price Values - Different styles for each type */
.vvsoutlet-price-value-desktop {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    line-height: 1.1;
}

/* Sale price in red */
.vvsoutlet-price-sale-desktop {
    color: #dc3545;
    font-size: 32px; /* Large for desktop */
    font-weight: 700;
}

/* Original price with strikethrough */
.vvsoutlet-price-original-desktop {
    color: #999;
    text-decoration: line-through;
    font-size: 24px;
    font-weight: 500;
}

/* Savings amount in green */
.vvsoutlet-price-savings-desktop {
    color: #28a745;
    font-size: 28px;
    font-weight: 700;
}

/* VAT text - small and subtle */
.vvsoutlet-price-vat-desktop {
    font-size: 11px;
    color: #999;
    font-weight: 400;
    display: block;
    margin-top: 2px;
}

/* Discount percentage - small green text */
.vvsoutlet-price-discount-desktop {
    font-size: 13px;
    color: #28a745;
    font-weight: 600;
    display: block;
    margin-top: 4px;
}

/* ============================================
   Separate Logistics & Delivery Section
   ============================================ */

.vvsoutlet-logistics-section-desktop {
    margin: 20px 0;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    background: linear-gradient(to bottom, #ffffff, #f8f9fa);
    box-shadow: 0 3px 10px rgba(0,0,0,0.06);
    transition: box-shadow 0.3s ease;
}

.vvsoutlet-logistics-section-desktop:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.vvsoutlet-logistics-content-desktop {
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.vvsoutlet-shipping-info-desktop {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #555;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.4;
}

.vvsoutlet-logistics-icon {
    color: #28a745;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

.vvsoutlet-logistics-actions-desktop {
    display: flex;
    gap: 16px;
    align-items: stretch; /* Ensure buttons are same height */
}

.vvsoutlet-click-collect-btn-desktop,
.vvsoutlet-shipping-info-btn-desktop {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 1.5px solid #e0e0e0;
    padding: 10px 16px; /* More generous padding */
    font: inherit;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center; /* Center content */
    gap: 8px;
    color: #333;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    min-height: 44px; /* Ensure consistent height */
    position: relative;
    overflow: hidden;
}

.vvsoutlet-click-collect-btn-desktop:hover,
.vvsoutlet-shipping-info-btn-desktop:hover {
    background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 100%);
    border-color: #28a745;
    color: #28a745;
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.2);
    transform: translateY(-2px);
}

.vvsoutlet-click-collect-btn-desktop svg,
.vvsoutlet-shipping-info-btn-desktop svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
}

.vvsoutlet-dropdown-arrow {
    margin-left: 6px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.vvsoutlet-shipping-info-btn-desktop:hover .vvsoutlet-dropdown-arrow {
    transform: rotate(180deg);
}

/* Add subtle ripple effect on click */
.vvsoutlet-click-collect-btn-desktop:active,
.vvsoutlet-shipping-info-btn-desktop:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(40, 167, 69, 0.15);
}

/* Responsive adjustments for smaller desktop screens */
@media (max-width: 1200px) {
    .vvsoutlet-logistics-content-desktop {
        padding: 16px 20px;
        gap: 20px;
    }
    
    .vvsoutlet-logistics-actions-desktop {
        gap: 12px;
    }
    
    .vvsoutlet-click-collect-btn-desktop,
    .vvsoutlet-shipping-info-btn-desktop {
        padding: 8px 12px;
        font-size: 13px;
        min-height: 40px;
    }
}

/* Quote request styling */
.vvsoutlet-quote-request-desktop {
    text-align: center;
    padding: 20px;
}

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

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

/* Fire emoji styling */
.vvsoutlet-fire-emoji {
    font-size: 16px;
}

/* Remove old yellow styles if they exist elsewhere */
.vvsoutlet-price-yellow,
.vvsoutlet-badge-yellow {
    background: transparent !important;
    color: inherit !important;
}

/* Link button style for Click & Collect - Clean & Modern */
.vvsoutlet-link-btn {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 1px solid #e0e0e0;
    padding: 6px 12px;
    font: inherit;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #333;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.vvsoutlet-link-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #007cba 0%, #005a8b 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.vvsoutlet-link-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 124, 186, 0.15);
    border-color: #007cba;
}

.vvsoutlet-link-btn:hover::before {
    opacity: 1;
}

.vvsoutlet-link-btn:hover span,
.vvsoutlet-link-btn:hover svg {
    position: relative;
    color: white;
}

.vvsoutlet-link-btn svg {
    width: 18px;
    height: 18px;
    transition: all 0.3s ease;
    position: relative;
}

.vvsoutlet-link-btn:hover svg {
    transform: scale(1.1);
    fill: white;
}

.vvsoutlet-link-btn span {
    position: relative;
    transition: color 0.3s ease;
}

/* Modal Styles - Clean & Modern Design */
.vvsoutlet-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(0px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.vvsoutlet-modal[style*="display: flex"] {
    display: flex !important;
    animation: modalFadeIn 0.3s ease forwards;
}

@keyframes modalFadeIn {
    from {
        background: rgba(0, 0, 0, 0);
        backdrop-filter: blur(0px);
    }
    to {
        background: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(8px);
    }
}

.vvsoutlet-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.vvsoutlet-modal-content {
    position: relative;
    background: white;
    border-radius: 20px;
    max-width: 650px;
    width: 90%;
    max-height: 85vh;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    animation: modalSlideUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.vvsoutlet-modal-header {
    padding: 28px 32px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #f8fbff 0%, #ffffff 100%);
}

.vvsoutlet-modal-header h3 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

.vvsoutlet-modal-close {
    background: #f5f5f5;
    border: none;
    cursor: pointer;
    color: #666;
    padding: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    font-size: 20px;
    line-height: 1;
}

.vvsoutlet-modal-close:hover {
    background: #e74c3c;
    color: white;
    transform: rotate(90deg);
}

.vvsoutlet-modal-body {
    padding: 32px;
    overflow-y: auto;
    max-height: calc(85vh - 180px);
}

.vvsoutlet-modal-body::-webkit-scrollbar {
    width: 6px;
}

.vvsoutlet-modal-body::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.vvsoutlet-modal-body::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

.vvsoutlet-modal-body::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.vvsoutlet-modal-icon {
    text-align: center;
    margin-bottom: 28px;
}

.vvsoutlet-modal-icon svg {
    width: 64px;
    height: 64px;
    color: #007cba;
    filter: drop-shadow(0 4px 6px rgba(0, 124, 186, 0.1));
}

.vvsoutlet-modal-body > p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 28px;
}

.vvsoutlet-modal-steps {
    margin: 32px 0;
    padding: 24px;
    background: linear-gradient(135deg, #f7fafc 0%, #ffffff 100%);
    border-radius: 12px;
}

.vvsoutlet-modal-step {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
    padding: 16px;
    background: white;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.vvsoutlet-modal-step:last-child {
    margin-bottom: 0;
}

.vvsoutlet-modal-step:hover {
    transform: translateX(8px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: #007cba;
}

.vvsoutlet-step-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #007cba 0%, #005a8b 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 4px 12px rgba(0, 124, 186, 0.3);
}

.vvsoutlet-step-content {
    flex: 1;
    padding-top: 2px;
}

.vvsoutlet-step-content strong {
    display: block;
    margin-bottom: 6px;
    font-size: 17px;
    font-weight: 600;
    color: #2d3748;
    letter-spacing: -0.3px;
}

.vvsoutlet-step-content p {
    margin: 0;
    color: #718096;
    font-size: 14px;
    line-height: 1.6;
}

.vvsoutlet-modal-footer {
    padding: 24px 32px;
    border-top: 1px solid #f0f0f0;
    background: linear-gradient(135deg, #f8fbff 0%, #ffffff 100%);
    text-align: center;
}

.vvsoutlet-modal-tagline {
    font-size: 18px;
    font-weight: 700;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 12px 0;
    letter-spacing: -0.3px;
}

.vvsoutlet-modal-location {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #f8f9fa;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    color: #4a5568;
}

.vvsoutlet-modal-location svg {
    width: 18px;
    height: 18px;
    color: #007cba;
}

/* ============================================
   Enhanced Stock Display (Mobile-style)
   ============================================ */

/* Stock status container */
.vvsoutlet-stock-status-desktop {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 20px 0;
    padding: 16px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.vvsoutlet-stock-status-desktop:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-1px);
}

/* Stock urgency messages */
.vvsoutlet-stock-urgency {
    color: #ff6b35;
    font-weight: 600;
    font-size: 14px;
    margin-left: 8px;
    animation: urgency-pulse 1.5s ease-in-out infinite;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* Critical urgency for last item */
.vvsoutlet-stock-critical {
    color: #e74c3c;
    font-weight: 700;
    animation: critical-pulse 0.8s ease-in-out infinite;
}

.urgency-icon {
    font-size: 18px;
    animation: icon-bounce 1s ease-in-out infinite;
}

.urgency-text {
    animation: text-slide 2s ease-in-out;
}

/* Medium urgency styles */
.vvsoutlet-stock-medium {
    color: #f39c12;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.urgency-icon-medium {
    font-size: 16px;
}

/* Animations */
@keyframes urgency-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@keyframes critical-pulse {
    0%, 100% {
        transform: scale(1);
        color: #e74c3c;
    }
    50% {
        transform: scale(1.05);
        color: #c0392b;
    }
}

@keyframes icon-bounce {
    0%, 100% { transform: translateY(0); }
    25% { transform: translateY(-2px); }
    75% { transform: translateY(2px); }
}

@keyframes text-slide {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Delivery badges container */
.vvsoutlet-delivery-badges-desktop {
    display: flex;
    gap: 12px;
    margin: 20px 0;
    flex-wrap: wrap;
}

/* Badge button styles */
.vvsoutlet-badge-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.vvsoutlet-badge-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #007cba 0%, #005a8b 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.vvsoutlet-badge-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 124, 186, 0.2);
    border-color: #007cba;
}

.vvsoutlet-badge-btn:hover::before {
    opacity: 0.1;
}

.vvsoutlet-badge-shipping {
    border-color: #28a745;
}

.vvsoutlet-badge-shipping:hover {
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.2);
    border-color: #28a745;
}

.vvsoutlet-badge-shipping svg,
.vvsoutlet-badge-shipping i {
    color: #28a745;
    font-size: 16px;
}

.vvsoutlet-badge-arrow {
    margin-left: auto;
    transition: transform 0.3s ease;
}

.vvsoutlet-badge-btn:hover .vvsoutlet-badge-arrow {
    transform: rotate(180deg);
}

/* Shipping info styles */
.vvsoutlet-shipping-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 12px 0;
}

.vvsoutlet-shipping-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.vvsoutlet-shipping-item svg {
    flex-shrink: 0;
    color: #28a745;
    width: 32px;
    height: 32px;
}

.vvsoutlet-shipping-item h4 {
    margin: 0 0 6px 0;
    font-size: 16px;
    font-weight: 600;
    color: #2d3748;
}

.vvsoutlet-shipping-item p {
    margin: 0;
    color: #718096;
    font-size: 14px;
    line-height: 1.5;
}