/* E-Commerce Section */
.dev-ecommerce {
    padding: 120px 0;
    background-color: #111;
    position: relative;
    overflow: hidden;
}

.dev-ecommerce::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}

.ecommerce-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.ecommerce-header .dev-label {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 102, 0, 0.1);
    border: 1px solid rgba(255, 102, 0, 0.2);
    border-radius: 30px;
    color: #ff6600;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.ecommerce-header .dev-title {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.ecommerce-header .dev-title span {
    background: linear-gradient(135deg, #ff6600 0%, #ff9900 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ecommerce-header .dev-desc {
    font-size: 18px;
    color: #a0a0a0;
    line-height: 1.6;
}

.ecommerce-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

.ecommerce-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.ecommerce-card:hover {
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-5px);
    border-color: rgba(255, 102, 0, 0.3);
}

.ecommerce-card .card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: rgba(255, 102, 0, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff6600;
    transition: all 0.4s ease;
}

.ecommerce-card:hover .card-icon {
    background: #ff6600;
    color: #fff;
    transform: scale(1.05);
}

.ecommerce-card .card-icon svg {
    width: 40px;
    height: 40px;
}

.ecommerce-card h3 {
    font-size: 24px;
    color: #fff;
    margin-bottom: 16px;
    font-weight: 700;
}

.ecommerce-card p {
    font-size: 16px;
    color: #a0a0a0;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 1024px) {
    .ecommerce-header .dev-title {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .dev-ecommerce {
        padding: 80px 0;
    }

    .ecommerce-header {
        margin-bottom: 50px;
    }

    .ecommerce-header .dev-title {
        font-size: 32px;
    }
    
    .ecommerce-header .dev-desc {
        font-size: 16px;
    }

    .ecommerce-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .ecommerce-card {
        padding: 30px 20px;
    }
}
