.tek-benefits-cart {
    margin: 20px 0;
    overflow-x: auto;
}

.tek-cart-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
}

.tek-cart-table th {
    background-color: #000000;
    color: white;
    padding: 12px 15px;
    text-align: left;
    font-weight: 600;
}

.tek-cart-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
}

.tek-cart-table tr:hover {
    background-color: #f9f9f9;
}

.tek-cart-img img {
    border-radius: 6px;
    object-fit: cover;
}

.tek-btn {
    background-color: #000000;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s;
}

.tek-btn:hover {
    background-color: #f1730d;
}

@media (max-width: 768px) {
    .tek-cart-table {
        font-size: 14px;
    }
    .tek-cart-table th, .tek-cart-table td {
        padding: 10px 8px;
    }
    .tek-cart-img img {
        width: 60px;
    }
}

/*/////////////////SECCION TEAM EK/////////////////////////////*/ 

body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            margin: 0;
            padding: 20px;
            background: #f5f7fa;
        }
        
        .tek-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .tek-moto-item {
            border: 1px solid #ddd;
            padding: 20px;
            border-radius: 12px;
            background: #fff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            margin-bottom: 30px;
        }
        
        .tek-moto-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 15px;
            flex-wrap: wrap;
            gap: 10px;
        }
        
        .tek-moto-title {
            margin: 0;
            color: #1e40af;
            font-size: 1.5em;
            font-weight: 600;
        }
        
        .tek-content-wrapper {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            align-items: flex-start;
        }
        
        .tek-info-container {
            flex: 1 1 400px;
            min-width: 300px;
        }
        
        .tek-image-container {
            width: 100px;
            height: 100px;
            background: #f0f0f0;
            border-radius: 8px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid #ddd;
            flex-shrink: 0;
        }
        
        .tek-image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .tek-placeholder {
            font-size: 0.9em;
            color: #999;
            text-align: center;
            padding: 10px;
        }
        
        .tek-info-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            margin: 15px 0;
        }
        
        .tek-info-item {
            margin: 0;
            font-size: 0.95em;
        }
        
        .tek-info-item strong {
            color: #1e40af;
            min-width: 120px;
            display: inline-block;
        }
        
        .tek-info-item code {
            background: #f1f5f9;
            padding: 2px 6px;
            border-radius: 4px;
            font-size: 0.9em;
            color: #0f172a;
        }
        
        .tek-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin: 20px 0 10px;
        }
        
        .tek-btn {
            padding: 10px 16px;
            border: none;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.2s ease;
        }
        
        .tek-btn-garantia {
            background: #1e40af;
            color: white;
            text-decoration: none;
        }
        
        .tek-btn-digital {
            background: #28a745;
            color: white;
        }
        
        .tek-btn:hover {
            transform: translateY(-1px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        
        .tek-modal {
            display: none;
            position: fixed;
            z-index: 9999;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.6);
            overflow: auto;
        }
        
        .tek-modal-content {
            background: #fff;
            margin: 5% auto;
            padding: 30px;
            width: 90%;
            max-width: 800px;
            border-radius: 10px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
            position: relative;
        }
        
        .tek-modal-close {
            position: absolute;
            top: 15px;
            right: 20px;
            font-size: 28px;
            cursor: pointer;
            color: #aaa;
            background: none;
            border: none;
            padding: 0;
        }
        
        .tek-modal-close:hover {
            color: #000;
        }
        
        .tek-modal h2 {
            margin-top: 0;
            color: #1e40af;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .tek-table {
            width: 100%;
            border-collapse: collapse;
            margin: 15px 0;
        }
        
        .tek-table th, .tek-table td {
            border: 1px solid #ccc;
            padding: 10px;
            text-align: left;
        }
        
        .tek-table th {
            background: #f9f9f9;
            font-weight: 600;
        }
        
        .tek-table tr:nth-child(even) {
            background: #f9f9f9;
        }
        
        .error {
            color: #a00;
            padding: 10px;
            background: #fee;
            border-radius: 4px;
            margin: 10px 0;
        }

        .tek-moto-item h4 {
            font-size: 26px;
            text-transform: capitalize;
            color: #f1730d;
            text-decoration: none;
            font-weight: bold;
        }
        .tek-moto-item .tek-moto-image {
            float: right;
            width: 200px;
            height: 170px;
            background: #ededed;
            padding: 5px;
            border-radius: 5px;
        }
        div.datos-moto {
            display: grid;
            grid-template: 60px / auto auto;
            margin-top: 25px;
        }
        .datos-moto p {
            margin: 0px 15px 0px 0px !important;
            padding: 0px;
        }
        .datos-moto p code {
            display: inline-grid;
            padding:1.0em !important;
        }
        .datos-moto p strong {
            font-size: 18px;
            text-transform: capitalize;
            color: #000000;
            text-decoration: none;
            font-weight: bold;
        }
        form.tek-moto-form {
            display: grid;
            grid-template: 100px / auto auto;
            margin-top: 25px;
            grid-gap: 1rem;
        }
        .tek-message.success {
            margin: 30px;
        }
        .cintillo {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            border-bottom: 5px solid #f2a900;
            padding-bottom: 0px;
            margin-bottom: 15px;
        }
        .cintillo p {
            padding: 0px;
            font-size: 16px;
            font-weight: 500;
        }

        .service-record {
            display: grid;
            grid-template-columns: 120px 1fr 1fr 1.5fr;
            gap: 15px;
            align-items: center;
            padding: 8px 0;
            border-bottom: 1px dotted #999;
        }
        .service-record .label {
            font-weight: bold;
        }
        .service-record .value {
                font-family: 'Courier New', Courier, monospace;
        }
        div#tek-wallpapers-modal div {
            max-width: 960px;
            padding: 20px;
            margin: 150px auto;
        }
        
        @media (max-width: 768px) {
            .tek-content-wrapper {
                flex-direction: column;
            }
            
            .tek-info-grid {
                grid-template-columns: 1fr;
            }
            
            .tek-actions {
                flex-direction: column;
            }
            
            .tek-btn {
                width: 100%;
                justify-content: center;
            }
            
            .tek-image-container {
                order: -1;
                margin-bottom: 15px;
            }
        }



