/* Wholesale Page Specific Styles */

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

.wholesale-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;
}

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

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

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

.wholesale-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;
}

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

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

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

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

.wholesale-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);
}

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

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

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

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

.wholesale-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);
}

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

.wholesale-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;
}

.wholesale-hero .btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
}

.wholesale-hero .hero-image {
    flex: 1;
    max-width: 550px;
}

.wholesale-hero .hero-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Responsive */
@media (max-width: 992px) {
    .wholesale-hero .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .wholesale-hero .hero-text > p {
        max-width: 100%;
    }

    .wholesale-hero .hero-stats {
        justify-content: center;
    }

    .wholesale-hero .hero-buttons {
        justify-content: center;
    }
}

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

.btn-primary {
    background: var(--white);
    color: #FFA500;
    border: none;
    padding: 12px 26px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(255, 165, 0, 0.3);
}

.btn-primary:hover {
    background: #2C3E50;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 165, 0, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 10px 26px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: var(--white);
    color: #FFA500;
    transform: translateY(-2px);
}

.wholesale-hero .hero-image {
    flex: 1;
    max-width: 420px;
}

.image-stack {
    position: relative;
    height: 280px;
}

.image-card {
    position: absolute;
    background: var(--white);
    padding: 18px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s;
}

.image-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.image-card i {
    font-size: 34px;
    margin-bottom: 10px;
}

.card-1 {
    top: 0;
    left: 0;
    width: 160px;
    z-index: 3;
}

.card-1 i {
    color: #4CAF50;
}

.card-2 {
    top: 40px;
    right: 0;
    width: 160px;
    z-index: 2;
}

.card-2 i {
    color: #FFA500;
}

.card-3 {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 160px;
    z-index: 1;
}

.card-3 i {
    color: #FFB833;
}

.image-card h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--dark-color);
}

.image-card p {
    font-size: 13px;
    color: #666;
    margin: 0;
}

/* Features Section */
.wholesale-features {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
    white-space: nowrap;
}

.section-header p {
    font-size: 18px;
    color: #666;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.feature-card {
    background: var(--white);
    padding: 50px 35px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid #e0e0e0;
    min-height: 280px;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: #FFA500;
}

.feature-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, #FFA500, #FFB833);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: var(--white);
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* Categories Section */
.wholesale-categories {
    padding: 80px 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

.category-card {
    background: var(--white);
    padding: 30px 25px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid #f0f0f0;
    min-height: 200px;
}

.category-card:hover {
    border-color: #FFA500;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.category-image {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #FFF3E0, #FFE0B2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: #FFA500;
}

.category-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.category-card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.btn-category {
    background: #FFA500;
    color: var(--white);
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.btn-category:hover {
    background: #FFB833;
    transform: translateX(5px);
}

/* Featured Suppliers */
.featured-suppliers {
    padding: 80px 0;
    background: #f8f9fa;
}

.suppliers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
}

.supplier-card {
    background: var(--white);
    padding: 40px 35px;
    border-radius: 20px;
    position: relative;
    transition: all 0.3s;
    border: 1px solid #e0e0e0;
    min-height: 380px;
}

.supplier-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.supplier-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #4CAF50;
    color: var(--white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.supplier-logo {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #FFF3E0, #FFE0B2);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    color: #FFA500;
}

.supplier-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 10px;
    text-align: center;
}

.supplier-location {
    text-align: center;
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}

.supplier-stats {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.supplier-stats span {
    font-size: 13px;
    color: #666;
}

.supplier-stats i {
    color: #FFA500;
    margin-right: 3px;
}

.supplier-tags {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.tag {
    background: #FFF3E0;
    color: #FFA500;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

.btn-contact {
    width: 100%;
    background: #FFA500;
    color: var(--white);
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-contact:hover {
    background: #FFB833;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid #e0e0e0;
    position: relative;
    transition: all 0.3s;
    min-height: 550px;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    border-color: #FFA500;
    box-shadow: 0 10px 40px rgba(255, 165, 0, 0.2);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #FFA500, #FFB833);
    color: var(--white);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.price {
    margin-bottom: 30px;
}

.price .currency {
    font-size: 24px;
    color: #666;
    vertical-align: super;
}

.price .amount {
    font-size: 56px;
    font-weight: 700;
    color: var(--dark-color);
}

.price .period {
    font-size: 16px;
    color: #666;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    text-align: left;
}

.features-list li {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.features-list li:last-child {
    border-bottom: none;
}

.features-list i {
    font-size: 14px;
}

.features-list .fa-check {
    color: #4CAF50;
}

.features-list .fa-times {
    color: #e0e0e0;
}

.btn-plan {
    width: 100%;
    background: #FFA500;
    color: var(--white);
    border: none;
    padding: 14px 20px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-plan:hover {
    background: #FFB833;
}

.pricing-card.featured .btn-plan {
    background: linear-gradient(135deg, #FFA500, #FFB833);
}

/* How It Works */
.how-it-works {
    padding: 80px 0;
    background: #f8f9fa;
}

.steps-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 0 auto;
}

.step-card {
    background: var(--white);
    padding: 45px 35px;
    border-radius: 20px;
    text-align: center;
    flex: 1;
    min-width: 260px;
    max-width: 280px;
    position: relative;
    transition: all 0.3s;
    border: 2px solid #e0e0e0;
    min-height: 320px;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: #FFA500;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #FFA500, #FFB833);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
}

.step-icon {
    width: 100px;
    height: 100px;
    margin: 25px auto 25px;
    background: linear-gradient(135deg, #FFF3E0, #FFE0B2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: #FFA500;
}

.step-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 12px;
}

.step-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.step-arrow {
    font-size: 24px;
    color: #FFA500;
    flex-shrink: 0;
}

/* Testimonials */
.testimonials-section {
    padding: 80px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.testimonial-card {
    background: var(--white);
    padding: 45px 40px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    border: 1px solid #f0f0f0;
    min-height: 320px;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.quote-icon {
    font-size: 36px;
    color: #FFA500;
    opacity: 0.2;
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 16px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FFF3E0, #FFE0B2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #FFA500;
}

.author-info h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark-color);
    margin: 0 0 3px 0;
}

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

.rating {
    display: flex;
    gap: 3px;
}

.rating i {
    color: #FFA500;
    font-size: 14px;
}

/* CTA Section */
.cta-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #FFA500 0%, #FFB833 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::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;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-cta-primary {
    background: var(--white);
    color: #FFA500;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.btn-cta-primary:hover {
    background: #2C3E50;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.btn-cta-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.btn-cta-secondary:hover {
    background: var(--white);
    color: #FFA500;
    transform: translateY(-3px);
}

/* Wholesale Info in Product Card */
.wholesale-info {
    margin: 8px 0;
    padding: 0;
    background: transparent;
    border: none;
}

.wholesale-info .min-order {
    font-size: 12px;
    color: #666;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.wholesale-info i {
    color: #999;
    font-size: 11px;
}

/* Wholesale Product Cards */
.wholesale-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;
}

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

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

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

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

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

.wholesale-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;
}

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

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

/* Product Action Buttons */
.wholesale-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;
}

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

.wholesale-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);
}

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

/* Quick Add Button on Image */
.wholesale-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;
}

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

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

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

.wholesale-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;
}

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

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

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

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

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

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

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

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

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

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

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

/* Request Quote Button */
.wholesale-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;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    /* Disabled for non-responsive design */
@media (max-width: 768px) {
    .wholesale-hero {
        padding: 60px 0;
    }

    .wholesale-hero .hero-content {
        flex-direction: column;
        gap: 40px;
    }

    .wholesale-hero h1 {
        font-size: 36px;
    }

    .wholesale-hero .hero-text > p {
        font-size: 16px;
    }

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

    .hero-buttons {
        flex-direction: column;
    }

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

    .image-stack {
        height: auto;
        position: relative;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .image-card {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        transform: none !important;
        width: 100% !important;
        max-width: 300px;
        margin: 0 auto;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .features-grid,
    .categories-grid,
    .suppliers-grid,
    .pricing-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .cta-content h2 {
        font-size: 32px;
    }

    .cta-buttons {
        flex-direction: column;
    }

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

@media (max-width: 480px) {
    .wholesale-hero h1 {
        font-size: 28px;
    }

    .wholesale-hero .stat-item {
        padding: 15px 20px;
    }

    .wholesale-hero .stat-item h3 {
        font-size: 24px;
    }

    .section-header h2 {
        font-size: 28px;
    }
}
}
