/* Mobile Index Styles - Professional B2B Platform Design */
/* Below 500px - Clean, Modern, Enterprise-Grade UI */

/* Hide mobile index by default */
.mobile-index {
    display: none;
}

/* Show mobile index only below 500px */
@media (max-width: 500px) {
    /* Hide desktop content */
    .desktop-index-content {
        display: none !important;
    }
    
    /* Show mobile index */
    .mobile-index {
        display: block;
        background-color: #f5f7fa;
        min-height: 100vh;
        padding-bottom: 20px;
    }
    
    /* ============================================
       HERO SECTION - Professional B2B Look
       ============================================ */
    .mobile-hero {
        background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
        padding: 30px 20px 35px;
        text-align: center;
        position: relative;
        overflow: hidden;
    }
    
    .mobile-hero::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -50%;
        width: 100%;
        height: 200%;
        background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
        pointer-events: none;
    }
    
    .mobile-hero-logo {
        margin-bottom: 20px;
    }
    
    .mobile-hero-logo img {
        max-height: 45px;
        width: auto;
    }
    
    .mobile-hero-content {
        position: relative;
        z-index: 1;
    }
    
    .mobile-hero-title {
        color: #fff;
        font-size: 26px;
        font-weight: 700;
        margin: 0 0 10px 0;
        letter-spacing: 1px;
        line-height: 1.2;
    }
    
    .mobile-hero-subtitle {
        color: rgba(255,255,255,0.75);
        font-size: 14px;
        margin: 0 0 22px 0;
        line-height: 1.4;
    }
    
    .mobile-hero-btn {
        display: inline-block;
        background: linear-gradient(135deg, #e94560 0%, #c23c52 100%);
        color: #fff;
        padding: 13px 32px;
        border-radius: 30px;
        text-decoration: none;
        font-weight: 600;
        font-size: 14px;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(233, 69, 96, 0.3);
    }
    
    .mobile-hero-btn:hover,
    .mobile-hero-btn:active {
        background: linear-gradient(135deg, #c23c52 0%, #a33345 100%);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(233, 69, 96, 0.4);
        text-decoration: none;
        color: #fff;
    }
    
    /* ============================================
       QUICK ACTIONS GRID - B2B Navigation
       ============================================ */
    .mobile-quick-actions {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
        padding: 18px 12px;
        background: #fff;
        margin-bottom: 2px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    }
    
    .mobile-action-card {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-decoration: none;
        padding: 14px 6px;
        border-radius: 14px;
        transition: all 0.2s ease;
        background: transparent;
    }
    
    .mobile-action-card:hover,
    .mobile-action-card:active {
        background: #f8f9fa;
        text-decoration: none;
        transform: scale(0.98);
    }
    
    .mobile-action-icon {
        width: 52px;
        height: 52px;
        background: linear-gradient(135deg, #f0f2f5 0%, #e8eaed 100%);
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 8px;
        transition: all 0.2s ease;
    }
    
    .mobile-action-icon svg {
        color: #1a1a2e;
        stroke: #1a1a2e;
    }
    
    .mobile-action-card:hover .mobile-action-icon {
        background: linear-gradient(135deg, #e94560 0%, #c23c52 100%);
    }
    
    .mobile-action-card:hover .mobile-action-icon svg {
        color: #fff;
        stroke: #fff;
    }
    
    .mobile-action-label {
        font-size: 11px;
        color: #333;
        font-weight: 600;
        text-align: center;
        letter-spacing: 0.3px;
    }
    
    /* ============================================
       QUICK LINKS BAR
       ============================================ */
    .mobile-quick-links {
        display: flex;
        justify-content: center;
        gap: 12px;
        padding: 12px 15px;
        background: #fff;
        margin-bottom: 10px;
        border-top: 1px solid #f0f0f0;
    }
    
    .mobile-quick-link {
        display: flex;
        align-items: center;
        gap: 6px;
        padding: 8px 14px;
        background: #f8f9fa;
        border-radius: 20px;
        text-decoration: none;
        font-size: 12px;
        font-weight: 500;
        color: #444;
        transition: all 0.2s ease;
    }
    
    .mobile-quick-link:hover,
    .mobile-quick-link:active {
        background: #1a1a2e;
        color: #fff;
        text-decoration: none;
    }
    
    .mobile-quick-link:hover svg,
    .mobile-quick-link:active svg {
        stroke: #fff;
    }
    
    .mobile-quick-link svg {
        stroke: #666;
    }
    
    /* ============================================
       SECTION STYLING - Universal
       ============================================ */
    .mobile-section {
        background: #fff;
        margin-bottom: 10px;
        padding: 20px 15px;
        box-shadow: 0 1px 3px rgba(0,0,0,0.04);
    }
    
    .mobile-section-dark {
        background: #fff;
    }
    
    .mobile-section-dark .mobile-section-title,
    .mobile-section-dark .mobile-section-link {
        color: #1a1a2e;
    }
    
    .mobile-section-process {
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    }
    
    .mobile-section-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 16px;
    }
    
    .mobile-section-title {
        font-size: 16px;
        font-weight: 700;
        color: #1a1a2e;
        margin: 0;
        letter-spacing: 0.3px;
    }
    
    .mobile-section-link {
        font-size: 13px;
        color: #e94560;
        font-weight: 600;
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 4px;
    }
    
    .mobile-section-link:hover {
        text-decoration: underline;
        color: #c23c52;
    }
    
    /* ============================================
       CATEGORIES GRID - B2B Style
       ============================================ */
    .mobile-categories-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
    }
    
    .mobile-category-card {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-decoration: none;
        padding: 12px 6px;
        background: #f8f9fa;
        border-radius: 12px;
        transition: all 0.2s ease;
    }
    
    .mobile-category-card:hover,
    .mobile-category-card:active {
        background: #e9ecef;
        text-decoration: none;
        transform: translateY(-2px);
    }
    
    .mobile-category-img {
        width: 48px;
        height: 48px;
        border-radius: 10px;
        overflow: hidden;
        margin-bottom: 8px;
        background: #fff;
    }
    
    .mobile-category-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .mobile-category-icon {
        width: 48px;
        height: 48px;
        border-radius: 10px;
        background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 8px;
    }
    
    .mobile-category-icon svg {
        stroke: #fff;
    }
    
    .mobile-category-name {
        font-size: 10px;
        color: #333;
        font-weight: 600;
        text-align: center;
        line-height: 1.2;
    }
    
    /* ============================================
       PRODUCTS SCROLL - Professional Cards
       ============================================ */
    .mobile-products-scroll {
        display: flex;
        overflow-x: auto;
        gap: 12px;
        padding: 5px 0 10px 0;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .mobile-products-scroll::-webkit-scrollbar {
        display: none;
    }
    
    .mobile-product-card {
        flex: 0 0 145px;
        background: #fff;
        border: 1px solid #eee;
        border-radius: 14px;
        overflow: hidden;
        text-decoration: none;
        transition: all 0.25s ease;
        box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    }
    
    .mobile-section-dark .mobile-product-card {
        background: #fff;
        border-color: #eee;
    }
    
    .mobile-product-card:hover,
    .mobile-product-card:active {
        box-shadow: 0 6px 20px rgba(0,0,0,0.12);
        text-decoration: none;
        transform: translateY(-3px);
    }
    
    .mobile-product-img {
        width: 100%;
        height: 125px;
        overflow: hidden;
        background: #f5f5f5;
        position: relative;
    }
    
    .mobile-product-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }
    
    .mobile-product-card:hover .mobile-product-img img {
        transform: scale(1.05);
    }
    
    .mobile-product-badge {
        position: absolute;
        top: 8px;
        left: 8px;
        background: linear-gradient(135deg, #e94560 0%, #c23c52 100%);
        color: #fff;
        font-size: 9px;
        font-weight: 700;
        padding: 4px 8px;
        border-radius: 6px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    .mobile-badge-new {
        background: linear-gradient(135deg, #00b894 0%, #00a085 100%);
    }
    
    .mobile-product-info {
        padding: 12px 10px;
    }
    
    .mobile-section-dark .mobile-product-info {
        background: #fff;
    }
    
    .mobile-product-name {
        font-size: 12px;
        color: #222;
        font-weight: 600;
        margin: 0 0 5px 0;
        line-height: 1.35;
    }
    
    .mobile-section-dark .mobile-product-name {
        color: #222;
    }
    
    .mobile-product-price {
        font-size: 13px;
        color: #e94560;
        font-weight: 700;
        margin: 0 0 3px 0;
    }
    
    .mobile-product-moq {
        font-size: 10px;
        color: #888;
        margin: 0;
    }
    
    .mobile-section-dark .mobile-product-moq {
        color: #888;
    }
    
    /* ============================================
       STATS SECTION - B2B Metrics
       ============================================ */
    .mobile-stats {
        display: flex;
        justify-content: space-around;
        background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
        padding: 28px 15px;
        margin-bottom: 10px;
    }
    
    .mobile-stat-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .mobile-stat-number {
        font-size: 26px;
        font-weight: 800;
        color: #fff;
        margin-bottom: 4px;
    }
    
    .mobile-stat-label {
        font-size: 10px;
        color: rgba(255,255,255,0.7);
        text-transform: uppercase;
        letter-spacing: 1px;
        font-weight: 500;
    }
    
    /* ============================================
       ABOUT SECTION
       ============================================ */
    .mobile-about-content {
        padding: 5px 0;
    }
    
    .mobile-about-title {
        font-size: 15px;
        font-weight: 700;
        color: #1a1a2e;
        margin: 0 0 10px 0;
        line-height: 1.3;
    }
    
    .mobile-about-text {
        font-size: 13px;
        color: #555;
        line-height: 1.6;
        margin: 0 0 15px 0;
    }
    
    .mobile-about-images {
        display: flex;
        gap: 10px;
    }
    
    .mobile-about-img {
        flex: 1;
        height: 90px;
        border-radius: 10px;
        overflow: hidden;
    }
    
    .mobile-about-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    /* ============================================
       SERVICES LIST - Professional Design
       ============================================ */
    .mobile-services-list {
        display: flex;
        flex-direction: column;
        gap: 14px;
    }
    
    .mobile-service-item {
        display: flex;
        align-items: flex-start;
        gap: 14px;
        padding: 12px;
        background: #f8f9fa;
        border-radius: 12px;
        transition: all 0.2s ease;
    }
    
    .mobile-service-item:hover {
        background: #f0f2f5;
    }
    
    .mobile-service-icon {
        width: 44px;
        height: 44px;
        background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }
    
    .mobile-service-icon svg {
        stroke: #fff;
    }
    
    .mobile-service-icon img {
        width: 24px;
        height: 24px;
        object-fit: contain;
        filter: brightness(0) invert(1);
    }
    
    .mobile-service-content h3 {
        font-size: 14px;
        font-weight: 700;
        color: #1a1a2e;
        margin: 0 0 4px 0;
    }
    
    .mobile-service-content p {
        font-size: 12px;
        color: #666;
        margin: 0;
        line-height: 1.45;
    }
    
    /* ============================================
       PROCESS STEPS - Clean Timeline
       ============================================ */
    .mobile-process-steps {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    
    .mobile-process-step {
        display: flex;
        align-items: flex-start;
        gap: 14px;
        padding: 14px;
        background: #fff;
        border-radius: 12px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    }
    
    .mobile-process-number {
        width: 36px;
        height: 36px;
        background: linear-gradient(135deg, #e94560 0%, #c23c52 100%);
        color: #fff;
        font-size: 16px;
        font-weight: 800;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }
    
    .mobile-process-content h4 {
        font-size: 14px;
        font-weight: 700;
        color: #1a1a2e;
        margin: 0 0 4px 0;
    }
    
    .mobile-process-content p {
        font-size: 12px;
        color: #666;
        margin: 0;
        line-height: 1.4;
    }
    
    /* ============================================
       PORTFOLIO GRID
       ============================================ */
    .mobile-portfolio-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .mobile-portfolio-item {
        position: relative;
        height: 120px;
        border-radius: 12px;
        overflow: hidden;
    }
    
    .mobile-portfolio-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }
    
    .mobile-portfolio-item:hover img {
        transform: scale(1.1);
    }
    
    .mobile-portfolio-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
        padding: 30px 12px 12px;
    }
    
    .mobile-portfolio-overlay span {
        color: #fff;
        font-size: 12px;
        font-weight: 600;
    }
    
    /* ============================================
       PATCHES SCROLL
       ============================================ */
    .mobile-patches-scroll {
        display: flex;
        overflow-x: auto;
        gap: 12px;
        padding: 5px 0 10px 0;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    
    .mobile-patches-scroll::-webkit-scrollbar {
        display: none;
    }
    
    .mobile-patch-card {
        flex: 0 0 120px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-decoration: none;
        padding: 12px;
        background: #f8f9fa;
        border-radius: 12px;
        transition: all 0.2s ease;
        border: 1px solid #e9ecef;
    }
    
    .mobile-patch-card:hover {
        background: #e9ecef;
        text-decoration: none;
        transform: translateY(-2px);
    }
    
    .mobile-patch-img {
        width: 70px;
        height: 70px;
        border-radius: 10px;
        overflow: hidden;
        margin-bottom: 10px;
        background: #f0f0f0;
    }
    
    .mobile-patch-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .mobile-patch-name {
        font-size: 11px;
        color: #333;
        font-weight: 600;
        text-align: center;
        line-height: 1.3;
    }
    
    /* ============================================
       CTA SECTION - Professional B2B
       ============================================ */
    .mobile-cta {
        background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
        padding: 32px 20px;
        text-align: center;
        margin: 10px 0;
        position: relative;
        overflow: hidden;
    }
    
    .mobile-cta::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        pointer-events: none;
    }
    
    .mobile-cta-title {
        font-size: 20px;
        font-weight: 700;
        color: #fff;
        margin: 0 0 8px 0;
        position: relative;
        z-index: 1;
    }
    
    .mobile-cta-text {
        font-size: 13px;
        color: rgba(255,255,255,0.75);
        margin: 0 0 22px 0;
        line-height: 1.5;
        position: relative;
        z-index: 1;
    }
    
    .mobile-cta-buttons {
        display: flex;
        gap: 10px;
        justify-content: center;
        flex-wrap: wrap;
        position: relative;
        z-index: 1;
    }
    
    .mobile-cta-btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 13px 22px;
        border-radius: 30px;
        font-size: 14px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.25s ease;
    }
    
    .mobile-cta-btn:hover,
    .mobile-cta-btn:active {
        text-decoration: none;
        transform: translateY(-2px);
    }
    
    .mobile-cta-whatsapp {
        background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
        color: #fff;
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    }
    
    .mobile-cta-whatsapp:hover,
    .mobile-cta-whatsapp:active {
        background: linear-gradient(135deg, #128c7e 0%, #075e54 100%);
        color: #fff;
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    }
    
    .mobile-cta-contact {
        background: #fff;
        color: #1a1a2e;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }
    
    .mobile-cta-contact:hover,
    .mobile-cta-contact:active {
        background: #f8f9fa;
        color: #1a1a2e;
        box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    }
    
    .mobile-cta-primary {
        background: linear-gradient(135deg, #e94560 0%, #c23c52 100%);
        color: #fff;
        box-shadow: 0 4px 15px rgba(233, 69, 96, 0.3);
    }
    
    .mobile-cta-primary:hover,
    .mobile-cta-primary:active {
        background: linear-gradient(135deg, #c23c52 0%, #a33345 100%);
        color: #fff;
        box-shadow: 0 6px 20px rgba(233, 69, 96, 0.4);
    }
    
    /* ============================================
       CONTACT INFO SECTION
       ============================================ */
    .mobile-contact-info {
        background: #fff;
    }
    
    .mobile-contact-list {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-bottom: 18px;
    }
    
    .mobile-contact-item {
        display: flex;
        align-items: center;
        gap: 14px;
        padding: 14px;
        background: #f8f9fa;
        border-radius: 12px;
        text-decoration: none;
        transition: all 0.2s ease;
    }
    
    .mobile-contact-item:hover,
    .mobile-contact-item:active {
        background: #f0f2f5;
        text-decoration: none;
    }
    
    .mobile-contact-icon {
        width: 44px;
        height: 44px;
        background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }
    
    .mobile-contact-icon svg {
        stroke: #fff;
    }
    
    .mobile-contact-text {
        display: flex;
        flex-direction: column;
        gap: 2px;
    }
    
    .mobile-contact-label {
        font-size: 11px;
        color: #888;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        font-weight: 500;
    }
    
    .mobile-contact-value {
        font-size: 13px;
        color: #1a1a2e;
        font-weight: 600;
    }
    
    /* ============================================
       SOCIAL LINKS
       ============================================ */
    .mobile-social-links {
        display: flex;
        justify-content: center;
        gap: 12px;
        padding-top: 10px;
        border-top: 1px solid #eee;
    }
    
    .mobile-social-btn {
        width: 44px;
        height: 44px;
        background: #f8f9fa;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        transition: all 0.2s ease;
    }
    
    .mobile-social-btn:hover,
    .mobile-social-btn:active {
        background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
        transform: translateY(-2px);
    }
    
    .mobile-social-btn svg {
        color: #1a1a2e;
        fill: #1a1a2e;
        stroke: #1a1a2e;
    }
    
    .mobile-social-btn:hover svg,
    .mobile-social-btn:active svg {
        color: #fff;
        fill: #fff;
        stroke: #fff;
    }
    
    /* ============================================
       FOOTER - Simple & Classic White Theme
       ============================================ */
    .mobile-footer {
        background: #fff;
        padding: 24px 15px;
        text-align: center;
        border-top: 1px solid #e9ecef;
        margin-top: 10px;
    }
    
    .mobile-footer-content {
        max-width: 100%;
    }
    
    .mobile-footer-copyright {
        font-size: 12px;
        color: #666;
        margin: 0 0 12px 0;
        line-height: 1.5;
        letter-spacing: 0.3px;
    }
    
    .mobile-footer-divider {
        height: 1px;
        background: #e9ecef;
        margin: 12px 0;
    }
    
    /* ============================================
       ANIMATIONS & UTILITIES
       ============================================ */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .mobile-section {
        animation: fadeInUp 0.4s ease-out;
    }
    
    /* ============================================
       TESTIMONIALS SECTION
       ============================================ */
    .mobile-testimonials-list {
        display: flex;
        flex-direction: column;
        gap: 14px;
    }
    
    .mobile-testimonial-card {
        background: #f8f9fa;
        padding: 16px 14px;
        border-radius: 12px;
        border-left: 4px solid #e94560;
    }
    
    .mobile-testimonial-stars {
        font-size: 13px;
        color: #f39c12;
        margin-bottom: 8px;
        letter-spacing: 2px;
    }
    
    .mobile-testimonial-text {
        font-size: 13px;
        color: #555;
        line-height: 1.5;
        margin: 0 0 10px 0;
        font-style: italic;
    }
    
    .mobile-testimonial-author {
        font-size: 12px;
        color: #1a1a2e;
        font-weight: 600;
        margin: 0;
    }
    
    /* ============================================
       FAQ SECTION
       ============================================ */
    .mobile-faq-list {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    
    .mobile-faq-item {
        background: #f8f9fa;
        border: 1px solid #e9ecef;
        border-radius: 12px;
        overflow: hidden;
    }
    
    .mobile-faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 14px;
        background: transparent;
        border: none;
        font-size: 14px;
        font-weight: 600;
        color: #1a1a2e;
        cursor: pointer;
        text-align: left;
    }
    
    .mobile-faq-question::after {
        content: '+';
        font-size: 20px;
        color: #999;
        transition: transform 0.2s ease;
    }
    
    .mobile-faq-item[open] .mobile-faq-question::after {
        transform: rotate(45deg);
    }
    
    .mobile-faq-answer {
        padding: 0 14px 14px 14px;
        font-size: 13px;
        color: #666;
        line-height: 1.5;
        margin: 0;
    }
    
    /* ============================================
       BENEFITS SECTION
       ============================================ */
    .mobile-benefits-list {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    
    .mobile-benefit-item {
        display: flex;
        align-items: flex-start;
        gap: 14px;
        padding: 14px;
        background: #f8f9fa;
        border-radius: 12px;
    }
    
    .mobile-benefit-icon {
        width: 32px;
        height: 32px;
        background: linear-gradient(135deg, #e94560 0%, #c23c52 100%);
        color: #fff;
        font-size: 18px;
        font-weight: 700;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }
    
    .mobile-benefit-content h4 {
        font-size: 14px;
        font-weight: 700;
        color: #1a1a2e;
        margin: 0 0 4px 0;
    }
    
    .mobile-benefit-content p {
        font-size: 12px;
        color: #666;
        margin: 0;
        line-height: 1.4;
    }
    
    /* ============================================
       FOOTER LINKS - White Theme
       ============================================ */
    .mobile-footer-links {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin: 0;
        text-align: center;
    }
    
    .mobile-footer-links a {
        font-size: 11px;
        color: #666;
        text-decoration: none;
        font-weight: 500;
        transition: all 0.2s ease;
        letter-spacing: 0.3px;
    }
    
    .mobile-footer-links a:hover,
    .mobile-footer-links a:active {
        color: #e94560;
        text-decoration: none;
    }
    
    /* ============================================
       CUSTOM PRODUCTS SECTION - NEW
       ============================================ */
    .mobile-custom-products-subtitle {
        font-size: 13px;
        color: #666;
        text-align: center;
        margin: 0 0 16px 0;
        line-height: 1.5;
        font-style: italic;
    }
    
    .mobile-custom-products-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .mobile-custom-product-card {
        display: flex;
        flex-direction: column;
        text-decoration: none;
        border: 1px solid #e9ecef;
        border-radius: 12px;
        overflow: hidden;
        background: #fff;
        transition: all 0.3s ease;
        box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    }
    
    .mobile-custom-product-card:hover,
    .mobile-custom-product-card:active {
        transform: translateY(-4px);
        box-shadow: 0 6px 16px rgba(0,0,0,0.1);
        text-decoration: none;
    }
    
    .mobile-custom-product-img {
        width: 100%;
        height: 120px;
        overflow: hidden;
        background: #f5f5f5;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .mobile-custom-product-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }
    
    .mobile-custom-product-card:hover .mobile-custom-product-img img {
        transform: scale(1.05);
    }
    
    .mobile-custom-product-img-placeholder {
        width: 100%;
        height: 120px;
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #999;
    }
    
    .mobile-custom-product-img-placeholder svg {
        stroke: #999;
        opacity: 0.5;
    }
    
    .mobile-custom-product-content {
        padding: 12px;
        flex: 1;
        display: flex;
        flex-direction: column;
    }
    
    .mobile-custom-product-name {
        font-size: 13px;
        font-weight: 700;
        color: #1a1a2e;
        margin: 0 0 6px 0;
        line-height: 1.3;
    }
    
    .mobile-custom-product-desc {
        font-size: 11px;
        color: #666;
        margin: 0;
        line-height: 1.4;
        flex: 1;
    }
    
    /* Touch feedback for mobile */
    .mobile-action-card:active,
    .mobile-product-card:active,
    .mobile-category-card:active,
    .mobile-cta-btn:active,
    .mobile-contact-item:active {
        opacity: 0.9;
    }
}
