/* Export Page Specific Styles */

/* Export Hero Section */
.import-hero {
    background: linear-gradient(135deg, #FFF3E0 0%, #FFE0B2 100%);
    padding: 70px 0;
    margin-bottom: 50px;
    position: relative;
    overflow: hidden;
}

.import-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.import-hero .container {
    position: relative;
    z-index: 1;
}

.import-hero .hero-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.import-hero .hero-text {
    flex: 1;
}

.import-hero .hero-badge {
    display: inline-block;
    background: #FFE8C2;
    color: #C05A00;
    padding: 7px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 12px;
    border: 1px solid #FFD59E;
}

.import-hero .hero-badge i {
    margin-right: 6px;
}

.import-hero h1 {
    font-size: 44px;
    color: var(--dark-color);
    margin-bottom: 12px;
    font-weight: 800;
    line-height: 1.2;
}

.import-hero .hero-text > p {
    font-size: 17px;
    color: #555;
    margin-bottom: 24px;
    line-height: 1.55;
    max-width: 620px;
}

.import-hero .hero-stats {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.import-hero .stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.92);
    padding: 10px 14px;
    border-radius: 10px;
    border: 1px solid #FFE8C2;
    box-shadow: 0 6px 20px rgba(255, 165, 0, 0.08);
}

.import-hero .stat-item i {
    font-size: 26px;
    color: var(--primary-color);
}

.import-hero .stat-item h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--dark-color);
    margin: 0;
}

.import-hero .stat-item span {
    font-size: 12px;
    color: #666;
}

.import-hero .hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.import-hero .btn-primary {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 11px 22px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    box-shadow: 0 4px 14px rgba(255, 165, 0, 0.28);
}

.import-hero .btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 165, 0, 0.45);
}



.import-hero .btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 10px 22px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.import-hero .btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 7px 18px rgba(255, 165, 0, 0.3);
}

.import-hero .hero-image {
    flex: 1;
    max-width: 500px;
}

.import-hero .hero-image img {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 10px 36px rgba(0, 0, 0, 0.1);
}

/* Export Product Cards */
.import-hero ~ .shop-section .product-card {
    background: #FFFFFF;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    padding: 0;
}

.import-hero ~ .shop-section .product-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.import-hero ~ .shop-section .product-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: #f8f9fa;
}

.import-hero ~ .shop-section .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.import-hero ~ .shop-section .product-card:hover .product-image img {
    transform: scale(1.05);
}

/* Product Badges */
.import-hero ~ .shop-section .product-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 2;
}

.import-hero ~ .shop-section .badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.import-hero ~ .shop-section .badge-hot {
    background: #FF4444;
    color: #FFFFFF;
}

.import-hero ~ .shop-section .badge-new {
    background: #FF6B35;
    color: #FFFFFF;
}

/* Product Action Buttons */
.import-hero ~ .shop-section .product-actions {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
    z-index: 2;
}

.import-hero ~ .shop-section .product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(0);
}

.import-hero ~ .shop-section .action-btn {
    background: #FFFFFF;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.import-hero ~ .shop-section .action-btn:hover {
    background: #FFA500;
    color: #FFFFFF;
    transform: scale(1.1);
}

/* Quick Add Button on Image */
.import-hero ~ .shop-section .product-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.import-hero ~ .shop-section .product-card:hover .product-image::after {
    opacity: 1;
}

/* Product Info Section */
.import-hero ~ .shop-section .product-info {
    padding: 12px;
}

.import-hero ~ .shop-section .product-category {
    font-size: 11px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
    font-weight: 600;
}

.import-hero ~ .shop-section .product-title {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.import-hero ~ .shop-section .product-vendor {
    font-size: 11px;
    color: #FFA500;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.import-hero ~ .shop-section .product-vendor i {
    font-size: 11px;
}

.import-hero ~ .shop-section .product-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 8px;
}

.import-hero ~ .shop-section .product-rating .stars {
    display: flex;
    gap: 1px;
    color: #FFA500;
    font-size: 12px;
}

.import-hero ~ .shop-section .product-rating .rating-count {
    font-size: 11px;
    color: #666;
}

/* Export Info */
.export-info {
    margin: 8px 0;
    padding: 0;
    background: transparent;
    border: none;
}

.export-info .moq-info,
.export-info .destination-info {
    font-size: 11px;
    color: #666;
    font-weight: 500;
    margin: 3px 0;
    display: flex;
    align-items: center;
    gap: 4px;
}

.export-info i {
    color: #999;
    font-size: 10px;
}

/* Product Price */
.import-hero ~ .shop-section .product-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.import-hero ~ .shop-section .price-group {
    display: flex;
    align-items: baseline;
    gap: 6px;
    flex-wrap: wrap;
}

.import-hero ~ .shop-section .current-price {
    font-size: 18px;
    font-weight: 700;
    color: #FFA500;
}

.import-hero ~ .shop-section .original-price {
    font-size: 13px;
    color: #999;
    text-decoration: line-through;
}

.import-hero ~ .shop-section .price-unit {
    font-size: 10px;
    color: #999;
}

.import-hero ~ .shop-section .discount-badge {
    background: #FFE8E8;
    color: #FF4444;
    padding: 3px 6px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 600;
}

/* Request Quote Button */
.import-hero ~ .shop-section .btn-add-cart {
    width: 100%;
    background: #F5F5F5;
    color: #333;
    border: 1px solid #E0E0E0;
    padding: 8px 12px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.import-hero ~ .shop-section .btn-add-cart:hover {
    background: #FFA500;
    color: #FFFFFF;
    border-color: #FFA500;
}

/* Active filter tags for export */
.import-hero ~ .shop-section .filter-tag {
    background: #FFF4E5;
    color: #C05A00;
    border: 1px solid #FFB833;
}

.import-hero ~ .shop-section .filter-tag:hover {
    background: #FFA500;
    color: var(--white);
}

/* Pagination active for export */
.import-hero ~ .shop-section .page-btn.active {
    background: #FFA500;
    color: var(--white);
}

.import-hero ~ .shop-section .page-btn:hover:not(:disabled):not(.active) {
    background: #FFF4E5;
    color: #C05A00;
}

/* Responsive Design */
@media (max-width: 768px) {
    .import-hero .hero-content {
        flex-direction: column;
        gap: 30px;
    }

    .import-hero h1 {
        font-size: 32px;
    }

    .import-hero .hero-stats {
        flex-direction: column;
        gap: 15px;
    }

    .import-hero .hero-image {
        max-width: 100%;
    }

    .import-hero .image-stack {
        height: 250px;
    }

    .import-hero .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .import-hero .btn-primary,
    .import-hero .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}
