/* Online Shop Specific Styles */

/* Browser Mockup for Online Shop */
.browser-mockup {
    background: #000000;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 2rem 2rem;
    position: relative;
    overflow: hidden;
}

/* Mobile: Remove header space completely */
@media (max-width: 768px) {
    body {
        padding-top: 0 !important;
        margin-top: 0 !important;
    }
    
    .browser-mockup {
        padding: 1rem 0.5rem 5rem 0.5rem !important;
        align-items: flex-start !important;
        min-height: calc(100vh - 80px) !important;
    }
}

@media (max-width: 480px) {
    .browser-mockup {
        padding: 0.5rem 0.25rem 5rem 0.25rem !important;
        align-items: flex-start !important;
        min-height: calc(100vh - 80px) !important;
    }
}

.browser-frame {
    width: 90%;
    max-width: 1200px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(233, 30, 99, 0.3);
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.browser-header {
    background: #f5f5f5;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid #e0e0e0;
}

.browser-controls {
    display: flex;
    gap: 8px;
}

.control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.control.close { background: #ff5f57; }
.control.minimize { background: #ffbd2e; }
.control.maximize { background: #28ca42; }

.browser-url-bar {
    flex: 1;
    max-width: 500px;
}

.url-input {
    background: #ffffff;
    border: 1px solid #d0d0d0;
    border-radius: 6px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #666;
}

.url-input i {
    color: #4CAF50;
}

/* Shop Content */
.browser-content {
    background: #1a1a1a;
    min-height: 600px;
}

.shop-hero {
    padding: 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    min-height: 600px;
    display: flex;
    flex-direction: column;
}

.shop-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 15px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: none;
    box-shadow: none;
}

.shop-logo {
    display: flex;
    align-items: center;
}

.shop-logo-img {
    height: 35px;
    width: auto;
    transition: all 0.3s ease;
}

.shop-logo-img:hover {
    transform: scale(1.05);
}

.shop-nav {
    display: flex;
    gap: 30px;
}

.shop-nav span {
    color: #ccc;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.3s ease;
}

.shop-nav span:hover {
    color: var(--primary-pink);
}

.shop-cart {
    position: relative;
    background: var(--primary-pink);
    color: white;
    padding: 10px 15px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.shop-cart:hover {
    background: var(--primary-blue);
    transform: translateY(-2px);
}

.cart-count {
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.shop-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 40px 30px;
    flex: 1;
}

@media (max-width: 768px) {
    .shop-content {
        grid-template-columns: 1fr;
        gap: 0px !important;
        padding: 5px !important;
        align-items: flex-start !important;
    }
    
    .hero-text {
        margin-bottom: 0px !important;
        padding-bottom: 0px !important;
    }
    
    .product-demo {
        margin-top: -10px !important;
        padding-top: 0px !important;
    }
}

.hero-text {
    max-width: none;
}

.shop-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.shop-subtitle {
    font-size: 1.2rem;
    color: #aaa;
    margin-bottom: 0.5rem;
    font-weight: 400;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .shop-subtitle {
        margin-bottom: 8px;
        font-size: 0.95rem;
        line-height: 1.5;
        color: #aaa;
        font-weight: 400;
    }
}

.shop-description {
    color: #aaa;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.shop-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 2rem;
}

.feature-badge {
    background: rgba(233, 30, 99, 0.15);
    color: var(--primary-pink);
    padding: 8px 16px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid rgba(233, 30, 99, 0.3);
    backdrop-filter: blur(5px);
}

.shop-cta-button {
    background: linear-gradient(45deg, var(--primary-pink), var(--primary-blue));
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.shop-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(233, 30, 99, 0.3);
}

/* Product Demo */
.product-demo {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Mouse Cursor Animation */
.mouse-cursor {
    position: absolute;
    width: 20px;
    height: 20px;
    pointer-events: none;
    z-index: 10;
    opacity: 0;
    transition: all 0.2s ease;
    font-size: 20px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 0 2px rgba(0,0,0,0.5));
}

.mouse-cursor::before {
    content: '\f245';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
}

.mouse-cursor.clicking {
    transform: scale(0.8);
    color: #e91e63;
}

.product-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    text-align: center;
    max-width: 280px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(233, 30, 99, 0.2);
    border-color: rgba(233, 30, 99, 0.3);
}

.product-image {
    margin-bottom: 20px;
}

.product-image img {
    width: 100%;
    max-width: 150px;
    height: 150px;
    object-fit: contain;
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
}

.product-info h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #fff;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-pink);
    margin-bottom: 20px;
}

.add-to-cart-btn {
    background: var(--primary-pink);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    width: 100%;
    transition: all 0.3s ease;
    cursor: pointer;
}

.add-to-cart-btn:hover {
    background: var(--primary-blue);
    transform: translateY(-2px);
}

/* E-Commerce Impact Section */
.ecommerce-impact {
    background: #000000 !important;
    padding: 0;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.ecommerce-impact .container,
.ecommerce-impact .row,
.ecommerce-impact .col-lg-6 {
    background: transparent !important;
}


.ecommerce-impact .impact-content h2 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: white !important;
}

.ecommerce-impact .impact-content h2 .text-gradient {
    background: linear-gradient(45deg, var(--logo-gradient-start), var(--logo-gradient-end)) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

.ecommerce-impact .impact-content h2 .text-white {
    color: white !important;
}

.ecommerce-impact .impact-content h3 {
    color: #ccc;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.ecommerce-impact .impact-content .lead {
    font-size: 1.25rem;
    color: #aaa;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.ecommerce-impact .impact-content p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.ecommerce-impact .impact-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

html body .ecommerce-impact .impact-image {
    width: 100% !important;
    max-width: 500px !important;
    height: auto !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    margin: 0 auto !important;
    display: block !important;
    object-fit: contain !important;
}

@media (max-width: 768px) {
    .ecommerce-impact {
        padding: 4rem 0;
    }
    
    .ecommerce-impact .impact-content h2 {
        font-size: 2.5rem;
    }
    
    .ecommerce-impact .impact-content h3 {
        font-size: 1.2rem;
    }
    
    .ecommerce-impact .impact-content .lead {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .ecommerce-impact .impact-content h2 {
        font-size: 2rem;
    }
    
    .ecommerce-impact .impact-content h3 {
        font-size: 1.1rem;
    }
    
    .ecommerce-impact .impact-content .lead {
        font-size: 1rem;
    }
}

/* E-Commerce Technology Section */
.ecommerce-technology {
    background: #000000 !important;
    padding: 0;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.ecommerce-technology .container,
.ecommerce-technology .row,
.ecommerce-technology .col-lg-6 {
    background: transparent !important;
}

.ecommerce-technology .technology-content h2 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: white !important;
}

.ecommerce-technology .technology-content h2 .text-gradient {
    background: linear-gradient(45deg, var(--logo-gradient-start), var(--logo-gradient-end)) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

.ecommerce-technology .technology-content h2 .text-white {
    color: white !important;
}

.ecommerce-technology .technology-content h3 {
    color: #ccc;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.ecommerce-technology .technology-content .lead {
    font-size: 1.25rem;
    color: #aaa;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.ecommerce-technology .technology-content p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.ecommerce-technology .technology-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.ecommerce-technology .technology-image {
    width: 100% !important;
    max-width: 500px !important;
    height: auto !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    margin: 0 auto !important;
    display: block !important;
    object-fit: contain !important;
}

@media (max-width: 768px) {
    .ecommerce-technology {
        padding: 4rem 0;
    }
    
    .ecommerce-technology .technology-content h2 {
        font-size: 2.5rem;
    }
    
    .ecommerce-technology .technology-content h3 {
        font-size: 1.2rem;
    }
    
    .ecommerce-technology .technology-content .lead {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .ecommerce-technology .technology-content h2 {
        font-size: 2rem;
    }
    
    .ecommerce-technology .technology-content h3 {
        font-size: 1.1rem;
    }
    
    .ecommerce-technology .technology-content .lead {
        font-size: 1rem;
    }
}

/* E-Commerce Integration Section */
.ecommerce-integration {
    background: #000000 !important;
    padding: 0;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.ecommerce-integration .container,
.ecommerce-integration .row,
.ecommerce-integration .col-lg-6 {
    background: transparent !important;
}

.ecommerce-integration .integration-content h2 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: white !important;
}

.ecommerce-integration .integration-content h2 .text-gradient {
    background: linear-gradient(45deg, var(--logo-gradient-start), var(--logo-gradient-end)) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

.ecommerce-integration .integration-content h2 .text-white {
    color: white !important;
}

.ecommerce-integration .integration-content h3 {
    color: #ccc;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.ecommerce-integration .integration-content .lead {
    font-size: 1.25rem;
    color: #aaa;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.ecommerce-integration .integration-content p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.ecommerce-integration .integration-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.ecommerce-integration .integration-image {
    width: 100% !important;
    max-width: 500px !important;
    height: auto !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    margin: 0 auto !important;
    display: block !important;
    object-fit: contain !important;
}

@media (max-width: 768px) {
    .ecommerce-integration {
        padding: 4rem 0;
    }
    
    .ecommerce-integration .integration-content h2 {
        font-size: 2.5rem;
    }
    
    .ecommerce-integration .integration-content h3 {
        font-size: 1.2rem;
    }
    
    .ecommerce-integration .integration-content .lead {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .ecommerce-integration .integration-content h2 {
        font-size: 2rem;
    }
    
    .ecommerce-integration .integration-content h3 {
        font-size: 1.1rem;
    }
    
    .ecommerce-integration .integration-content .lead {
        font-size: 1rem;
    }
}

/* Process Section */
.process-section {
    background: #000000;
    padding: 8rem 0;
    position: relative;
}

.process-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 30px;
    top: 60px;
    width: 2px;
    height: 60px;
    background: linear-gradient(180deg, var(--primary-pink), var(--primary-blue));
    opacity: 0.5;
}

.process-number {
    background: linear-gradient(45deg, var(--primary-pink), var(--primary-blue));
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.process-content h3 {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.process-content p {
    color: #ccc;
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    background: #000000;
    padding: 8rem 0;
    position: relative;
}

.section-subtitle {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #cccccc;
    margin-bottom: 0;
}

/* Contact Container Layout */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
    justify-items: center;
}

.contact-form {
    max-width: 500px;
    width: 100%;
}

.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 2rem;
    position: relative;
}

.modern-input,
.modern-select,
.modern-textarea {
    position: relative;
}

.form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.2rem 1rem 0.8rem 3rem;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    width: 100%;
    outline: none;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: #e91e63;
    box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.1);
}

.floating-label {
    position: absolute;
    top: 50%;
    left: 1rem;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    font-weight: 500;
    pointer-events: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 5;
}

.form-control:focus + .floating-label,
.form-control:not(:placeholder-shown) + .floating-label {
    top: -0.5rem;
    left: 0.75rem;
    font-size: 0.8rem;
    color: #e91e63;
    transform: translateY(0);
    background: #000000;
    padding: 0 0.5rem;
    border-radius: 4px;
}

.floating-label i {
    font-size: 1rem;
    opacity: 0.8;
}

select.form-control {
    padding: 1.2rem 1rem 0.8rem 3rem;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 1rem center;
    background-repeat: no-repeat;
    background-size: 1rem;
}

.modern-select .floating-label {
    position: absolute;
    top: -0.5rem;
    left: 0.75rem;
    font-size: 0.8rem;
    color: #e91e63;
    transform: translateY(0);
    z-index: 10;
    background: #000000;
    padding: 0 0.5rem;
    border-radius: 4px;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
    padding-top: 2rem;
}

/* Form Check Styling - exakt wie auf website.html */
.form-check {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 2rem;
    margin-top: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 2rem;
}

.form-check:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(240, 58, 112, 0.3);
}

.form-check-input {
    margin-top: 0.125rem;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    appearance: none;
    -webkit-appearance: none;
    flex-shrink: 0;
}

.form-check-input:checked {
    background: linear-gradient(45deg, #e91e63, #00a6fb);
    border-color: #e91e63;
    box-shadow: 0 0 10px rgba(240, 58, 112, 0.3);
}

.form-check-input:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.form-check-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    line-height: 1.5;
    cursor: pointer;
    flex: 1;
}

.form-check-label a {
    color: #e91e63;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.contact-image {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
}

.contact-img {
    width: 100%;
    max-width: 900px;
    height: auto;
    border-radius: 0;
    box-shadow: none;
    display: block;
    margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .browser-mockup {
        padding: 10rem 2rem 2rem 2rem;
    }
}

@media (max-width: 1024px) {
    .browser-mockup {
        padding: 6rem 1rem 2rem 1rem;
    }
    
    .shop-content {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
        padding: 20px 15px;
    }
    
    .shop-title {
        font-size: 2rem;
    }
    
    .shop-features {
        display: none;
    }
}

@media (max-width: 900px) {
    .browser-mockup {
        padding: 4rem 1rem 2rem 1rem;
    }
    
    .browser-frame {
        width: 95%;
    }
    
    .shop-header {
        padding: 12px 20px;
        flex-direction: column;
        gap: 15px;
    }
    
    .shop-nav {
        gap: 20px;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    #header-include {
        display: none;
    }
    
    .browser-mockup {
        padding: 1rem 0.5rem 5rem 0.5rem;
        margin-top: 0;
    }
    
    .shop-content {
        padding: 5px;
        gap: 0px;
    }
    
    .shop-title {
        font-size: 1.4rem;
        line-height: 1.2;
        margin-bottom: 25px;
    }
    
    .shop-subtitle {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 8px;
        color: #aaa;
        font-weight: 400;
    }
    
    .shop-description {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 15px;
    }
    
    .browser-frame {
        width: 98%;
    }
    
    .shop-header {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        padding: 8px 15px;
    }
    
    .shop-nav {
        display: none;
    }
    
    .shop-logo {
        display: none;
    }
    
    .product-demo .product-image {
        display: none;
    }
    
    .cart-button {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content .lead {
        font-size: 1rem;
    }
    
    .browser-mockup {
        padding: 6rem 1rem 1rem 1rem;
    }
    
    .mockup-header {
        padding: 0.5rem;
    }
    
    .mockup-content {
        padding: 0.5rem;
    }
    
    .product-card {
        padding: 1rem;
    }
    
    .product-title {
        font-size: 0.9rem;
    }
    
    .product-price {
        font-size: 1rem;
    }
    
    .cart-button {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 500px;
    }
    
    .contact-image {
        order: -1;
    }
    
    .contact-img {
        max-width: 300px;
    }
    
    .ecommerce-impact-content h2,
    .ecommerce-technology-content h2,
    .ecommerce-integration-content h2 {
        font-size: 2.5rem;
    }
    
    .ecommerce-impact-content h3,
    .ecommerce-technology-content h3,
    .ecommerce-integration-content h3 {
        font-size: 1.4rem;
    }
    
    .ecommerce-impact-content .lead,
    .ecommerce-technology-content .lead,
    .ecommerce-integration-content .lead {
        font-size: 1.1rem;
    }
    
    .ecommerce-impact-content p,
    .ecommerce-technology-content p,
    .ecommerce-integration-content p {
        font-size: 1rem;
    }
    
    .impact-image-container,
    .technology-image-container,
    .integration-image-container {
        margin-top: 2rem;
    }
}

@media (max-width: 576px) {
    .ecommerce-impact-content h2,
    .ecommerce-technology-content h2,
    .ecommerce-integration-content h2 {
        font-size: 2rem;
    }
    
    .ecommerce-impact-content h3,
    .ecommerce-technology-content h3,
    .ecommerce-integration-content h3 {
        font-size: 1.2rem;
    }
    
    .ecommerce-impact-content .lead,
    .ecommerce-technology-content .lead,
    .ecommerce-integration-content .lead {
        font-size: 1rem;
    }
    
    .ecommerce-impact-content p,
    .ecommerce-technology-content p,
    .ecommerce-integration-content p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    #header-include {
        display: none;
    }
    
    .browser-mockup {
        padding: 0.5rem 0.25rem 5rem 0.25rem;
        margin-top: 0;
    }
    
    .shop-title {
        font-size: 1.2rem;
        line-height: 1.1;
        margin-bottom: 20px;
    }
    
    .shop-subtitle {
        font-size: 0.85rem;
        line-height: 1.4;
        margin-bottom: 6px;
        color: #aaa;
        font-weight: 400;
    }
    
    .shop-description {
        font-size: 0.85rem;
        line-height: 1.4;
        margin-bottom: 12px;
    }
    
    .shop-header {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        padding: 6px 10px;
    }
    
    .shop-nav {
        display: none;
    }
    
    .shop-logo {
        display: none;
    }
    
    .product-demo .product-image {
        display: none;
    }
    
    .shop-content {
        padding: 3px 5px;
        gap: 0px;
    }
    
    .product-card {
        padding: 6px;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .shop-features {
        display: none !important;
    }
}

/* Mobile Bottom Navigation */
.mobile-bottom-nav {
    display: none;
}

@media (max-width: 768px) {
    .mobile-bottom-nav {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding: 10px 0;
        z-index: 1000;
        display: flex;
        justify-content: space-around;
        align-items: center;
    }
    
    .nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-decoration: none;
        color: rgba(255, 255, 255, 0.6);
        transition: all 0.3s ease;
        padding: 8px 12px;
        border-radius: 12px;
        position: relative;
        overflow: hidden;
    }
    
    .nav-item.active {
        color: white;
        background: linear-gradient(45deg, var(--logo-gradient-start), var(--logo-gradient-end));
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(255, 20, 147, 0.3);
    }
    
    .nav-item:hover {
        color: white;
        transform: translateY(-1px);
    }
    
    .nav-item i {
        font-size: 1.2rem;
        margin-bottom: 4px;
        transition: all 0.3s ease;
    }
    
    .nav-item span {
        font-size: 0.7rem;
        font-weight: 500;
        transition: all 0.3s ease;
    }
    
    .nav-item.active i {
        transform: scale(1.1);
    }
    
    .nav-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
        transition: left 0.5s ease;
    }
    
    .nav-item:hover::before {
        left: 100%;
    }
}

@media (max-width: 375px) {
    .shop-title {
        font-size: 1.3rem;
        line-height: 1.3;
    }
    
    .browser-frame {
        width: 98%;
    }
}
