/* ===== MOTOPI FARM WHOLESALE INTERNATIONAL PAGE HERO SECTION ===== */
/* Mobile-first approach with cross-browser compatibility */
/* Compatible with in-app browsers (Facebook, Instagram, etc.) */

.mf-wholesale-hero {
    position: relative;
    height: 100svh;
    height: 100vh; /* Fallback */
    width: 100%;
    overflow: hidden;
}

/* Video Background for Wholesale Hero */
.mf-wholesale-hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.mf-wholesale-hero-background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Hero Content - Consistent with site style */
.mf-wholesale-hero-title {
    font-family: 'Cinzel', serif;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1.2;
    text-align: left;
}

.mf-wholesale-hero-subtitle {
    font-family: 'Manrope', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.6;
    margin: 0;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.7);
    text-align: left;
}

/* Tablet (768px and up) */
@media (min-width: 768px) {
    .mf-wholesale-hero-title {
        font-size: 3.2rem;
        margin-bottom: 24px;
    }

    .mf-wholesale-hero-subtitle {
        font-size: 1.3rem;
    }
}

/* Desktop (1024px and up) */
@media (min-width: 1024px) {
    .mf-wholesale-hero-title {
        font-size: 3.8rem;
        margin-bottom: 28px;
    }

    .mf-wholesale-hero-subtitle {
        font-size: 1.4rem;
    }
}

/* Large Desktop (1440px and up) */
@media (min-width: 1440px) {
    .mf-wholesale-hero-title {
        font-size: 4.2rem;
        margin-bottom: 32px;
    }

    .mf-wholesale-hero-subtitle {
        font-size: 1.5rem;
    }
}

/* Cross-browser fixes */
@supports (-webkit-appearance: none) {
    .mf-wholesale-hero-background-video {
        -webkit-appearance: none;
    }
}

/* Reduced motion accessibility */
@media (prefers-reduced-motion: reduce) {
    .mf-wholesale-hero-content {
        -webkit-transition: none;
        transition: none;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .mf-wholesale-hero {
        border-top: 2px solid #fff;
        border-bottom: 2px solid #fff;
    }
}

/* In-app browser compatibility */
.mf-wholesale-hero-background-video::-webkit-media-controls {
    display: none !important;
}

.mf-wholesale-hero-background-video::-webkit-media-controls-enclosure {
    display: none !important;
}

.mf-wholesale-hero-background-video::-moz-media-controls {
    display: none !important;
}

.mf-wholesale-hero-background-video::-ms-media-controls {
    display: none !important;
}

/* ===== MOTOPI FARM WHOLESALE INTRODUCTION SECTION ===== */
/* Mobile-first approach with cross-browser compatibility */
/* Compatible with in-app browsers (Facebook, Instagram, etc.) */

.mf-wholesale-introduction {
    position: relative;
    padding: 20px 20px 60px;
    background: linear-gradient(135deg, #f8f5f2 0%, #ede8e3 100%);
}

.mf-wholesale-intro-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.mf-wholesale-intro-content {
    text-align: left;
    max-width: 700px;
    margin: 0 auto;
}

.mf-wholesale-intro-welcome-image {
    display: none;
}

.mf-wholesale-intro-headline {
    font-family: 'Manrope', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c2420;
    line-height: 1.3;
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(30px);
    animation: mf-wholesale-fadeInUp 0.8s ease-out 0.2s forwards;
}

.mf-wholesale-intro-description {
    font-family: 'Manrope', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: #5a4f42;
    line-height: 1.7;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    animation: mf-wholesale-fadeInUp 0.8s ease-out 0.4s forwards;
}

.mf-wholesale-intro-highlights {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 5px;
    opacity: 0;
    transform: translateY(30px);
    animation: mf-wholesale-fadeInUp 0.8s ease-out 0.6s forwards;
}

.mf-wholesale-highlight-item {
    text-align: center;
    padding: 25px 20px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 16px;
    border: 1px solid rgba(226, 209, 192, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mf-wholesale-highlight-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #e2d1c0, #c4b299, #e2d1c0);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mf-wholesale-highlight-item:hover::before {
    opacity: 1;
}

.mf-wholesale-highlight-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(226, 209, 192, 0.6);
}

.mf-wholesale-highlight-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    width: 100%;
    justify-content: left;
}

.mf-wholesale-highlight-icon {
    width: 32px;
    height: 32px;
    opacity: 0.85;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.mf-wholesale-highlight-item:hover .mf-wholesale-highlight-icon {
    opacity: 1;
    transform: scale(1.05);
}

.mf-wholesale-highlight-title {
    font-family: 'Manrope', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #2c2420;
    margin: 0;
    line-height: 1.3;
}

.mf-wholesale-highlight-description {
    font-family: 'Manrope', sans-serif;
    font-size: 0.95rem;
    color: #6b5f52;
    font-weight: 400;
    line-height: 1.5;
    text-align: left;
}

/* Animations */
@keyframes mf-wholesale-fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Tablet (768px and up) */
@media (min-width: 768px) {
    .mf-wholesale-introduction {
        padding: 30px 40px 80px;
    }
    
    .mf-wholesale-intro-headline {
        font-size: 2.6rem;
        margin-bottom: 28px;
    }
    
    .mf-wholesale-intro-description {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }
    
    .mf-wholesale-intro-highlights {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
        margin-top: 8px;
    }
    
    .mf-wholesale-highlight-item {
        padding: 30px 25px;
    }
    
    .mf-wholesale-highlight-header {
        margin-bottom: 18px;
    }
    
    .mf-wholesale-highlight-icon {
        width: 36px;
        height: 36px;
    }
    
    .mf-wholesale-highlight-title {
        font-size: 1.35rem;
    }
    
    .mf-wholesale-highlight-description {
        font-size: 1rem;
    }
}

/* Desktop (1024px and up) */
@media (min-width: 1024px) {
    .mf-wholesale-introduction {
        padding: 40px 50px 100px;
    }
    
    .mf-wholesale-intro-content {
        text-align: left;
        max-width: none;
        margin: 0;
        display: grid;
        grid-template-columns: 1fr 300px;
        gap: 60px;
        align-items: start;
    }
    
    .mf-wholesale-intro-text {
        grid-column: 1;
    }
    
    .mf-wholesale-intro-welcome-image {
        display: block;
        width: 100%;
        height: auto;
        grid-column: 2;
        opacity: 0.9;
    }
    
    .mf-wholesale-intro-headline {
        font-size: 3rem;
        margin-bottom: 32px;
    }
    
    .mf-wholesale-intro-description {
        font-size: 1.3rem;
        margin-bottom: 20px;
        max-width: 800px;
    }
    
    .mf-wholesale-intro-highlights {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
        margin-top: 10px;
        grid-column: 1 / -1;
    }
    
    .mf-wholesale-highlight-item {
        padding: 35px 30px;
        text-align: left;
    }
    
    .mf-wholesale-highlight-header {
        justify-content: flex-start;
        margin-bottom: 20px;
    }
    
    .mf-wholesale-highlight-icon {
        width: 40px;
        height: 40px;
    }
    
    .mf-wholesale-highlight-title {
        font-size: 1.45rem;
    }
    
    .mf-wholesale-highlight-description {
        font-size: 1.05rem;
        text-align: left;
    }
}

/* Large Desktop (1440px and up) */
@media (min-width: 1440px) {
    .mf-wholesale-introduction {
        padding: 50px 60px 120px;
    }
    
    .mf-wholesale-intro-content {
        grid-template-columns: 1fr 350px;
        gap: 80px;
    }
    
    .mf-wholesale-intro-headline {
        font-size: 3.4rem;
        margin-bottom: 36px;
    }
    
    .mf-wholesale-intro-description {
        font-size: 1.4rem;
        margin-bottom: 12px;
        max-width: 900px;
    }
    
    .mf-wholesale-intro-highlights {
        gap: 50px;
        margin-top: 12px;
    }
    
    .mf-wholesale-highlight-item {
        padding: 40px 35px;
    }
    
    .mf-wholesale-highlight-header {
        margin-bottom: 22px;
    }
    
    .mf-wholesale-highlight-icon {
        width: 42px;
        height: 42px;
    }
    
    .mf-wholesale-highlight-title {
        font-size: 1.55rem;
    }
    
    .mf-wholesale-highlight-description {
        font-size: 1.1rem;
    }
}

/* In-app browser compatibility */
@supports not (backdrop-filter: blur(10px)) {
    .mf-wholesale-highlight-item {
        background: rgba(255, 255, 255, 0.9);
    }
}

/* Reduced motion accessibility */
@media (prefers-reduced-motion: reduce) {
    .mf-wholesale-intro-headline,
    .mf-wholesale-intro-description,
    .mf-wholesale-intro-highlights {
        animation: none;
        opacity: 1;
        transform: none;
    }
    
    .mf-wholesale-highlight-item {
        transition: none;
    }
    
    .mf-wholesale-highlight-item:hover {
        transform: none;
    }
}

/* ===== MOTOPI FARM WHOLESALE STANDARDS SECTION ===== */
/* Mobile-first approach with cross-browser compatibility */
/* Compatible with in-app browsers (Facebook, Instagram, etc.) */

.mf-wholesale-standards-section {
    position: relative;
    padding: 20px 20px 60px;
    background-color: #ffffff;
}

.mf-wholesale-standards-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.mf-wholesale-standards-content {
    text-align: left;
    max-width: 700px;
    margin: 0 auto;
}

.mf-wholesale-standards-welcome-image {
    display: none;
}

.mf-wholesale-standards-headline {
    font-family: 'Manrope', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c2420;
    line-height: 1.3;
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(30px);
    animation: mf-wholesale-standards-fadeInUp 0.8s ease-out 0.2s forwards;
}

.mf-wholesale-standards-description {
    font-family: 'Manrope', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: #5a4f42;
    line-height: 1.7;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    animation: mf-wholesale-standards-fadeInUp 0.8s ease-out 0.4s forwards;
}

/* Process Flow */
.mf-wholesale-standards-process {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 5px;
    opacity: 0;
    transform: translateY(30px);
    animation: mf-wholesale-standards-fadeInUp 0.8s ease-out 0.6s forwards;
}

.mf-wholesale-standards-stage {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    -webkit-box-shadow: 0 4px 20px rgba(44, 36, 32, 0.08);
    box-shadow: 0 4px 20px rgba(44, 36, 32, 0.08);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    will-change: transform, box-shadow;
}

.mf-wholesale-standards-stage:hover {
    -webkit-transform: translateY(-4px);
    transform: translateY(-4px);
    -webkit-box-shadow: 0 8px 30px rgba(44, 36, 32, 0.12);
    box-shadow: 0 8px 30px rgba(44, 36, 32, 0.12);
}

.mf-wholesale-standards-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    background-color: #f8f5f2;
}

.mf-wholesale-standards-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
    will-change: transform;
}

.mf-wholesale-standards-stage:hover .mf-wholesale-standards-image {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}

.mf-wholesale-standards-stage-content {
    padding: 25px 20px;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.mf-wholesale-standards-stage-title {
    font-family: 'Manrope', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c2420;
    margin: 0 0 12px 0;
    line-height: 1.3;
    text-align: left;
}

.mf-wholesale-standards-stage-text {
    font-family: 'Manrope', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    color: #5a4f42;
    line-height: 1.6;
    margin: 0;
    text-align: left;
}

/* Animations */
@keyframes mf-wholesale-standards-fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Tablet (768px and up) */
@media (min-width: 768px) {
    .mf-wholesale-standards-section {
        padding: 30px 40px 80px;
    }

    .mf-wholesale-standards-headline {
        font-size: 2.6rem;
        margin-bottom: 28px;
    }

    .mf-wholesale-standards-description {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }

    .mf-wholesale-standards-process {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        margin-top: 8px;
    }

    .mf-wholesale-standards-stage-content {
        padding: 30px 25px;
    }

    .mf-wholesale-standards-stage-title {
        font-size: 1.4rem;
        margin-bottom: 14px;
    }

    .mf-wholesale-standards-stage-text {
        font-size: 1rem;
    }
}

/* Desktop (1024px and up) */
@media (min-width: 1024px) {
    .mf-wholesale-standards-section {
        padding: 40px 50px 100px;
    }

    .mf-wholesale-standards-content {
        text-align: left;
        max-width: none;
        margin: 0;
        display: grid;
        grid-template-columns: 1fr 300px;
        gap: 60px;
        align-items: start;
    }

    .mf-wholesale-standards-text {
        grid-column: 1;
    }

    .mf-wholesale-standards-welcome-image {
        display: block;
        width: 100%;
        height: auto;
        grid-column: 2;
        opacity: 0.9;
    }

    .mf-wholesale-standards-headline {
        font-size: 3rem;
        margin-bottom: 32px;
    }

    .mf-wholesale-standards-description {
        font-size: 1.3rem;
        margin-bottom: 20px;
        max-width: 800px;
    }

    .mf-wholesale-standards-process {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        margin-top: 10px;
        grid-column: 1 / -1;
    }

    .mf-wholesale-standards-stage:hover {
        -webkit-transform: translateY(-6px);
        transform: translateY(-6px);
    }

    .mf-wholesale-standards-stage-content {
        padding: 35px 30px;
    }

    .mf-wholesale-standards-stage-title {
        font-size: 1.5rem;
        margin-bottom: 16px;
    }

    .mf-wholesale-standards-stage-text {
        font-size: 1.05rem;
    }
}

/* Large Desktop (1440px and up) */
@media (min-width: 1440px) {
    .mf-wholesale-standards-section {
        padding: 50px 60px 120px;
    }

    .mf-wholesale-standards-content {
        grid-template-columns: 1fr 350px;
        gap: 80px;
    }

    .mf-wholesale-standards-headline {
        font-size: 3.4rem;
        margin-bottom: 36px;
    }

    .mf-wholesale-standards-description {
        font-size: 1.4rem;
        margin-bottom: 12px;
        max-width: 900px;
    }

    .mf-wholesale-standards-process {
        gap: 35px;
        margin-top: 12px;
    }

    .mf-wholesale-standards-stage-content {
        padding: 40px 35px;
    }

    .mf-wholesale-standards-stage-title {
        font-size: 1.6rem;
        margin-bottom: 18px;
    }

    .mf-wholesale-standards-stage-text {
        font-size: 1.1rem;
    }
}

/* Fallback for browsers without aspect-ratio support */
@supports not (aspect-ratio: 4/3) {
    .mf-wholesale-standards-image-wrapper {
        position: relative;
        padding-bottom: 75%; /* 4:3 ratio */
        height: 0;
    }
    
    .mf-wholesale-standards-image-wrapper .mf-wholesale-standards-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
}

/* Cross-browser compatibility */
@supports (-webkit-appearance: none) {
    .mf-wholesale-standards-image {
        -webkit-appearance: none;
    }
}

/* Reduced motion accessibility */
@media (prefers-reduced-motion: reduce) {
    .mf-wholesale-standards-headline,
    .mf-wholesale-standards-description,
    .mf-wholesale-standards-process {
        animation: none;
        opacity: 1;
        transform: none;
    }
    
    .mf-wholesale-standards-stage,
    .mf-wholesale-standards-image {
        -webkit-transition: none;
        transition: none;
    }
    
    .mf-wholesale-standards-stage:hover {
        -webkit-transform: none;
        transform: none;
    }
    
    .mf-wholesale-standards-stage:hover .mf-wholesale-standards-image {
        -webkit-transform: none;
        transform: none;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .mf-wholesale-standards-stage:hover {
        -webkit-transform: none;
        transform: none;
    }
    
    .mf-wholesale-standards-stage:hover .mf-wholesale-standards-image {
        -webkit-transform: none;
        transform: none;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .mf-wholesale-standards-section {
        border-top: 2px solid #2c2420;
        border-bottom: 2px solid #2c2420;
    }
    
    .mf-wholesale-standards-image-wrapper {
        border: 2px solid #2c2420;
    }
}

/* In-app browser compatibility */
.mf-wholesale-standards-section * {
    -webkit-tap-highlight-color: transparent;
}
/* ===== MOTOPI FARM WHOLESALE CTA SECTION ===== */
/* Mobile-first approach with cross-browser compatibility */
/* Compatible with in-app browsers (Facebook, Instagram, etc.) */

.mf-wholesale-cta-section {
    position: relative;
    padding: 0 20px 60px;
}

.mf-wholesale-cta-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Call to Action Section */
.mf-wholesale-cta {
    padding: 35px 25px;
    background: linear-gradient(135deg, rgba(226, 209, 192, 0.1) 0%, rgba(214, 178, 120, 0.08) 100%);
    border-radius: 16px;
    border: 1px solid rgba(214, 178, 120, 0.2);
    text-align: center;
    position: relative;
    opacity: 0;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
    -webkit-animation: mf-wholesale-cta-fadeInUp 0.8s ease-out 0.2s forwards;
    animation: mf-wholesale-cta-fadeInUp 0.8s ease-out 0.2s forwards;
}

.mf-wholesale-cta-content {
    position: relative;
    z-index: 2;
}

.mf-wholesale-cta-headline {
    font-family: 'Manrope', sans-serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: #2c2420;
    line-height: 1.3;
    margin-bottom: 16px;
    text-align: center;
}

.mf-wholesale-cta-text {
    font-family: 'Manrope', sans-serif;
    font-size: 1.05rem;
    font-weight: 400;
    color: #5a4f42;
    line-height: 1.6;
    margin-bottom: 25px;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Wholesale Benefits */
.mf-wholesale-cta-benefits {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.mf-wholesale-cta-benefit {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    text-align: left;
}

.mf-wholesale-cta-benefit:last-child {
    margin-bottom: 0;
}

.mf-wholesale-cta-benefit-icon {
    width: 48px;
    height: 48px;
    object-fit: contain;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    opacity: 0.8;
}

.mf-wholesale-cta-benefit-text {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.mf-wholesale-cta-benefit-text h4 {
    font-family: 'Manrope', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #2c2420;
    margin: 0 0 4px 0;
    line-height: 1.3;
}

.mf-wholesale-cta-benefit-text p {
    font-family: 'Manrope', sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    color: #6b5f52;
    line-height: 1.4;
    margin: 0;
}

.mf-wholesale-cta-buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 15px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.mf-wholesale-cta-btn {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 8px;
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    will-change: transform, background-color;
    -webkit-tap-highlight-color: transparent;
    border: 2px solid transparent;
}

.mf-wholesale-cta-primary {
    background-color: #2c2420;
    color: #ffffff;
    border-color: #2c2420;
}

.mf-wholesale-cta-primary:hover {
    background-color: #3a342e;
    border-color: #3a342e;
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
    -webkit-box-shadow: 0 8px 25px rgba(44, 36, 32, 0.3);
    box-shadow: 0 8px 25px rgba(44, 36, 32, 0.3);
}

.mf-wholesale-cta-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

/* Animations */
@-webkit-keyframes mf-wholesale-cta-fadeInUp {
    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes mf-wholesale-cta-fadeInUp {
    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

/* Tablet (768px and up) */
@media (min-width: 768px) {
    .mf-wholesale-cta-section {
        padding: 0 40px 80px;
    }
    
    .mf-wholesale-cta {
        padding: 40px 35px;
    }
    
    .mf-wholesale-cta-headline {
        font-size: 1.8rem;
        margin-bottom: 20px;
        text-align: left;
    }
    
    .mf-wholesale-cta-text {
        font-size: 1.1rem;
        margin-bottom: 30px;
        text-align: left;
        margin-left: 0;
        margin-right: 0;
        max-width: none;
    }
    
    .mf-wholesale-cta-benefits {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        gap: 40px;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        max-width: none;
    }
    
    .mf-wholesale-cta-benefit {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 calc(50% - 20px);
        flex: 1 1 calc(50% - 20px);
        min-width: 220px;
        margin-bottom: 18px;
    }
    
    .mf-wholesale-cta-benefit-text h4 {
        font-size: 1rem;
        margin-bottom: 6px;
    }
    
    .mf-wholesale-cta-benefit-text p {
        font-size: 0.9rem;
    }
    
    .mf-wholesale-cta-buttons {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        gap: 20px;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

/* Desktop (1024px and up) */
@media (min-width: 1024px) {
    .mf-wholesale-cta-section {
        padding: 0 50px 100px;
    }
    
    .mf-wholesale-cta {
        padding: 50px 40px;
    }
    
    .mf-wholesale-cta-headline {
        font-size: 2rem;
        margin-bottom: 24px;
        text-align: left;
    }
    
    .mf-wholesale-cta-text {
        font-size: 1.2rem;
        margin-bottom: 35px;
        text-align: left;
        margin-left: 0;
        margin-right: 0;
        max-width: none;
    }
    
    .mf-wholesale-cta-benefits {
        gap: 50px;
    }
    
    .mf-wholesale-cta-benefit {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 calc(50% - 25px);
        flex: 1 1 calc(50% - 25px);
        margin-bottom: 20px;
    }
    
    .mf-wholesale-cta-benefit-text h4 {
        font-size: 1.05rem;
        margin-bottom: 6px;
    }
    
    .mf-wholesale-cta-benefit-text p {
        font-size: 0.95rem;
    }
}

/* Large Desktop (1440px and up) */
@media (min-width: 1440px) {
    .mf-wholesale-cta-section {
        padding: 0 60px 120px;
    }
    
    .mf-wholesale-cta {
        padding: 60px 50px;
    }
}

/* Cross-browser compatibility */
@supports (-webkit-appearance: none) {
    .mf-wholesale-cta-btn {
        -webkit-appearance: none;
    }
}

/* Reduced motion accessibility */
@media (prefers-reduced-motion: reduce) {
    .mf-wholesale-cta {
        -webkit-animation: none;
        animation: none;
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
    
    .mf-wholesale-cta-btn {
        -webkit-transition: none;
        transition: none;
    }
    
    .mf-wholesale-cta-btn:hover {
        -webkit-transform: none;
        transform: none;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .mf-wholesale-cta-btn:hover {
        -webkit-transform: none;
        transform: none;
    }
    
    .mf-wholesale-cta-primary:hover {
        background-color: #2c2420;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .mf-wholesale-cta-section {
        border-top: 2px solid #2c2420;
        border-bottom: 2px solid #2c2420;
    }
}

/* In-app browser compatibility */
.mf-wholesale-cta-section * {
    -webkit-tap-highlight-color: transparent;
}